1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-23 21:27:45 +00:00
Commit graph

457 commits

Author SHA1 Message Date
GokuWeedLord
cd1b51f23f gm command fix, quest debug output change 2017-10-21 19:21:43 +11:00
GokuWeedLord
d1a636c6cc fix a vs xml linting error 2017-10-21 16:41:09 +11:00
Mordred
0fa116219a Merge pull request #145 from ShelbyZ/static_casting_warnings
Fixing some type alignments via casting
2017-10-20 23:57:59 +02:00
ShelbyZ
54548e1928 Fixing spacing issues for casts 2017-10-20 14:12:24 -07:00
Mordred
0b25ec89ae Merge pull request #146 from takhlaq/pcb
cleaned up some compiler warnings in pcb_reader
2017-10-20 21:27:59 +02:00
Tahir Akhlaq
c7a2023df4 legit why the fuck are we missing stairs in towers (pcb) 2017-10-20 17:56:01 +01:00
Tahir Akhlaq
b11f5e492f cleaned up some compiler warnings in pcb_reader
- fixed loading some gimmick entries
2017-10-20 13:34:03 +01:00
ShelbyZ
3b42b1df9b Fixing some type alignments via casting
- static_cast for reasonable values
- at least one stray float
2017-10-19 16:18:16 -07:00
Mordred
9df21f92eb Merge pull request #142 from goaaats/master
Initial mounts implementation, nicer debug packet printing
2017-10-19 19:01:08 +02:00
Mordred
d2d6c05429 Merge pull request #141 from takhlaq/pcb
pcb stuff (missing some objects)
2017-10-19 19:00:21 +02:00
Tahir Akhlaq
4f557340c5 fix linux build for pcb reader 2017-10-19 17:49:08 +01:00
Tahir Akhlaq
3b2b3c7349 fix pcb linux build 2017-10-19 17:26:01 +01:00
Mordred
834a8b3271 Merge pull request #144 from AcedArmy/master
Added Version and Git Hash to Lobby, Zone Startup Info Banners
2017-10-19 18:25:53 +02:00
Mordred
238e1da08e Merge pull request #143 from ShelbyZ/msvc_warnings
signed/unsigned mismatch issues
2017-10-19 18:24:09 +02:00
Tahir Akhlaq
842199b735 fixed collision dumping
- added saintcoinach's sgb parsing
2017-10-19 16:38:06 +01:00
Biscuit Boy
4a8883a0fa Add Verison and Git Hash to printBanner
Added Version and Git Hash to printBanner in Zone and Lobby Server
2017-10-20 02:23:45 +11:00
Biscuit Boy
fdee1811e1 Merge pull request #1 from SapphireMordred/master
Update Fork
2017-10-20 02:20:10 +11:00
ShelbyZ
32a9d976f7 signed/unsigned mismatch issues
- Move for...loop int to size_t
- Move int32_t to uint32_t
2017-10-19 07:12:09 -07:00
ShelbyZ
72ebf7542e Merge remote-tracking branch 'refs/remotes/SapphireMordred/master' into msvc_warnings 2017-10-19 06:36:34 -07:00
Tahir Akhlaq
acbc33063a const all the things for readability
- removed .mdl collision loading since game doesnt use it

fixed style issues in pcb_reader
2017-10-19 09:39:05 +01:00
Tahir Akhlaq
7b127e20df fixed issue with missing objects 2017-10-19 09:38:53 +01:00
Tahir Akhlaq
c35795a9f3 slightly cleaned up PCB reader, added some exception logging 2017-10-19 09:38:52 +01:00
Tahir Akhlaq
edd529297c cleaned up collision map exporter
- export by object
2017-10-19 09:38:51 +01:00
Tahir Akhlaq
4e2bcbfa9c exported collision maps correctly now (i think) 2017-10-19 09:38:50 +01:00
Mordred
c7a864335f hopefully fixed issues with pcb 2017-10-19 09:38:49 +01:00
Tahir Akhlaq
87447d1a73 added wavefront obj dump (doesnt work yet) 2017-10-19 09:38:49 +01:00
Tahir Akhlaq
04c53a9181 added list.pcb file mapping
- added LGB parser (all credit for LGB to contributor<https://github.com/ufx/SaintCoinach/blob/master/SaintCoinach/Graphics/Lgb/>, lgb.h is simply their work ported to c++)
- todo: correct object placement
2017-10-19 09:38:48 +01:00
Mordred
09391691b0 Merge pull request #139 from ShelbyZ/msvc_warnings
Potential Truncation - value over signed char
2017-10-18 19:33:57 +02:00
ShelbyZ
3e48b8002e Moving to uint8_t 2017-10-18 09:19:05 -07:00
amibu
19ca139413 Formatting 2017-10-18 18:08:51 +02:00
amibu
1f3d0112a5 Mount debug command; 2017-10-18 18:06:25 +02:00
amibu
77717d29f3 Cleanup, mount DB saving; 2017-10-18 17:54:17 +02:00
amibu
240e06a634 ActionMount; 2017-10-18 15:49:19 +02:00
Mordred
fec8aad0a3 Merge pull request #140 from ShelbyZ/gitignores
Remove CMake/Build Artifacts
2017-10-18 11:24:25 +02:00
ShelbyZ
dfa11712dd Remove CMake/Build Artficats
- vcxproj/sln files created using cmake tool
- idb files made as a result of build
2017-10-17 17:23:01 -07:00
ShelbyZ
238a1c17a6 Potential Truncation - value over signed char
In PacketHandlers.cpp ~line453 - we are trying to insert a hex value
(128) x80 and will cause an underflow to -128.  Suggestion is to move to
unsigned char to capture the intended value.
2017-10-17 17:14:11 -07:00
amibu
30aa9fe211 Replicating retail packet flow for testing 2017-10-17 23:03:47 +02:00
amibu
dfde3ed820 Formatting 2017-10-17 22:52:12 +02:00
amibu
fbae114aa0 Cleanup 2017-10-17 22:49:33 +02:00
amibu
e8c2fc81a5 Base for mounts, needs to be in a ActionCast; 2017-10-17 21:31:00 +02:00
amibu
4428ad3033 Ported beautiful packet printing from classic 2017-10-17 20:13:01 +02:00
Mordred
7f48f567a3 Merge pull request #138 from goaaats/master
Fix chat opcode + packet struct
2017-10-17 19:21:43 +02:00
amibu
9cac3a6952 Fix chat opcode + packet struct; 2017-10-17 18:33:36 +02:00
Mordred
bf81e93e62 Merge pull request #133 from itsMaru/master
More rest web ui stuff;
2017-10-13 10:26:36 +02:00
Maru
0c34d7ac2a More rest web ui stuff; 2017-10-12 20:28:28 -03:00
Mordred
0d088deef3 Merge pull request #132 from itsMaru/master
Launcher redesign;
2017-10-12 09:27:00 +02:00
Maru
ceae111433 Merge https://github.com/SapphireMordred/Sapphire 2017-10-12 04:13:56 -03:00
Maru
cc4ca8b04f Title; 2017-10-12 04:06:46 -03:00
Maru
eb932e326c Launcher redesigned; 2017-10-12 04:03:58 -03:00
Mordred
f253964d49 Merge pull request #131 from AcedArmy/master
Fixed Bed Not Showing Up When Waking Up
2017-10-12 09:00:50 +02:00