aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he
AgeCommit message (Collapse)Author
2019-10-28SCUMM HE: MBC: Read Json packet dataEugene Sandulenko
2019-10-27SCUMM HE: Replace binary packet with JSONEugene Sandulenko
2019-10-27SCUMM HE: Fix network start at the game startEugene Sandulenko
2019-10-27SCUMM HE: Moonbase Commander: simplify looping over network packetsEugene Sandulenko
2019-10-27SCUMM HE: Read packets from the serverEugene Sandulenko
2019-10-26SCUMM HE: Implement data packet sending in Moonbase CommanderEugene Sandulenko
2019-10-26SCUMM HE: Fix Compiler WarningsD G Turner
These are flagged by GCC -Wsign-compare.
2019-10-25SCUMM HE: Fix call to strlcpyLothar Serra Mari
2019-10-25SCUMM HE: Switched packet manipulation to Stream codeEugene Sandulenko
2019-10-25SCUMM HE: Unstubbed smaller Moonbase Commander networking functionsEugene Sandulenko
2019-10-25SCUMM HE: Implement joinSession() for Moonbase CommanderEugene Sandulenko
2019-10-25SCUMM HE: Implement getSessionPlayerCount() for Moonbase CommanderEugene Sandulenko
2019-10-25SCUMM HE: Implemented startQuerySessions() for Moonbase CommanderEugene Sandulenko
2019-10-25SCUMM HE: Hid unneeded warningEugene Sandulenko
2019-10-25SCUMM HE: Fix double freeEugene Sandulenko
2019-10-24SCUMM HE: Initial code for add user functionalityEugene Sandulenko
2019-10-24SCUMM HE: Set server prefix as variableEugene Sandulenko
2019-10-24SCUMM HE: Create sessions on the serverEugene Sandulenko
2019-10-24SCUMM HE: Fix libcurl compilation checksEugene Sandulenko
2019-10-24SCUMM HE: Hook in PostRequest to Moonbase CommanderEugene Sandulenko
2019-10-24SCUMM HE: Set up networking variable later during executionEugene Sandulenko
2019-10-23SCUMM HE: Fix GCC Compiler WarningsD G Turner
2019-10-23SCUMM HE: Really Fix CompilationD G Turner
2019-10-23SCUMM HE: Fix CompilationD G Turner
2019-10-22SCUMM HE: Work on receiving part of Moonbase Commander networkingEugene Sandulenko
2019-10-22SCUMM HE: Hid several noisy debug messagesEugene Sandulenko
2019-10-22SCUMM HE: More code for Moonbase Commander networkingEugene Sandulenko
2019-10-22SCUMM HE: More work on the Moonbase networking. Getting in-gameEugene Sandulenko
2019-10-22SCUMM HE: Initial (hard)code for Moonbase networkingEugene Sandulenko
2019-09-15SCUMM: HE: Fix MSVC WarningD G Turner
This was reported by Henke37 on IRC.
2019-07-14SCUMM: Silence GCC memset() warningsTorbjörn Andersson
Recent GCC versions complain if you memset() a class or struct that contain non-POD data types. Get around that by either initializing the object when created, or by adding a reset() method.
2019-05-27SCUMM: Fix MSVC warningsFilippos Karapetis
- Change float suffix to uppercase - Initialize potentially uninitialized variables - Fix default cases in switch statements
2019-05-25SCUMM: HE: Added some names to basketball U32 commandsEugene Sandulenko
2019-05-01COMMON: Replace NEResourceType and PEResourceType with a shared enumCameron Cawley
2019-03-12SCUMM HE: Bug fix for moonbase stack memory corruptionZhiqi Yin
What: The bug is reproducible in the following ways: 1. quiting the game 2. enter challenge mode state 2, when the game starts move mouse around the menu buttons (choose building or weapons) Observed behavior: In he/wiz_he.cpp:2839, the function failed to return since the stack around variable 'color' was corrupted. The game will crash then. Analysis: Since other function will modify memory area around local variable 'color', the bug shoud be caused by memory overwritten. The memory write happens in this modified file. From the code, it only wants to write a certain amount of pixels. So I found 2 places where more pixels are written. This causes stack memory corruption. Fix: Add checking. If we have written enough pixels then break. Testing: The game UI looks correct. Single player mode game is tested. Bug no longer observable. Tested for both cases mentioned above.
2018-04-19JANITORIAL: Fix whitespaceAdrian Frühwirth
2018-02-04SCUMM HE: Use Miles AdLib drivernukeykt
2018-01-31COMMON: Move VER macro for serializer into common codeColin Snover
2018-01-31SCUMM: Replace UB-triggering serialization code with Common::SerializerColin Snover
Fixes Trac#10342.
2017-12-01SCUMM HE: Fix UB shifting negative integersColin Snover
2017-08-11SCUMM: Moonbase: Mark original bug as fall through to silence GCC 7 warningEugene Sandulenko
2016-12-06SCUMM HE: Silence GCC indentation warningTorbjörn Andersson
2016-11-27SCUMM HE: Fix crash in Moonbase distrotionEugene Sandulenko
2016-11-27SCUMM HE: More class initializationsEugene Sandulenko
2016-11-24SCUMM HE: Fix Football logic initializationEugene Sandulenko
2016-11-20SCUMM HE: Hid noisy Moonbase AI warnings under debug channelEugene Sandulenko
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-09-03SCUMM HE: Constify string parameterOri Avtalion
2016-09-02Merge pull request #821 from BenCastricum/bugfixesEugene Sandulenko
SCUMM: Bugfixes
2016-08-30SCUMM HE: Add remote scripts-related kludgesAlexander Tkachev
Those are the last ones. Now Net stubs must be handled.