aboutsummaryrefslogtreecommitdiff
path: root/engines/neverhood/modules
AgeCommit message (Collapse)Author
2013-09-27NEVERHOOD: Fix uninitialized variable in AsScene1002OutsideDoorBackground - ↵Filippos Karapetis
CID 1022329
2013-09-27NEVERHOOD: Fix uninitialized variable in AsScene2810Rope - CID 1022310Filippos Karapetis
2013-09-21NEVERHOOD: Split the sprites in module 2800 into a separate fileFilippos Karapetis
2013-09-17NEVERHOOD: Slight cleanup in Module2800::updateScene()Filippos Karapetis
2013-09-14NEVERHOOD: Move StaticScene into scene.h/.cppFilippos Karapetis
2013-08-05NEVERHOOD: Remove NRect constructorMax Horn
Otherwise, every global variable of type NRect requires a constructor to be run, which can cause portability issue.
2013-07-14JANITORIAL: Remove trailing whitespaceSven Hesse
2013-07-09NEVERHOOD: Fix incorrect sound heard when pressing the ladder buttonFilippos Karapetis
When the ladder is down, pressing the ladder button shouldn't do anything
2013-07-03NEVERHOOD: Fix typo in variable nameFilippos Karapetis
2013-07-01NEVERHOOD: Fix cursor glitch before looking down the lowered bridgeFilippos Karapetis
The navigation scene type used was wrong, resulting in cursor glitches when moving the mouse cursor at the screen edges
2013-07-01NEVERHOOD: Fix mouse cursor in the statue screen with the ladder buttonFilippos Karapetis
The mouse cursor resource hash used in that scene was incorrect, resulting in broken palette
2013-07-01NEVERHOOD: Fix sound effect heard when the castle elevator door opensFilippos Karapetis
The condition where the elevator door opening sound is heard is triggered twice. Now, we prevent it being triggered a second time.
2013-07-01NEVERHOOD: Fix display of the dynamites on shelves in the dynamite roomFilippos Karapetis
2013-07-01NEVERHOOD: Fix the second tape sprite in the whale roomFilippos Karapetis
The second tape is now correctly faced to the right
2013-06-28NEVERHOOD: Fix incorrect checks for the waterfall soundsFilippos Karapetis
Some of the "wall broken" checks were inverse, resulting in the waterfall sound being incorrectly heard when the wall was broken. Also, simplified some of the "wall broken" checks
2013-06-28NEVERHOOD: Add missing music when entering the Hall of Records buildingFilippos Karapetis
The "Everybody Way Oh" theme should be played in both of the first two rooms of the Hall of Records building
2013-06-28NEVERHOOD: Fix scene entrance when restoring in the Aqua (music) houseFilippos Karapetis
This looks to be a logic error in the constructor of module 2400, since all the other modules do not create scenes with the global entrance number when they are instantiated without an entrance (i.e. when loading). With that logic error, all the code that handled Kleymen's entrance to a scene after restoring was incorrectly skipped
2013-06-25NEVERHOOD: Fix bug in Module 1100, scene 2 which made the "Klayman, up here" ↵johndoe123
scene was unreachable. Sound bug still present, though.
2013-06-17NEVERHOOD: Fix Smacker errors in Scene1317 (bug #3613666)johndoe123
2013-06-12NEVERHOOD: Move some more cheat code to the cheat console commandFilippos Karapetis
2013-06-12NEVERHOOD: Remove or silence by default some more debug outputFilippos Karapetis
2013-06-11NEVERHOOD: Remove cheat debug code, and introduce a new command, "cheat"Filippos Karapetis
2013-06-11NEVERHOOD: Try to fix the Smacker issues inside of SmackerPlayer only ↵johndoe123
(instead the numerous classes using it) SmackerPlayer now creates a surface in the constructor and deletes it in the destructor. There will be only this surface during the lifetime of the player, so there shouldn't be any issues any more when the player is reused for different Smacker files. This is imo nicer than to remove/add the surface. I kept the several openSmacker since it wraps some code which is nice.
2013-06-11NEVERHOOD: Fix crashes in scene 3009 (cannon scene), and add a FIXMEFilippos Karapetis
2013-06-10NEVERHOOD: Change the debuglevel of the scene changing debug outputFilippos Karapetis
These are shown on each scene change, but should no longer be needed to be enabled by default, since we can now use the debugger to check and change the current scene
2013-06-09NEVERHOOD: Add a console command to display the current surfacesFilippos Karapetis
2013-06-02NEVERHOOD: Fix crash in scene 1105 (teddy bear panel)Torbjörn Andersson
Leaving the panel in scene 1105 only worked if the panel was open. If the panel was closed, nothing would happen on the first click, and on the second it would crash. If I understood this correctly, it was because trying to leave while the panel was closed would (incorrectly) mark it as open, and then it would crash when trying to remove the objects behind the panel from the scene.
2013-06-01NEVERHOOD: Removed debug (?) code that bypassed puzzleTorbjörn Andersson
The effect of the removed code was to bypass the potion-mixing puzzle while shrunken. The puzzle works fine for me, so there's no reason to keep this bypass. Also, it caused a dead code warning, CID 1022345.
2013-05-28NEVERHOOD: Silence two compiler warnings about set but unused variables.D G Turner
2013-05-27Merge pull request #334 from salty-horse/neverhoodjohndoe123
NEVERHOOD: Fix incorrect dark palette in Scene2206
2013-05-21NEVERHOOD: Fix uninitialized variable.D G Turner
2013-05-19NEVERHOOD: Fix incorrect dark palette in Scene2206Ori Avtalion
2013-05-08NEVERHOOD: Move module files to own subdirectoryjohndoe123