From 4d200bb19367155e2e33cc0d9fc2b4627735bba9 Mon Sep 17 00:00:00 2001 From: MattKC <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 29 Jun 2023 00:49:57 -0700 Subject: [PATCH 1/2] Update CONTRIBUTING.md --- CONTRIBUTING.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c6519ce..5633e7c6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,13 +6,21 @@ Generally, decompilation is a fairly advanced skill. If you aren't already famil ## Ghidra Server -For documenting the original binaries and generating pseudocode that we decompile with, we primarily use [Ghidra](https://ghidra-sre.org/) (it's free and open source). To help with collaboration, we have a shared Ghidra repository with all of our current work. You are free to check it out and mess around with it locally, however to prevent sabotage, you will need to request permission before you can push back to the server (ask in the Matrix room). +For documenting the original binaries and generating pseudocode that we decompile with, we primarily use [Ghidra](https://ghidra-sre.org/) (it's free and open source). To help with collaboration, we have a shared Ghidra repository with all of our current work. You are free to check it out and mess around with it locally, however to prevent sabotage, you will need to request permission before you can push your changes back to the server (ask in the Matrix room). To access the Ghidra repository, use the following details: - Address: `server.mattkc.com` - Port: `13100` +## General Guidelines + +If you have contributions, feel free to create a pull request! Someone will review and merge it (or provide feedback) as soon as possible. + +Please keep your pull requests small and understandable; you may be able to shoot ahead and make a lot of progress in a short amount of time, but this is a collaborative project, so you must allow others to catch up and follow along. Large pull requests become significantly more unwieldy to review, and as such make it exponentially more likely for a mistake or error to go undetected. They also make it harder to merge other pull requests because the more files you modify, the more likely it is for a merge conflict to occur. A general guideline is to keep submissions limited to one class at a time. Sometimes two or more classes may be too interlinked for this to be feasible, so this is not a hard rule, however if your PR is starting to modify more than 10 or so files, it's probably getting too big. + +This repository currently has only one goal: accuracy to the original executables. We are byte/instruction matching as much as possible, which means the priority is making the original compiler (MSVC 4.20) produce code that matches the original game. As such, modernizations and bug fixes will probably be rejected for the time being. + ## Code Style In general, we're not exhaustively strict about coding style, but there are some preferable guidelines to follow that have been adopted from what we know about the original codebase: @@ -23,10 +31,6 @@ In general, we're not exhaustively strict about coding style, but there are some - `g_camelCase` for global variables. - `p_camelCase` for function parameters. -## Kinds of Contributions - -This repository has only one goal: accuracy to the original executables. As such, we are not likely to accept pull requests that attempt to modernize the code, or improve compatibility in a newer compiler that ends up reducing compatibility in MSVC 4.20. Essentially, accuracy is king, everything else is secondary. For modernizations and enhancements, it's recommended to create a fork downstream from this one instead. - ## Questions? For any further questions, feel free to ask in either the [Matrix chatroom](https://matrix.to/#/#isledecomp:matrix.org) or on the [forum](https://forum.mattkc.com/viewforum.php?f=1). From 07912eb05ac111d799e5607902a1007e9e2c79f9 Mon Sep 17 00:00:00 2001 From: Cydra Date: Thu, 29 Jun 2023 10:10:08 +0200 Subject: [PATCH 2/2] Class layout for LEGO1 classes (#43) * Stubbed a bunch of classes and annotated them for later use. Heavily wip and more of pseudocode right now. * Converted pseudocode into real code! * Created a bunch more classes and added more information to exisiting ones Did not error check, this was pushed just for reference * More classes and implementation details. Still not checked for any errors * Fixed code and decided on a way to handle virtual table stubs * Some additional fixes * More smaller fixes * Added classes to project and made it compile * Fixed function adresses that caused the python script to fail * More classes and virtual function resolves. Builds and compares fine. * Again more classes and virtual function resolves. Builds and compares fine. * No clue, I guess forced update for line endings * Finished up some work, compiles fine. All functions are STUB annotated to not pollute reccmp.py output. * line ending change * rename GetClassName/IsClass Mirroring recent changes from master * further conform to current master * update project * cleanup * project only updates when you close msdev --------- Co-authored-by: Cydra Co-authored-by: itsmattkc <34096995+itsmattkc@users.noreply.github.com> --- ISLE/{isle.cpp => isleapp.cpp} | 2 +- ISLE/{isle.h => isleapp.h} | 8 +- LEGO1/act1state.cpp | 8 + LEGO1/act1state.h | 27 + LEGO1/act2brick.cpp | 29 + LEGO1/act2brick.h | 32 + LEGO1/act2policestation.cpp | 9 + LEGO1/act2policestation.h | 27 + LEGO1/act3.cpp | 13 + LEGO1/act3.h | 31 + LEGO1/act3actor.h | 18 + LEGO1/act3shark.cpp | 1 + LEGO1/act3shark.h | 18 + LEGO1/act3state.cpp | 7 + LEGO1/act3state.h | 37 + LEGO1/ambulance.cpp | 7 + LEGO1/ambulance.h | 28 + LEGO1/ambulancemissionstate.cpp | 7 + LEGO1/ambulancemissionstate.h | 29 + LEGO1/animstate.cpp | 13 + LEGO1/animstate.h | 29 + LEGO1/beachhouseentity.cpp | 9 + LEGO1/beachhouseentity.h | 27 + LEGO1/bike.cpp | 8 + LEGO1/bike.h | 29 + LEGO1/buildingentity.cpp | 13 + LEGO1/buildingentity.h | 28 + LEGO1/bumpbouy.cpp | 1 + LEGO1/bumpbouy.h | 25 + LEGO1/carrace.cpp | 7 + LEGO1/carrace.h | 27 + LEGO1/carracestate.h | 25 + LEGO1/doors.h | 26 + LEGO1/dunebuggy.cpp | 7 + LEGO1/dunebuggy.h | 28 + LEGO1/elevatorbottom.cpp | 21 + LEGO1/elevatorbottom.h | 30 + LEGO1/gasstation.cpp | 29 + LEGO1/gasstation.h | 33 + LEGO1/gasstationentity.cpp | 1 + LEGO1/gasstationentity.h | 25 + LEGO1/gasstationstate.cpp | 7 + LEGO1/gasstationstate.h | 28 + LEGO1/helicopter.cpp | 13 + LEGO1/helicopter.h | 29 + LEGO1/helicopterstate.cpp | 1 + LEGO1/helicopterstate.h | 25 + LEGO1/historybook.cpp | 21 + LEGO1/historybook.h | 30 + LEGO1/hospital.cpp | 21 + LEGO1/hospital.h | 31 + LEGO1/hospitalentity.cpp | 1 + LEGO1/hospitalentity.h | 26 + LEGO1/hospitalstate.cpp | 7 + LEGO1/hospitalstate.h | 28 + LEGO1/infocenter.cpp | 29 + LEGO1/infocenter.h | 32 + LEGO1/infocenterdoor.cpp | 21 + LEGO1/infocenterdoor.h | 31 + LEGO1/infocenterentity.cpp | 1 + LEGO1/infocenterentity.h | 26 + LEGO1/infocenterstate.cpp | 14 + LEGO1/infocenterstate.h | 28 + LEGO1/isle.cpp | 7 + LEGO1/isle.h | 28 + LEGO1/isleactor.cpp | 1 + LEGO1/isleactor.h | 24 + LEGO1/islepathactor.cpp | 1 + LEGO1/islepathactor.h | 25 + LEGO1/jetski.cpp | 7 + LEGO1/jetski.h | 29 + LEGO1/jetskirace.cpp | 1 + LEGO1/jetskirace.h | 26 + LEGO1/jetskiracestate.h | 26 + LEGO1/jukebox.cpp | 7 + LEGO1/jukebox.h | 28 + LEGO1/jukeboxentity.cpp | 13 + LEGO1/jukeboxentity.h | 29 + LEGO1/jukeboxstate.cpp | 1 + LEGO1/jukeboxstate.h | 26 + LEGO1/lego3dwavepresenter.h | 25 + LEGO1/legoact2state.cpp | 1 + LEGO1/legoact2state.h | 26 + LEGO1/legoactioncontrolpresenter.cpp | 1 + LEGO1/legoactioncontrolpresenter.h | 25 + LEGO1/legoactor.h | 25 + LEGO1/legoactorpresenter.h | 25 + LEGO1/legoanimactor.cpp | 1 + LEGO1/legoanimactor.h | 11 + LEGO1/legoanimationmanager.cpp | 34 + LEGO1/legoanimationmanager.h | 29 +- LEGO1/legoanimmmpresenter.cpp | 7 + LEGO1/legoanimmmpresenter.h | 28 + LEGO1/legoanimpresenter.cpp | 13 + LEGO1/legoanimpresenter.h | 30 + LEGO1/legobuildingmanager.cpp | 17 + LEGO1/legobuildingmanager.h | 20 +- LEGO1/legocachesound.cpp | 19 + LEGO1/legocachesound.h | 31 + LEGO1/legocameracontroller.cpp | 13 + LEGO1/legocameracontroller.h | 29 + LEGO1/legocarbuild.cpp | 29 + LEGO1/legocarbuild.h | 31 + LEGO1/legocarbuildanimpresenter.cpp | 13 + LEGO1/legocarbuildanimpresenter.h | 28 + LEGO1/legocarraceactor.h | 24 + LEGO1/legocontrolmanager.cpp | 21 + LEGO1/legocontrolmanager.h | 30 + LEGO1/legoentity.cpp | 21 + LEGO1/legoentity.h | 31 +- LEGO1/legoentitypresenter.cpp | 19 + LEGO1/legoentitypresenter.h | 32 + LEGO1/legoextraactor.h | 24 + LEGO1/legoflctexturepresenter.cpp | 7 + LEGO1/legoflctexturepresenter.h | 22 + LEGO1/legohideanimpresenter.cpp | 12 + LEGO1/legohideanimpresenter.h | 31 + LEGO1/legoinputmanager.cpp | 22 + LEGO1/legoinputmanager.h | 7 + LEGO1/legojetski.cpp | 1 + LEGO1/legojetski.h | 26 + LEGO1/legojetskiraceactor.h | 24 + LEGO1/legoloadcachesoundpresenter.cpp | 19 + LEGO1/legoloadcachesoundpresenter.h | 26 + LEGO1/legolocomotionanimpresenter.cpp | 13 + LEGO1/legolocomotionanimpresenter.h | 30 + LEGO1/legoloopinganimpresenter.h | 25 + LEGO1/legomodelpresenter.h | 19 +- LEGO1/legonavcontroller.h | 17 +- LEGO1/legoomni.cpp | 18 + LEGO1/legoomni.h | 30 +- LEGO1/legopalettepresenter.cpp | 19 + LEGO1/legopalettepresenter.h | 33 + LEGO1/legopartpresenter.h | 17 +- LEGO1/legopathactor.cpp | 13 + LEGO1/legopathactor.h | 30 + LEGO1/legopathcontroller.cpp | 20 + LEGO1/legopathcontroller.h | 31 + LEGO1/legopathpresenter.cpp | 7 + LEGO1/legopathpresenter.h | 29 + LEGO1/legophonemepresenter.cpp | 19 + LEGO1/legophonemepresenter.h | 26 + LEGO1/legoplantmanager.cpp | 27 + LEGO1/legoplantmanager.h | 28 + LEGO1/legorace.cpp | 21 + LEGO1/legorace.h | 29 + LEGO1/legoraceactor.h | 25 + LEGO1/legosoundmanager.cpp | 20 + LEGO1/legosoundmanager.h | 20 + LEGO1/legostate.cpp | 6 + LEGO1/legostate.h | 27 + LEGO1/legotexturepresenter.cpp | 7 + LEGO1/legotexturepresenter.h | 28 + LEGO1/legoutil.h | 4 +- LEGO1/legovideomanager.cpp | 39 + LEGO1/legovideomanager.h | 5 + LEGO1/legoworld.cpp | 13 + LEGO1/legoworld.h | 21 +- LEGO1/legoworldpresenter.cpp | 19 + LEGO1/legoworldpresenter.h | 23 +- LEGO1/motorcycle.cpp | 7 + LEGO1/motorcycle.h | 28 + LEGO1/mxatomid.cpp | 8 +- LEGO1/mxatomid.h | 2 +- LEGO1/mxaudiopresenter.cpp | 1 + LEGO1/mxaudiopresenter.h | 24 + LEGO1/mxautolocker.h | 10 +- LEGO1/mxbackgroundaudiomanager.cpp | 19 + LEGO1/mxbackgroundaudiomanager.h | 22 +- LEGO1/mxcompositemediapresenter.cpp | 7 + LEGO1/mxcompositemediapresenter.h | 28 + LEGO1/mxcompositepresenter.cpp | 13 + LEGO1/mxcompositepresenter.h | 29 + LEGO1/mxcontrolpresenter.cpp | 7 + LEGO1/mxcontrolpresenter.h | 29 + LEGO1/mxcore.h | 13 +- LEGO1/mxdiskstreamcontroller.cpp | 21 + LEGO1/mxdiskstreamcontroller.h | 34 + LEGO1/mxdiskstreamprovider.cpp | 13 + LEGO1/mxdiskstreamprovider.h | 28 + LEGO1/mxdsaction.cpp | 13 + LEGO1/mxdsaction.h | 15 + LEGO1/mxdsanim.cpp | 13 + LEGO1/mxdsanim.h | 29 + LEGO1/mxdschunk.cpp | 13 + LEGO1/mxdschunk.h | 26 + LEGO1/mxdsevent.cpp | 13 + LEGO1/mxdsevent.h | 26 + LEGO1/mxdsfile.h | 33 +- LEGO1/mxdsmediaaction.cpp | 13 + LEGO1/mxdsmediaaction.h | 29 + LEGO1/mxdsmultiaction.cpp | 13 + LEGO1/mxdsmultiaction.h | 28 + LEGO1/mxdsobject.cpp | 6 + LEGO1/mxdsobject.h | 16 + LEGO1/mxdsobjectaction.cpp | 13 + LEGO1/mxdsobjectaction.h | 28 + LEGO1/mxdsparallelaction.cpp | 13 + LEGO1/mxdsparallelaction.h | 29 + LEGO1/mxdsselectaction.cpp | 13 + LEGO1/mxdsselectaction.h | 29 + LEGO1/mxdsserialaction.cpp | 13 + LEGO1/mxdsserialaction.h | 28 + LEGO1/mxdssound.cpp | 13 + LEGO1/mxdssound.h | 29 + LEGO1/mxdssource.h | 16 +- LEGO1/mxdsstill.cpp | 13 + LEGO1/mxdsstill.h | 28 + LEGO1/mxdssubscriber.cpp | 13 + LEGO1/mxdssubscriber.h | 28 + LEGO1/mxentity.cpp | 13 + LEGO1/mxentity.h | 30 + LEGO1/mxeventmanager.cpp | 13 + LEGO1/mxeventmanager.h | 11 +- LEGO1/mxeventpresenter.cpp | 19 + LEGO1/mxeventpresenter.h | 32 + LEGO1/mxflcpresenter.cpp | 13 + LEGO1/mxflcpresenter.h | 28 + LEGO1/mxloopingflcpresenter.cpp | 19 + LEGO1/mxloopingflcpresenter.h | 25 + LEGO1/mxloopingmidipresenter.h | 25 + LEGO1/mxloopingsmkpresenter.cpp | 19 + LEGO1/mxloopingsmkpresenter.h | 25 + LEGO1/mxmediapresenter.cpp | 14 + LEGO1/mxmediapresenter.h | 35 + LEGO1/mxmidipresenter.h | 11 + LEGO1/mxmusicmanager.h | 6 +- LEGO1/mxmusicpresenter.cpp | 7 + LEGO1/mxmusicpresenter.h | 13 + LEGO1/mxnextactiondatastart.h | 12 + LEGO1/mxnotificationmanager.cpp | 15 + LEGO1/mxnotificationmanager.h | 12 +- LEGO1/mxobjectfactory.h | 5 +- LEGO1/mxomni.h | 3 +- LEGO1/mxpalette.h | 4 +- LEGO1/mxpresenter.cpp | 134 + LEGO1/mxpresenter.h | 73 +- LEGO1/mxramstreamcontroller.h | 12 + LEGO1/mxramstreamprovider.h | 12 + LEGO1/mxresult.h | 8 - LEGO1/mxsmkpresenter.cpp | 13 + LEGO1/mxsmkpresenter.h | 18 + LEGO1/mxsoundmanager.cpp | 13 + LEGO1/mxsoundmanager.h | 10 +- LEGO1/mxsoundpresenter.cpp | 1 + LEGO1/mxsoundpresenter.h | 25 + LEGO1/mxstillpresenter.cpp | 1 + LEGO1/mxstillpresenter.h | 13 + LEGO1/mxstreamchunk.h | 12 + LEGO1/mxstreamcontroller.h | 18 +- LEGO1/mxstreamer.cpp | 23 + LEGO1/mxstreamer.h | 9 +- LEGO1/mxstreamprovider.h | 12 + LEGO1/mxstring.h | 1 + LEGO1/mxticklemanager.h | 1 + LEGO1/mxtimer.h | 2 + LEGO1/mxtransitionmanager.cpp | 21 + LEGO1/mxtransitionmanager.h | 9 +- LEGO1/mxtypes.h | 10 +- LEGO1/mxunknown100dc6b0.cpp | 2 +- LEGO1/mxunknown100dc6b0.h | 3 +- LEGO1/mxvariabletable.h | 2 + LEGO1/mxvideomanager.cpp | 14 + LEGO1/mxvideomanager.h | 8 +- LEGO1/mxvideopresenter.cpp | 1 + LEGO1/mxvideopresenter.h | 23 + LEGO1/mxwavepresenter.cpp | 7 + LEGO1/mxwavepresenter.h | 16 + LEGO1/pizza.cpp | 13 + LEGO1/pizza.h | 16 + LEGO1/pizzamissionstate.cpp | 1 + LEGO1/pizzamissionstate.h | 25 + LEGO1/pizzeria.cpp | 1 + LEGO1/pizzeria.h | 13 + LEGO1/pizzeriastate.cpp | 7 + LEGO1/pizzeriastate.h | 15 + LEGO1/police.cpp | 21 + LEGO1/police.h | 19 + LEGO1/policeentity.cpp | 1 + LEGO1/policeentity.h | 13 + LEGO1/policestate.cpp | 7 + LEGO1/policestate.h | 27 + LEGO1/racecar.cpp | 13 + LEGO1/racecar.h | 15 + LEGO1/racestandsentity.cpp | 1 + LEGO1/racestandsentity.h | 12 + LEGO1/racestate.cpp | 7 + LEGO1/racestate.h | 28 + LEGO1/radio.cpp | 7 + LEGO1/radio.h | 14 + LEGO1/radiostate.cpp | 7 + LEGO1/radiostate.h | 28 + LEGO1/registrationbook.cpp | 21 + LEGO1/registrationbook.h | 18 + LEGO1/score.cpp | 21 + LEGO1/score.h | 18 + LEGO1/scorestate.cpp | 1 + LEGO1/scorestate.h | 26 + LEGO1/skateboard.cpp | 7 + LEGO1/skateboard.h | 15 + LEGO1/towtrack.cpp | 7 + LEGO1/towtrack.h | 16 + LEGO1/towtrackmissionstate.cpp | 7 + LEGO1/towtrackmissionstate.h | 28 + isle.mak | 3384 ++++++++++++++++++++++++- isle.mdp | Bin 49664 -> 78336 bytes tools/reccmp/reccmp.py | 2 +- 307 files changed, 8764 insertions(+), 165 deletions(-) rename ISLE/{isle.cpp => isleapp.cpp} (99%) rename ISLE/{isle.h => isleapp.h} (94%) create mode 100644 LEGO1/act1state.cpp create mode 100644 LEGO1/act1state.h create mode 100644 LEGO1/act2brick.cpp create mode 100644 LEGO1/act2brick.h create mode 100644 LEGO1/act2policestation.cpp create mode 100644 LEGO1/act2policestation.h create mode 100644 LEGO1/act3.cpp create mode 100644 LEGO1/act3.h create mode 100644 LEGO1/act3actor.h create mode 100644 LEGO1/act3shark.cpp create mode 100644 LEGO1/act3shark.h create mode 100644 LEGO1/act3state.cpp create mode 100644 LEGO1/act3state.h create mode 100644 LEGO1/ambulance.cpp create mode 100644 LEGO1/ambulance.h create mode 100644 LEGO1/ambulancemissionstate.cpp create mode 100644 LEGO1/ambulancemissionstate.h create mode 100644 LEGO1/animstate.cpp create mode 100644 LEGO1/animstate.h create mode 100644 LEGO1/beachhouseentity.cpp create mode 100644 LEGO1/beachhouseentity.h create mode 100644 LEGO1/bike.cpp create mode 100644 LEGO1/bike.h create mode 100644 LEGO1/buildingentity.cpp create mode 100644 LEGO1/buildingentity.h create mode 100644 LEGO1/bumpbouy.cpp create mode 100644 LEGO1/bumpbouy.h create mode 100644 LEGO1/carrace.cpp create mode 100644 LEGO1/carrace.h create mode 100644 LEGO1/carracestate.h create mode 100644 LEGO1/doors.h create mode 100644 LEGO1/dunebuggy.cpp create mode 100644 LEGO1/dunebuggy.h create mode 100644 LEGO1/elevatorbottom.cpp create mode 100644 LEGO1/elevatorbottom.h create mode 100644 LEGO1/gasstation.cpp create mode 100644 LEGO1/gasstation.h create mode 100644 LEGO1/gasstationentity.cpp create mode 100644 LEGO1/gasstationentity.h create mode 100644 LEGO1/gasstationstate.cpp create mode 100644 LEGO1/gasstationstate.h create mode 100644 LEGO1/helicopter.cpp create mode 100644 LEGO1/helicopter.h create mode 100644 LEGO1/helicopterstate.cpp create mode 100644 LEGO1/helicopterstate.h create mode 100644 LEGO1/historybook.cpp create mode 100644 LEGO1/historybook.h create mode 100644 LEGO1/hospital.cpp create mode 100644 LEGO1/hospital.h create mode 100644 LEGO1/hospitalentity.cpp create mode 100644 LEGO1/hospitalentity.h create mode 100644 LEGO1/hospitalstate.cpp create mode 100644 LEGO1/hospitalstate.h create mode 100644 LEGO1/infocenter.cpp create mode 100644 LEGO1/infocenter.h create mode 100644 LEGO1/infocenterdoor.cpp create mode 100644 LEGO1/infocenterdoor.h create mode 100644 LEGO1/infocenterentity.cpp create mode 100644 LEGO1/infocenterentity.h create mode 100644 LEGO1/infocenterstate.cpp create mode 100644 LEGO1/infocenterstate.h create mode 100644 LEGO1/isle.cpp create mode 100644 LEGO1/isle.h create mode 100644 LEGO1/isleactor.cpp create mode 100644 LEGO1/isleactor.h create mode 100644 LEGO1/islepathactor.cpp create mode 100644 LEGO1/islepathactor.h create mode 100644 LEGO1/jetski.cpp create mode 100644 LEGO1/jetski.h create mode 100644 LEGO1/jetskirace.cpp create mode 100644 LEGO1/jetskirace.h create mode 100644 LEGO1/jetskiracestate.h create mode 100644 LEGO1/jukebox.cpp create mode 100644 LEGO1/jukebox.h create mode 100644 LEGO1/jukeboxentity.cpp create mode 100644 LEGO1/jukeboxentity.h create mode 100644 LEGO1/jukeboxstate.cpp create mode 100644 LEGO1/jukeboxstate.h create mode 100644 LEGO1/lego3dwavepresenter.h create mode 100644 LEGO1/legoact2state.cpp create mode 100644 LEGO1/legoact2state.h create mode 100644 LEGO1/legoactioncontrolpresenter.cpp create mode 100644 LEGO1/legoactioncontrolpresenter.h create mode 100644 LEGO1/legoactor.h create mode 100644 LEGO1/legoactorpresenter.h create mode 100644 LEGO1/legoanimactor.cpp create mode 100644 LEGO1/legoanimactor.h create mode 100644 LEGO1/legoanimationmanager.cpp create mode 100644 LEGO1/legoanimmmpresenter.cpp create mode 100644 LEGO1/legoanimmmpresenter.h create mode 100644 LEGO1/legoanimpresenter.cpp create mode 100644 LEGO1/legoanimpresenter.h create mode 100644 LEGO1/legobuildingmanager.cpp create mode 100644 LEGO1/legocachesound.cpp create mode 100644 LEGO1/legocachesound.h create mode 100644 LEGO1/legocameracontroller.cpp create mode 100644 LEGO1/legocameracontroller.h create mode 100644 LEGO1/legocarbuild.cpp create mode 100644 LEGO1/legocarbuild.h create mode 100644 LEGO1/legocarbuildanimpresenter.cpp create mode 100644 LEGO1/legocarbuildanimpresenter.h create mode 100644 LEGO1/legocarraceactor.h create mode 100644 LEGO1/legocontrolmanager.cpp create mode 100644 LEGO1/legocontrolmanager.h create mode 100644 LEGO1/legoentity.cpp create mode 100644 LEGO1/legoentitypresenter.cpp create mode 100644 LEGO1/legoentitypresenter.h create mode 100644 LEGO1/legoextraactor.h create mode 100644 LEGO1/legoflctexturepresenter.cpp create mode 100644 LEGO1/legoflctexturepresenter.h create mode 100644 LEGO1/legohideanimpresenter.cpp create mode 100644 LEGO1/legohideanimpresenter.h create mode 100644 LEGO1/legoinputmanager.cpp create mode 100644 LEGO1/legojetski.cpp create mode 100644 LEGO1/legojetski.h create mode 100644 LEGO1/legojetskiraceactor.h create mode 100644 LEGO1/legoloadcachesoundpresenter.cpp create mode 100644 LEGO1/legoloadcachesoundpresenter.h create mode 100644 LEGO1/legolocomotionanimpresenter.cpp create mode 100644 LEGO1/legolocomotionanimpresenter.h create mode 100644 LEGO1/legoloopinganimpresenter.h create mode 100644 LEGO1/legopalettepresenter.cpp create mode 100644 LEGO1/legopalettepresenter.h create mode 100644 LEGO1/legopathactor.cpp create mode 100644 LEGO1/legopathactor.h create mode 100644 LEGO1/legopathcontroller.cpp create mode 100644 LEGO1/legopathcontroller.h create mode 100644 LEGO1/legopathpresenter.cpp create mode 100644 LEGO1/legopathpresenter.h create mode 100644 LEGO1/legophonemepresenter.cpp create mode 100644 LEGO1/legophonemepresenter.h create mode 100644 LEGO1/legoplantmanager.cpp create mode 100644 LEGO1/legoplantmanager.h create mode 100644 LEGO1/legorace.cpp create mode 100644 LEGO1/legorace.h create mode 100644 LEGO1/legoraceactor.h create mode 100644 LEGO1/legosoundmanager.cpp create mode 100644 LEGO1/legosoundmanager.h create mode 100644 LEGO1/legostate.cpp create mode 100644 LEGO1/legostate.h create mode 100644 LEGO1/legotexturepresenter.cpp create mode 100644 LEGO1/legotexturepresenter.h create mode 100644 LEGO1/legovideomanager.cpp create mode 100644 LEGO1/legoworld.cpp create mode 100644 LEGO1/legoworldpresenter.cpp create mode 100644 LEGO1/motorcycle.cpp create mode 100644 LEGO1/motorcycle.h create mode 100644 LEGO1/mxaudiopresenter.cpp create mode 100644 LEGO1/mxaudiopresenter.h create mode 100644 LEGO1/mxbackgroundaudiomanager.cpp create mode 100644 LEGO1/mxcompositemediapresenter.cpp create mode 100644 LEGO1/mxcompositemediapresenter.h create mode 100644 LEGO1/mxcompositepresenter.cpp create mode 100644 LEGO1/mxcompositepresenter.h create mode 100644 LEGO1/mxcontrolpresenter.cpp create mode 100644 LEGO1/mxcontrolpresenter.h create mode 100644 LEGO1/mxdiskstreamcontroller.cpp create mode 100644 LEGO1/mxdiskstreamcontroller.h create mode 100644 LEGO1/mxdiskstreamprovider.cpp create mode 100644 LEGO1/mxdiskstreamprovider.h create mode 100644 LEGO1/mxdsaction.cpp create mode 100644 LEGO1/mxdsanim.cpp create mode 100644 LEGO1/mxdsanim.h create mode 100644 LEGO1/mxdschunk.cpp create mode 100644 LEGO1/mxdschunk.h create mode 100644 LEGO1/mxdsevent.cpp create mode 100644 LEGO1/mxdsevent.h create mode 100644 LEGO1/mxdsmediaaction.cpp create mode 100644 LEGO1/mxdsmediaaction.h create mode 100644 LEGO1/mxdsmultiaction.cpp create mode 100644 LEGO1/mxdsmultiaction.h create mode 100644 LEGO1/mxdsobjectaction.cpp create mode 100644 LEGO1/mxdsobjectaction.h create mode 100644 LEGO1/mxdsparallelaction.cpp create mode 100644 LEGO1/mxdsparallelaction.h create mode 100644 LEGO1/mxdsselectaction.cpp create mode 100644 LEGO1/mxdsselectaction.h create mode 100644 LEGO1/mxdsserialaction.cpp create mode 100644 LEGO1/mxdsserialaction.h create mode 100644 LEGO1/mxdssound.cpp create mode 100644 LEGO1/mxdssound.h create mode 100644 LEGO1/mxdsstill.cpp create mode 100644 LEGO1/mxdsstill.h create mode 100644 LEGO1/mxdssubscriber.cpp create mode 100644 LEGO1/mxdssubscriber.h create mode 100644 LEGO1/mxentity.cpp create mode 100644 LEGO1/mxentity.h create mode 100644 LEGO1/mxeventmanager.cpp create mode 100644 LEGO1/mxeventpresenter.cpp create mode 100644 LEGO1/mxeventpresenter.h create mode 100644 LEGO1/mxflcpresenter.cpp create mode 100644 LEGO1/mxflcpresenter.h create mode 100644 LEGO1/mxloopingflcpresenter.cpp create mode 100644 LEGO1/mxloopingflcpresenter.h create mode 100644 LEGO1/mxloopingmidipresenter.h create mode 100644 LEGO1/mxloopingsmkpresenter.cpp create mode 100644 LEGO1/mxloopingsmkpresenter.h create mode 100644 LEGO1/mxmediapresenter.cpp create mode 100644 LEGO1/mxmediapresenter.h create mode 100644 LEGO1/mxmidipresenter.h create mode 100644 LEGO1/mxmusicpresenter.cpp create mode 100644 LEGO1/mxmusicpresenter.h create mode 100644 LEGO1/mxnextactiondatastart.h create mode 100644 LEGO1/mxnotificationmanager.cpp create mode 100644 LEGO1/mxpresenter.cpp create mode 100644 LEGO1/mxramstreamcontroller.h create mode 100644 LEGO1/mxramstreamprovider.h delete mode 100644 LEGO1/mxresult.h create mode 100644 LEGO1/mxsmkpresenter.cpp create mode 100644 LEGO1/mxsmkpresenter.h create mode 100644 LEGO1/mxsoundmanager.cpp create mode 100644 LEGO1/mxsoundpresenter.cpp create mode 100644 LEGO1/mxsoundpresenter.h create mode 100644 LEGO1/mxstillpresenter.cpp create mode 100644 LEGO1/mxstillpresenter.h create mode 100644 LEGO1/mxstreamchunk.h create mode 100644 LEGO1/mxstreamer.cpp create mode 100644 LEGO1/mxstreamprovider.h create mode 100644 LEGO1/mxtransitionmanager.cpp create mode 100644 LEGO1/mxvideopresenter.cpp create mode 100644 LEGO1/mxvideopresenter.h create mode 100644 LEGO1/mxwavepresenter.cpp create mode 100644 LEGO1/mxwavepresenter.h create mode 100644 LEGO1/pizza.cpp create mode 100644 LEGO1/pizza.h create mode 100644 LEGO1/pizzamissionstate.cpp create mode 100644 LEGO1/pizzamissionstate.h create mode 100644 LEGO1/pizzeria.cpp create mode 100644 LEGO1/pizzeria.h create mode 100644 LEGO1/pizzeriastate.cpp create mode 100644 LEGO1/pizzeriastate.h create mode 100644 LEGO1/police.cpp create mode 100644 LEGO1/police.h create mode 100644 LEGO1/policeentity.cpp create mode 100644 LEGO1/policeentity.h create mode 100644 LEGO1/policestate.cpp create mode 100644 LEGO1/policestate.h create mode 100644 LEGO1/racecar.cpp create mode 100644 LEGO1/racecar.h create mode 100644 LEGO1/racestandsentity.cpp create mode 100644 LEGO1/racestandsentity.h create mode 100644 LEGO1/racestate.cpp create mode 100644 LEGO1/racestate.h create mode 100644 LEGO1/radio.cpp create mode 100644 LEGO1/radio.h create mode 100644 LEGO1/radiostate.cpp create mode 100644 LEGO1/radiostate.h create mode 100644 LEGO1/registrationbook.cpp create mode 100644 LEGO1/registrationbook.h create mode 100644 LEGO1/score.cpp create mode 100644 LEGO1/score.h create mode 100644 LEGO1/scorestate.cpp create mode 100644 LEGO1/scorestate.h create mode 100644 LEGO1/skateboard.cpp create mode 100644 LEGO1/skateboard.h create mode 100644 LEGO1/towtrack.cpp create mode 100644 LEGO1/towtrack.h create mode 100644 LEGO1/towtrackmissionstate.cpp create mode 100644 LEGO1/towtrackmissionstate.h diff --git a/ISLE/isle.cpp b/ISLE/isleapp.cpp similarity index 99% rename from ISLE/isle.cpp rename to ISLE/isleapp.cpp index 938de251..3697e816 100644 --- a/ISLE/isle.cpp +++ b/ISLE/isleapp.cpp @@ -1,4 +1,4 @@ -#include "isle.h" +#include "isleapp.h" #include "define.h" #include diff --git a/ISLE/isle.h b/ISLE/isleapp.h similarity index 94% rename from ISLE/isle.h rename to ISLE/isleapp.h index 7f01cf7d..d31c6f42 100644 --- a/ISLE/isle.h +++ b/ISLE/isleapp.h @@ -1,9 +1,9 @@ -#ifndef ISLE_H -#define ISLE_H +#ifndef ISLEAPP_H +#define ISLEAPP_H #include -#include "mxresult.h" +#include "mxtypes.h" #include "mxvideoparam.h" class IsleApp @@ -73,4 +73,4 @@ class IsleApp HCURSOR m_cursorCurrent; }; -#endif // ISLE_H +#endif // ISLEAPP_H diff --git a/LEGO1/act1state.cpp b/LEGO1/act1state.cpp new file mode 100644 index 00000000..556e6dbc --- /dev/null +++ b/LEGO1/act1state.cpp @@ -0,0 +1,8 @@ +#include "act1state.h" + +// OFFSET: LEGO1 0x100334b0 STUB +Act1State::Act1State() +{ + // TODO +} + diff --git a/LEGO1/act1state.h b/LEGO1/act1state.h new file mode 100644 index 00000000..edcb9e9d --- /dev/null +++ b/LEGO1/act1state.h @@ -0,0 +1,27 @@ +#ifndef ACT1STATE_H +#define ACT1STATE_H + +#include "legostate.h" + +// VTABLE 0x100d7028 +// SIZE 0x26c +class Act1State : public LegoState +{ +public: + Act1State(); + + // OFFSET: LEGO1 0x100338a0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0154 + return "Act1State"; + }; + + // OFFSET: LEGO1 0x100338b0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Act1State::ClassName()) || LegoState::IsA(name); + }; +}; + +#endif // ACT1STATE_H diff --git a/LEGO1/act2brick.cpp b/LEGO1/act2brick.cpp new file mode 100644 index 00000000..4bb2f3f9 --- /dev/null +++ b/LEGO1/act2brick.cpp @@ -0,0 +1,29 @@ +#include "act2brick.h" + +// OFFSET: LEGO1 0x1007a2b0 STUB +Act2Brick::Act2Brick() +{ + // TODO +} + +// OFFSET: LEGO1 0x1007a470 STUB +Act2Brick::~Act2Brick() +{ + // TODO +} + +// STUB OFFSET: LEGO1 0x1007a8c0 STUB +long Act2Brick::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x1007a7f0 STUB +long Act2Brick::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/act2brick.h b/LEGO1/act2brick.h new file mode 100644 index 00000000..d5703081 --- /dev/null +++ b/LEGO1/act2brick.h @@ -0,0 +1,32 @@ +#ifndef ACT2BRICK_H +#define ACT2BRICK_H + +#include "legopathactor.h" + +// VTABLE 0x100d9b60 +// SIZE 0x194 +class Act2Brick : public LegoPathActor +{ +public: + Act2Brick(); + virtual ~Act2Brick() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + virtual long Tickle() override; // vtable+0x08 + + // OFFSET: LEGO1 0x1007a360 + inline virtual const char *ClassName() override // vtable+0x0c + { + // 0x100f0438 + return "Act2Brick"; + } + + // OFFSET: LEGO1 0x1007a370 + inline virtual MxBool IsA(const char *name) override // vtable+0x10 + { + return !strcmp(Act2Brick::ClassName(), name) || LegoEntity::IsA(name); + } + +}; + +#endif // ACT2BRICK_H diff --git a/LEGO1/act2policestation.cpp b/LEGO1/act2policestation.cpp new file mode 100644 index 00000000..14f69db4 --- /dev/null +++ b/LEGO1/act2policestation.cpp @@ -0,0 +1,9 @@ +#include "act2policestation.h" + +// OFFSET: LEGO1 0x1004e0e0 STUB +long Act2PoliceStation::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/act2policestation.h b/LEGO1/act2policestation.h new file mode 100644 index 00000000..e935e252 --- /dev/null +++ b/LEGO1/act2policestation.h @@ -0,0 +1,27 @@ +#ifndef ACT2POLICESTATION_H +#define ACT2POLICESTATION_H + +#include "legoentity.h" + +// VTABLE 0x100d53a8 +// SIZE 0x68 +class Act2PoliceStation : public LegoEntity +{ +public: + virtual long Notify(MxParam &p) override; // vtable+0x4 + + // OFFSET: LEGO1 0x1000e200 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f03fc + return "Act2PoliceStation"; + } + + // OFFSET: LEGO1 0x1000e210 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Act2PoliceStation::ClassName()) || LegoEntity::IsA(name); + } +}; + +#endif // ACT2POLICESTATION_H diff --git a/LEGO1/act3.cpp b/LEGO1/act3.cpp new file mode 100644 index 00000000..eca84fbf --- /dev/null +++ b/LEGO1/act3.cpp @@ -0,0 +1,13 @@ +#include "act3.h" + +// OFFSET: LEGO1 0x10072270 STUB +Act3::Act3() +{ + // TODO +} + +// OFFSET: LEGO1 0x100726a0 STUB +Act3::~Act3() +{ + // TODO +} diff --git a/LEGO1/act3.h b/LEGO1/act3.h new file mode 100644 index 00000000..d0cad28a --- /dev/null +++ b/LEGO1/act3.h @@ -0,0 +1,31 @@ +#ifndef ACT3_H +#define ACT3_H + +#include "legoworld.h" + +// VTABLE 0x100d9628 +// SIZE 0x4274 +class Act3 : public LegoWorld +{ +public: + Act3(); + + virtual ~Act3() override; // vtable+00 + + // OFFSET: LEGO1 0x10072510 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f013c + return "Act3"; + } + + // OFFSET: LEGO1 0x10072520 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Act3::ClassName()) || LegoWorld::IsA(name); + } + +}; + + +#endif // ACT3_H diff --git a/LEGO1/act3actor.h b/LEGO1/act3actor.h new file mode 100644 index 00000000..a88884a1 --- /dev/null +++ b/LEGO1/act3actor.h @@ -0,0 +1,18 @@ +#ifndef ACT3ACTOR_H +#define ACT3ACTOR_H + +// FIXME: Uncertain location. There are three vtables which eventually call this +// class' ClassName() function, but none of them call it directly. +class Act3Actor +{ +public: + // OFFSET: LEGO1 0x100431b0 + inline virtual const char *ClassName() override + { + // 0x100f03ac + return "Act3Actor"; + } + +}; + +#endif // ACT3ACTOR_H diff --git a/LEGO1/act3shark.cpp b/LEGO1/act3shark.cpp new file mode 100644 index 00000000..95e5a0e0 --- /dev/null +++ b/LEGO1/act3shark.cpp @@ -0,0 +1 @@ +#include "act3shark.h" diff --git a/LEGO1/act3shark.h b/LEGO1/act3shark.h new file mode 100644 index 00000000..6cbdbc09 --- /dev/null +++ b/LEGO1/act3shark.h @@ -0,0 +1,18 @@ +#ifndef ACT3SHARK_H +#define ACT3SHARK_H + +#include "legoanimactor.h" + +// VTABLE 0x100d7920 +class Act3Shark : public LegoAnimActor +{ +public: + // OFFSET: LEGO1 0x100430c0 + inline virtual const char *ClassName() const override + { + // 0x100f03a0 + return "Act3Shark"; + } +}; + +#endif // ACT3SHARK_H diff --git a/LEGO1/act3state.cpp b/LEGO1/act3state.cpp new file mode 100644 index 00000000..5e56a31b --- /dev/null +++ b/LEGO1/act3state.cpp @@ -0,0 +1,7 @@ +#include "act3state.h" + +// OFFSET: LEGO1 0x1000e2f0 +MxBool Act3State::VTable0x14() +{ + return FALSE; +} diff --git a/LEGO1/act3state.h b/LEGO1/act3state.h new file mode 100644 index 00000000..17c19ca6 --- /dev/null +++ b/LEGO1/act3state.h @@ -0,0 +1,37 @@ +#ifndef ACT3STATE_H +#define ACT3STATE_H + +#include "legostate.h" + +// VTABLE 0x100d4fc8 +// SIZE 0xc +class Act3State : public LegoState +{ +public: + inline Act3State() + { + m_unk08 = 0; + } + + // OFFSET: LEGO1 0x1000e300 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f03f0 + return "Act3State"; + } + + // OFFSET: LEGO1 0x1000e310 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Act3State::ClassName()) || LegoState::IsA(name); + } + + virtual MxBool VTable0x14() override; + +private: + // FIXME: May be part of LegoState? Uncertain... + MxU32 m_unk08; + +}; + +#endif // ACT3STATE_H diff --git a/LEGO1/ambulance.cpp b/LEGO1/ambulance.cpp new file mode 100644 index 00000000..6b5e76ad --- /dev/null +++ b/LEGO1/ambulance.cpp @@ -0,0 +1,7 @@ +#include "ambulance.h" + +// OFFSET: LEGO1 0x10035ee0 STUB +Ambulance::Ambulance() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/ambulance.h b/LEGO1/ambulance.h new file mode 100644 index 00000000..dd89af3c --- /dev/null +++ b/LEGO1/ambulance.h @@ -0,0 +1,28 @@ +#ifndef AMBULANCE_H +#define AMBULANCE_H + +#include "islepathactor.h" + +// VTABLE 0x100d71a8 +// SIZE 0x184 +class Ambulance : public IslePathActor +{ +public: + Ambulance(); + + // OFFSET: LEGO1 0x10035fa0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f03c4 + return "Ambulance"; + } + + // OFFSET: LEGO1 0x10035fb0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Ambulance::ClassName()) || IslePathActor::IsA(name); + } + +}; + +#endif // AMBULANCE_H diff --git a/LEGO1/ambulancemissionstate.cpp b/LEGO1/ambulancemissionstate.cpp new file mode 100644 index 00000000..6b20ce3a --- /dev/null +++ b/LEGO1/ambulancemissionstate.cpp @@ -0,0 +1,7 @@ +#include "ambulancemissionstate.h" + +// OFFSET: LEGO1 0x100373a0 STUB +AmbulanceMissionState::AmbulanceMissionState() +{ + // TODO +} diff --git a/LEGO1/ambulancemissionstate.h b/LEGO1/ambulancemissionstate.h new file mode 100644 index 00000000..572bba9a --- /dev/null +++ b/LEGO1/ambulancemissionstate.h @@ -0,0 +1,29 @@ +#ifndef AMBULANCEMISSIONSTATE_H +#define AMBULANCEMISSIONSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d72a0 +// SIZE 0x24 +class AmbulanceMissionState : public LegoState +{ +public: + AmbulanceMissionState(); + + // OFFSET: LEGO1 0x10037600 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f00e8 + return "AmbulanceMissionState"; + } + + // OFFSET: LEGO1 0x10037610 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, AmbulanceMissionState::ClassName()) || LegoState::IsA(name); + } + +}; + + +#endif // AMBULANCEMISSIONSTATE_H diff --git a/LEGO1/animstate.cpp b/LEGO1/animstate.cpp new file mode 100644 index 00000000..887328bb --- /dev/null +++ b/LEGO1/animstate.cpp @@ -0,0 +1,13 @@ +#include "animstate.h" + +// OFFSET: LEGO1 0x10064ff0 STUB +AnimState::AnimState() +{ + // TODO +} + +// OFFSET: LEGO1 0x10065150 STUB +AnimState::~AnimState() +{ + // TODO +} diff --git a/LEGO1/animstate.h b/LEGO1/animstate.h new file mode 100644 index 00000000..2095c1cb --- /dev/null +++ b/LEGO1/animstate.h @@ -0,0 +1,29 @@ +#ifndef ANIMSTATE_H +#define ANIMSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d8d80 +// SIZE 0x1c +class AnimState : public LegoState +{ +public: + AnimState(); + virtual ~AnimState() override; // vtable+0x0 + + // OFFSET: LEGO1 0x10065070 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0460 + return "AnimState"; + } + + // OFFSET: LEGO1 0x10065080 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, AnimState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // ANIMSTATE_H diff --git a/LEGO1/beachhouseentity.cpp b/LEGO1/beachhouseentity.cpp new file mode 100644 index 00000000..029e022f --- /dev/null +++ b/LEGO1/beachhouseentity.cpp @@ -0,0 +1,9 @@ +#include "beachhouseentity.h" + +// OFFSET: LEGO1 0x100150a0 STUB +long BeachHouseEntity::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/beachhouseentity.h b/LEGO1/beachhouseentity.h new file mode 100644 index 00000000..1749ff54 --- /dev/null +++ b/LEGO1/beachhouseentity.h @@ -0,0 +1,27 @@ +#ifndef BEACHHOUSEENTITY_H +#define BEACHHOUSEENTITY_H + +#include "buildingentity.h" + +// VTABLE 0x100d4a18 +// SIZE 0x68 +class BeachHouseEntity : public BuildingEntity +{ +public: + virtual long Notify(MxParam &p) override; // vtable+04 + + // OFFSET: LEGO1 0x1000ee80 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0314 + return "BeachHouseEntity"; + } + + // OFFSET: LEGO1 0x1000ee90 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, BeachHouseEntity::ClassName()) || BuildingEntity::IsA(name); + } +}; + +#endif // BEACHHOUSEENTITY_H diff --git a/LEGO1/bike.cpp b/LEGO1/bike.cpp new file mode 100644 index 00000000..ac741a44 --- /dev/null +++ b/LEGO1/bike.cpp @@ -0,0 +1,8 @@ +#include "bike.h" + +// OFFSET: LEGO1 0x10076670 STUB +Bike::Bike() +{ + // TODO +} + diff --git a/LEGO1/bike.h b/LEGO1/bike.h new file mode 100644 index 00000000..8d2de0f1 --- /dev/null +++ b/LEGO1/bike.h @@ -0,0 +1,29 @@ +#ifndef BIKE_H +#define BIKE_H + +#include "islepathactor.h" + +// VTABLE 0x100d9808 +// SIZE 0x164 +class Bike : public IslePathActor +{ +public: + Bike(); + + // OFFSET: LEGO1 0x100766f0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f03d0 + return "Bike"; + } + + // OFFSET: LEGO1 0x10076700 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Bike::ClassName()) || IslePathActor::IsA(name); + } + +}; + + +#endif // BIKE_H diff --git a/LEGO1/buildingentity.cpp b/LEGO1/buildingentity.cpp new file mode 100644 index 00000000..b4611955 --- /dev/null +++ b/LEGO1/buildingentity.cpp @@ -0,0 +1,13 @@ +#include "buildingentity.h" + +// OFFSET: LEGO1 0x10014e20 STUB +BuildingEntity::BuildingEntity() +{ + // TODO +} + +// OFFSET: LEGO1 0x10015030 STUB +BuildingEntity::~BuildingEntity() +{ + // TODO +} diff --git a/LEGO1/buildingentity.h b/LEGO1/buildingentity.h new file mode 100644 index 00000000..0f515cb0 --- /dev/null +++ b/LEGO1/buildingentity.h @@ -0,0 +1,28 @@ +#ifndef BUILDINGENTITY_H +#define BUILDINGENTITY_H + +#include "legoentity.h" + +// VTABLE 0x100d5c88 +// SIZE <= 0x68, hard to tell because it's always constructed as a derivative +class BuildingEntity : public LegoEntity +{ +public: + BuildingEntity(); + virtual ~BuildingEntity() override; // vtable+0x0 + + // OFFSET: LEGO1 0x10014f20 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f07e8 + return "BuildingEntity"; + } + + // OFFSET: LEGO1 0x10014f30 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, BuildingEntity::ClassName()) || LegoEntity::IsA(name); + } +}; + +#endif // BUILDINGENTITY_H diff --git a/LEGO1/bumpbouy.cpp b/LEGO1/bumpbouy.cpp new file mode 100644 index 00000000..c4c8069d --- /dev/null +++ b/LEGO1/bumpbouy.cpp @@ -0,0 +1 @@ +#include "bumpbouy.h" diff --git a/LEGO1/bumpbouy.h b/LEGO1/bumpbouy.h new file mode 100644 index 00000000..58553153 --- /dev/null +++ b/LEGO1/bumpbouy.h @@ -0,0 +1,25 @@ +#ifndef BUMPBOUY_H +#define BUMPBOUY_H + +#include "legoanimactor.h" +#include "mxtypes.h" + +// VTABLE 0x100d6790 +class BumpBouy : public LegoAnimActor +{ +public: + // OFFSET: LEGO1 0x100274e0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0394 + return "BumpBouy"; + } + + // OFFSET: LEGO1 0x10027500 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, BumpBouy::ClassName()) || LegoAnimActor::IsA(name); + } +}; + +#endif // BUMPBOUY_H diff --git a/LEGO1/carrace.cpp b/LEGO1/carrace.cpp new file mode 100644 index 00000000..7c5c522c --- /dev/null +++ b/LEGO1/carrace.cpp @@ -0,0 +1,7 @@ +#include "carrace.h" + +// OFFSET: LEGO1 0x10016a90 STUB +CarRace::CarRace() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/carrace.h b/LEGO1/carrace.h new file mode 100644 index 00000000..23230da0 --- /dev/null +++ b/LEGO1/carrace.h @@ -0,0 +1,27 @@ +#ifndef CARRACE_H +#define CARRACE_H + +#include "legorace.h" + +// VTABLE 0x100d5e50 +// SIZE 0x154 +class CarRace : public LegoRace +{ +public: + CarRace(); + + // OFFSET: LEGO1 0x10016b20 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0528 + return "CarRace"; + } + + // OFFSET: LEGO1 0x10016b30 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, CarRace::ClassName()) || LegoRace::IsA(name); + } +}; + +#endif // CARRACE_H diff --git a/LEGO1/carracestate.h b/LEGO1/carracestate.h new file mode 100644 index 00000000..49e77b5d --- /dev/null +++ b/LEGO1/carracestate.h @@ -0,0 +1,25 @@ +#ifndef CARRACESTATE_H +#define CARRACESTATE_H + +#include "racestate.h" + +// VTABLE 0x100d4b70 +// SIZE 0x2c +class CarRaceState : public RaceState +{ +public: + // OFFSET: LEGO1 0x1000dd30 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f009c + return "CarRaceState"; + } + + // OFFSET: LEGO1 0x1000dd40 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, CarRaceState::ClassName()) || RaceState::IsA(name); + } +}; + +#endif // CARRACESTATE_H diff --git a/LEGO1/doors.h b/LEGO1/doors.h new file mode 100644 index 00000000..702a47ce --- /dev/null +++ b/LEGO1/doors.h @@ -0,0 +1,26 @@ +#ifndef DOORS_H +#define DOORS_H + +#include "legopathactor.h" + +// VTABLE 0x100d4788 +// SIZE 0x1f8 +class Doors : public LegoPathActor +{ +public: + // OFFSET: LEGO1 0x1000e430 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f03e8 + return "Doors"; + } + + // OFFSET: LEGO1 0x1000e440 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Doors::ClassName()) || LegoPathActor::IsA(name); + } +}; + + +#endif // DOORS_H diff --git a/LEGO1/dunebuggy.cpp b/LEGO1/dunebuggy.cpp new file mode 100644 index 00000000..babf21cb --- /dev/null +++ b/LEGO1/dunebuggy.cpp @@ -0,0 +1,7 @@ +#include "dunebuggy.h" + +// OFFSET: LEGO1 0x10067bb0 STUB +DuneBuggy::DuneBuggy() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/dunebuggy.h b/LEGO1/dunebuggy.h new file mode 100644 index 00000000..1f89784e --- /dev/null +++ b/LEGO1/dunebuggy.h @@ -0,0 +1,28 @@ +#ifndef DUNEBUGGY_H +#define DUNEBUGGY_H + +#include "islepathactor.h" + +// VTABLE 0x100d8f98 +// SIZE 0x16c +class DuneBuggy : public IslePathActor +{ +public: + DuneBuggy(); + + // OFFSET: LEGO1 0x10067c30 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0410 + return "DuneBuggy"; + } + + // OFFSET: LEGO1 0x10067c40 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, DuneBuggy::ClassName()) || IslePathActor::IsA(name); + } + +}; + +#endif // DUNEBUGGY_H diff --git a/LEGO1/elevatorbottom.cpp b/LEGO1/elevatorbottom.cpp new file mode 100644 index 00000000..d216fe35 --- /dev/null +++ b/LEGO1/elevatorbottom.cpp @@ -0,0 +1,21 @@ +#include "elevatorbottom.h" + +// OFFSET: LEGO1 0x10017e90 STUB +ElevatorBottom::ElevatorBottom() +{ + // TODO +} + +// OFFSET: LEGO1 0x10018060 STUB +ElevatorBottom::~ElevatorBottom() +{ + // TODO +} + +// OFFSET: LEGO1 0x10018150 STUB +long ElevatorBottom::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/elevatorbottom.h b/LEGO1/elevatorbottom.h new file mode 100644 index 00000000..0d86080a --- /dev/null +++ b/LEGO1/elevatorbottom.h @@ -0,0 +1,30 @@ +#ifndef ELEVATORBOTTOM_H +#define ELEVATORBOTTOM_H + +#include "legoworld.h" + +// VTABLE 0x100d5f20 +class ElevatorBottom : public LegoWorld +{ +public: + ElevatorBottom(); + virtual ~ElevatorBottom() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + + // OFFSET: LEGO1 0x10017f20 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f04ac + return "ElevatorBottom"; + } + + // OFFSET: LEGO1 0x10017f30 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, ElevatorBottom::ClassName()) || LegoWorld::IsA(name); + } + +}; + +#endif // ELEVATORBOTTOM_H diff --git a/LEGO1/gasstation.cpp b/LEGO1/gasstation.cpp new file mode 100644 index 00000000..d50ef317 --- /dev/null +++ b/LEGO1/gasstation.cpp @@ -0,0 +1,29 @@ +#include "gasstation.h" + +// OFFSET: LEGO1 0x100046a0 STUB +GasStation::GasStation() +{ + // TODO +} + +// OFFSET: LEGO1 0x100048c0 STUB +GasStation::~GasStation() +{ + // TODO +} + +// OFFSET: LEGO1 0x10004a60 STUB +long GasStation::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x10005c90 STUB +long GasStation::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/gasstation.h b/LEGO1/gasstation.h new file mode 100644 index 00000000..9f22ca3f --- /dev/null +++ b/LEGO1/gasstation.h @@ -0,0 +1,33 @@ +#ifndef GASSTATION_H +#define GASSTATION_H + +#include "legoworld.h" + +// VTABLE 0x100d4650 +// SIZE 0x128 +// Radio variable at 0x46, in constructor +class GasStation : public LegoWorld +{ +public: + GasStation(); + virtual ~GasStation() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x10004780 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0168 + return "GasStation"; + } + + // OFFSET: LEGO1 0x10004790 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, GasStation::ClassName()) || LegoWorld::IsA(name); + } + +}; + +#endif // GASSTATION_H diff --git a/LEGO1/gasstationentity.cpp b/LEGO1/gasstationentity.cpp new file mode 100644 index 00000000..ebe58c46 --- /dev/null +++ b/LEGO1/gasstationentity.cpp @@ -0,0 +1 @@ +#include "gasstationentity.h" diff --git a/LEGO1/gasstationentity.h b/LEGO1/gasstationentity.h new file mode 100644 index 00000000..27eb60f3 --- /dev/null +++ b/LEGO1/gasstationentity.h @@ -0,0 +1,25 @@ +#ifndef GASSTATIONENTITY_H +#define GASSTATIONENTITY_H + +#include "buildingentity.h" + +// VTABLE 0x100d5258 +// SIZE 0x68 +class GasStationEntity : public BuildingEntity +{ +public: + // OFFSET: LEGO1 0x1000eb20 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0348 + return "GasStationEntity"; + } + + // OFFSET: LEGO1 0x1000eb30 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, GasStationEntity::ClassName()) || BuildingEntity::IsA(name); + } +}; + +#endif // GASSTATIONENTITY_H diff --git a/LEGO1/gasstationstate.cpp b/LEGO1/gasstationstate.cpp new file mode 100644 index 00000000..d9fa2c29 --- /dev/null +++ b/LEGO1/gasstationstate.cpp @@ -0,0 +1,7 @@ +#include "gasstationstate.h" + +// OFFSET: LEGO1 0x10005eb0 STUB +GasStationState::GasStationState() +{ + // TODO +} diff --git a/LEGO1/gasstationstate.h b/LEGO1/gasstationstate.h new file mode 100644 index 00000000..a7696bed --- /dev/null +++ b/LEGO1/gasstationstate.h @@ -0,0 +1,28 @@ +#ifndef GASSTATIONSTATE_H +#define GASSTATIONSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d46e0 +// SIZE 0x24 +class GasStationState : public LegoState +{ +public: + GasStationState(); + + // OFFSET: LEGO1 0x100061d0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0174 + return "GasStationState"; + } + + // OFFSET: LEGO1 0x100061e0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, GasStationState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // GASSTATIONSTATE_H diff --git a/LEGO1/helicopter.cpp b/LEGO1/helicopter.cpp new file mode 100644 index 00000000..318f3dab --- /dev/null +++ b/LEGO1/helicopter.cpp @@ -0,0 +1,13 @@ +#include "helicopter.h" + +// OFFSET: LEGO1 0x10001e60 STUB +Helicopter::Helicopter() +{ + // TODO +} + +// OFFSET: LEGO1 0x10003230 STUB +Helicopter::~Helicopter() +{ + // TODO +} diff --git a/LEGO1/helicopter.h b/LEGO1/helicopter.h new file mode 100644 index 00000000..15134f32 --- /dev/null +++ b/LEGO1/helicopter.h @@ -0,0 +1,29 @@ +#ifndef HELICOPTER_H +#define HELICOPTER_H + +#include "islepathactor.h" + +// VTABLE 0x100d40f8 +// SIZE 0x230 +class Helicopter : public IslePathActor +{ +public: + Helicopter(); + virtual ~Helicopter(); // vtable+0x0 + + // OFFSET: LEGO1 0x10003070 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0130 + return "Helicopter"; + } + + // OFFSET: LEGO1 0x10003080 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Helicopter::ClassName()) || IslePathActor::IsA(name); + } + +}; + +#endif // HELICOPTER_H diff --git a/LEGO1/helicopterstate.cpp b/LEGO1/helicopterstate.cpp new file mode 100644 index 00000000..70d71a0c --- /dev/null +++ b/LEGO1/helicopterstate.cpp @@ -0,0 +1 @@ +#include "helicopterstate.h" diff --git a/LEGO1/helicopterstate.h b/LEGO1/helicopterstate.h new file mode 100644 index 00000000..161624dd --- /dev/null +++ b/LEGO1/helicopterstate.h @@ -0,0 +1,25 @@ +#ifndef HELICOPTERSTATE_H +#define HELICOPTERSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d5418 +// SIZE 0xc +class HelicopterState : public LegoState +{ +public: + // OFFSET: LEGO1 0x1000e0d0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0144 + return "HelicopterState"; + } + + // OFFSET: LEGO1 0x1000e0e0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, HelicopterState::ClassName()) || LegoState::IsA(name); + } +}; + +#endif // HELICOPTERSTATE_H diff --git a/LEGO1/historybook.cpp b/LEGO1/historybook.cpp new file mode 100644 index 00000000..89c81315 --- /dev/null +++ b/LEGO1/historybook.cpp @@ -0,0 +1,21 @@ +#include "historybook.h" + +// OFFSET: LEGO1 0x100822f0 STUB +HistoryBook::HistoryBook() +{ + // TODO +} + +// OFFSET: LEGO1 0x100824d0 STUB +HistoryBook::~HistoryBook() +{ + // TODO +} + +// OFFSET: LEGO1 0x10082680 STUB +long HistoryBook::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/historybook.h b/LEGO1/historybook.h new file mode 100644 index 00000000..bbdc6246 --- /dev/null +++ b/LEGO1/historybook.h @@ -0,0 +1,30 @@ +#ifndef HISTORYBOOK_H +#define HISTORYBOOK_H + +#include "legoworld.h" + +// VTABLE 0x100da328 +// SIZE 0x3e4 +class HistoryBook : public LegoWorld +{ +public: + HistoryBook(); + virtual ~HistoryBook() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + + // OFFSET: LEGO1 0x10082390 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f04bc + return "HistoryBook"; + } + + // OFFSET: LEGO1 0x100823a0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, HistoryBook::ClassName()) || LegoWorld::IsA(name); + } +}; + +#endif // HISTORYBOOK_H diff --git a/LEGO1/hospital.cpp b/LEGO1/hospital.cpp new file mode 100644 index 00000000..2581cf34 --- /dev/null +++ b/LEGO1/hospital.cpp @@ -0,0 +1,21 @@ +#include "hospital.h" + +// OFFSET: LEGO1 0x100745e0 STUB +Hospital::Hospital() +{ + // TODO +} + +// OFFSET: LEGO1 0x100747f0 STUB +Hospital::~Hospital() +{ + // TODO +} + +// OFFSET: LEGO1 0x10074990 STUB +long Hospital::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/hospital.h b/LEGO1/hospital.h new file mode 100644 index 00000000..b14de205 --- /dev/null +++ b/LEGO1/hospital.h @@ -0,0 +1,31 @@ +#ifndef HOSPITAL_H +#define HOSPITAL_H + +#include "legoworld.h" + +// VTABLE 0x100d9730 +// SIZE 0x12c +class Hospital : public LegoWorld +{ +public: + Hospital(); + virtual ~Hospital() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x04 + + // OFFSET: LEGO1 0x100746b0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0490 + return "Hospital"; + } + + // OFFSET: LEGO1 0x100746c0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Hospital::ClassName()) || LegoWorld::IsA(name); + } + +}; + +#endif // HOSPITAL_H diff --git a/LEGO1/hospitalentity.cpp b/LEGO1/hospitalentity.cpp new file mode 100644 index 00000000..8da86464 --- /dev/null +++ b/LEGO1/hospitalentity.cpp @@ -0,0 +1 @@ +#include "hospitalentity.h" diff --git a/LEGO1/hospitalentity.h b/LEGO1/hospitalentity.h new file mode 100644 index 00000000..537bff12 --- /dev/null +++ b/LEGO1/hospitalentity.h @@ -0,0 +1,26 @@ +#ifndef HOSPITALENTITY_H +#define HOSPITALENTITY_H + +#include "buildingentity.h" + +// VTABLE 0x100d5068 +// SIZE 0x68 +class HospitalEntity : public BuildingEntity +{ +public: + // OFFSET: LEGO1 0x1000ec40 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0338 + return "HospitalEntity"; + } + + // OFFSET: LEGO1 0x1000ec50 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, HospitalEntity::ClassName()) || BuildingEntity::IsA(name); + } + +}; + +#endif // HOSPITALENTITY_H diff --git a/LEGO1/hospitalstate.cpp b/LEGO1/hospitalstate.cpp new file mode 100644 index 00000000..066dceec --- /dev/null +++ b/LEGO1/hospitalstate.cpp @@ -0,0 +1,7 @@ +#include "hospitalstate.h" + +// OFFSET: LEGO1 0x10076370 STUB +HospitalState::HospitalState() +{ + // TODO +} diff --git a/LEGO1/hospitalstate.h b/LEGO1/hospitalstate.h new file mode 100644 index 00000000..ccecf07b --- /dev/null +++ b/LEGO1/hospitalstate.h @@ -0,0 +1,28 @@ +#ifndef HOSPITALSTATE_H +#define HOSPITALSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d97a0 +// SIZE 0x18 +class HospitalState : public LegoState +{ +public: + HospitalState(); + + // OFFSET: LEGO1 0x10076400 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0480 + return "HospitalState"; + } + + // OFFSET: LEGO1 0x10076410 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, HospitalState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // HOSPITALSTATE_H diff --git a/LEGO1/infocenter.cpp b/LEGO1/infocenter.cpp new file mode 100644 index 00000000..1ad07ee4 --- /dev/null +++ b/LEGO1/infocenter.cpp @@ -0,0 +1,29 @@ +#include "infocenter.h" + +// OFFSET: LEGO1 0x1006ea20 STUB +Infocenter::Infocenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x1006ec90 STUB +Infocenter::~Infocenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x1006ef10 STUB +long Infocenter::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x10070af0 STUB +long Infocenter::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/infocenter.h b/LEGO1/infocenter.h new file mode 100644 index 00000000..49a71acb --- /dev/null +++ b/LEGO1/infocenter.h @@ -0,0 +1,32 @@ +#ifndef INFOCENTER_H +#define INFOCENTER_H + +#include "legoworld.h" + +// VTABLE 0x100d9338 +// SIZE 0x1d8 +class Infocenter : public LegoWorld +{ +public: + Infocenter(); + virtual ~Infocenter() override; + + virtual long Notify(MxParam &p) override; // vtable+0x4 + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x1006eb40 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f04ec + return "Infocenter"; + } + + // OFFSET: LEGO1 0x1006eb50 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Infocenter::ClassName()) || LegoWorld::IsA(name); + } + +}; + +#endif // INFOCENTER_H diff --git a/LEGO1/infocenterdoor.cpp b/LEGO1/infocenterdoor.cpp new file mode 100644 index 00000000..be57f96e --- /dev/null +++ b/LEGO1/infocenterdoor.cpp @@ -0,0 +1,21 @@ +#include "infocenterdoor.h" + +// OFFSET: LEGO1 0x10037730 STUB +InfocenterDoor::InfocenterDoor() +{ + // TODO +} + +// OFFSET: LEGO1 0x100378f0 STUB +InfocenterDoor::~InfocenterDoor() +{ + // TODO +} + +// OFFSET: LEGO1 0x100379e0 STUB +long InfocenterDoor::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/infocenterdoor.h b/LEGO1/infocenterdoor.h new file mode 100644 index 00000000..77a0c021 --- /dev/null +++ b/LEGO1/infocenterdoor.h @@ -0,0 +1,31 @@ +#ifndef INFOCENTERDOOR_H +#define INFOCENTERDOOR_H + +#include "legoworld.h" + +// VTABLE 0x100d72d8 +// SIZE 0xfc +class InfocenterDoor : public LegoWorld +{ +public: + InfocenterDoor(); + virtual ~InfocenterDoor(); // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + + // OFFSET: LEGO1 0x100377b0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f049c + return "InfocenterDoor"; + } + + // OFFSET: LEGO1 0x100377c0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, InfocenterDoor::ClassName()) || LegoWorld::IsA(name); + } + +}; + +#endif // INFOCENTERDOOR_H diff --git a/LEGO1/infocenterentity.cpp b/LEGO1/infocenterentity.cpp new file mode 100644 index 00000000..211cf0b8 --- /dev/null +++ b/LEGO1/infocenterentity.cpp @@ -0,0 +1 @@ +#include "infocenterentity.h" diff --git a/LEGO1/infocenterentity.h b/LEGO1/infocenterentity.h new file mode 100644 index 00000000..3980e68a --- /dev/null +++ b/LEGO1/infocenterentity.h @@ -0,0 +1,26 @@ +#ifndef INFOCENTERENTITY_H +#define INFOCENTERENTITY_H + +#include "buildingentity.h" + +// VTABLE 0x100d4b90 +// SIZE 0x68 +class InfoCenterEntity : public BuildingEntity +{ +public: + // OFFSET: LEGO1 0x1000ea00 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f035c + return "InfoCenterEntity"; + } + + // OFFSET: LEGO1 0x1000ea10 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, InfoCenterEntity::ClassName()) || BuildingEntity::IsA(name); + } + +}; + +#endif // INFOCENTERENTITY_H diff --git a/LEGO1/infocenterstate.cpp b/LEGO1/infocenterstate.cpp new file mode 100644 index 00000000..d680eb43 --- /dev/null +++ b/LEGO1/infocenterstate.cpp @@ -0,0 +1,14 @@ +#include "infocenterstate.h" + +// OFFSET: LEGO1 0x10071600 STUB +InfocenterState::InfocenterState() +{ + // TODO +} + +// OFFSET: LEGO1 0x10071920 STUB +InfocenterState::~InfocenterState() +{ + // TODO +} + diff --git a/LEGO1/infocenterstate.h b/LEGO1/infocenterstate.h new file mode 100644 index 00000000..4f09d496 --- /dev/null +++ b/LEGO1/infocenterstate.h @@ -0,0 +1,28 @@ +#ifndef INFOCENTERSTATE_H +#define INFOCENTERSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d93a8 +// SIZE 0x94 +class InfocenterState : public LegoState +{ +public: + InfocenterState(); + virtual ~InfocenterState(); + + // OFFSET: LEGO1 0x10071840 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f04dc + return "InfocenterState"; + } + + // OFFSET: LEGO1 0x10071850 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, InfocenterState::ClassName()) || LegoState::IsA(name); + } +}; + +#endif // INFOCENTERSTATE_H diff --git a/LEGO1/isle.cpp b/LEGO1/isle.cpp new file mode 100644 index 00000000..fa5d806b --- /dev/null +++ b/LEGO1/isle.cpp @@ -0,0 +1,7 @@ +#include "isle.h" + +// OFFSET: LEGO1 0x10030820 STUB +Isle::Isle() +{ + // TODO +} diff --git a/LEGO1/isle.h b/LEGO1/isle.h new file mode 100644 index 00000000..4aedbbcf --- /dev/null +++ b/LEGO1/isle.h @@ -0,0 +1,28 @@ +#ifndef ISLE_H +#define ISLE_H + +#include "legoworld.h" + +// VTABLE 0x100d6fb8 +// SIZE 0x140 +// Radio at 0x12c +class Isle : public LegoWorld +{ +public: + Isle(); + + // OFFSET: LEGO1 0x10030910 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0458 + return "Isle"; + } + + // OFFSET: LEGO1 0x10030920 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Isle::ClassName()) || LegoWorld::IsA(name); + } +}; + +#endif // ISLE_H diff --git a/LEGO1/isleactor.cpp b/LEGO1/isleactor.cpp new file mode 100644 index 00000000..ca286e37 --- /dev/null +++ b/LEGO1/isleactor.cpp @@ -0,0 +1 @@ +#include "isleactor.h" diff --git a/LEGO1/isleactor.h b/LEGO1/isleactor.h new file mode 100644 index 00000000..3b7660f5 --- /dev/null +++ b/LEGO1/isleactor.h @@ -0,0 +1,24 @@ +#ifndef ISLEACTOR_H +#define ISLEACTOR_H + +#include "legoactor.h" + +// VTABLE 0x100d5178 +class IsleActor : public LegoActor +{ +public: + // OFFSET: LEGO1 0x1000e660 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f07dc + return "IsleActor"; + } + + // OFFSET: LEGO1 0x1000e670 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, IsleActor::ClassName()) || LegoActor::IsA(name); + } +}; + +#endif // ISLEACTOR_H diff --git a/LEGO1/islepathactor.cpp b/LEGO1/islepathactor.cpp new file mode 100644 index 00000000..72ed76d8 --- /dev/null +++ b/LEGO1/islepathactor.cpp @@ -0,0 +1 @@ +#include "islepathactor.h" diff --git a/LEGO1/islepathactor.h b/LEGO1/islepathactor.h new file mode 100644 index 00000000..fce450ac --- /dev/null +++ b/LEGO1/islepathactor.h @@ -0,0 +1,25 @@ +#ifndef ISLEPATHACTOR_H +#define ISLEPATHACTOR_H + +#include "legopathactor.h" + +// VTABLE 0x100d4398 +// SIZE >= 0x230 +class IslePathActor : public LegoPathActor +{ +public: + // OFFSET: LEGO1 0x10002ea0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0104 + return "IslePathActor"; + } + + // OFFSET: LEGO1 0x10002eb0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, IslePathActor::ClassName()) || LegoPathActor::IsA(name); + } +}; + +#endif // ISLEPATHACTOR_H diff --git a/LEGO1/jetski.cpp b/LEGO1/jetski.cpp new file mode 100644 index 00000000..50676253 --- /dev/null +++ b/LEGO1/jetski.cpp @@ -0,0 +1,7 @@ +#include "jetski.h" + +// OFFSET: LEGO1 0x1007e3b0 STUB +Jetski::Jetski() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/jetski.h b/LEGO1/jetski.h new file mode 100644 index 00000000..7cabea4d --- /dev/null +++ b/LEGO1/jetski.h @@ -0,0 +1,29 @@ +#ifndef JETSKI_H +#define JETSKI_H + +#include "islepathactor.h" + +// VTABLE 0x100d9ec8 +// SIZE 0x164 +class Jetski : public IslePathActor +{ +public: + Jetski(); + + // OFFSET: LEGO1 0x1007e430 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f03d8 + return "Jetski"; + } + + // OFFSET: LEGO1 0x1007e440 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Jetski::ClassName()) || IslePathActor::IsA(name); + } + +}; + + +#endif // JETSKI_H diff --git a/LEGO1/jetskirace.cpp b/LEGO1/jetskirace.cpp new file mode 100644 index 00000000..cc119878 --- /dev/null +++ b/LEGO1/jetskirace.cpp @@ -0,0 +1 @@ +#include "jetskirace.h" diff --git a/LEGO1/jetskirace.h b/LEGO1/jetskirace.h new file mode 100644 index 00000000..bea59903 --- /dev/null +++ b/LEGO1/jetskirace.h @@ -0,0 +1,26 @@ +#ifndef JETSKIRACE_H +#define JETSKIRACE_H + +#include "legorace.h" + +// VTABLE 0x100d4fe8 +// SIZE 0x144 +class JetskiRace : public LegoRace +{ +public: + + // OFFSET: LEGO1 0x1000daf0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0530 + return "JetskiRace"; + } + + // OFFSET: LEGO1 0x1000db00 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, JetskiRace::ClassName()) || LegoRace::IsA(name); + } +}; + +#endif // JETSKIRACE_H diff --git a/LEGO1/jetskiracestate.h b/LEGO1/jetskiracestate.h new file mode 100644 index 00000000..bdcfc0cd --- /dev/null +++ b/LEGO1/jetskiracestate.h @@ -0,0 +1,26 @@ +#ifndef JETSKIRACESTATE_H +#define JETSKIRACESTATE_H + +#include "racestate.h" + +// VTABLE 0x100d4fa8 +// SIZE 0x2c +class JetskiRaceState : public RaceState +{ +public: + // OFFSET: LEGO1 0x1000dc40 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f00ac + return "JetskiRaceState"; + } + + // OFFSET: LEGO1 0x1000dc50 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, JetskiRaceState::ClassName()) || RaceState::IsA(name); + } + +}; + +#endif // JETSKIRACESTATE_H diff --git a/LEGO1/jukebox.cpp b/LEGO1/jukebox.cpp new file mode 100644 index 00000000..f169a278 --- /dev/null +++ b/LEGO1/jukebox.cpp @@ -0,0 +1,7 @@ +#include "jukebox.h" + +// OFFSET: LEGO1 0x1005d660 STUB +JukeBox::JukeBox() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/jukebox.h b/LEGO1/jukebox.h new file mode 100644 index 00000000..3083f901 --- /dev/null +++ b/LEGO1/jukebox.h @@ -0,0 +1,28 @@ +#ifndef JUKEBOX_H +#define JUKEBOX_H + +#include "legoworld.h" + +// VTABLE 0x100d8958 +// SIZE 0x104 +class JukeBox : public LegoWorld +{ +public: + JukeBox(); + + // OFFSET: LEGO1 0x1005d6f0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f02cc + return "JukeBox"; + } + + // OFFSET: LEGO1 0x1005d700 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, JukeBox::ClassName()) || LegoWorld::IsA(name); + } + +}; + +#endif // JUKEBOX_H diff --git a/LEGO1/jukeboxentity.cpp b/LEGO1/jukeboxentity.cpp new file mode 100644 index 00000000..8c1a971b --- /dev/null +++ b/LEGO1/jukeboxentity.cpp @@ -0,0 +1,13 @@ +#include "jukeboxentity.h" + +// OFFSET: LEGO1 0x10085bc0 STUB +JukeBoxEntity::JukeBoxEntity() +{ + // TODO +} + +// OFFSET: LEGO1 0x10085dd0 STUB +JukeBoxEntity::~JukeBoxEntity() +{ + // TODO +} diff --git a/LEGO1/jukeboxentity.h b/LEGO1/jukeboxentity.h new file mode 100644 index 00000000..8571f203 --- /dev/null +++ b/LEGO1/jukeboxentity.h @@ -0,0 +1,29 @@ +#ifndef JUKEBOXENTITY_H +#define JUKEBOXENTITY_H + +#include "legoentity.h" + +// VTABLE 0x100da8a0 +// SIZE 0x6c +class JukeBoxEntity : public LegoEntity +{ +public: + JukeBoxEntity(); + virtual ~JukeBoxEntity() override; // vtable+0x0 + + // OFFSET: LEGO1 0x10085cc0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f02f0 + return "JukeBoxEntity"; + } + + // OFFSET: LEGO1 0x10085cd0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, JukeBoxEntity::ClassName()) || LegoEntity::IsA(name); + } + +}; + +#endif // JUKEBOXENTITY_H diff --git a/LEGO1/jukeboxstate.cpp b/LEGO1/jukeboxstate.cpp new file mode 100644 index 00000000..25b6dc90 --- /dev/null +++ b/LEGO1/jukeboxstate.cpp @@ -0,0 +1 @@ +#include "jukeboxstate.h" diff --git a/LEGO1/jukeboxstate.h b/LEGO1/jukeboxstate.h new file mode 100644 index 00000000..75640fe3 --- /dev/null +++ b/LEGO1/jukeboxstate.h @@ -0,0 +1,26 @@ +#ifndef JUKEBOXSTATE_H +#define JUKEBOXSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d4a90 +// SIZE 0x10 +class JukeBoxState : public LegoState +{ +public: + // OFFSET: LEGO1 0x1000f310 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f02bc + return "JukeBoxState"; + } + + // OFFSET: LEGO1 0x1000f320 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, JukeBoxState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // JUKEBOXSTATE_H diff --git a/LEGO1/lego3dwavepresenter.h b/LEGO1/lego3dwavepresenter.h new file mode 100644 index 00000000..b9a2b7f5 --- /dev/null +++ b/LEGO1/lego3dwavepresenter.h @@ -0,0 +1,25 @@ +#ifndef LEGO3DWAVEPRESENTER_H +#define LEGO3DWAVEPRESENTER_H + +#include "legowavepresenter.h" + +// VTABLE 0x100d52b0 +// SIZE 0xa0 +class Lego3DWavePresenter : public LegoWavePresenter +{ +public: + // OFFSET: LEGO1 0x1000d890 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f058c + return "Lego3DWavePresenter"; + } + + // OFFSET: LEGO1 0x1000d8a0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Lego3DWavePresenter::ClassName()) || MxWavePresenter::IsA(name); + } +}; + +#endif // LEGO3DWAVEPRESENTER_H diff --git a/LEGO1/legoact2state.cpp b/LEGO1/legoact2state.cpp new file mode 100644 index 00000000..1ca6a144 --- /dev/null +++ b/LEGO1/legoact2state.cpp @@ -0,0 +1 @@ +#include "legoact2state.h" diff --git a/LEGO1/legoact2state.h b/LEGO1/legoact2state.h new file mode 100644 index 00000000..321138ba --- /dev/null +++ b/LEGO1/legoact2state.h @@ -0,0 +1,26 @@ +#ifndef LEGOACT2STATE_H +#define LEGOACT2STATE_H + +#include "legostate.h" + +// VTABLE 0x100d4a70 +// SIZE 0x10 +class LegoAct2State : public LegoState +{ +public: + // OFFSET: LEGO1 0x1000df80 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0428 + return "LegoAct2State"; + } + + // OFFSET: LEGO1 0x1000df90 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoAct2State::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // LEGOACT2STATE_H diff --git a/LEGO1/legoactioncontrolpresenter.cpp b/LEGO1/legoactioncontrolpresenter.cpp new file mode 100644 index 00000000..598c0958 --- /dev/null +++ b/LEGO1/legoactioncontrolpresenter.cpp @@ -0,0 +1 @@ +#include "legoactioncontrolpresenter.h" diff --git a/LEGO1/legoactioncontrolpresenter.h b/LEGO1/legoactioncontrolpresenter.h new file mode 100644 index 00000000..7e051805 --- /dev/null +++ b/LEGO1/legoactioncontrolpresenter.h @@ -0,0 +1,25 @@ +#ifndef LEGOACTIONCONTROLPRESENTER_H +#define LEGOACTIONCONTROLPRESENTER_H + +#include "mxmediapresenter.h" + +// VTABLE 0x100d5118 +// SIZE 0x68 +class LegoActionControlPresenter : public MxMediaPresenter +{ +public: + // OFFSET: LEGO1 0x1000d0e0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f05bc + return "LegoActionControlPresenter"; + } + + // OFFSET: LEGO1 0x1000d0f0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoActionControlPresenter::ClassName()) || MxMediaPresenter::IsA(name); + } +}; + +#endif // LEGOACTIONCONTROLPRESENTER_H diff --git a/LEGO1/legoactor.h b/LEGO1/legoactor.h new file mode 100644 index 00000000..9b23e943 --- /dev/null +++ b/LEGO1/legoactor.h @@ -0,0 +1,25 @@ +#ifndef LEGOACTOR_H +#define LEGOACTOR_H + +#include "legoentity.h" + +// VTABLE 0x100d6d68 +// SIZE 0x78 +class LegoActor : public LegoEntity +{ +public: + // OFFSET: LEGO1 0x1002d210 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0124 + return "LegoActor"; + } + + // OFFSET: LEGO1 0x1002d220 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoActor::ClassName()) || LegoEntity::IsA(name); + } +}; + +#endif // LEGOACTOR_H diff --git a/LEGO1/legoactorpresenter.h b/LEGO1/legoactorpresenter.h new file mode 100644 index 00000000..fd3ae4e7 --- /dev/null +++ b/LEGO1/legoactorpresenter.h @@ -0,0 +1,25 @@ +#ifndef LEGOACTORPRESENTER_H +#define LEGOACTORPRESENTER_H + +#include "legoentitypresenter.h" + +// VTABLE 0x100d5320 +// SIZE 0x50 +class LegoActorPresenter : public LegoEntityPresenter +{ +public: + // OFFSET: LEGO1 0x1000cb10 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f06a4 + return "LegoActorPresenter"; + } + + // OFFSET: LEGO1 0x1000cb20 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoActorPresenter::ClassName()) || LegoEntityPresenter::IsA(name); + } +}; + +#endif // LEGOACTORPRESENTER_H diff --git a/LEGO1/legoanimactor.cpp b/LEGO1/legoanimactor.cpp new file mode 100644 index 00000000..d3515937 --- /dev/null +++ b/LEGO1/legoanimactor.cpp @@ -0,0 +1 @@ +#include "legoanimactor.h" diff --git a/LEGO1/legoanimactor.h b/LEGO1/legoanimactor.h new file mode 100644 index 00000000..f535028c --- /dev/null +++ b/LEGO1/legoanimactor.h @@ -0,0 +1,11 @@ +#ifndef LEGOANIMACTOR_H +#define LEGOANIMACTOR_H + +#include "legopathactor.h" + +class LegoAnimActor : public LegoPathActor +{ +public: +}; + +#endif // LEGOANIMACTOR_H diff --git a/LEGO1/legoanimationmanager.cpp b/LEGO1/legoanimationmanager.cpp new file mode 100644 index 00000000..48f13ce8 --- /dev/null +++ b/LEGO1/legoanimationmanager.cpp @@ -0,0 +1,34 @@ +#include "legoanimationmanager.h" + +// OFFSET: LEGO1 0x1005eb60 STUB +LegoAnimationManager::LegoAnimationManager() +{ +} + +// OFFSET: LEGO1 0x1005ed30 STUB +LegoAnimationManager::~LegoAnimationManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x100619f0 STUB +long LegoAnimationManager::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x10061cc0 STUB +long LegoAnimationManager::Tickle() +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x1005f130 STUB +void LegoAnimationManager::Init() +{ + // TODO +} diff --git a/LEGO1/legoanimationmanager.h b/LEGO1/legoanimationmanager.h index 8e243dd3..5fae368e 100644 --- a/LEGO1/legoanimationmanager.h +++ b/LEGO1/legoanimationmanager.h @@ -1,10 +1,37 @@ #ifndef LEGOANIMATIONMANAGER_H #define LEGOANIMATIONMANAGER_H -class LegoAnimationManager +#include "mxcore.h" + +// VTABLE 0x100d8c18 +// SIZE 0x500 +class LegoAnimationManager : public MxCore { public: + LegoAnimationManager(); + virtual ~LegoAnimationManager() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x1005ec80 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f7508 + return "LegoAnimationManager"; + } + + // OFFSET: LEGO1 0x1005ec90 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoAnimationManager::ClassName()) || MxCore::IsA(name); + } + __declspec(dllexport) static void configureLegoAnimationManager(int param_1); + +private: + void Init(); + }; #endif // LEGOANIMATIONMANAGER_H diff --git a/LEGO1/legoanimmmpresenter.cpp b/LEGO1/legoanimmmpresenter.cpp new file mode 100644 index 00000000..1c98b7c1 --- /dev/null +++ b/LEGO1/legoanimmmpresenter.cpp @@ -0,0 +1,7 @@ +#include "legoanimmmpresenter.h" + +// OFFSET: LEGO1 0x1004a8d0 STUB +LegoAnimMMPresenter::LegoAnimMMPresenter() +{ + // TODO +} diff --git a/LEGO1/legoanimmmpresenter.h b/LEGO1/legoanimmmpresenter.h new file mode 100644 index 00000000..8cb61be0 --- /dev/null +++ b/LEGO1/legoanimmmpresenter.h @@ -0,0 +1,28 @@ +#ifndef LEGOANIMMMPRESENTER_H +#define LEGOANIMMMPRESENTER_H + +#include "mxcompositepresenter.h" + +// VTABLE 0x100d7de8 +// SIZE 0x74 +class LegoAnimMMPresenter : public MxCompositePresenter +{ +public: + LegoAnimMMPresenter(); + + // OFFSET: LEGO1 0x1004a950 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f046c + return "LegoAnimMMPresenter"; + } + + // OFFSET: LEGO1 0x1004a960 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoAnimMMPresenter::ClassName()) || MxCompositePresenter::IsA(name); + } + +}; + +#endif // LEGOANIMMMPRESENTER_H diff --git a/LEGO1/legoanimpresenter.cpp b/LEGO1/legoanimpresenter.cpp new file mode 100644 index 00000000..a968afe0 --- /dev/null +++ b/LEGO1/legoanimpresenter.cpp @@ -0,0 +1,13 @@ +#include "legoanimpresenter.h" + +// OFFSET: LEGO1 0x10068420 STUB +LegoAnimPresenter::LegoAnimPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100686f0 STUB +void LegoAnimPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/legoanimpresenter.h b/LEGO1/legoanimpresenter.h new file mode 100644 index 00000000..56fcc989 --- /dev/null +++ b/LEGO1/legoanimpresenter.h @@ -0,0 +1,30 @@ +#ifndef LEGOANIMPRESENTER_H +#define LEGOANIMPRESENTER_H + +#include "mxvideopresenter.h" + +// VTABLE 0x100d90c8 +class LegoAnimPresenter : public MxVideoPresenter +{ +public: + LegoAnimPresenter(); + + // OFFSET: LEGO1 0x10068530 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f071c + return "LegoAnimPresenter"; + } + + // OFFSET: LEGO1 0x10068540 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoAnimPresenter::ClassName()) || MxVideoPresenter::IsA(name); + } + +private: + void Init(); + +}; + +#endif // LEGOANIMPRESENTER_H diff --git a/LEGO1/legobuildingmanager.cpp b/LEGO1/legobuildingmanager.cpp new file mode 100644 index 00000000..b2c4e7ea --- /dev/null +++ b/LEGO1/legobuildingmanager.cpp @@ -0,0 +1,17 @@ +#include "legobuildingmanager.h" + +// OFFSET: LEGO1 0x1002f8c0 STUB +LegoBuildingManager::LegoBuildingManager() +{ +} + +// OFFSET: LEGO1 0x1002f960 STUB +LegoBuildingManager::~LegoBuildingManager() +{ +} + +// OFFSET: LEGO1 0x1002f9d0 STUB +void LegoBuildingManager::Init() +{ + // TODO +} diff --git a/LEGO1/legobuildingmanager.h b/LEGO1/legobuildingmanager.h index a1173d3d..17701617 100644 --- a/LEGO1/legobuildingmanager.h +++ b/LEGO1/legobuildingmanager.h @@ -1,10 +1,28 @@ #ifndef LEGOBUILDINGMANAGER_H #define LEGOBUILDINGMANAGER_H -class LegoBuildingManager +#include "mxcore.h" + +// VTABLE 0x100d6f50 +// SIZE 0x30 +class LegoBuildingManager : public MxCore { public: + LegoBuildingManager(); + virtual ~LegoBuildingManager() override; + + // OFFSET: LEGO1 0x1002f930 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f37d0 + return "LegoBuildingManager"; + } + __declspec(dllexport) static void configureLegoBuildingManager(int param_1); + +private: + void Init(); + }; #endif // LEGOBUILDINGMANAGER_H diff --git a/LEGO1/legocachesound.cpp b/LEGO1/legocachesound.cpp new file mode 100644 index 00000000..37495920 --- /dev/null +++ b/LEGO1/legocachesound.cpp @@ -0,0 +1,19 @@ +#include "legocachesound.h" + +// OFFSET: LEGO1 0x100064d0 +LegoCacheSound::LegoCacheSound() +{ + Init(); +} + +// OFFSET: LEGO1 0x10006630 STUB +LegoCacheSound::~LegoCacheSound() +{ + // TODO +} + +// OFFSET: LEGO1 0x100066d0 STUB +void LegoCacheSound::Init() +{ + // TODO +} diff --git a/LEGO1/legocachesound.h b/LEGO1/legocachesound.h new file mode 100644 index 00000000..3506aa95 --- /dev/null +++ b/LEGO1/legocachesound.h @@ -0,0 +1,31 @@ +#ifndef LEGOCACHESOUND_H +#define LEGOCACHESOUND_H + +#include "mxcore.h" + +// VTABLE 0x100d4718 +// SIZE 0x88 +class LegoCacheSound : public MxCore +{ +public: + LegoCacheSound(); + virtual ~LegoCacheSound() override; // vtable+0x0 + + // OFFSET: LEGO1 0x10006580 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f01c4 + return "LegoCacheSound"; + } + + // OFFSET: LEGO1 0x10006590 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoCacheSound::ClassName()) || MxCore::IsA(name); + } + +private: + void Init(); +}; + +#endif // LEGOCACHESOUND_H diff --git a/LEGO1/legocameracontroller.cpp b/LEGO1/legocameracontroller.cpp new file mode 100644 index 00000000..da023851 --- /dev/null +++ b/LEGO1/legocameracontroller.cpp @@ -0,0 +1,13 @@ +#include "legocameracontroller.h" + +// OFFSET: LEGO1 0x10011d50 STUB +LegoCameraController::LegoCameraController() +{ + // TODO +} + +// OFFSET: LEGO1 0x10011f70 STUB +LegoCameraController::~LegoCameraController() +{ + // TODO +} diff --git a/LEGO1/legocameracontroller.h b/LEGO1/legocameracontroller.h new file mode 100644 index 00000000..af5015ae --- /dev/null +++ b/LEGO1/legocameracontroller.h @@ -0,0 +1,29 @@ +#ifndef LEGOCAMERACONTROLLER_H +#define LEGOCAMERACONTROLLER_H + +#include "mxcore.h" + +// VTABLE 0x100d57b0 +// SIZE 0xc8 +class LegoCameraController : public MxCore +{ +public: + LegoCameraController(); + virtual ~LegoCameraController() override; // vtable+0x0 + + // OFFSET: LEGO1 0x10011ec0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0850 + return "LegoCameraController"; + } + + // OFFSET: LEGO1 0x10011ed0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoCameraController::ClassName()) || MxCore::IsA(name); + } + +}; + +#endif // LEGOCAMERACONTROLLER_H diff --git a/LEGO1/legocarbuild.cpp b/LEGO1/legocarbuild.cpp new file mode 100644 index 00000000..d96668e4 --- /dev/null +++ b/LEGO1/legocarbuild.cpp @@ -0,0 +1,29 @@ +#include "legocarbuild.h" + +// OFFSET: LEGO1 0x100226d0 STUB +LegoCarBuild::LegoCarBuild() +{ + // TODO +} + +// OFFSET: LEGO1 0x10022a80 STUB +LegoCarBuild::~LegoCarBuild() +{ + // TODO +} + +// OFFSET: LEGO1 0x10024050 STUB +long LegoCarBuild::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x100238b0 STUB +long LegoCarBuild::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/legocarbuild.h b/LEGO1/legocarbuild.h new file mode 100644 index 00000000..10396c9e --- /dev/null +++ b/LEGO1/legocarbuild.h @@ -0,0 +1,31 @@ +#ifndef LEGOCARBUILD_H +#define LEGOCARBUILD_H + +#include "legoworld.h" + +// VTABLE 0x100d6658 +// SIZE 0x34c +class LegoCarBuild : public LegoWorld +{ +public: + LegoCarBuild(); + virtual ~LegoCarBuild() override; + + virtual long Notify(MxParam &p) override; // vtable+0x4 + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x10022940 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0504 + return "LegoCarBuild"; + } + + // OFFSET: LEGO1 0x10022950 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoCarBuild::ClassName()) || LegoWorld::IsA(name); + } +}; + +#endif // LEGOCARBUILD_H diff --git a/LEGO1/legocarbuildanimpresenter.cpp b/LEGO1/legocarbuildanimpresenter.cpp new file mode 100644 index 00000000..0b5ee0a5 --- /dev/null +++ b/LEGO1/legocarbuildanimpresenter.cpp @@ -0,0 +1,13 @@ +#include "legocarbuildanimpresenter.h" + +// OFFSET: LEGO1 0x10078400 STUB +LegoCarBuildAnimPresenter::LegoCarBuildAnimPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x10078680 STUB +LegoCarBuildAnimPresenter::~LegoCarBuildAnimPresenter() +{ + // TODO +} diff --git a/LEGO1/legocarbuildanimpresenter.h b/LEGO1/legocarbuildanimpresenter.h new file mode 100644 index 00000000..b270243e --- /dev/null +++ b/LEGO1/legocarbuildanimpresenter.h @@ -0,0 +1,28 @@ +#ifndef LEGOCARBUILDANIMPRESENTER_H +#define LEGOCARBUILDANIMPRESENTER_H + +#include "legoanimpresenter.h" + +// VTABLE 0x100d99e0 +// SIZE 0x150 +class LegoCarBuildAnimPresenter : public LegoAnimPresenter +{ +public: + LegoCarBuildAnimPresenter(); + virtual ~LegoCarBuildAnimPresenter() override; // vtable+0x0 + + // OFFSET: LEGO1 0x10078510 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f05ec + return "LegoCarBuildAnimPresenter"; + } + + // OFFSET: LEGO1 0x10078520 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoCarBuildAnimPresenter::ClassName()) || LegoAnimPresenter::IsA(name); + } +}; + +#endif // LEGOCARBUILDANIMPRESENTER_H diff --git a/LEGO1/legocarraceactor.h b/LEGO1/legocarraceactor.h new file mode 100644 index 00000000..36ba3ab1 --- /dev/null +++ b/LEGO1/legocarraceactor.h @@ -0,0 +1,24 @@ +#ifndef LEGOCARRACEACTOR_H +#define LEGOCARRACEACTOR_H + +#include "legoraceactor.h" + +// VTABLE 0x100da0d8 +class LegoCarRaceActor : public LegoRaceActor +{ +public: + // OFFSET: LEGO1 0x10081650 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0568 + return "LegoCarRaceActor"; + } + + // OFFSET: LEGO1 0x10081670 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoCarRaceActor::ClassName()) || LegoRaceActor::IsA(name); + } +}; + +#endif // LEGOCARRACEACTOR_H diff --git a/LEGO1/legocontrolmanager.cpp b/LEGO1/legocontrolmanager.cpp new file mode 100644 index 00000000..0959df9c --- /dev/null +++ b/LEGO1/legocontrolmanager.cpp @@ -0,0 +1,21 @@ +#include "legocontrolmanager.h" + +// OFFSET: LEGO1 0x10028520 STUB +LegoControlManager::LegoControlManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x10028d60 STUB +LegoControlManager::~LegoControlManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x10029600 STUB +long LegoControlManager::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/legocontrolmanager.h b/LEGO1/legocontrolmanager.h new file mode 100644 index 00000000..d3e183fd --- /dev/null +++ b/LEGO1/legocontrolmanager.h @@ -0,0 +1,30 @@ +#ifndef LEGOCONTROLMANAGER_H +#define LEGOCONTROLMANAGER_H + +#include "mxcore.h" + +// VTABLE 0x100d6a80 +class LegoControlManager : public MxCore +{ +public: + LegoControlManager(); + virtual ~LegoControlManager() override; // vtable+0x0 + + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x10028cb0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f31b8 + return "LegoControlManager"; + } + + // OFFSET: LEGO1 0x10028cc0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoControlManager::ClassName()) || MxCore::IsA(name); + } + +}; + +#endif // LEGOCONTROLMANAGER_H diff --git a/LEGO1/legoentity.cpp b/LEGO1/legoentity.cpp new file mode 100644 index 00000000..fe500cb7 --- /dev/null +++ b/LEGO1/legoentity.cpp @@ -0,0 +1,21 @@ +#include "legoentity.h" + +// OFFSET: LEGO1 0x1000c290 +LegoEntity::~LegoEntity() +{ + Destroy(); +} + +// OFFSET: LEGO1 0x100114f0 STUB +long LegoEntity::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x10010810 STUB +void LegoEntity::Destroy() +{ + // TODO +} diff --git a/LEGO1/legoentity.h b/LEGO1/legoentity.h index b64f55a2..774b19f2 100644 --- a/LEGO1/legoentity.h +++ b/LEGO1/legoentity.h @@ -1,10 +1,37 @@ #ifndef LEGOENTITY_H #define LEGOENTITY_H -class LegoEntity +#include "mxentity.h" + +// VTABLE 0x100d4858 +class LegoEntity : public MxEntity { public: - __declspec(dllexport) virtual ~LegoEntity(); + // Inlined at 0x100853f7 + inline LegoEntity() + { + // TODO + } + + __declspec(dllexport) virtual ~LegoEntity() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + + // OFFSET: LEGO1 0x1000c2f0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0064 + return "LegoEntity"; + } + + // OFFSET: LEGO1 0x1000c300 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoEntity::ClassName()) || MxEntity::IsA(name); + } + + virtual void Destroy() override; // vtable+0x1c + }; #endif // LEGOENTITY_H diff --git a/LEGO1/legoentitypresenter.cpp b/LEGO1/legoentitypresenter.cpp new file mode 100644 index 00000000..e763b771 --- /dev/null +++ b/LEGO1/legoentitypresenter.cpp @@ -0,0 +1,19 @@ +#include "legoentitypresenter.h" + +// OFFSET: LEGO1 0x10053440 +LegoEntityPresenter::LegoEntityPresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x100535d0 STUB +LegoEntityPresenter::~LegoEntityPresenter() +{ + // TODO +} + +// OFFSET: LEG01 0x100535c0 STUB +void LegoEntityPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/legoentitypresenter.h b/LEGO1/legoentitypresenter.h new file mode 100644 index 00000000..e2e82abc --- /dev/null +++ b/LEGO1/legoentitypresenter.h @@ -0,0 +1,32 @@ +#ifndef LEGOENTITYPRESENTER_H +#define LEGOENTITYPRESENTER_H + +#include "mxcompositepresenter.h" + +// VTABLE 0x100d8398 +class LegoEntityPresenter : public MxCompositePresenter +{ +public: + LegoEntityPresenter(); + virtual ~LegoEntityPresenter() override; // vtable+0x0 + + // OFFSET: LEGO1 0x100534b0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f06b8 + return "LegoEntityPresenter"; + } + + // OFFSET: LEGO1 0x100534c0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoEntityPresenter::ClassName()) || MxCompositePresenter::IsA(name); + } + +private: + void Init(); + +}; + + +#endif // LEGOENTITYPRESENTER_H diff --git a/LEGO1/legoextraactor.h b/LEGO1/legoextraactor.h new file mode 100644 index 00000000..5b7f216f --- /dev/null +++ b/LEGO1/legoextraactor.h @@ -0,0 +1,24 @@ +#ifndef LEGOEXTRAACTOR_H +#define LEGOEXTRAACTOR_H + +#include "legoanimactor.h" + +// VTABLE 0x100d6c10 +class LegoExtraActor : public LegoAnimActor +{ +public: + // OFFSET: LEGO1 0x1002b7a0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f3204 + return "LegoExtraActor"; + } + + // OFFSET: LEGO1 0x1002b7c0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoExtraActor::ClassName()) || LegoAnimActor::IsA(name); + } +}; + +#endif // LEGOEXTRAACTOR_H diff --git a/LEGO1/legoflctexturepresenter.cpp b/LEGO1/legoflctexturepresenter.cpp new file mode 100644 index 00000000..d7a97d21 --- /dev/null +++ b/LEGO1/legoflctexturepresenter.cpp @@ -0,0 +1,7 @@ +#include "legoflctexturepresenter.h" + +// OFFSET: LEGO1 0x1005de80 STUB +LegoFlcTexturePresenter::LegoFlcTexturePresenter() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/legoflctexturepresenter.h b/LEGO1/legoflctexturepresenter.h new file mode 100644 index 00000000..e525b3ce --- /dev/null +++ b/LEGO1/legoflctexturepresenter.h @@ -0,0 +1,22 @@ +#ifndef LEGOFLCTEXTUREPRESENTER_H +#define LEGOFLCTEXTUREPRESENTER_H + +#include "mxflcpresenter.h" + +// VTABLE 0x100d89e0 +// SIZE 0x70 +class LegoFlcTexturePresenter : public MxFlcPresenter +{ +public: + LegoFlcTexturePresenter(); + + // OFFSET: LEGO1 0x1005def0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0634 + return "LegoFlcTexturePresenter"; + } + +}; + +#endif // LEGOFLCTEXTUREPRESENTER_H diff --git a/LEGO1/legohideanimpresenter.cpp b/LEGO1/legohideanimpresenter.cpp new file mode 100644 index 00000000..8a9e7c9b --- /dev/null +++ b/LEGO1/legohideanimpresenter.cpp @@ -0,0 +1,12 @@ +#include "legohideanimpresenter.h" + +// OFFSET: LEGO1 0x1006d7e0 +LegoHideAnimPresenter::LegoHideAnimPresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x1006da50 STUB +void LegoHideAnimPresenter::Init() +{ +} diff --git a/LEGO1/legohideanimpresenter.h b/LEGO1/legohideanimpresenter.h new file mode 100644 index 00000000..0c078e9b --- /dev/null +++ b/LEGO1/legohideanimpresenter.h @@ -0,0 +1,31 @@ +#ifndef LEGOHIDEANIMPRESENTER_H +#define LEGOHIDEANIMPRESENTER_H + +#include "legoloopinganimpresenter.h" + +// VTABLE 0x100d9278 +// SIZE 0xc4 +class LegoHideAnimPresenter : public LegoLoopingAnimPresenter +{ +public: + LegoHideAnimPresenter(); + + // OFFSET: LEGO1 0x1006d880 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f06cc + return "LegoHideAnimPresenter"; + } + + // OFFSET: LEGO1 0x1006d890 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoHideAnimPresenter::ClassName()) || LegoAnimPresenter::IsA(name); + } + +private: + void Init(); + +}; + +#endif // LEGOHIDEANIMPRESENTER_H diff --git a/LEGO1/legoinputmanager.cpp b/LEGO1/legoinputmanager.cpp new file mode 100644 index 00000000..d60f5fc7 --- /dev/null +++ b/LEGO1/legoinputmanager.cpp @@ -0,0 +1,22 @@ +#include "legoinputmanager.h" + +// OFFSET: LEGO1 0x1005b790 STUB +LegoInputManager::LegoInputManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1005b8f0 STUB +LegoInputManager::~LegoInputManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1005b8b0 STUB +long LegoInputManager::Tickle() +{ + // TODO + + return 0; +} + diff --git a/LEGO1/legoinputmanager.h b/LEGO1/legoinputmanager.h index bc5cc4d3..caafed52 100644 --- a/LEGO1/legoinputmanager.h +++ b/LEGO1/legoinputmanager.h @@ -13,13 +13,20 @@ __declspec(dllexport) enum NotificationId TIMER = 15 }; +// VTABLE 0x100d8760 +// SIZE 0x338 class LegoInputManager { public: + LegoInputManager(); + virtual ~LegoInputManager() override; + __declspec(dllexport) void QueueEvent(NotificationId id, unsigned char p2, long p3, long p4, unsigned char p5); __declspec(dllexport) void Register(MxCore *); __declspec(dllexport) void UnRegister(MxCore *); + virtual long Tickle() override; // vtable+0x8 + char m_pad00[0x19C]; int m_joystickIndex; char m_pad200[0x194]; diff --git a/LEGO1/legojetski.cpp b/LEGO1/legojetski.cpp new file mode 100644 index 00000000..d0fffd85 --- /dev/null +++ b/LEGO1/legojetski.cpp @@ -0,0 +1 @@ +#include "legojetski.h" diff --git a/LEGO1/legojetski.h b/LEGO1/legojetski.h new file mode 100644 index 00000000..759e83ac --- /dev/null +++ b/LEGO1/legojetski.h @@ -0,0 +1,26 @@ +#ifndef LEGOJETSKI_H +#define LEGOJETSKI_H + +#include "legojetskiraceactor.h" + +// VTABLE 0x100d5a40 +class LegoJetski : public LegoJetskiRaceActor +{ +public: + // OFFSET: LEGO1 0x10013e80 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f053c + return "LegoJetski"; + } + + // OFFSET: LEGO1 0x10013ea0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoJetski::ClassName()) || LegoJetskiRaceActor::IsA(name); + } + +}; + + +#endif // LEGOJETSKI_H diff --git a/LEGO1/legojetskiraceactor.h b/LEGO1/legojetskiraceactor.h new file mode 100644 index 00000000..7c31f3b2 --- /dev/null +++ b/LEGO1/legojetskiraceactor.h @@ -0,0 +1,24 @@ +#ifndef LEGOJETSKIRACEACTOR_H +#define LEGOJETSKIRACEACTOR_H + +#include "legocarraceactor.h" + +// VTABLE 0x100da240 +class LegoJetskiRaceActor : public LegoCarRaceActor +{ +public: + // OFFSET: LEGO1 0x10081d80 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0554 + return "LegoJetskiRaceActor"; + } + + // OFFSET: LEGO1 0x10081da0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoJetskiRaceActor::ClassName()) || LegoCarRaceActor::IsA(name); + } +}; + +#endif // LEGOJETSKIRACEACTOR_H diff --git a/LEGO1/legoloadcachesoundpresenter.cpp b/LEGO1/legoloadcachesoundpresenter.cpp new file mode 100644 index 00000000..0830d7d7 --- /dev/null +++ b/LEGO1/legoloadcachesoundpresenter.cpp @@ -0,0 +1,19 @@ +#include "legoloadcachesoundpresenter.h" + +// OFFSET: LEGO1 0x10018340 +LegoLoadCacheSoundPresenter::LegoLoadCacheSoundPresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x10018480 STUB +LegoLoadCacheSoundPresenter::~LegoLoadCacheSoundPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100184e0 STUB +void LegoLoadCacheSoundPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/legoloadcachesoundpresenter.h b/LEGO1/legoloadcachesoundpresenter.h new file mode 100644 index 00000000..0673568e --- /dev/null +++ b/LEGO1/legoloadcachesoundpresenter.h @@ -0,0 +1,26 @@ +#ifndef LEGOLOADCACHESOUNDPRESENTER_H +#define LEGOLOADCACHESOUNDPRESENTER_H + +#include "mxwavepresenter.h" + +// VTABLE 0x100d5fa8 +// SIZE 0x90 +class LegoLoadCacheSoundPresenter : public MxWavePresenter +{ +public: + LegoLoadCacheSoundPresenter(); + virtual ~LegoLoadCacheSoundPresenter() override; + + // OFFSET: LEGO1 0x10018450 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f05a0 + return "LegoLoadCacheSoundPresenter"; + } + +private: + void Init(); + +}; + +#endif // LEGOLOADCACHESOUNDPRESENTER_H diff --git a/LEGO1/legolocomotionanimpresenter.cpp b/LEGO1/legolocomotionanimpresenter.cpp new file mode 100644 index 00000000..f7da593f --- /dev/null +++ b/LEGO1/legolocomotionanimpresenter.cpp @@ -0,0 +1,13 @@ +#include "legolocomotionanimpresenter.h" + +// OFFSET: LEGO1 0x1006cdd0 +LegoLocomotionAnimPresenter::LegoLocomotionAnimPresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x1006d0b0 STUB +void LegoLocomotionAnimPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/legolocomotionanimpresenter.h b/LEGO1/legolocomotionanimpresenter.h new file mode 100644 index 00000000..b5906ca6 --- /dev/null +++ b/LEGO1/legolocomotionanimpresenter.h @@ -0,0 +1,30 @@ +#ifndef LEGOLOCOMOTIONANIMPRESENTER_H +#define LEGOLOCOMOTIONANIMPRESENTER_H + +#include "legoloopinganimpresenter.h" + +// VTABLE 0x100d9170 +class LegoLocomotionAnimPresenter : public LegoLoopingAnimPresenter +{ +public: + LegoLocomotionAnimPresenter(); + + // OFFSET: LEGO1 0x1006ce50 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f06e4 + return "LegoLocomotionAnimPresenter"; + } + + // OFFSET: LEGO1 0x1006ce60 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoLocomotionAnimPresenter::ClassName()) || LegoLoopingAnimPresenter::IsA(name); + } + +private: + void Init(); + +}; + +#endif // LEGOLOCOMOTIONANIMPRESENTER_H diff --git a/LEGO1/legoloopinganimpresenter.h b/LEGO1/legoloopinganimpresenter.h new file mode 100644 index 00000000..6e4a5eb1 --- /dev/null +++ b/LEGO1/legoloopinganimpresenter.h @@ -0,0 +1,25 @@ +#ifndef LEGOLOOPINGANIMPRESENTER_H +#define LEGOLOOPINGANIMPRESENTER_H + +#include "legoanimpresenter.h" + +// VTABLE 0x100d4900 +// SIZE 0xc0 (discovered through inlined constructor at 0x10009ecd) +class LegoLoopingAnimPresenter : public LegoAnimPresenter +{ +public: + // OFFSET: LEGO1 0x1000c9a0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0700 + return "LegoLoopingAnimPresenter"; + } + + // OFFSET: LEGO1 0x1000c9b0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoLoopingAnimPresenter::ClassName()) || LegoAnimPresenter::IsA(name); + } +}; + +#endif // LEGOLOOPINGANIMPRESENTER_H diff --git a/LEGO1/legomodelpresenter.h b/LEGO1/legomodelpresenter.h index a5c6306c..e5f0d136 100644 --- a/LEGO1/legomodelpresenter.h +++ b/LEGO1/legomodelpresenter.h @@ -1,10 +1,27 @@ #ifndef LEGOMODELPRESENTER_H #define LEGOMODELPRESENTER_H -class LegoModelPresenter +#include "mxvideopresenter.h" + +// VTABLE 0x100d4e50 +// SIZE 0x6c (discovered through inline constructor at 0x10009ae6) +class LegoModelPresenter : public MxVideoPresenter { public: __declspec(dllexport) static void configureLegoModelPresenter(int param_1); + + // OFFSET: LEGO1 0x1000ccb0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f067c + return "LegoModelPresenter"; + } + + // OFFSET: LEGO1 0x1000ccc0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoModelPresenter::ClassName()) || MxVideoPresenter::IsA(name); + } }; #endif // LEGOMODELPRESENTER_H diff --git a/LEGO1/legonavcontroller.h b/LEGO1/legonavcontroller.h index 35bcf4d3..d2bf7df7 100644 --- a/LEGO1/legonavcontroller.h +++ b/LEGO1/legonavcontroller.h @@ -5,6 +5,8 @@ #include "mxtimer.h" #include "mxtypes.h" +// VTABLE 0x100d85b8 +// SIZE 0x70 class LegoNavController : public MxCore { public: @@ -18,7 +20,20 @@ class LegoNavController : public MxCore float p_rotationSensitivity, MxBool p_turnUseVelocity); LegoNavController(); - // virtual ~LegoNavController(); + // virtual ~LegoNavController(); // vtable+0x0 + + // OFFSET: LEGO1 0x10054b80 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f66d8 + return "LegoNavController"; + } + + // OFFSET: LEGO1 0x10054b90 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoNavController::ClassName()) || MxCore::IsA(name); + } void SetControlMax(int p_hMax, int p_vMax); void ResetToDefault(); diff --git a/LEGO1/legoomni.cpp b/LEGO1/legoomni.cpp index 3d8be0d7..0d1abaf1 100644 --- a/LEGO1/legoomni.cpp +++ b/LEGO1/legoomni.cpp @@ -37,6 +37,24 @@ LegoVideoManager *VideoManager() return LegoOmni::GetInstance()->GetVideoManager(); } +// OFFSET: LEGO1 0x100157f0 +LegoBuildingManager *BuildingManager() +{ + return LegoOmni::GetInstance()->GetLegoBuildingManager(); +} + +// OFFSET: LEGO1 0x10015790 +Isle *GetIsle() +{ + return LegoOmni::GetInstance()->GetIsle(); +} + +// OFFSET: LEGO1 0x100157e0 +LegoPlantManager *PlantManager() +{ + return LegoOmni::GetInstance()->GetLegoPlantManager(); +} + // OFFSET: LEGO1 0x10015730 MxBackgroundAudioManager *BackgroundAudioManager() { diff --git a/LEGO1/legoomni.h b/LEGO1/legoomni.h index 852c5b07..40804cbf 100644 --- a/LEGO1/legoomni.h +++ b/LEGO1/legoomni.h @@ -14,9 +14,14 @@ #include "mxdsobject.h" #include "mxomni.h" #include "mxtransitionmanager.h" +#include "isle.h" +#include "legobuildingmanager.h" +#include "legoplantmanager.h" class LegoSoundManager; +// VTABLE 0x100d8638 +// SIZE: 0x140 class LegoOmni : public MxOmni { public: @@ -32,10 +37,17 @@ class LegoOmni : public MxOmni virtual long Notify(MxParam &p); // vtable+04 // OFFSET: LEGO1 0x10058aa0 - inline virtual const char *ClassName() const { return "LegoOmni"; }; // vtable+0c + inline virtual const char *ClassName() const // vtable+0c + { + // 0x100f671c + return "LegoOmni"; + } // OFFSET: LEGO1 0x10058ab0 - inline virtual MxBool IsA(const char *name) const { return !strcmp(name, LegoOmni::ClassName()) || MxOmni::IsA(name); }; // vtable+10; + inline virtual MxBool IsA(const char *name) const // vtable+10 + { + return !strcmp(name, LegoOmni::ClassName()) || MxOmni::IsA(name); + } virtual void Init(); // vtable+14 virtual MxResult Create(MxOmniCreateParam &p); // vtable+18 @@ -54,6 +66,9 @@ class LegoOmni : public MxOmni LegoSoundManager *GetSoundManager() { return (LegoSoundManager *)m_soundManager;} MxBackgroundAudioManager *GetBackgroundAudioManager() { return m_bkgAudioManager; } LegoInputManager *GetInputManager() { return m_inputMgr; } + Isle *GetIsle() { return m_isle; } + LegoBuildingManager *GetLegoBuildingManager() { return m_buildingManager; } + LegoPlantManager *GetLegoPlantManager() { return m_plantManager; } LegoGameState *GetGameState() { return m_gameState; } LegoNavController *GetNavController() { return m_navController; } @@ -63,11 +78,16 @@ class LegoOmni : public MxOmni LegoInputManager *m_inputMgr; // 0x70 char m_unk74[0x10]; LegoNavController *m_navController; // 0x84 - char m_unk88[0x14]; + Isle* m_isle; // 0x88 + char m_unk8c[0x4]; + LegoPlantManager* m_plantManager; // 0x90 + char m_unk94[0x4]; + LegoBuildingManager* m_buildingManager; // 0x98 LegoGameState *m_gameState; // 0x9c char m_unka0[0x94]; MxBackgroundAudioManager *m_bkgAudioManager; // 0x134 MxTransitionManager *m_transitionManager; // 0x138 + int m_unk13c; }; @@ -95,4 +115,8 @@ __declspec(dllexport) LegoVideoManager * VideoManager(); __declspec(dllexport) long Start(MxDSAction *a); +LegoBuildingManager* BuildingManager(); +Isle* GetIsle(); +LegoPlantManager* PlantManager(); + #endif // LEGOOMNI_H diff --git a/LEGO1/legopalettepresenter.cpp b/LEGO1/legopalettepresenter.cpp new file mode 100644 index 00000000..07b9cb99 --- /dev/null +++ b/LEGO1/legopalettepresenter.cpp @@ -0,0 +1,19 @@ +#include "legopalettepresenter.h" + +// OFFSET: LEGO1 0x10079e50 +LegoPalettePresenter::LegoPalettePresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x1007a070 STUB +LegoPalettePresenter::~LegoPalettePresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x1007a0d0 STUB +void LegoPalettePresenter::Init() +{ + // TODO +} diff --git a/LEGO1/legopalettepresenter.h b/LEGO1/legopalettepresenter.h new file mode 100644 index 00000000..bb1b116e --- /dev/null +++ b/LEGO1/legopalettepresenter.h @@ -0,0 +1,33 @@ +#ifndef LEGOPALETTEPRESENTER_H +#define LEGOPALETTEPRESENTER_H + +#include "mxvideopresenter.h" + +// VTABLE 0x100d9aa0 +// SIZE 0x68 +class LegoPalettePresenter : public MxVideoPresenter +{ +public: + LegoPalettePresenter(); + virtual ~LegoPalettePresenter(); // vtable+0x0 + + // OFFSET: LEGO1 0x10079f30 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f061c + return "LegoPalettePresenter"; + } + + // OFFSET: LEGO1 0x10079f40 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoPalettePresenter::ClassName()) || MxVideoPresenter::IsA(name); + } + +private: + void Init(); + +}; + + +#endif // LEGOPALETTEPRESENTER_H diff --git a/LEGO1/legopartpresenter.h b/LEGO1/legopartpresenter.h index 05e0df7e..6a9a91a5 100644 --- a/LEGO1/legopartpresenter.h +++ b/LEGO1/legopartpresenter.h @@ -1,9 +1,24 @@ #ifndef LEGOPARTPRESENTER_H #define LEGOPARTPRESENTER_H -class LegoPartPresenter +// VTABLE 0x100d4df0 +// SIZE 0x54 (from inlined construction at 0x10009fac) +class LegoPartPresenter : public MxMediaPresenter { public: + // OFFSET: LEGO1 0x1000cf70 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f05d8 + return "LegoPartPresenter"; + } + + // OFFSET: LEGO1 0x1000cf80 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoPartPresenter::ClassName()) || MxMediaPresenter::IsA(name); + } + __declspec(dllexport) static void configureLegoPartPresenter(int param_1, int param_2); }; diff --git a/LEGO1/legopathactor.cpp b/LEGO1/legopathactor.cpp new file mode 100644 index 00000000..336cdc13 --- /dev/null +++ b/LEGO1/legopathactor.cpp @@ -0,0 +1,13 @@ +#include "legopathactor.h" + +// OFFSET: LEGO1 0x1002d700 STUB +LegoPathActor::LegoPathActor() +{ + // TODO +} + +// OFFSET: LEGO1 0x1002d820 STUB +LegoPathActor::~LegoPathActor() +{ + // TODO +} diff --git a/LEGO1/legopathactor.h b/LEGO1/legopathactor.h new file mode 100644 index 00000000..e6f643c2 --- /dev/null +++ b/LEGO1/legopathactor.h @@ -0,0 +1,30 @@ +#ifndef LEGOPATHACTOR_H +#define LEGOPATHACTOR_H + +#include "legoactor.h" + +// VTABLE 0x100d6e28 +// SIZE 0x154 (from inlined construction at 0x1000a346) +class LegoPathActor : public LegoActor +{ +public: + LegoPathActor(); + + virtual ~LegoPathActor() override; + + // OFFSET: LEGO1 0x1000c430 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0114 + return "LegoPathActor"; + } + + // OFFSET: LEGO1 0x1000c440 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name); + } + +}; + +#endif // LEGOPATHACTOR_H diff --git a/LEGO1/legopathcontroller.cpp b/LEGO1/legopathcontroller.cpp new file mode 100644 index 00000000..46e23f5e --- /dev/null +++ b/LEGO1/legopathcontroller.cpp @@ -0,0 +1,20 @@ +#include "legopathcontroller.h" + +// OFFSET: LEGO1 0x10044f40 STUB +LegoPathController::LegoPathController() +{ + // TODO +} + +// OFFSET: LEGO1 0x10045740 STUB +LegoPathController::~LegoPathController() +{ + // TODO +} + +// OFFSET: LEGO1 0x10045c10 STUB +long LegoPathController::Tickle() +{ + // TODO + return 0; +} diff --git a/LEGO1/legopathcontroller.h b/LEGO1/legopathcontroller.h new file mode 100644 index 00000000..9686b2bd --- /dev/null +++ b/LEGO1/legopathcontroller.h @@ -0,0 +1,31 @@ +#ifndef LEGOPATHCONTROLLER_H +#define LEGOPATHCONTROLLER_H + +#include "mxcore.h" + +// VTABLE 0x100d7d60 +// SIZE 0x40 +class LegoPathController : public MxCore +{ +public: + LegoPathController(); + virtual ~LegoPathController() override; + + virtual long Tickle() override; // vtable+08 + + // OFFSET: LEGO1 0x10045110 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f11b8 + return "LegoPathController"; + } + + // OFFSET: LEGO1 0x10045120 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoPathController::ClassName()) || MxCore::IsA(name); + } + +}; + +#endif // LEGOPATHCONTROLLER_H diff --git a/LEGO1/legopathpresenter.cpp b/LEGO1/legopathpresenter.cpp new file mode 100644 index 00000000..43b05e26 --- /dev/null +++ b/LEGO1/legopathpresenter.cpp @@ -0,0 +1,7 @@ +#include "legopathpresenter.h" + +// OFFSET: LEGO1 0x100448d0 STUB +LegoPathPresenter::LegoPathPresenter() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/legopathpresenter.h b/LEGO1/legopathpresenter.h new file mode 100644 index 00000000..225f4256 --- /dev/null +++ b/LEGO1/legopathpresenter.h @@ -0,0 +1,29 @@ +#ifndef LEGOPATHPRESENTER_H +#define LEGOPATHPRESENTER_H + +#include "mxmediapresenter.h" + +// VTABLE 0x100d7c10 +// SIZE 0x54 +class LegoPathPresenter : public MxMediaPresenter +{ +public: + LegoPathPresenter(); + + // OFFSET: LEGO1 0x100449a0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0690 + return "LegoPathPresenter"; + } + + // OFFSET: LEGO1 0x100449b0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoPathPresenter::ClassName()) || MxMediaPresenter::IsA(name); + } + +}; + + +#endif // LEGOPATHPRESENTER_H diff --git a/LEGO1/legophonemepresenter.cpp b/LEGO1/legophonemepresenter.cpp new file mode 100644 index 00000000..43948fc7 --- /dev/null +++ b/LEGO1/legophonemepresenter.cpp @@ -0,0 +1,19 @@ +#include "legophonemepresenter.h" + +// OFFSET: LEGO1 0x1004e180 +LegoPhonemePresenter::LegoPhonemePresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x1004e3b0 STUB +void LegoPhonemePresenter::Init() +{ + // TODO +} + +// OFFSET: LEGO1 0x1004e340 STUB +LegoPhonemePresenter::~LegoPhonemePresenter() +{ + // TODO +} diff --git a/LEGO1/legophonemepresenter.h b/LEGO1/legophonemepresenter.h new file mode 100644 index 00000000..c2616448 --- /dev/null +++ b/LEGO1/legophonemepresenter.h @@ -0,0 +1,26 @@ +#ifndef LEGOPHONEMEPRESENTER_H +#define LEGOPHONEMEPRESENTER_H + +#include "mxflcpresenter.h" + +// VTABLE 0x100d8040 +// SIZE 0x88 +class LegoPhonemePresenter : public MxFlcPresenter +{ +public: + LegoPhonemePresenter(); + virtual ~LegoPhonemePresenter() override; // vtable+0x0 + + // OFFSET: LEGO1 0x1004e310 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f064c + return "LegoPhonemePresenter"; + } + +private: + void Init(); + +}; + +#endif // LEGOPHONEMEPRESENTER_H diff --git a/LEGO1/legoplantmanager.cpp b/LEGO1/legoplantmanager.cpp new file mode 100644 index 00000000..8f67b939 --- /dev/null +++ b/LEGO1/legoplantmanager.cpp @@ -0,0 +1,27 @@ +#include "legoplantmanager.h" + +// OFFSET: LEGO1 0x10026220 +LegoPlantManager::LegoPlantManager() +{ + Init(); +} + +// OFFSET: LEGO1 0x100262c0 STUB +LegoPlantManager::~LegoPlantManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x10026e00 STUB +long LegoPlantManager::Tickle() +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x10026330 STUB +void LegoPlantManager::Init() +{ + // TODO +} diff --git a/LEGO1/legoplantmanager.h b/LEGO1/legoplantmanager.h new file mode 100644 index 00000000..272fb451 --- /dev/null +++ b/LEGO1/legoplantmanager.h @@ -0,0 +1,28 @@ +#ifndef LEGOPLANTMANAGER_H +#define LEGOPLANTMANAGER_H + +#include "mxcore.h" + +// VTABLE 0x100d6758 +// SIZE 0x2c +class LegoPlantManager : public MxCore +{ +public: + LegoPlantManager(); + virtual ~LegoPlantManager() override; // vtable+0x0 + + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x10026290 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f318c + return "LegoPlantManager"; + } + +private: + void Init(); + +}; + +#endif // LEGOPLANTMANAGER_H diff --git a/LEGO1/legorace.cpp b/LEGO1/legorace.cpp new file mode 100644 index 00000000..888b1fe1 --- /dev/null +++ b/LEGO1/legorace.cpp @@ -0,0 +1,21 @@ +#include "legorace.h" + +// OFFSET: LEGO1 0x10015aa0 STUB +LegoRace::LegoRace() +{ + // TODO +} + +// OFFSET: LEGO1 0x10015d40 STUB +LegoRace::~LegoRace() +{ + // TODO +} + +// OFFSET: LEGO1 0x10015e00 STUB +long LegoRace::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/legorace.h b/LEGO1/legorace.h new file mode 100644 index 00000000..003e57ed --- /dev/null +++ b/LEGO1/legorace.h @@ -0,0 +1,29 @@ +#ifndef LEGORACE_H +#define LEGORACE_H + +#include "legoworld.h" + +// VTABLE 0x100d5db0 +class LegoRace : public LegoWorld +{ +public: + LegoRace(); + virtual ~LegoRace() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + + // OFFSET: LEGO1 0x10015ba0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f07c4 + return "LegoRace"; + } + + // OFFSET: LEGO1 0x10015bb0 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoRace::ClassName()) || LegoWorld::IsA(name); + } +}; + +#endif // LEGORACE_H diff --git a/LEGO1/legoraceactor.h b/LEGO1/legoraceactor.h new file mode 100644 index 00000000..d7908063 --- /dev/null +++ b/LEGO1/legoraceactor.h @@ -0,0 +1,25 @@ +#ifndef LEGORACEACTOR_H +#define LEGORACEACTOR_H + +#include "legoanimactor.h" + +// VTABLE 0x100d5b88 +class LegoRaceActor : public LegoAnimActor +{ +public: + // OFFSET: LEGO1 0x10014af0 + inline const char *ClassName() const override // vtable+0xc + { + // 0x100f0bf4 + return "LegoRaceActor"; + } + + // OFFSET: LEGO1 0x10014b10 + inline MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoRaceActor::ClassName()) || LegoAnimActor::IsA(name); + } +}; + + +#endif // LEGORACEACTOR_H diff --git a/LEGO1/legosoundmanager.cpp b/LEGO1/legosoundmanager.cpp new file mode 100644 index 00000000..518b8c55 --- /dev/null +++ b/LEGO1/legosoundmanager.cpp @@ -0,0 +1,20 @@ +#include "legosoundmanager.h" + +// OFFSET: LEGO1 0x100298a0 STUB +LegoSoundManager::LegoSoundManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x10029940 STUB +LegoSoundManager::~LegoSoundManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1002a3a0 STUB +long LegoSoundManager::Tickle() +{ + // TODO + return 0; +} diff --git a/LEGO1/legosoundmanager.h b/LEGO1/legosoundmanager.h new file mode 100644 index 00000000..9b1e6450 --- /dev/null +++ b/LEGO1/legosoundmanager.h @@ -0,0 +1,20 @@ +#ifndef LEGOSOUNDMANAGER_H +#define LEGOSOUNDMANAGER_H + +#include "mxsoundmanager.h" + +// VTABLE 0x100d6b10 +// SIZE 0x44 +class LegoSoundManager : public MxSoundManager +{ +public: + LegoSoundManager(); + virtual ~LegoSoundManager() override; + virtual long Tickle() override; // vtable+08 + +private: + void Init(); + +}; + +#endif // LEGOSOUNDMANAGER_H diff --git a/LEGO1/legostate.cpp b/LEGO1/legostate.cpp new file mode 100644 index 00000000..2b49fcd7 --- /dev/null +++ b/LEGO1/legostate.cpp @@ -0,0 +1,6 @@ +#include "legostate.h" + +// OFFSET: LEGO1 0x10005f40 +LegoState::~LegoState() +{ +} diff --git a/LEGO1/legostate.h b/LEGO1/legostate.h new file mode 100644 index 00000000..be7289bc --- /dev/null +++ b/LEGO1/legostate.h @@ -0,0 +1,27 @@ +#ifndef LEGOSTATE_H +#define LEGOSTATE_H + +#include "mxcore.h" + +// VTABLE 0x100d46c0 +class LegoState : public MxCore +{ +public: + virtual ~LegoState() override; // vtable+0x00 + + // OFFSET: LEGO1 0x100060d0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f01b8 + return "LegoState"; + } + + // OFFSET: LEGO1 0x100060e0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoState::ClassName()) || MxCore::IsA(name); + } + +}; + +#endif // LEGOSTATE_H diff --git a/LEGO1/legotexturepresenter.cpp b/LEGO1/legotexturepresenter.cpp new file mode 100644 index 00000000..2336a724 --- /dev/null +++ b/LEGO1/legotexturepresenter.cpp @@ -0,0 +1,7 @@ +#include "legotexturepresenter.h" + +// OFFSET: LEGO1 0x1004eb40 STUB +LegoTexturePresenter::~LegoTexturePresenter() +{ + // TODO +} diff --git a/LEGO1/legotexturepresenter.h b/LEGO1/legotexturepresenter.h new file mode 100644 index 00000000..eabd4895 --- /dev/null +++ b/LEGO1/legotexturepresenter.h @@ -0,0 +1,28 @@ +#ifndef LEGOTEXTUREPRESENTER_H +#define LEGOTEXTUREPRESENTER_H + +#include "mxmediapresenter.h" + +// VTABLE 0x100d4d90 +// SIZE 0x54 (from inlined construction at 0x10009bb5) +class LegoTexturePresenter : public MxMediaPresenter +{ +public: + virtual ~LegoTexturePresenter() override; + + // OFFSET: LEGO1 0x1000ce50 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0664 + return "LegoTexturePresenter"; + } + + // OFFSET: LEGO1 0x1000ce60 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoTexturePresenter::ClassName()) || MxMediaPresenter::IsA(name); + } + +}; + +#endif // LEGOTEXTUREPRESENTER_H diff --git a/LEGO1/legoutil.h b/LEGO1/legoutil.h index 440b01d0..e94a6440 100644 --- a/LEGO1/legoutil.h +++ b/LEGO1/legoutil.h @@ -4,7 +4,7 @@ template inline T Abs(T p_t) { - return p_t < 0 ? -p_t : p_t; + return p_t < 0 ? -p_t : p_t; } -#endif // LEGOUTIL_H \ No newline at end of file +#endif // LEGOUTIL_H diff --git a/LEGO1/legovideomanager.cpp b/LEGO1/legovideomanager.cpp new file mode 100644 index 00000000..060cc61f --- /dev/null +++ b/LEGO1/legovideomanager.cpp @@ -0,0 +1,39 @@ +#include "legovideomanager.h" + +// OFFSET: LEGO1 0x1007aa20 STUB +LegoVideoManager::LegoVideoManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1007ab40 STUB +LegoVideoManager::~LegoVideoManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1007c560 STUB +int LegoVideoManager::EnableRMDevice() +{ + // TODO + return 0; +} + +// OFFSET: LEGO1 0x1007c740 STUB +int LegoVideoManager::DisableRMDevice() +{ + // TODO + return 0; +} + +// OFFSET: LEGO1 0x1007c310 STUB +void LegoVideoManager::EnableFullScreenMovie(unsigned char a, unsigned char b) +{ + // TODO +} + +// OFFSET: LEGO1 0x1007b6a0 STUB +void LegoVideoManager::MoveCursor(int x, int y) +{ + // TODO +} diff --git a/LEGO1/legovideomanager.h b/LEGO1/legovideomanager.h index d96fac87..ec1aa6fd 100644 --- a/LEGO1/legovideomanager.h +++ b/LEGO1/legovideomanager.h @@ -4,9 +4,14 @@ #include "mxvideomanager.h" #include "lego3dmanager.h" +// VTABLE 0x100d9c88 +// SIZE 0x590 class LegoVideoManager : public MxVideoManager { public: + LegoVideoManager(); + virtual ~LegoVideoManager() override; + __declspec(dllexport) int EnableRMDevice(); __declspec(dllexport) int DisableRMDevice(); __declspec(dllexport) void EnableFullScreenMovie(unsigned char a, unsigned char b); diff --git a/LEGO1/legoworld.cpp b/LEGO1/legoworld.cpp new file mode 100644 index 00000000..68009d43 --- /dev/null +++ b/LEGO1/legoworld.cpp @@ -0,0 +1,13 @@ +#include "legoworld.h" + +// OFFSET: LEGO1 0x1001ca40 STUB +LegoWorld::LegoWorld() +{ + // TODO +} + +// OFFSET: LEGO1 0x1001dfa0 STUB +LegoWorld::~LegoWorld() +{ + // TODO +} diff --git a/LEGO1/legoworld.h b/LEGO1/legoworld.h index b11f7095..d6170bfc 100644 --- a/LEGO1/legoworld.h +++ b/LEGO1/legoworld.h @@ -1,11 +1,28 @@ #ifndef LEGOWORLD_H #define LEGOWORLD_H -class LegoWorld +#include "legoentity.h" + +// VTABLE 0x100d6280 +// SIZE 0xf8 +class LegoWorld : public LegoEntity { public: __declspec(dllexport) LegoWorld(); - __declspec(dllexport) virtual ~LegoWorld(); + __declspec(dllexport) virtual ~LegoWorld(); // vtable+0x0 + + // OFFSET: LEGO1 0x1001d690 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0058 + return "LegoWorld"; + } + + // OFFSET: LEGO1 0x1001d6a0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoWorld::ClassName()) || LegoEntity::IsA(name); + } }; #endif // LEGOWORLD_H diff --git a/LEGO1/legoworldpresenter.cpp b/LEGO1/legoworldpresenter.cpp new file mode 100644 index 00000000..280d7a24 --- /dev/null +++ b/LEGO1/legoworldpresenter.cpp @@ -0,0 +1,19 @@ +#include "legoworldpresenter.h" + +// OFFSET: LEGO1 0x100665c0 STUB +LegoWorldPresenter::LegoWorldPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x10066770 STUB +LegoWorldPresenter::~LegoWorldPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100665b0 STUB +void LegoWorldPresenter::configureLegoWorldPresenter(int param_1) +{ + // TODO +} diff --git a/LEGO1/legoworldpresenter.h b/LEGO1/legoworldpresenter.h index 006b4cf8..b7f39ddb 100644 --- a/LEGO1/legoworldpresenter.h +++ b/LEGO1/legoworldpresenter.h @@ -1,10 +1,31 @@ #ifndef LEGOWORLDPRESENTER_H #define LEGOWORLDPRESENTER_H -class LegoWorldPresenter +#include "legoentitypresenter.h" + +// VTABLE 0x100d8ee0 +// SIZE 0x54 +class LegoWorldPresenter : public LegoEntityPresenter { public: + LegoWorldPresenter(); + virtual ~LegoWorldPresenter() override; // vtable+0x0 + __declspec(dllexport) static void configureLegoWorldPresenter(int param_1); + + // OFFSET: LEGO1 0x10066630 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0608 + return "LegoWorldPresenter"; + } + + // OFFSET: LEGO1 0x10066640 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, LegoWorldPresenter::ClassName()) || LegoEntityPresenter::IsA(name); + } + }; #endif // LEGOWORLDPRESENTER_H diff --git a/LEGO1/motorcycle.cpp b/LEGO1/motorcycle.cpp new file mode 100644 index 00000000..9b0e0e40 --- /dev/null +++ b/LEGO1/motorcycle.cpp @@ -0,0 +1,7 @@ +#include "motorcycle.h" + +// OFFSET: LEGO1 0x100357b0 STUB +Motorcycle::Motorcycle() +{ + // TODO +} diff --git a/LEGO1/motorcycle.h b/LEGO1/motorcycle.h new file mode 100644 index 00000000..5ba746a8 --- /dev/null +++ b/LEGO1/motorcycle.h @@ -0,0 +1,28 @@ +#ifndef MOTORCYCLE_H +#define MOTORCYCLE_H + +#include "islepathactor.h" + +// VTABLE 0x100d7090 +// SIZE 0x16c +class Motorcycle : public IslePathActor +{ +public: + Motorcycle(); + + // OFFSET: LEGO1 0x10035840 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10035840 + return "Motorcycle"; + } + + // OFFSET: LEGO1 0x10035850 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, Motorcycle::ClassName()) || IslePathActor::IsA(name); + } + +}; + +#endif // MOTORCYCLE_H diff --git a/LEGO1/mxatomid.cpp b/LEGO1/mxatomid.cpp index f2171360..007e2de3 100644 --- a/LEGO1/mxatomid.cpp +++ b/LEGO1/mxatomid.cpp @@ -1,5 +1,11 @@ #include "mxatomid.h" +// OFFSET: LEGO1 0x100acf90 +MxAtomId::MxAtomId(const char *, LookupMode) +{ + // TODO +} + // OFFSET: LEGO1 0x100acfd0 MxAtomId::~MxAtomId() { @@ -11,4 +17,4 @@ MxAtomId &MxAtomId::operator=(const MxAtomId &id) { // TODO return *this; -} \ No newline at end of file +} diff --git a/LEGO1/mxatomid.h b/LEGO1/mxatomid.h index b28704c0..9a218a1b 100644 --- a/LEGO1/mxatomid.h +++ b/LEGO1/mxatomid.h @@ -15,7 +15,7 @@ class MxAtomId MxAtomId() { this->m_internal = 0; - }; + } private: char *m_internal; diff --git a/LEGO1/mxaudiopresenter.cpp b/LEGO1/mxaudiopresenter.cpp new file mode 100644 index 00000000..b15c2556 --- /dev/null +++ b/LEGO1/mxaudiopresenter.cpp @@ -0,0 +1 @@ +#include "mxaudiopresenter.h" diff --git a/LEGO1/mxaudiopresenter.h b/LEGO1/mxaudiopresenter.h new file mode 100644 index 00000000..b23eefe9 --- /dev/null +++ b/LEGO1/mxaudiopresenter.h @@ -0,0 +1,24 @@ +#ifndef MXAUDIOPRESENTER_H +#define MXAUDIOPRESENTER_H + +#include "mxmediapresenter.h" + +// VTABLE 0x100d4c70 +class MxAudioPresenter : public MxMediaPresenter +{ +public: + // OFFSET: LEGO1 0x1000d280 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f078c + return "MxAudioPresenter"; + } + + // OFFSET: LEGO1 0x1000d290 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxAudioPresenter::ClassName()) || MxMediaPresenter::IsA(name); + } +}; + +#endif // MXAUDIOPRESENTER_H diff --git a/LEGO1/mxautolocker.h b/LEGO1/mxautolocker.h index a2ce6caa..35e32ff3 100644 --- a/LEGO1/mxautolocker.h +++ b/LEGO1/mxautolocker.h @@ -5,11 +5,11 @@ class MxAutoLocker { - public: - MxAutoLocker(MxCriticalSection* cs); - ~MxAutoLocker(); - private: - MxCriticalSection* m_criticalSection; +public: + MxAutoLocker(MxCriticalSection* cs); + ~MxAutoLocker(); +private: + MxCriticalSection* m_criticalSection; }; #endif // MXAUTOLOCKER_H diff --git a/LEGO1/mxbackgroundaudiomanager.cpp b/LEGO1/mxbackgroundaudiomanager.cpp new file mode 100644 index 00000000..6f001303 --- /dev/null +++ b/LEGO1/mxbackgroundaudiomanager.cpp @@ -0,0 +1,19 @@ +#include "mxbackgroundaudiomanager.h" + +// OFFSET: LEGO1 0x1007ea90 +MxBackgroundAudioManager::MxBackgroundAudioManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1007ec20 +MxBackgroundAudioManager::~MxBackgroundAudioManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1007f5f0 +void MxBackgroundAudioManager::Enable(MxBool p) +{ + // TODO +} diff --git a/LEGO1/mxbackgroundaudiomanager.h b/LEGO1/mxbackgroundaudiomanager.h index 765fc9c3..9a23a671 100644 --- a/LEGO1/mxbackgroundaudiomanager.h +++ b/LEGO1/mxbackgroundaudiomanager.h @@ -1,9 +1,29 @@ #ifndef MXBACKGROUNDAUDIOMANAGER_H #define MXBACKGROUNDAUDIOMANAGER_H -class MxBackgroundAudioManager +#include "mxcore.h" + +// VTABLE 0x100d9fe8 +// SIZE 0x150 +class MxBackgroundAudioManager : public MxCore { public: + MxBackgroundAudioManager(); + virtual ~MxBackgroundAudioManager() override; + + // OFFSET: LEGO1 0x1007eb70 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f7ac4 + return "MxBackgroundAudioManager"; + } + + // OFFSET: LEGO1 0x1007eb80 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxBackgroundAudioManager::ClassName()) || MxCore::IsA(name); + } + __declspec(dllexport) void Enable(unsigned char p); }; diff --git a/LEGO1/mxcompositemediapresenter.cpp b/LEGO1/mxcompositemediapresenter.cpp new file mode 100644 index 00000000..581df06a --- /dev/null +++ b/LEGO1/mxcompositemediapresenter.cpp @@ -0,0 +1,7 @@ +#include "mxcompositemediapresenter.h" + +// OFFSET: LEGO1 0x10073ea0 STUB +MxCompositeMediaPresenter::MxCompositeMediaPresenter() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/mxcompositemediapresenter.h b/LEGO1/mxcompositemediapresenter.h new file mode 100644 index 00000000..1f464f4d --- /dev/null +++ b/LEGO1/mxcompositemediapresenter.h @@ -0,0 +1,28 @@ +#ifndef MXCOMPOSITEMEDIAPRESENTER_H +#define MXCOMPOSITEMEDIAPRESENTER_H + +#include "mxcompositepresenter.h" + +// VTABLE 0x100dc618 +// SIZE 0x50 +class MxCompositeMediaPresenter : public MxCompositePresenter +{ +public: + MxCompositeMediaPresenter(); + + // OFFSET: LEGO1 0x10073f10 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f02d4 + return "MxCompositeMediaPresenter"; + } + + // OFFSET: LEGO1 0x10073f20 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxCompositeMediaPresenter::ClassName()) || MxCompositePresenter::IsA(name); + } + +}; + +#endif // MXCOMPOSITEMEDIAPRESENTER_H diff --git a/LEGO1/mxcompositepresenter.cpp b/LEGO1/mxcompositepresenter.cpp new file mode 100644 index 00000000..e42dbadb --- /dev/null +++ b/LEGO1/mxcompositepresenter.cpp @@ -0,0 +1,13 @@ +#include "mxcompositepresenter.h" + +// OFFSET: LEGO1 0x100b60b0 STUB +MxCompositePresenter::MxCompositePresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b6390 STUB +MxCompositePresenter::~MxCompositePresenter() +{ + // TODO +} diff --git a/LEGO1/mxcompositepresenter.h b/LEGO1/mxcompositepresenter.h new file mode 100644 index 00000000..471f3087 --- /dev/null +++ b/LEGO1/mxcompositepresenter.h @@ -0,0 +1,29 @@ +#ifndef MXCOMPOSITEPRESENTER_H +#define MXCOMPOSITEPRESENTER_H + +#include "mxpresenter.h" + +// VTABLE 0x100dc618 +// SIZE 0x4c +class MxCompositePresenter : public MxPresenter +{ +public: + MxCompositePresenter(); + virtual ~MxCompositePresenter() override; // vtable+0x0 + + // OFFSET: LEGO1 0x100b6210 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0774 + return "MxCompositePresenter"; + } + + // OFFSET: LEGO1 0x100b6220 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxCompositePresenter::ClassName()) || MxPresenter::IsA(name); + } + +}; + +#endif // MXCOMPOSITEPRESENTER_H diff --git a/LEGO1/mxcontrolpresenter.cpp b/LEGO1/mxcontrolpresenter.cpp new file mode 100644 index 00000000..e9e10ef8 --- /dev/null +++ b/LEGO1/mxcontrolpresenter.cpp @@ -0,0 +1,7 @@ +#include "mxcontrolpresenter.h" + +// OFFSET: LEGO1 0x10043f50 STUB +MxControlPresenter::MxControlPresenter() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/mxcontrolpresenter.h b/LEGO1/mxcontrolpresenter.h new file mode 100644 index 00000000..909a3502 --- /dev/null +++ b/LEGO1/mxcontrolpresenter.h @@ -0,0 +1,29 @@ +#ifndef MXCONTROLPRESENTER_H +#define MXCONTROLPRESENTER_H + +#include "mxcompositepresenter.h" + +// VTABLE 0x100d7b88 +// SIZE 0x5c +class MxControlPresenter : public MxCompositePresenter +{ +public: + MxControlPresenter(); + + // OFFSET: LEGO1 0x10044000 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0514 + return "MxControlPresenter"; + } + + // OFFSET: LEGO1 0x10044010 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxControlPresenter::ClassName()) || MxCompositePresenter::IsA(name); + } + +}; + + +#endif // MXCONTROLPRESENTER_H diff --git a/LEGO1/mxcore.h b/LEGO1/mxcore.h index d870b3b3..446ee91e 100644 --- a/LEGO1/mxcore.h +++ b/LEGO1/mxcore.h @@ -7,6 +7,8 @@ class MxParam; +// VTABLE 0x100dc0f8 +// SIZE 0x8 class MxCore { public: @@ -16,10 +18,17 @@ class MxCore virtual long Tickle(); // vtable+08 // OFFSET: LEGO1 0x100144c0 - inline virtual const char *ClassName() const { return "MxCore"; }; // vtable+0c + inline virtual const char *ClassName() const // vtable+0c + { + // 0x100f007c + return "MxCore"; + } // OFFSET: LEGO1 0x100140d0 - inline virtual MxBool IsA(const char *name) const { return !strcmp(name, MxCore::ClassName()); }; // vtable+10 + inline virtual MxBool IsA(const char *name) const // vtable+10 + { + return !strcmp(name, MxCore::ClassName()); + } private: unsigned int m_id; diff --git a/LEGO1/mxdiskstreamcontroller.cpp b/LEGO1/mxdiskstreamcontroller.cpp new file mode 100644 index 00000000..c178c0a5 --- /dev/null +++ b/LEGO1/mxdiskstreamcontroller.cpp @@ -0,0 +1,21 @@ +#include "mxdiskstreamcontroller.h" + +// OFFSET: LEGO1 0x100c7120 STUB +MxDiskStreamController::MxDiskStreamController() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c7530 STUB +MxDiskStreamController::~MxDiskStreamController() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c8640 STUB +long MxDiskStreamController::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/mxdiskstreamcontroller.h b/LEGO1/mxdiskstreamcontroller.h new file mode 100644 index 00000000..773f6b85 --- /dev/null +++ b/LEGO1/mxdiskstreamcontroller.h @@ -0,0 +1,34 @@ +#ifndef MXDISKSTREAMCONTROLLER_H +#define MXDISKSTREAMCONTROLLER_H + +#include + +#include "mxstreamcontroller.h" +#include "mxtypes.h" + +// VTABLE 0x100dccb8 +// SIZE 0xc8 +class MxDiskStreamController : public MxStreamController +{ +public: + MxDiskStreamController(); + virtual ~MxDiskStreamController() override; + + virtual long Tickle() override; // vtable+0x8 + + // OFFSET: LEGO1 0x100c7360 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10102144 + return "MxDiskStreamController"; + } + + // OFFSET: LEGO1 0x100c7370 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDiskStreamController::ClassName()) || MxStreamController::IsA(name); + } + +}; + +#endif // MXDISKSTREAMCONTROLLER_H diff --git a/LEGO1/mxdiskstreamprovider.cpp b/LEGO1/mxdiskstreamprovider.cpp new file mode 100644 index 00000000..5e59efee --- /dev/null +++ b/LEGO1/mxdiskstreamprovider.cpp @@ -0,0 +1,13 @@ +#include "mxdiskstreamprovider.h" + +// OFFSET: LEGO1 0x100d0f70 +MxDiskStreamProvider::MxDiskStreamProvider() +{ + // TODO +} + +// OFFSET: LEGO1 0x100d1240 +MxDiskStreamProvider::~MxDiskStreamProvider() +{ + // TODO +} diff --git a/LEGO1/mxdiskstreamprovider.h b/LEGO1/mxdiskstreamprovider.h new file mode 100644 index 00000000..198b6062 --- /dev/null +++ b/LEGO1/mxdiskstreamprovider.h @@ -0,0 +1,28 @@ +#ifndef MXDISKSTREAMPROVIDER_H +#define MXDISKSTREAMPROVIDER_H + +#include "mxstreamprovider.h" + +// VTABLE 0x100dd138 +class MxDiskStreamProvider : public MxStreamProvider +{ +public: + MxDiskStreamProvider(); + + virtual ~MxDiskStreamProvider() override; + + // OFFSET: LEGO1 0x100d1160 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x1010287c + return "MxDiskStreamProvider"; + } + + // OFFSET: LEGO1 0x100d1170 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDiskStreamProvider::ClassName()) || MxStreamProvider::IsA(name); + } +}; + +#endif // MXDISKSTREAMPROVIDER_H diff --git a/LEGO1/mxdsaction.cpp b/LEGO1/mxdsaction.cpp new file mode 100644 index 00000000..a193ab21 --- /dev/null +++ b/LEGO1/mxdsaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsaction.h" + +// OFFSET: LEGO1 0x100ad810 +MxDSAction::MxDSAction() +{ + // TODO +} + +// OFFSET: LEGO1 0x100ada80 +MxDSAction::~MxDSAction() +{ + // TODO +} diff --git a/LEGO1/mxdsaction.h b/LEGO1/mxdsaction.h index 558cd035..e26d28a6 100644 --- a/LEGO1/mxdsaction.h +++ b/LEGO1/mxdsaction.h @@ -3,12 +3,27 @@ #include "mxdsobject.h" +// VTABLE 0x100dc098 +// SIZE 0x94 class MxDSAction : public MxDSObject { public: __declspec(dllexport) MxDSAction(); __declspec(dllexport) virtual ~MxDSAction(); + // OFFSET: LEGO1 0x100ad980 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101013f4 + return "MxDSAction"; + } + + // OFFSET: LEGO1 0x100ad990 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSAction::ClassName()) || MxDSObject::IsA(name); + } + int m_unk2c; int m_unk30; int m_unk34; diff --git a/LEGO1/mxdsanim.cpp b/LEGO1/mxdsanim.cpp new file mode 100644 index 00000000..9a56d359 --- /dev/null +++ b/LEGO1/mxdsanim.cpp @@ -0,0 +1,13 @@ +#include "mxdsanim.h" + +// OFFSET: LEGO1 0x100c8ff0 +MxDSAnim::MxDSAnim() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c91a0 +MxDSAnim::~MxDSAnim() +{ + // TODO +} diff --git a/LEGO1/mxdsanim.h b/LEGO1/mxdsanim.h new file mode 100644 index 00000000..fdef0859 --- /dev/null +++ b/LEGO1/mxdsanim.h @@ -0,0 +1,29 @@ +#ifndef MXDSANIM_H +#define MXDSANIM_H + +#include "mxdsmediaaction.h" + +// VTABLE 0x100dcd88 +// SIZE 0xb8 +class MxDSAnim : public MxDSMediaAction +{ +public: + MxDSAnim(); + + virtual ~MxDSAnim() override; + + // OFFSET: LEGO1 0x100c9060 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101025d8 + return "MxDSAnim"; + } + + // OFFSET: LEGO1 0x100c9070 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSAnim::ClassName()) || MxDSMediaAction::IsA(name); + } +}; + +#endif // MXDSANIM_H diff --git a/LEGO1/mxdschunk.cpp b/LEGO1/mxdschunk.cpp new file mode 100644 index 00000000..7ec8531c --- /dev/null +++ b/LEGO1/mxdschunk.cpp @@ -0,0 +1,13 @@ +#include "mxdschunk.h" + +// OFFSET: LEGO1 0x100be050 STUB +MxDSChunk::MxDSChunk() +{ + // TODO +} + +// OFFSET: LEGO1 0x100be170 STUB +MxDSChunk::~MxDSChunk() +{ + // TODO +} diff --git a/LEGO1/mxdschunk.h b/LEGO1/mxdschunk.h new file mode 100644 index 00000000..8758ffa3 --- /dev/null +++ b/LEGO1/mxdschunk.h @@ -0,0 +1,26 @@ +#ifndef MXDSCHUNK_H +#define MXDSCHUNK_H + +#include "mxcore.h" + +class MxDSChunk : public MxCore +{ +public: + MxDSChunk(); + virtual ~MxDSChunk() override; + + // OFFSET: LEGO1 0x100be0c0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10101e6c + return "MxDSChunk"; + } + + // OFFSET: LEGO1 0x100be0d0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSChunk::ClassName()) || MxCore::IsA(name); + } +}; + +#endif // MXDSCHUNK_H diff --git a/LEGO1/mxdsevent.cpp b/LEGO1/mxdsevent.cpp new file mode 100644 index 00000000..a45ec93a --- /dev/null +++ b/LEGO1/mxdsevent.cpp @@ -0,0 +1,13 @@ +#include "mxdsevent.h" + +// OFFSET: LEGO1 0x100c95f0 STUB +MxDSEvent::MxDSEvent() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c97a0 STUB +MxDSEvent::~MxDSEvent() +{ + // TODO +} diff --git a/LEGO1/mxdsevent.h b/LEGO1/mxdsevent.h new file mode 100644 index 00000000..59a00bb5 --- /dev/null +++ b/LEGO1/mxdsevent.h @@ -0,0 +1,26 @@ +#ifndef MXDSEVENT_H +#define MXDSEVENT_H + +#include "mxdsmediaaction.h" + +class MxDSEvent : public MxDSMediaAction +{ +public: + MxDSEvent(); + virtual ~MxDSEvent() override; + + // OFFSET: LEGO1 0x100c9660 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101025f0 + return "MxDSEvent"; + } + + // OFFSET: LEGO1 0x100c9670 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSEvent::ClassName()) || MxDSMediaAction::IsA(name); + } +}; + +#endif // MXDSEVENT_H diff --git a/LEGO1/mxdsfile.h b/LEGO1/mxdsfile.h index ee577e78..8e136984 100644 --- a/LEGO1/mxdsfile.h +++ b/LEGO1/mxdsfile.h @@ -1,23 +1,36 @@ #ifndef MXDSFILE_H #define MXDSFILE_H -#include "mxcore.h" -#include "mxstring.h" -#include "mxioinfo.h" #include "mxdssource.h" +#include "mxioinfo.h" +#include "mxstring.h" +// VTABLE 0x100dc890 class MxDSFile : public MxDSSource { public: __declspec(dllexport) MxDSFile(const char *filename, unsigned long skipReadingChunks); - __declspec(dllexport) virtual ~MxDSFile(); - __declspec(dllexport) virtual long Open(unsigned long); - __declspec(dllexport) virtual long Close(); - __declspec(dllexport) virtual long Read(unsigned char *,unsigned long); - __declspec(dllexport) virtual long Seek(long,int); - __declspec(dllexport) virtual unsigned long GetBufferSize(); - __declspec(dllexport) virtual unsigned long GetStreamBuffersNum(); + __declspec(dllexport) virtual ~MxDSFile(); // vtable+0x0 + // OFFSET: LEGO1 0x100c0120 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10102594 + return "MxDSFile"; + } + + // OFFSET: LEGO1 0x100c0130 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSFile::ClassName()) || MxDSSource::IsA(name); + } + + __declspec(dllexport) virtual long Open(unsigned long); // vtable+0x14 + __declspec(dllexport) virtual long Close(); // vtable+0x18 + __declspec(dllexport) virtual long Read(unsigned char *,unsigned long); // vtable+0x20 + __declspec(dllexport) virtual long Seek(long,int); // vtable+0x24 + __declspec(dllexport) virtual unsigned long GetBufferSize(); // vtable+0x28 + __declspec(dllexport) virtual unsigned long GetStreamBuffersNum(); // vtable+0x2c private: long ReadChunks(); struct ChunkHeader { diff --git a/LEGO1/mxdsmediaaction.cpp b/LEGO1/mxdsmediaaction.cpp new file mode 100644 index 00000000..9587b152 --- /dev/null +++ b/LEGO1/mxdsmediaaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsmediaaction.h" + +// OFFSET: LEGO1 0x100c8b40 +MxDSMediaAction::MxDSMediaAction() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c8cf0 +MxDSMediaAction::~MxDSMediaAction() +{ + // TODO +} diff --git a/LEGO1/mxdsmediaaction.h b/LEGO1/mxdsmediaaction.h new file mode 100644 index 00000000..5beb12f5 --- /dev/null +++ b/LEGO1/mxdsmediaaction.h @@ -0,0 +1,29 @@ +#ifndef MXDSMEDIAACTION_H +#define MXDSMEDIAACTION_H + +#include "mxdsaction.h" + +// VTABLE 0x100dcd40 +// SIZE 0xb8 +class MxDSMediaAction : public MxDSAction +{ +public: + MxDSMediaAction(); + virtual ~MxDSMediaAction() override; + + // OFFSET: LEGO1 0x100c8be0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f7624 + return "MxDSMediaAction"; + } + + // OFFSET: LEGO1 0x100c8bf0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSMediaAction::ClassName()) || MxDSAction::IsA(name); + } + +}; + +#endif // MXDSMEDIAACTION_H diff --git a/LEGO1/mxdsmultiaction.cpp b/LEGO1/mxdsmultiaction.cpp new file mode 100644 index 00000000..4b36f2ec --- /dev/null +++ b/LEGO1/mxdsmultiaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsmultiaction.h" + +// OFFSET: LEGO1 0x100c9b90 +MxDSMultiAction::MxDSMultiAction() +{ + +} + +// OFFSET: LEGO1 0x100ca060 +MxDSMultiAction::~MxDSMultiAction() +{ + +} diff --git a/LEGO1/mxdsmultiaction.h b/LEGO1/mxdsmultiaction.h new file mode 100644 index 00000000..af3d69df --- /dev/null +++ b/LEGO1/mxdsmultiaction.h @@ -0,0 +1,28 @@ +#ifndef MXDSMULTIACTION_H +#define MXDSMULTIACTION_H + +#include "mxdsaction.h" + +// VTABLE 0x100dcef0 +// SIZE 0x9c +class MxDSMultiAction : public MxDSAction +{ +public: + MxDSMultiAction(); + virtual ~MxDSMultiAction() override; + + // OFFSET: LEGO1 0x100c9f50 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10101dbc + return "MxDSMultiAction"; + } + + // OFFSET: LEGO1 0x100c9f60 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSMultiAction::ClassName()) || MxDSAction::IsA(name); + } +}; + +#endif // MXDSMULTIACTION_H diff --git a/LEGO1/mxdsobject.cpp b/LEGO1/mxdsobject.cpp index 7323f446..11b912a0 100644 --- a/LEGO1/mxdsobject.cpp +++ b/LEGO1/mxdsobject.cpp @@ -15,6 +15,12 @@ MxDSObject::MxDSObject() this->m_unk28 = 0; } +// OFFSET: LEGO1 0x100bf7e0 +MxDSObject::~MxDSObject() +{ + // TODO +} + // OFFSET: LEGO1 0x100bf8e0 void MxDSObject::SetObjectName(const char *p_name) { diff --git a/LEGO1/mxdsobject.h b/LEGO1/mxdsobject.h index 468076f7..4f0aced6 100644 --- a/LEGO1/mxdsobject.h +++ b/LEGO1/mxdsobject.h @@ -4,12 +4,28 @@ #include "mxcore.h" #include "mxatomid.h" +// VTABLE 0x100dc868 +// SIZE 0x2c class MxDSObject : public MxCore { public: __declspec(dllexport) void SetObjectName(const char *); MxDSObject(); + virtual ~MxDSObject() override; + + // OFFSET: LEGO1 0x100bf730 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10101400 + return "MxDSObject"; + } + + // OFFSET: LEGO1 0x100bf740 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSObject::ClassName()) || MxCore::IsA(name); + } inline const MxAtomId& GetAtomId() { return this->m_atomId; } inline int GetUnknown1c() { return this->m_unk1c; } diff --git a/LEGO1/mxdsobjectaction.cpp b/LEGO1/mxdsobjectaction.cpp new file mode 100644 index 00000000..990168da --- /dev/null +++ b/LEGO1/mxdsobjectaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsobjectaction.h" + +// OFFSET: LEGO1 0x100c8870 +MxDSObjectAction::MxDSObjectAction() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c8a20 +MxDSObjectAction::~MxDSObjectAction() +{ + // TODO +} diff --git a/LEGO1/mxdsobjectaction.h b/LEGO1/mxdsobjectaction.h new file mode 100644 index 00000000..12e147fc --- /dev/null +++ b/LEGO1/mxdsobjectaction.h @@ -0,0 +1,28 @@ +#ifndef MXDSOBJECTACTION_H +#define MXDSOBJECTACTION_H + +#include "mxdsmediaaction.h" + +// VTABLE 0x100dccf8 +// SIZE 0xb8 +class MxDSObjectAction : public MxDSMediaAction +{ +public: + MxDSObjectAction(); + virtual ~MxDSObjectAction() override; + + // OFFSET: LEGO1 0x100c88e0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101025c4 + return "MxDSObjectAction"; + } + + // OFFSET: LEGO1 0x100c88f0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSObjectAction::ClassName()) || MxDSMediaAction::IsA(name); + } +}; + +#endif // MXDSOBJECTACTION_H diff --git a/LEGO1/mxdsparallelaction.cpp b/LEGO1/mxdsparallelaction.cpp new file mode 100644 index 00000000..78b9623a --- /dev/null +++ b/LEGO1/mxdsparallelaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsparallelaction.h" + +// OFFSET: LEGO1 0x100cae80 +MxDSParallelAction::MxDSParallelAction() +{ + +} + +// OFFSET: LEGO1 0x100cb040 +MxDSParallelAction::~MxDSParallelAction() +{ + +} diff --git a/LEGO1/mxdsparallelaction.h b/LEGO1/mxdsparallelaction.h new file mode 100644 index 00000000..067dc82c --- /dev/null +++ b/LEGO1/mxdsparallelaction.h @@ -0,0 +1,29 @@ +#ifndef MXDSPARALLELACTION_H +#define MXDSPARALLELACTION_H + +#include "mxdsmultiaction.h" + +// VTABLE 0x100dcf80 +// SIZE 0x9c +class MxDSParallelAction : public MxDSMultiAction +{ +public: + MxDSParallelAction(); + virtual ~MxDSParallelAction() override; + + // OFFSET: LEGO1 0x100caf00 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10102608 + return "MxDSParallelAction"; + } + + // OFFSET: LEGO1 0x100caf10 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSParallelAction::ClassName()) || MxDSMultiAction::IsA(name); + } + +}; + +#endif // MXDSPARALLELACTION_H diff --git a/LEGO1/mxdsselectaction.cpp b/LEGO1/mxdsselectaction.cpp new file mode 100644 index 00000000..575aba29 --- /dev/null +++ b/LEGO1/mxdsselectaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsselectaction.h" + +// OFFSET: LEGO1 0x100cb2b0 +MxDSSelectAction::MxDSSelectAction() +{ + +} + +// OFFSET: LEGO1 0x100cb8d0 +MxDSSelectAction::~MxDSSelectAction() +{ + +} diff --git a/LEGO1/mxdsselectaction.h b/LEGO1/mxdsselectaction.h new file mode 100644 index 00000000..cb5374e1 --- /dev/null +++ b/LEGO1/mxdsselectaction.h @@ -0,0 +1,29 @@ +#ifndef MXDSSELECTACTION_H +#define MXDSSELECTACTION_H + +#include "mxdsparallelaction.h" + +// VTABLE 0x100dcfc8 +// SIZE 0xb0 +class MxDSSelectAction : public MxDSParallelAction +{ +public: + MxDSSelectAction(); + virtual ~MxDSSelectAction() override; + + // OFFSET: LEGO1 0x100cb6f0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x1010261c + return "MxDSSelectAction"; + } + + // OFFSET: LEGO1 0x100cb700 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSSelectAction::ClassName()) || MxDSParallelAction::IsA(name); + } + +}; + +#endif // MXDSSELECTACTION_H diff --git a/LEGO1/mxdsserialaction.cpp b/LEGO1/mxdsserialaction.cpp new file mode 100644 index 00000000..a5e8f623 --- /dev/null +++ b/LEGO1/mxdsserialaction.cpp @@ -0,0 +1,13 @@ +#include "mxdsserialaction.h" + +// OFFSET: LEGO1 0x100ca9d0 +MxDSSerialAction::MxDSSerialAction() +{ + +} + +// OFFSET: LEGO1 0x100cac10 +MxDSSerialAction::~MxDSSerialAction() +{ + +} diff --git a/LEGO1/mxdsserialaction.h b/LEGO1/mxdsserialaction.h new file mode 100644 index 00000000..2b260556 --- /dev/null +++ b/LEGO1/mxdsserialaction.h @@ -0,0 +1,28 @@ +#ifndef MXDSSERIALACTION_H +#define MXDSSERIALACTION_H + +#include "mxdsmultiaction.h" + +// VTABLE 0x100dcf38 +// SIZE 0xa8 +class MxDSSerialAction : public MxDSMultiAction +{ +public: + MxDSSerialAction(); + virtual ~MxDSSerialAction() override; + + // OFFSET: LEGO1 0x100caad0 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f75dc + return "MxDSSerialAction"; + } + + // OFFSET: LEGO1 0x100caae0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSSerialAction::ClassName()) || MxDSMultiAction::IsA(name); + } +}; + +#endif // MXDSSERIALACTION_H diff --git a/LEGO1/mxdssound.cpp b/LEGO1/mxdssound.cpp new file mode 100644 index 00000000..4f2b0d61 --- /dev/null +++ b/LEGO1/mxdssound.cpp @@ -0,0 +1,13 @@ +#include "mxdssound.h" + +// OFFSET: LEGO1 0x100c92c0 +MxDSSound::MxDSSound() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c9470 +MxDSSound::~MxDSSound() +{ + // TODO +} diff --git a/LEGO1/mxdssound.h b/LEGO1/mxdssound.h new file mode 100644 index 00000000..45a61d63 --- /dev/null +++ b/LEGO1/mxdssound.h @@ -0,0 +1,29 @@ +#ifndef MXDSSOUND_H +#define MXDSSOUND_H + +#include "mxdsmediaaction.h" + +// VTABLE 0x100dcdd0 +// SIZE 0xc0 +class MxDSSound : public MxDSMediaAction +{ +public: + MxDSSound(); + virtual ~MxDSSound() override; + + // OFFSET: LEGO1 0x100c9330 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101025e4 + return "MxDSSound"; + } + + // OFFSET: LEGO1 0x100c9340 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSSound::ClassName()) || MxDSMediaAction::IsA(name); + } +}; + + +#endif // MXDSSOUND_H diff --git a/LEGO1/mxdssource.h b/LEGO1/mxdssource.h index 7ee01490..2837e7c2 100644 --- a/LEGO1/mxdssource.h +++ b/LEGO1/mxdssource.h @@ -3,6 +3,7 @@ #include "mxcore.h" +// VTABLE 0x100dc8c8 class MxDSSource : public MxCore { public: @@ -12,6 +13,19 @@ class MxDSSource : public MxCore , m_position(-1) {} + // OFFSET: LEGO1 0x100c0010 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x10102588 + return "MxDSSource"; + } + + // OFFSET: LEGO1 0x100c0020 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSSource::ClassName()) || MxCore::IsA(name); + } + virtual long Open(unsigned long) = 0; virtual long Close() = 0; virtual void SomethingWhichCallsRead(void* pUnknownObject); @@ -27,4 +41,4 @@ class MxDSSource : public MxCore long m_position; }; -#endif // MXDSSOURCE_H \ No newline at end of file +#endif // MXDSSOURCE_H diff --git a/LEGO1/mxdsstill.cpp b/LEGO1/mxdsstill.cpp new file mode 100644 index 00000000..0a5434f1 --- /dev/null +++ b/LEGO1/mxdsstill.cpp @@ -0,0 +1,13 @@ +#include "mxdsstill.h" + +// OFFSET: LEGO1 0x100c98c0 +MxDSStill::MxDSStill() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c9a70 +MxDSStill::~MxDSStill() +{ + // TODO +} diff --git a/LEGO1/mxdsstill.h b/LEGO1/mxdsstill.h new file mode 100644 index 00000000..920f890a --- /dev/null +++ b/LEGO1/mxdsstill.h @@ -0,0 +1,28 @@ +#ifndef MXDSSTILL_H +#define MXDSSTILL_H + +#include "mxdsmediaaction.h" + +// VTABLE 0x100dce60 +// SIZE 0xb8 +class MxDSStill : public MxDSMediaAction +{ +public: + MxDSStill(); + virtual ~MxDSStill() override; + + // OFFSET: LEGO1 0x100c9930 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101025fc + return "MxDSStill"; + } + + // OFFSET: LEGO1 0x100c9940 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSStill::ClassName()) || MxDSMediaAction::IsA(name); + } +}; + +#endif // MXDSSTILL_H diff --git a/LEGO1/mxdssubscriber.cpp b/LEGO1/mxdssubscriber.cpp new file mode 100644 index 00000000..8a011fed --- /dev/null +++ b/LEGO1/mxdssubscriber.cpp @@ -0,0 +1,13 @@ +#include "mxdssubscriber.h" + +// OFFSET: LEGO1 0x100b7bb0 +MxDSSubscriber::MxDSSubscriber() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b7e00 +MxDSSubscriber::~MxDSSubscriber() +{ + // TODO +} diff --git a/LEGO1/mxdssubscriber.h b/LEGO1/mxdssubscriber.h new file mode 100644 index 00000000..fb3b0d04 --- /dev/null +++ b/LEGO1/mxdssubscriber.h @@ -0,0 +1,28 @@ +#ifndef MXDSSUBSCRIBER_H +#define MXDSSUBSCRIBER_H + +#include "mxcore.h" + +// VTABLE 0x100dc698 +// SIZE 0x4c +class MxDSSubscriber : public MxCore +{ +public: + MxDSSubscriber(); + virtual ~MxDSSubscriber() override; + + // OFFSET: LEGO1 0x100b7d50 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x101020f8 + return "MxDSSubscriber"; + } + + // OFFSET: LEGO1 0x100b7d60 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxDSSubscriber::ClassName()) || MxCore::IsA(name); + } +}; + +#endif // MXDSSUBSCRIBER_H diff --git a/LEGO1/mxentity.cpp b/LEGO1/mxentity.cpp new file mode 100644 index 00000000..526a03e2 --- /dev/null +++ b/LEGO1/mxentity.cpp @@ -0,0 +1,13 @@ +#include "mxentity.h" + +// OFFSET: LEGO1 0x1001d190 STUB +MxEntity::MxEntity() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000c110 STUB +MxEntity::~MxEntity() +{ + // TODO +} diff --git a/LEGO1/mxentity.h b/LEGO1/mxentity.h new file mode 100644 index 00000000..dda04646 --- /dev/null +++ b/LEGO1/mxentity.h @@ -0,0 +1,30 @@ +#ifndef MXENTITY_H +#define MXENTITY_H + +#include "mxcore.h" + +// VTABLE 0x100d5390 +class MxEntity : public MxCore +{ +public: + MxEntity(); + virtual ~MxEntity() override; + + // OFFSET: LEGO1 0x1000c180 + inline virtual const char* ClassName() const override // vtable+0xc + { + // 0x100f0070 + return "MxEntity"; + } + + // OFFSET: LEGO1 0x1000c190 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxEntity::ClassName()) || MxCore::IsA(name); + } + + // 0x8: MxResult + // 0xc MxAtomId +}; + +#endif // MXENTITY_H diff --git a/LEGO1/mxeventmanager.cpp b/LEGO1/mxeventmanager.cpp new file mode 100644 index 00000000..786420bc --- /dev/null +++ b/LEGO1/mxeventmanager.cpp @@ -0,0 +1,13 @@ +#include "mxeventmanager.h" + +// OFFSET: LEGO1 0x100c0360 STUB +MxEventManager::MxEventManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c03f0 STUB +MxEventManager::~MxEventManager() +{ + // TODO +} diff --git a/LEGO1/mxeventmanager.h b/LEGO1/mxeventmanager.h index 5d187256..be5a796c 100644 --- a/LEGO1/mxeventmanager.h +++ b/LEGO1/mxeventmanager.h @@ -1,9 +1,16 @@ #ifndef MXEVENTMANAGER_H #define MXEVENTMANAGER_H -class MxEventManager +#include "mxunknown100dc6b0.h" + +// VTABLE 0x100dc900 +// SIZE 0x2c +class MxEventManager : public MxUnknown100dc6b0 { - +public: + MxEventManager(); + virtual ~MxEventManager() override; + }; #endif // MXEVENTMANAGER_H diff --git a/LEGO1/mxeventpresenter.cpp b/LEGO1/mxeventpresenter.cpp new file mode 100644 index 00000000..ba78203f --- /dev/null +++ b/LEGO1/mxeventpresenter.cpp @@ -0,0 +1,19 @@ +#include "mxeventpresenter.h" + +// OFFSET: LEGO1 0x100c2b70 +MxEventPresenter::MxEventPresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x100c2d40 STUB +MxEventPresenter::~MxEventPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100c2da0 STUB +void MxEventPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/mxeventpresenter.h b/LEGO1/mxeventpresenter.h new file mode 100644 index 00000000..2adb8cfa --- /dev/null +++ b/LEGO1/mxeventpresenter.h @@ -0,0 +1,32 @@ +#ifndef MXEVENTPRESENTER_H +#define MXEVENTPRESENTER_H + +#include "mxmediapresenter.h" + +// VTABLE 0x100dca88 +// SIZE 0x54 +class MxEventPresenter : public MxMediaPresenter +{ +public: + MxEventPresenter(); + virtual ~MxEventPresenter() override; + + // OFFSET: LEGO1 0x100c2c30 + inline virtual const char* ClassName() const override // vtable+0xc + { + // 0x10101dcc + return "MxEventPresenter"; + } + + // OFFSET: LEGO1 0x100c2c40 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxEventPresenter::ClassName()) || MxMediaPresenter::IsA(name); + } + +private: + void Init(); + +}; + +#endif // MXEVENTPRESENTER_H diff --git a/LEGO1/mxflcpresenter.cpp b/LEGO1/mxflcpresenter.cpp new file mode 100644 index 00000000..1e6ee289 --- /dev/null +++ b/LEGO1/mxflcpresenter.cpp @@ -0,0 +1,13 @@ +#include "mxflcpresenter.h" + +// OFFSET: LEGO1 0x100b3310 STUB +MxFlcPresenter::MxFlcPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b3420 STUB +MxFlcPresenter::~MxFlcPresenter() +{ + // TODO +} diff --git a/LEGO1/mxflcpresenter.h b/LEGO1/mxflcpresenter.h new file mode 100644 index 00000000..5d63c41c --- /dev/null +++ b/LEGO1/mxflcpresenter.h @@ -0,0 +1,28 @@ +#ifndef MXFLCPRESENTER_H +#define MXFLCPRESENTER_H + +#include "mxvideopresenter.h" + +// VTABLE 0x100dc2c0 +// SIZE 0x68 +class MxFlcPresenter : public MxVideoPresenter +{ +public: + MxFlcPresenter(); + virtual ~MxFlcPresenter() override; + + // OFFSET: LEGO1 0x100b33f0 + inline virtual const char* ClassName() const override // vtable+0xc + { + // 0x100f43c8 + return "MxFlcPresenter"; + } + + // OFFSET: LEGO1 0x1004e200 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxFlcPresenter::ClassName()) || MxVideoPresenter::IsA(name); + } +}; + +#endif // MXFLCPRESENTER_H diff --git a/LEGO1/mxloopingflcpresenter.cpp b/LEGO1/mxloopingflcpresenter.cpp new file mode 100644 index 00000000..f4602f3c --- /dev/null +++ b/LEGO1/mxloopingflcpresenter.cpp @@ -0,0 +1,19 @@ +#include "mxloopingflcpresenter.h" + +// OFFSET: LEGO1 0x100b4310 STUB +MxLoopingFlcPresenter::MxLoopingFlcPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b43b0 STUB +MxLoopingFlcPresenter::~MxLoopingFlcPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b4410 STUB +void MxLoopingFlcPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/mxloopingflcpresenter.h b/LEGO1/mxloopingflcpresenter.h new file mode 100644 index 00000000..5152e4d9 --- /dev/null +++ b/LEGO1/mxloopingflcpresenter.h @@ -0,0 +1,25 @@ +#ifndef MXLOOPINGFLCPRESENTER_H +#define MXLOOPINGFLCPRESENTER_H + +#include "mxflcpresenter.h" + +// VTABLE 0x100dc480 +// SIZE 0x6c +class MxLoopingFlcPresenter : public MxFlcPresenter +{ +public: + MxLoopingFlcPresenter(); + virtual ~MxLoopingFlcPresenter() override; + + // OFFSET: LEGO1 0x100b4380 + inline virtual const char* ClassName() const override // vtable+0xc + { + // 0x10101e20 + return "MxLoopingFlcPresenter"; + } + +private: + void Init(); +}; + +#endif // MXLOOPINGFLCPRESENTER_H diff --git a/LEGO1/mxloopingmidipresenter.h b/LEGO1/mxloopingmidipresenter.h new file mode 100644 index 00000000..e41be651 --- /dev/null +++ b/LEGO1/mxloopingmidipresenter.h @@ -0,0 +1,25 @@ +#ifndef MXLOOPINGMIDIPRESENTER_H +#define MXLOOPINGMIDIPRESENTER_H + +#include "mxmidipresenter.h" + +// VTABLE 0x100dc240 +// SIZE 0x58 +class MxLoopingMIDIPresenter : public MxMIDIPresenter +{ +public: + // OFFSET: LEGO1 0x100b1830 + inline virtual const char* ClassName() const override // vtable+0xc + { + // 0x10101de0 + return "MxLoopingMIDIPresenter"; + } + + // OFFSET: LEGO1 0x100b1840 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxLoopingMIDIPresenter::ClassName()) || MxMIDIPresenter::IsA(name); + } +}; + +#endif // MXLOOPINGMIDIPRESENTER_H diff --git a/LEGO1/mxloopingsmkpresenter.cpp b/LEGO1/mxloopingsmkpresenter.cpp new file mode 100644 index 00000000..cb038462 --- /dev/null +++ b/LEGO1/mxloopingsmkpresenter.cpp @@ -0,0 +1,19 @@ +#include "mxloopingsmkpresenter.h" + +// OFFSET: LEGO1 0x100b48b0 +MxLoopingSmkPresenter::MxLoopingSmkPresenter() +{ + Init(); +} + +// OFFSET: LEGO1 0x100b4950 STUB +MxLoopingSmkPresenter::~MxLoopingSmkPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b49b0 STUB +void MxLoopingSmkPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/mxloopingsmkpresenter.h b/LEGO1/mxloopingsmkpresenter.h new file mode 100644 index 00000000..129d98b9 --- /dev/null +++ b/LEGO1/mxloopingsmkpresenter.h @@ -0,0 +1,25 @@ +#ifndef MXLOOPINGSMKPRESENTER_H +#define MXLOOPINGSMKPRESENTER_H + +#include "mxsmkpresenter.h" + +// VTABLE 0x100dc540 +// SIZE 0x724 +class MxLoopingSmkPresenter : public MxSmkPresenter +{ +public: + MxLoopingSmkPresenter(); + virtual ~MxLoopingSmkPresenter() override; // vtable+0x0 + + // OFFSET: LEGO1 0x100b4920 + inline virtual const char* ClassName() const override // vtable+0xc + { + // 0x10101e08 + return "MxLoopingSmkPresenter"; + } + +private: + void Init(); +}; + +#endif // MXLOOPINGSMKPRESENTER_H diff --git a/LEGO1/mxmediapresenter.cpp b/LEGO1/mxmediapresenter.cpp new file mode 100644 index 00000000..793b3ea8 --- /dev/null +++ b/LEGO1/mxmediapresenter.cpp @@ -0,0 +1,14 @@ +#include "mxmediapresenter.h" + +// OFFSET: LEGO1 0x100b5d10 STUB +long MxMediaPresenter::Tickle() +{ + // TODO + return 0; +} + +// OFFSET: LEGO1 0x100b54e0 STUB +void MxMediaPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/mxmediapresenter.h b/LEGO1/mxmediapresenter.h new file mode 100644 index 00000000..3fb70d31 --- /dev/null +++ b/LEGO1/mxmediapresenter.h @@ -0,0 +1,35 @@ +#ifndef MXMEDIAPRESENTER_H +#define MXMEDIAPRESENTER_H + +#include "mxpresenter.h" + +// VTABLE 0x100d4cd8 +class MxMediaPresenter : public MxPresenter +{ +public: + inline MxMediaPresenter() + { + Init(); + } + + virtual long Tickle() override; // vtable+0x8, override MxCore + + // OFFSET: LEGO1 0x1000c5c0 + inline virtual const char *MxMediaPresenter::ClassName() const override // vtable+0xc + { + // 0x100f074c + return "MxMediaPresenter"; + } + + // OFFSET: LEGO1 0x1000c5d0 + inline virtual MxBool MxMediaPresenter::IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxMediaPresenter::ClassName()) || MxPresenter::IsA(name); + } + +private: + void Init(); + +}; + +#endif // MXMEDIAPRESENTER_H diff --git a/LEGO1/mxmidipresenter.h b/LEGO1/mxmidipresenter.h new file mode 100644 index 00000000..8a46d12a --- /dev/null +++ b/LEGO1/mxmidipresenter.h @@ -0,0 +1,11 @@ +#ifndef MXMIDIPRESENTER_H +#define MXMIDIPRESENTER_H + +#include "mxmusicpresenter.h" + +// VTABLE 0x100dca20 +class MxMIDIPresenter : public MxMusicPresenter +{ +}; + +#endif // MXMIDIPRESENTER_H diff --git a/LEGO1/mxmusicmanager.h b/LEGO1/mxmusicmanager.h index 23134708..4288ed1e 100644 --- a/LEGO1/mxmusicmanager.h +++ b/LEGO1/mxmusicmanager.h @@ -1,9 +1,11 @@ #ifndef MXMUSICMANAGER_H #define MXMUSICMANAGER_H -class MxMusicManager +#include "mxcore.h" + +// VTABLE 0x100dc930 +class MxMusicManager : public MxCore { - }; #endif // MXMUSICMANAGER_H diff --git a/LEGO1/mxmusicpresenter.cpp b/LEGO1/mxmusicpresenter.cpp new file mode 100644 index 00000000..562f047c --- /dev/null +++ b/LEGO1/mxmusicpresenter.cpp @@ -0,0 +1,7 @@ +#include "mxmusicpresenter.h" + +// OFFSET: LEGO1 0x100c22c0 STUB +MxMusicPresenter::MxMusicPresenter() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/mxmusicpresenter.h b/LEGO1/mxmusicpresenter.h new file mode 100644 index 00000000..e244b036 --- /dev/null +++ b/LEGO1/mxmusicpresenter.h @@ -0,0 +1,13 @@ +#ifndef MXMUSICPRESENTER_H +#define MXMUSICPRESENTER_H + +#include "mxaudiopresenter.h" + +// VTABLE 0x100dc9b8 +class MxMusicPresenter : public MxAudioPresenter +{ +public: + MxMusicPresenter(); +}; + +#endif // MXMUSICPRESENTER_H diff --git a/LEGO1/mxnextactiondatastart.h b/LEGO1/mxnextactiondatastart.h new file mode 100644 index 00000000..df2a2748 --- /dev/null +++ b/LEGO1/mxnextactiondatastart.h @@ -0,0 +1,12 @@ +#ifndef MXNEXTACTIONDATASTART_H +#define MXNEXTACTIONDATASTART_H + +#include "mxcore.h" + +// VTABLE 0x100dc9a0 +class MxNextActionDataStart : public MxCore +{ + +}; + +#endif // MXNEXTACTIONDATASTART_H diff --git a/LEGO1/mxnotificationmanager.cpp b/LEGO1/mxnotificationmanager.cpp new file mode 100644 index 00000000..8ce1f98b --- /dev/null +++ b/LEGO1/mxnotificationmanager.cpp @@ -0,0 +1,15 @@ +#include "mxnotificationmanager.h" + +// OFFSET: LEGO1 0x100ac450 STUB +MxNotificationManager::~MxNotificationManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x100ac800 STUB +long MxNotificationManager::Tickle() +{ + // TODO + + return 0; +} \ No newline at end of file diff --git a/LEGO1/mxnotificationmanager.h b/LEGO1/mxnotificationmanager.h index afa378e1..e350ba56 100644 --- a/LEGO1/mxnotificationmanager.h +++ b/LEGO1/mxnotificationmanager.h @@ -1,9 +1,17 @@ #ifndef MXNOTIFICATIONMANAGER_H #define MXNOTIFICATIONMANAGER_H -class MxNotificationManager +#include "mxcore.h" + +// VTABLE 0x100dc078 +class MxNotificationManager : public MxCore { - +public: + virtual ~MxNotificationManager(); // vtable+0x0 + + virtual long Tickle(); // vtable+0x8 + + // 0x10: MxCriticalSection }; #endif // MXNOTIFICATIONMANAGER_H diff --git a/LEGO1/mxobjectfactory.h b/LEGO1/mxobjectfactory.h index ad341edd..57809be9 100644 --- a/LEGO1/mxobjectfactory.h +++ b/LEGO1/mxobjectfactory.h @@ -1,7 +1,10 @@ #ifndef MXOBJECTFACTORY_H #define MXOBJECTFACTORY_H -class MxObjectFactory +#include "mxcore.h" + +// VTABLE 0x100dc220 +class MxObjectFactory : public MxCore { }; diff --git a/LEGO1/mxomni.h b/LEGO1/mxomni.h index 4c7d29e8..e9f61b7a 100644 --- a/LEGO1/mxomni.h +++ b/LEGO1/mxomni.h @@ -8,7 +8,6 @@ #include "mxobjectfactory.h" #include "mxomnicreateflags.h" #include "mxomnicreateparam.h" -#include "mxresult.h" #include "mxsoundmanager.h" #include "mxstreamer.h" #include "mxticklemanager.h" @@ -16,6 +15,8 @@ #include "mxvariabletable.h" #include "mxvideomanager.h" +// VTABLE 0x100dc168 +// SIZE 0x68 class MxOmni : public MxCore { public: diff --git a/LEGO1/mxpalette.h b/LEGO1/mxpalette.h index ab52b412..b78efd7d 100644 --- a/LEGO1/mxpalette.h +++ b/LEGO1/mxpalette.h @@ -4,8 +4,10 @@ #include #include "mxcore.h" -#include "mxresult.h" +#include "mxtypes.h" +// VTABLE 0x100dc848 +// SIZE 0x414 class MxPalette : public MxCore { public: diff --git a/LEGO1/mxpresenter.cpp b/LEGO1/mxpresenter.cpp new file mode 100644 index 00000000..893de60d --- /dev/null +++ b/LEGO1/mxpresenter.cpp @@ -0,0 +1,134 @@ +#include "mxpresenter.h" + +// OFFSET: LEGO1 0x1000bee0 STUB +void MxPresenter::DoneTickle() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b4d50 +void MxPresenter::Init() +{ + m_unk0x8 = 0; + m_action = NULL; + m_unk0x18 = 0; + m_unk0x3c = 0; + m_unk0xc = 0; + m_unk0x10 = 0; + m_unk0x14 = 0; +} + +// OFFSET: LEGO1 0x100b4fc0 STUB +void MxPresenter::ParseExtra() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000c070 STUB +MxPresenter::~MxPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b5200 STUB +long MxPresenter::Tickle() +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x100b4d80 STUB +long MxPresenter::StartAction(MxStreamController *, MxDSAction *) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x100d4d74 STUB +void MxPresenter::EndAction() +{ + // TODO +} + +// OFFSET: LEGO1 0x100d4d8c STUB +void MxPresenter::Enable(unsigned char) +{ + // TODO +} + +// OFFSET: LEGO1 0x1000be30 STUB +void MxPresenter::VTable0x14() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000be40 STUB +void MxPresenter::VTable0x18() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000be60 STUB +void MxPresenter::VTable0x1c() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000be80 STUB +void MxPresenter::VTable0x20() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000bea0 STUB +void MxPresenter::VTable0x24() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000bec0 STUB +void MxPresenter::VTable0x28() +{ + // TODO +} + +// OFFSET: LEGO1 0x1000bf70 +undefined4 MxPresenter::VTable0x34() +{ + return 0; +} + +// OFFSET: LEGO1 0x1000bf80 +void MxPresenter::InitVirtual() +{ + Init(); +} +// OFFSET: LEGO1 0x1000bf90 STUB +void MxPresenter::VTable0x44(undefined4 param) +{ + // TODO +} + +// OFFSET: LEGO1 0x1000bfb0 STUB +undefined4 MxPresenter::VTable0x48(undefined4 param) +{ + // TODO + + return undefined4(); +} + +// OFFSET: LEGO1 0x1000bfc0 +undefined4 MxPresenter::VTable0x4c() +{ + return 0; +} + +// OFFSET: LEGO1 0x1000bfd0 STUB +undefined MxPresenter::VTable0x50() +{ + // TODO + + return 0; +} diff --git a/LEGO1/mxpresenter.h b/LEGO1/mxpresenter.h index c4890c1f..6ea022da 100644 --- a/LEGO1/mxpresenter.h +++ b/LEGO1/mxpresenter.h @@ -1,18 +1,71 @@ #ifndef MXPRESENTER_H #define MXPRESENTER_H -class MxPresenter +#include "mxcore.h" + +#include "mxcriticalsection.h" + +class MxStreamController; +class MxDSAction; + +#ifndef undefined4 +#define undefined4 int +#endif + +#ifndef undefined +#define undefined int +#endif + +class MxPresenter : public MxCore { -protected: - __declspec(dllexport) virtual void DoneTickle(); - __declspec(dllexport) void Init(); - __declspec(dllexport) virtual void ParseExtra(); public: - __declspec(dllexport) virtual ~MxPresenter(); - __declspec(dllexport) virtual void Enable(unsigned char); - __declspec(dllexport) virtual void EndAction(); - __declspec(dllexport) virtual long StartAction(MxStreamController *, MxDSAction *); - __declspec(dllexport) virtual long Tickle(); + __declspec(dllexport) virtual ~MxPresenter(); // vtable+0x0 + + // OFFSET: LEGO1 0x1000bfe0 + inline virtual const char *ClassName() const // vtable+0xc + { + // 0x100f0740 + return "MxPresenter"; + } + + // OFFSET: LEGO1 0x1000bff0 + inline virtual MxBool IsA(const char *name) const // vtable+0x10 + { + return !strcmp(name, MxPresenter::ClassName()) || MxCore::IsA(name); + } + + __declspec(dllexport) virtual long Tickle(); // vtable+0x8 + virtual void VTable0x14(); // vtable+0x14 + virtual void VTable0x18(); // vtable+0x18 + virtual void VTable0x1c(); // vtable+0x1c + virtual void VTable0x20(); // vtable+0x20 + virtual void VTable0x24(); // vtable+0x24 + virtual void VTable0x28(); // vtable+0x28 + virtual undefined4 VTable0x34(); // vtable+0x34 + virtual void InitVirtual(); // vtable+0x38 + virtual void VTable0x44(undefined4 param); // vtable+0x44 + virtual undefined4 VTable0x48(undefined4 param); // vtable+0x48 + virtual undefined4 VTable0x4c(); // vtable+0x4c + virtual undefined VTable0x50(); // vtable+0x50 +protected: + __declspec(dllexport) virtual void DoneTickle(); // vtable+0x2c + __declspec(dllexport) void Init(); + __declspec(dllexport) virtual void ParseExtra(); // vtable+0x30 +public: + __declspec(dllexport) virtual long StartAction(MxStreamController *, MxDSAction *); // vtable+0x3c + __declspec(dllexport) virtual void EndAction(); // vtable+0x40 + __declspec(dllexport) virtual void Enable(unsigned char); // vtable+0x54 + + int m_unk0x8; + int m_unk0xc; + int m_unk0x10; + int m_unk0x14; + int m_unk0x18; + MxDSAction* m_action; // 0 + MxCriticalSection m_criticalSection; + int m_unk0x3c; + + // VTABLE 0x100d4d38 }; #endif // MXPRESENTER_H diff --git a/LEGO1/mxramstreamcontroller.h b/LEGO1/mxramstreamcontroller.h new file mode 100644 index 00000000..09915cbf --- /dev/null +++ b/LEGO1/mxramstreamcontroller.h @@ -0,0 +1,12 @@ +#ifndef MXRAMSTREAMCONTROLLER_H +#define MXRAMSTREAMCONTROLLER_H + +#include "mxstreamcontroller.h" + +// VTABLE 0x100dc728 +class MxRAMStreamController : public MxStreamController +{ + +}; + +#endif // MXRAMSTREAMCONTROLLER_H diff --git a/LEGO1/mxramstreamprovider.h b/LEGO1/mxramstreamprovider.h new file mode 100644 index 00000000..5422d3b3 --- /dev/null +++ b/LEGO1/mxramstreamprovider.h @@ -0,0 +1,12 @@ +#ifndef MXRAMSTREAMPROVIDER_H +#define MXRAMSTREAMPROVIDER_H + +#include "mxstreamprovider.h" + +// VTABLE 0x100dd0d0 +class MxRAMStreamProvider : public MxStreamProvider +{ + +}; + +#endif // MXRAMSTREAMPROVIDER_H diff --git a/LEGO1/mxresult.h b/LEGO1/mxresult.h deleted file mode 100644 index 7a56f493..00000000 --- a/LEGO1/mxresult.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef MXRESULT_H -#define MXRESULT_H - -typedef unsigned long MxResult; -const MxResult SUCCESS = 0; -const MxResult FAILURE = 0xFFFFFFFFL; - -#endif // MXRESULT_H diff --git a/LEGO1/mxsmkpresenter.cpp b/LEGO1/mxsmkpresenter.cpp new file mode 100644 index 00000000..9f160a99 --- /dev/null +++ b/LEGO1/mxsmkpresenter.cpp @@ -0,0 +1,13 @@ +#include "mxsmkpresenter.h" + +// OFFSET: LEGO1 0x100b3650 STUB +MxSmkPresenter::MxSmkPresenter() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b38d0 STUB +void MxSmkPresenter::Init() +{ + // TODO +} diff --git a/LEGO1/mxsmkpresenter.h b/LEGO1/mxsmkpresenter.h new file mode 100644 index 00000000..b439bc2a --- /dev/null +++ b/LEGO1/mxsmkpresenter.h @@ -0,0 +1,18 @@ +#ifndef MXSMKPRESENTER_H +#define MXSMKPRESENTER_H + +#include "mxvideopresenter.h" + +// VTABLE 0x100dc348 +// SIZE 0x720 +class MxSmkPresenter : public MxVideoPresenter +{ +public: + MxSmkPresenter(); + +private: + void Init(); + +}; + +#endif // MXSMKPRESENTER_H diff --git a/LEGO1/mxsoundmanager.cpp b/LEGO1/mxsoundmanager.cpp new file mode 100644 index 00000000..d12ecee1 --- /dev/null +++ b/LEGO1/mxsoundmanager.cpp @@ -0,0 +1,13 @@ +#include "mxsoundmanager.h" + +// OFFSET: LEGO1 0x100ae740 STUB +MxSoundManager::MxSoundManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x100ae7d0 STUB +MxSoundManager::~MxSoundManager() +{ + // TODO +} diff --git a/LEGO1/mxsoundmanager.h b/LEGO1/mxsoundmanager.h index 7c0b0cf1..3421a5d6 100644 --- a/LEGO1/mxsoundmanager.h +++ b/LEGO1/mxsoundmanager.h @@ -1,9 +1,17 @@ #ifndef MXSOUNDMANAGER_H #define MXSOUNDMANAGER_H +#include "mxcore.h" + +// VTABLE 0x100dc128 +// SIZE 0x3c +// Base vtables are: MxCore -> 0x100dc6b0 -> 0x100dc6e0 -> MxSoundManager class MxSoundManager { - +public: + MxSoundManager(); + virtual ~MxSoundManager() override; // vtable+0x0 + }; #endif // MXSOUNDMANAGER_H diff --git a/LEGO1/mxsoundpresenter.cpp b/LEGO1/mxsoundpresenter.cpp new file mode 100644 index 00000000..50e04ce4 --- /dev/null +++ b/LEGO1/mxsoundpresenter.cpp @@ -0,0 +1 @@ +#include "mxsoundpresenter.h" diff --git a/LEGO1/mxsoundpresenter.h b/LEGO1/mxsoundpresenter.h new file mode 100644 index 00000000..53d7000d --- /dev/null +++ b/LEGO1/mxsoundpresenter.h @@ -0,0 +1,25 @@ +#ifndef MXSOUNDPRESENTER_H +#define MXSOUNDPRESENTER_H + +#include "mxaudiopresenter.h" + +// VTABLE 0x100d4b08 +class MxSoundPresenter : public MxAudioPresenter +{ +public: + // OFFSET: LEGO1 0x1000d4a0 + inline virtual const char *ClassName() const // vtable+0x0c + { + // 0x100f07a0 + return "MxSoundPresenter"; + }; + + // OFFSET: LEGO1 0x1000d4b0 + inline virtual MxBool IsA(const char *name) const // vtable+0x10 + { + return !strcmp(name, MxSoundPresenter::ClassName()) || MxAudioPresenter::IsA(name); + }; + +}; + +#endif // MXSOUNDPRESENTER_H diff --git a/LEGO1/mxstillpresenter.cpp b/LEGO1/mxstillpresenter.cpp new file mode 100644 index 00000000..bc2b03b5 --- /dev/null +++ b/LEGO1/mxstillpresenter.cpp @@ -0,0 +1 @@ +#include "mxstillpresenter.h" diff --git a/LEGO1/mxstillpresenter.h b/LEGO1/mxstillpresenter.h new file mode 100644 index 00000000..d9376b8e --- /dev/null +++ b/LEGO1/mxstillpresenter.h @@ -0,0 +1,13 @@ +#ifndef MXSTILLPRESENTER_H +#define MXSTILLPRESENTER_H + +#include "mxvideopresenter.h" + +// VTABLE 0x100d7a38 +// SIZE 0x6c +class MxStillPresenter : public MxVideoPresenter +{ +public: +}; + +#endif // MXSTILLPRESENTER_H diff --git a/LEGO1/mxstreamchunk.h b/LEGO1/mxstreamchunk.h new file mode 100644 index 00000000..51f1a34d --- /dev/null +++ b/LEGO1/mxstreamchunk.h @@ -0,0 +1,12 @@ +#ifndef MXSTREAMCHUNK_H +#define MXSTREAMCHUNK_H + +#include "mxdschunk.h" + +// VTABLE 0x100dc2a8 +class MxStreamChunk : public MxDSChunk +{ + +}; + +#endif // MXSTREAMCHUNK_H diff --git a/LEGO1/mxstreamcontroller.h b/LEGO1/mxstreamcontroller.h index dba24176..8884b49f 100644 --- a/LEGO1/mxstreamcontroller.h +++ b/LEGO1/mxstreamcontroller.h @@ -2,10 +2,26 @@ #define MXSTREAMCONTROLLER_H #include "mxatomid.h" +#include "mxcore.h" -class MxStreamController +// VTABLE 0x100dc968 +class MxStreamController : public MxCore { public: + + // OFFSET: LEGO1 0x100c0f10 + inline virtual const char *ClassName() const override // vtable+0xc + { + // 0x10102130 + return "MxStreamController"; + } + + // OFFSET: LEGO1 0x100c0f20 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxStreamController::ClassName()) || MxCore::IsA(name); + } + int m_unk00; int m_unk04; int m_unk08; diff --git a/LEGO1/mxstreamer.cpp b/LEGO1/mxstreamer.cpp new file mode 100644 index 00000000..b6da4b1d --- /dev/null +++ b/LEGO1/mxstreamer.cpp @@ -0,0 +1,23 @@ +#include "mxstreamer.h" + +// OFFSET: LEGO1 0x100b91d0 STUB +MxStreamer::~MxStreamer() +{ + // TODO +} + +// OFFSET: LEGO1 0x100b9b60 STUB +long MxStreamer::Notify(MxParam &p) +{ + // TODO + + return 0; +} + +// OFFSET: LEGO1 0x100b9190 STUB +MxResult MxStreamer::VTable0x14() +{ + // TODO + + return MxResult(); +} diff --git a/LEGO1/mxstreamer.h b/LEGO1/mxstreamer.h index 785c475b..f8eeb43b 100644 --- a/LEGO1/mxstreamer.h +++ b/LEGO1/mxstreamer.h @@ -1,14 +1,21 @@ #ifndef MXSTREAMER_H #define MXSTREAMER_H +#include "mxcore.h" #include "mxstreamcontroller.h" +#include "mxtypes.h" -class MxStreamer +// VTABLE 0x100dc710 +class MxStreamer : public MxCore { public: + virtual ~MxStreamer() override; + __declspec(dllexport) MxStreamController *Open(const char *name, unsigned short p); __declspec(dllexport) long Close(const char *p); + virtual long Notify(MxParam &p) override; // vtable+0x4 + virtual MxResult VTable0x14() override; // vtable+0x14 }; #endif // MXSTREAMER_H diff --git a/LEGO1/mxstreamprovider.h b/LEGO1/mxstreamprovider.h new file mode 100644 index 00000000..fda71bb1 --- /dev/null +++ b/LEGO1/mxstreamprovider.h @@ -0,0 +1,12 @@ +#ifndef MXSTREAMPROVIDER_H +#define MXSTREAMPROVIDER_H + +#include "mxcore.h" + +// VTABLE 0x100dd100 +class MxStreamProvider : public MxCore +{ + +}; + +#endif // MXSTREAMPROVIDER_H diff --git a/LEGO1/mxstring.h b/LEGO1/mxstring.h index 03da0ec4..a6552bb5 100644 --- a/LEGO1/mxstring.h +++ b/LEGO1/mxstring.h @@ -3,6 +3,7 @@ #include "mxcore.h" +// VTABLE 0x100dc110 class MxString : public MxCore { public: diff --git a/LEGO1/mxticklemanager.h b/LEGO1/mxticklemanager.h index 24600dca..7ef50622 100644 --- a/LEGO1/mxticklemanager.h +++ b/LEGO1/mxticklemanager.h @@ -3,6 +3,7 @@ #include "mxcore.h" +// VTABLE 0x100d86d8 class MxTickleManager : public MxCore { public: diff --git a/LEGO1/mxtimer.h b/LEGO1/mxtimer.h index 8f35d205..d79023d8 100644 --- a/LEGO1/mxtimer.h +++ b/LEGO1/mxtimer.h @@ -3,6 +3,8 @@ #include "mxcore.h" +// VTABLE 0x100dc0e0 +// SIZE 0x10 class MxTimer : public MxCore { public: diff --git a/LEGO1/mxtransitionmanager.cpp b/LEGO1/mxtransitionmanager.cpp new file mode 100644 index 00000000..275335e5 --- /dev/null +++ b/LEGO1/mxtransitionmanager.cpp @@ -0,0 +1,21 @@ +#include "mxtransitionmanager.h" + +// OFFSET: LEGO1 0x1004b8d0 STUB +MxTransitionManager::MxTransitionManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1004ba00 STUB +MxTransitionManager::~MxTransitionManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x1004bac0 STUB +long MxTransitionManager::Tickle() +{ + // TODO + + return 0; +} diff --git a/LEGO1/mxtransitionmanager.h b/LEGO1/mxtransitionmanager.h index 904070b9..3fdb1ebf 100644 --- a/LEGO1/mxtransitionmanager.h +++ b/LEGO1/mxtransitionmanager.h @@ -1,12 +1,19 @@ #ifndef MXTRANSITIONMANAGER_H #define MXTRANSITIONMANAGER_H +#include "mxcore.h" + class MxVideoPresenter; -class MxTransitionManager +// 0x100d7ea0 +class MxTransitionManager : public MxCore { public: + virtual ~MxTransitionManager(); // vtable+0x0 + __declspec(dllexport) void SetWaitIndicator(MxVideoPresenter *videoPresenter); + + virtual long Tickle(); // vtable+0x8 }; #endif // MXTRANSITIONMANAGER_H diff --git a/LEGO1/mxtypes.h b/LEGO1/mxtypes.h index f6e23970..71421d91 100644 --- a/LEGO1/mxtypes.h +++ b/LEGO1/mxtypes.h @@ -8,6 +8,10 @@ typedef short MxS16; typedef unsigned int MxU32; typedef int MxS32; +typedef unsigned long MxResult; +const MxResult SUCCESS = 0; +const MxResult FAILURE = 0xFFFFFFFFL; + typedef unsigned char MxBool; #ifndef TRUE @@ -18,4 +22,8 @@ typedef unsigned char MxBool; #define FALSE 0 #endif -#endif MXTYPE_H +#if defined(_MSC_VER) && _MSC_VER <= 1200 // 1200 corresponds to VC6.0 but "override" was probably added even later +#define override +#endif + +#endif // MXTYPE_H diff --git a/LEGO1/mxunknown100dc6b0.cpp b/LEGO1/mxunknown100dc6b0.cpp index e3125cef..029be1f7 100644 --- a/LEGO1/mxunknown100dc6b0.cpp +++ b/LEGO1/mxunknown100dc6b0.cpp @@ -12,4 +12,4 @@ MxResult MxUnknown100dc6b0::Init() this->m_unk08 = 0; this->m_unk0c = 0; return SUCCESS; -} \ No newline at end of file +} diff --git a/LEGO1/mxunknown100dc6b0.h b/LEGO1/mxunknown100dc6b0.h index 87779eaf..ca2ee600 100644 --- a/LEGO1/mxunknown100dc6b0.h +++ b/LEGO1/mxunknown100dc6b0.h @@ -2,9 +2,10 @@ #define MXUNKNOWN100DC6B0_H #include "mxcore.h" -#include "mxresult.h" #include "mxcriticalsection.h" +#include "mxtypes.h" +// VTABLE 0x100dc6b0 class MxUnknown100dc6b0 : public MxCore { public: diff --git a/LEGO1/mxvariabletable.h b/LEGO1/mxvariabletable.h index a82b25c4..13c70658 100644 --- a/LEGO1/mxvariabletable.h +++ b/LEGO1/mxvariabletable.h @@ -3,6 +3,8 @@ class MxVariable; +// VTABLE 0x100dc1c8 +// SIZE 0x28 class MxVariableTable { public: diff --git a/LEGO1/mxvideomanager.cpp b/LEGO1/mxvideomanager.cpp index 7c1625d1..455f4f61 100644 --- a/LEGO1/mxvideomanager.cpp +++ b/LEGO1/mxvideomanager.cpp @@ -1,5 +1,19 @@ #include "mxvideomanager.h" +// OFFSET: LEGO1 0x100be2a0 STUB +MxVideoManager::~MxVideoManager() +{ + // TODO +} + +// OFFSET: LEGO1 0x100bea90 STUB +long MxVideoManager::Tickle() +{ + // TODO + + return 0; +} + // OFFSET: LEGO1 0x100be1f0 MxVideoManager::MxVideoManager() { diff --git a/LEGO1/mxvideomanager.h b/LEGO1/mxvideomanager.h index eba332f3..d8e0c7bd 100644 --- a/LEGO1/mxvideomanager.h +++ b/LEGO1/mxvideomanager.h @@ -4,11 +4,17 @@ #include "mxunknown100dc6b0.h" #include "mxvideoparam.h" +// VTABLE 0x100dc810 +// SIZE 0x64 class MxVideoManager : public MxUnknown100dc6b0 { public: + virtual ~MxVideoManager(); + + virtual long Tickle(); // vtable+0x8 + __declspec(dllexport) void InvalidateRect(MxRect32 &); - __declspec(dllexport) virtual long RealizePalette(MxPalette *); + __declspec(dllexport) virtual long RealizePalette(MxPalette *); // vtable+0x30 MxVideoManager(); diff --git a/LEGO1/mxvideopresenter.cpp b/LEGO1/mxvideopresenter.cpp new file mode 100644 index 00000000..894b1e9c --- /dev/null +++ b/LEGO1/mxvideopresenter.cpp @@ -0,0 +1 @@ +#include "mxvideopresenter.h" diff --git a/LEGO1/mxvideopresenter.h b/LEGO1/mxvideopresenter.h new file mode 100644 index 00000000..eba5040c --- /dev/null +++ b/LEGO1/mxvideopresenter.h @@ -0,0 +1,23 @@ +#ifndef MXVIDEOPRESENTER_H +#define MXVIDEOPRESENTER_H + +#include "mxmediapresenter.h" + +class MxVideoPresenter : public MxMediaPresenter +{ +public: + // OFFSET: LEGO1 0x1000c820 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0760 + return "MxVideoPresenter"; + } + + // OFFSET: LEGO1 0x1000c830 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, MxVideoPresenter::ClassName()) || MxMediaPresenter::IsA(name); + } +}; + +#endif // MXVIDEOPRESENTER_H diff --git a/LEGO1/mxwavepresenter.cpp b/LEGO1/mxwavepresenter.cpp new file mode 100644 index 00000000..bfd69c5f --- /dev/null +++ b/LEGO1/mxwavepresenter.cpp @@ -0,0 +1,7 @@ +#include "mxwavepresenter.h" + +// OFFSET: LEGO1 0x100b1ad0 STUB +void MxWavePresenter::Init() +{ + // TODO +} diff --git a/LEGO1/mxwavepresenter.h b/LEGO1/mxwavepresenter.h new file mode 100644 index 00000000..c00d978d --- /dev/null +++ b/LEGO1/mxwavepresenter.h @@ -0,0 +1,16 @@ +#ifndef MXWAVEPRESENTER_H +#define MXWAVEPRESENTER_H + +#include "mxsoundpresenter.h" + +// VTABLE 0x100d49a8 +// SIZE 0x6c +class MxWavePresenter : public MxSoundPresenter +{ +private: + void Init(); + +public: +}; + +#endif // MXWAVEPRESENTER_H diff --git a/LEGO1/pizza.cpp b/LEGO1/pizza.cpp new file mode 100644 index 00000000..e7e9c552 --- /dev/null +++ b/LEGO1/pizza.cpp @@ -0,0 +1,13 @@ +#include "pizza.h" + +// OFFSET: LEGO1 0x10037ef0 STUB +Pizza::Pizza() +{ + // TODO +} + +// OFFSET: LEGO1 0x10038100 STUB +Pizza::~Pizza() +{ + // TODO +} diff --git a/LEGO1/pizza.h b/LEGO1/pizza.h new file mode 100644 index 00000000..c47ef40e --- /dev/null +++ b/LEGO1/pizza.h @@ -0,0 +1,16 @@ +#ifndef PIZZA_H +#define PIZZA_H + +#include "isleactor.h" + +// VTABLE 0x100d7380 +// SIZE 0x9c +class Pizza : public IsleActor +{ +public: + Pizza(); + virtual ~Pizza() override; + +}; + +#endif // PIZZA_H diff --git a/LEGO1/pizzamissionstate.cpp b/LEGO1/pizzamissionstate.cpp new file mode 100644 index 00000000..5dc85dcc --- /dev/null +++ b/LEGO1/pizzamissionstate.cpp @@ -0,0 +1 @@ +#include "pizzamissionstate.h" diff --git a/LEGO1/pizzamissionstate.h b/LEGO1/pizzamissionstate.h new file mode 100644 index 00000000..575c4972 --- /dev/null +++ b/LEGO1/pizzamissionstate.h @@ -0,0 +1,25 @@ +#ifndef PIZZAMISSIONSTATE_H +#define PIZZAMISSIONSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d7408 +class PizzaMissionState : public LegoState +{ +public: + // OFFSET: LEGO1 0x10039290 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f00d4 + return "PizzaMissionState"; + } + + // OFFSET: LEGO1 0x100392a0 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, PizzaMissionState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // PIZZAMISSIONSTATE_H diff --git a/LEGO1/pizzeria.cpp b/LEGO1/pizzeria.cpp new file mode 100644 index 00000000..3b6e8d41 --- /dev/null +++ b/LEGO1/pizzeria.cpp @@ -0,0 +1 @@ +#include "pizzeria.h" diff --git a/LEGO1/pizzeria.h b/LEGO1/pizzeria.h new file mode 100644 index 00000000..54f1a200 --- /dev/null +++ b/LEGO1/pizzeria.h @@ -0,0 +1,13 @@ +#ifndef PIZZERIASTATE_H +#define PIZZERIASTATE_H + +#include "isleactor.h" + +// VTABLE 0x100d5520 +// SIZE 0x84 +class Pizzeria : public IsleActor +{ +public: +}; + +#endif // PIZZERIASTATE_H diff --git a/LEGO1/pizzeriastate.cpp b/LEGO1/pizzeriastate.cpp new file mode 100644 index 00000000..85f8aef0 --- /dev/null +++ b/LEGO1/pizzeriastate.cpp @@ -0,0 +1,7 @@ +#include "pizzeriastate.h" + +// OFFSET: LEGO1 0x10017af0 STUB +PizzeriaState::PizzeriaState() +{ + // TODO +} diff --git a/LEGO1/pizzeriastate.h b/LEGO1/pizzeriastate.h new file mode 100644 index 00000000..70b1f127 --- /dev/null +++ b/LEGO1/pizzeriastate.h @@ -0,0 +1,15 @@ +#ifndef PIZZERIASTATE_H +#define PIZZERIASTATE_H + +#include "legostate.h" + +// VTABLE 0x100d5ee8 +// SIZE 0xb4 +class PizzeriaState : public LegoState +{ +public: + PizzeriaState(); + +}; + +#endif // PIZZERIASTATE_H diff --git a/LEGO1/police.cpp b/LEGO1/police.cpp new file mode 100644 index 00000000..bd268411 --- /dev/null +++ b/LEGO1/police.cpp @@ -0,0 +1,21 @@ +#include "police.h" + +// OFFSET: LEGO1 0x1005e130 STUB +Police::Police() +{ + // TODO +} + +// OFFSET: LEGO1 0x1005e320 STUB +Police::~Police() +{ + // TODO +} + +// OFFSET: LEGO1 0x1005e480 STUB +long Police::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/police.h b/LEGO1/police.h new file mode 100644 index 00000000..c4bea1cf --- /dev/null +++ b/LEGO1/police.h @@ -0,0 +1,19 @@ +#ifndef POLICE_H +#define POLICE_H + +#include "legoworld.h" + +// VTABLE 0x100d8a80 +// SIZE 0x110 +// Radio at 0xf8 +class Police : public LegoWorld +{ +public: + Police(); + virtual ~Police() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + +}; + +#endif // POLICE_H diff --git a/LEGO1/policeentity.cpp b/LEGO1/policeentity.cpp new file mode 100644 index 00000000..b4492be5 --- /dev/null +++ b/LEGO1/policeentity.cpp @@ -0,0 +1 @@ +#include "policeentity.h" diff --git a/LEGO1/policeentity.h b/LEGO1/policeentity.h new file mode 100644 index 00000000..a23cced4 --- /dev/null +++ b/LEGO1/policeentity.h @@ -0,0 +1,13 @@ +#ifndef POLICEENTITY_H +#define POLICEENTITY_H + +#include "buildingentity.h" + +// VTABLE 0x100d4ab0 +// SIZE 0x68 +class PoliceEntity : public BuildingEntity +{ + +}; + +#endif // POLICEENTITY_H diff --git a/LEGO1/policestate.cpp b/LEGO1/policestate.cpp new file mode 100644 index 00000000..e0995f35 --- /dev/null +++ b/LEGO1/policestate.cpp @@ -0,0 +1,7 @@ +#include "policestate.h" + +// OFFSET: LEGO1 0x1005e7c0 STUB +PoliceState::PoliceState() +{ + // TODO +} diff --git a/LEGO1/policestate.h b/LEGO1/policestate.h new file mode 100644 index 00000000..e43b5c5a --- /dev/null +++ b/LEGO1/policestate.h @@ -0,0 +1,27 @@ +#ifndef POLICESTATE_H +#define POLICESTATE_H + +#include "legostate.h" + +// VTABLE 0x100d8af0 +// SIZE 0x10 +class PoliceState : public LegoState +{ +public: + PoliceState(); + + // OFFSET: LEGO1 0x1005e860 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0444 + return "PoliceState"; + } + + // OFFSET: LEGO1 0x1005e870 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, PoliceState::ClassName()) || LegoState::IsA(name); + } +}; + +#endif // POLICESTATE_H diff --git a/LEGO1/racecar.cpp b/LEGO1/racecar.cpp new file mode 100644 index 00000000..59bb5146 --- /dev/null +++ b/LEGO1/racecar.cpp @@ -0,0 +1,13 @@ +#include "racecar.h" + +// OFFSET: LEGO1 0x10028200 STUB +RaceCar::RaceCar() +{ + // TODO +} + +// OFFSET: LEGO1 0x10028420 STUB +RaceCar::~RaceCar() +{ + // TODO +} diff --git a/LEGO1/racecar.h b/LEGO1/racecar.h new file mode 100644 index 00000000..f8bd6ccf --- /dev/null +++ b/LEGO1/racecar.h @@ -0,0 +1,15 @@ +#ifndef RACECAR_H +#define RACECAR_H + +#include "islepathactor.h" + +// VTABLE 0x100d6918 +// SIZE 0x164 +class RaceCar : public IslePathActor +{ +public: + RaceCar(); + virtual ~RaceCar() override; // vtable+0x0 +}; + +#endif // RACECAR_H diff --git a/LEGO1/racestandsentity.cpp b/LEGO1/racestandsentity.cpp new file mode 100644 index 00000000..13e65bb4 --- /dev/null +++ b/LEGO1/racestandsentity.cpp @@ -0,0 +1 @@ +#include "racestandsentity.h" diff --git a/LEGO1/racestandsentity.h b/LEGO1/racestandsentity.h new file mode 100644 index 00000000..cbf0946c --- /dev/null +++ b/LEGO1/racestandsentity.h @@ -0,0 +1,12 @@ +#ifndef RACESTANDSENTITY_H +#define RACESTANDSENTITY_H + +#include "buildingentity.h" + +// VTABLE 0x100d48a8 +// SIZE 0x68 +class RaceStandsEntity : public BuildingEntity +{ +}; + +#endif // RACESTANDSENTITY_H diff --git a/LEGO1/racestate.cpp b/LEGO1/racestate.cpp new file mode 100644 index 00000000..4eeb21b7 --- /dev/null +++ b/LEGO1/racestate.cpp @@ -0,0 +1,7 @@ +#include "racestate.h" + +// OFFSET: LEGO1 0x10015f30 STUB +RaceState::RaceState() +{ + // TODO +} diff --git a/LEGO1/racestate.h b/LEGO1/racestate.h new file mode 100644 index 00000000..b9415051 --- /dev/null +++ b/LEGO1/racestate.h @@ -0,0 +1,28 @@ +#ifndef RACESTATE_H +#define RACESTATE_H + +#include "legostate.h" + +// VTABLE 0x100d5e30 +// SIZE probably 0x2c +class RaceState : public LegoState +{ +public: + RaceState(); + + // OFFSET: LEGO1 0x10016010 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f07d0 + return "RaceState"; + } + + // OFFSET: LEGO1 0x10016020 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, RaceState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // RACESTATE_H diff --git a/LEGO1/radio.cpp b/LEGO1/radio.cpp new file mode 100644 index 00000000..935fb141 --- /dev/null +++ b/LEGO1/radio.cpp @@ -0,0 +1,7 @@ +#include "radio.h" + +// OFFSET: LEGO1 0x1002c990 STUB +Radio::~Radio() +{ + // TODO +} \ No newline at end of file diff --git a/LEGO1/radio.h b/LEGO1/radio.h new file mode 100644 index 00000000..83b3a445 --- /dev/null +++ b/LEGO1/radio.h @@ -0,0 +1,14 @@ +#ifndef RADIO_H +#define RADIO_H + +#include "mxcore.h" + +// VTABLE 0x100d6d10 +class Radio : public MxCore +{ +public: + virtual ~Radio() override; + +}; + +#endif // RADIO_H diff --git a/LEGO1/radiostate.cpp b/LEGO1/radiostate.cpp new file mode 100644 index 00000000..e6ce8782 --- /dev/null +++ b/LEGO1/radiostate.cpp @@ -0,0 +1,7 @@ +#include "radiostate.h" + +// OFFSET: LEGO1 0x1002ce10 STUB +RadioState::RadioState() +{ + // TODO +} diff --git a/LEGO1/radiostate.h b/LEGO1/radiostate.h new file mode 100644 index 00000000..99c1c925 --- /dev/null +++ b/LEGO1/radiostate.h @@ -0,0 +1,28 @@ +#ifndef RADIOSTATE_H +#define RADIOSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d6d28 +// SIZE 0x30 +class RadioState : public LegoState +{ +public: + RadioState(); + + // OFFSET: LEGO1 0x1002cf60 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f04f8 + return "RadioState"; + } + + // OFFSET: LEGO1 0x1002cf70 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, RadioState::ClassName()) || LegoState::IsA(name); + } + +}; + +#endif // RADIOSTATE_H diff --git a/LEGO1/registrationbook.cpp b/LEGO1/registrationbook.cpp new file mode 100644 index 00000000..5668d31c --- /dev/null +++ b/LEGO1/registrationbook.cpp @@ -0,0 +1,21 @@ +#include "registrationbook.h" + +// OFFSET: LEGO1 0x10076d20 STUB +RegistrationBook::RegistrationBook() +{ + // TODO +} + +// OFFSET: LEGO1 0x10076f50 STUB +RegistrationBook::~RegistrationBook() +{ + // TODO +} + +// OFFSET: LEGO1 0x100770e0 STUB +long RegistrationBook::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/registrationbook.h b/LEGO1/registrationbook.h new file mode 100644 index 00000000..4dba2173 --- /dev/null +++ b/LEGO1/registrationbook.h @@ -0,0 +1,18 @@ +#ifndef REGISTRATIONBOOK_H +#define REGISTRATIONBOOK_H + +#include "legoworld.h" + +// VTABLE 0x100d9928 +// SIZE 0x2d0 +class RegistrationBook : public LegoWorld +{ +public: + RegistrationBook(); + virtual ~RegistrationBook() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + +}; + +#endif // REGISTRATIONBOOK_H diff --git a/LEGO1/score.cpp b/LEGO1/score.cpp new file mode 100644 index 00000000..4e3c7801 --- /dev/null +++ b/LEGO1/score.cpp @@ -0,0 +1,21 @@ +#include "score.h" + +// OFFSET: LEGO1 0x10001000 STUB +Score::Score() +{ + // TODO +} + +// OFFSET: LEGO1 0x10001200 STUB +Score::~Score() +{ + // TODO +} + +// OFFSET: LEGO1 0x10001410 STUB +long Score::Notify(MxParam &p) +{ + // TODO + + return 0; +} diff --git a/LEGO1/score.h b/LEGO1/score.h new file mode 100644 index 00000000..d2a7a7f6 --- /dev/null +++ b/LEGO1/score.h @@ -0,0 +1,18 @@ +#ifndef SCORE_H +#define SCORE_H + +#include "legoworld.h" + +// VTABLE 0x100d4018 +// SIZE 0x104 +class Score : public LegoWorld +{ +public: + Score(); + virtual ~Score() override; // vtable+0x0 + + virtual long Notify(MxParam &p) override; // vtable+0x4 + +}; + +#endif // SCORE_H diff --git a/LEGO1/scorestate.cpp b/LEGO1/scorestate.cpp new file mode 100644 index 00000000..826ab482 --- /dev/null +++ b/LEGO1/scorestate.cpp @@ -0,0 +1 @@ +#include "scorestate.h" diff --git a/LEGO1/scorestate.h b/LEGO1/scorestate.h new file mode 100644 index 00000000..4f5a8dc2 --- /dev/null +++ b/LEGO1/scorestate.h @@ -0,0 +1,26 @@ +#ifndef SCORESTATE_H +#define SCORESTATE_H + +#include "legostate.h" + +// VTABLE 0x100d53f8 +// SIZE 0xc +class ScoreState : public LegoState +{ +public: + // OFFSET: LEGO1 0x1000de40 + inline virtual const char *ClassName() const override // vtable+0x0c + { + // 0x100f0084 + return "ScoreState"; + }; + + // OFFSET: LEGO1 0x1000de50 + inline virtual MxBool IsA(const char *name) const override // vtable+0x10 + { + return !strcmp(name, ScoreState::ClassName()) || LegoState::IsA(name); + }; + +}; + +#endif // SCORESTATE_H diff --git a/LEGO1/skateboard.cpp b/LEGO1/skateboard.cpp new file mode 100644 index 00000000..42466206 --- /dev/null +++ b/LEGO1/skateboard.cpp @@ -0,0 +1,7 @@ +#include "skateboard.h" + +// OFFSET: LEGO1 0x1000fd40 STUB +SkateBoard::SkateBoard() +{ + // TODO +} diff --git a/LEGO1/skateboard.h b/LEGO1/skateboard.h new file mode 100644 index 00000000..f290dc7b --- /dev/null +++ b/LEGO1/skateboard.h @@ -0,0 +1,15 @@ +#ifndef SKATEBOARD_H +#define SKATEBOARD_H + +#include "islepathactor.h" + +// VTABLE 0x100d55f0 +// SIZE 0x168 +class SkateBoard : public IslePathActor +{ +public: + SkateBoard(); + +}; + +#endif // SKATEBOARD_H diff --git a/LEGO1/towtrack.cpp b/LEGO1/towtrack.cpp new file mode 100644 index 00000000..90d3d018 --- /dev/null +++ b/LEGO1/towtrack.cpp @@ -0,0 +1,7 @@ +#include "towtrack.h" + +// OFFSET: LEGO1 0x1004c720 STUB +TowTrack::TowTrack() +{ + // TODO +} diff --git a/LEGO1/towtrack.h b/LEGO1/towtrack.h new file mode 100644 index 00000000..95e6885a --- /dev/null +++ b/LEGO1/towtrack.h @@ -0,0 +1,16 @@ +#ifndef TOWTRACK_H +#define TOWTRACK_H + +#include "islepathactor.h" + +// VTABLE 0x100d7ee0 +// SIZE 0x180 +class TowTrack : public IslePathActor +{ +public: + TowTrack(); + +}; + + +#endif // TOWTRACK_H diff --git a/LEGO1/towtrackmissionstate.cpp b/LEGO1/towtrackmissionstate.cpp new file mode 100644 index 00000000..b85c40cc --- /dev/null +++ b/LEGO1/towtrackmissionstate.cpp @@ -0,0 +1,7 @@ +#include "towtrackmissionstate.h" + +// OFFSET: LEGO1 0x1004dd30 STUB +TowTrackMissionState::TowTrackMissionState() +{ + // TODO +} diff --git a/LEGO1/towtrackmissionstate.h b/LEGO1/towtrackmissionstate.h new file mode 100644 index 00000000..a335584f --- /dev/null +++ b/LEGO1/towtrackmissionstate.h @@ -0,0 +1,28 @@ +#ifndef TOWTRACKMISSIONSTATE_H +#define TOWTRACKMISSIONSTATE_H + +#include "legostate.h" + +// VTABLE 0x100d7fd8 +// SIZE 0x28 +class TowTrackMissionState : LegoState +{ +public: + TowTrackMissionState(); + + // OFFSET: LEGO1 0x1004dfa0 + inline virtual const char *ClassName() const // vtable+0x0c + { + // 0x100f00bc + return "TowTrackMissionState"; + }; + + // OFFSET: LEGO1 0x1004dfb0 + inline virtual MxBool IsA(const char *name) const // vtable+0x10 + { + return !strcmp(name, TowTrackMissionState::ClassName()) || LegoState::IsA(name); + }; + +}; + +#endif // TOWTRACKMISSIONSTATE_H diff --git a/isle.mak b/isle.mak index ea007e37..90a2cead 100644 --- a/isle.mak +++ b/isle.mak @@ -54,28 +54,153 @@ INTDIR=.\LEGO1\Release ALL : ".\Release\LEGO1.DLL" CLEAN : + -@erase "$(INTDIR)\act1state.obj" + -@erase "$(INTDIR)\act2brick.obj" + -@erase "$(INTDIR)\act2policestation.obj" + -@erase "$(INTDIR)\act3.obj" + -@erase "$(INTDIR)\act3shark.obj" + -@erase "$(INTDIR)\act3state.obj" + -@erase "$(INTDIR)\ambulance.obj" + -@erase "$(INTDIR)\ambulancemissionstate.obj" + -@erase "$(INTDIR)\animstate.obj" + -@erase "$(INTDIR)\beachhouseentity.obj" + -@erase "$(INTDIR)\bike.obj" + -@erase "$(INTDIR)\buildingentity.obj" + -@erase "$(INTDIR)\bumpbouy.obj" + -@erase "$(INTDIR)\carrace.obj" -@erase "$(INTDIR)\dllmain.obj" + -@erase "$(INTDIR)\dunebuggy.obj" + -@erase "$(INTDIR)\elevatorbottom.obj" + -@erase "$(INTDIR)\gasstation.obj" + -@erase "$(INTDIR)\gasstationentity.obj" + -@erase "$(INTDIR)\gasstationstate.obj" + -@erase "$(INTDIR)\helicopter.obj" + -@erase "$(INTDIR)\helicopterstate.obj" + -@erase "$(INTDIR)\historybook.obj" + -@erase "$(INTDIR)\hospital.obj" + -@erase "$(INTDIR)\hospitalentity.obj" + -@erase "$(INTDIR)\hospitalstate.obj" + -@erase "$(INTDIR)\infocenter.obj" + -@erase "$(INTDIR)\infocenterdoor.obj" + -@erase "$(INTDIR)\infocenterentity.obj" + -@erase "$(INTDIR)\infocenterstate.obj" + -@erase "$(INTDIR)\isle.obj" + -@erase "$(INTDIR)\isleactor.obj" + -@erase "$(INTDIR)\islepathactor.obj" + -@erase "$(INTDIR)\jetski.obj" + -@erase "$(INTDIR)\jetskiRace.obj" + -@erase "$(INTDIR)\jukebox.obj" + -@erase "$(INTDIR)\jukeboxentity.obj" + -@erase "$(INTDIR)\jukeboxstate.obj" + -@erase "$(INTDIR)\legoact2state.obj" + -@erase "$(INTDIR)\legoactioncontrolpresenter.obj" + -@erase "$(INTDIR)\legoanimactor.obj" + -@erase "$(INTDIR)\legoanimationmanager.obj" + -@erase "$(INTDIR)\legoanimmmpresenter.obj" + -@erase "$(INTDIR)\legoanimpresenter.obj" + -@erase "$(INTDIR)\legobuildingmanager.obj" + -@erase "$(INTDIR)\legocachesound.obj" + -@erase "$(INTDIR)\legocameracontroller.obj" + -@erase "$(INTDIR)\legocarbuild.obj" + -@erase "$(INTDIR)\legocarbuildanimpresenter.obj" + -@erase "$(INTDIR)\legocontrolmanager.obj" + -@erase "$(INTDIR)\legoentity.obj" + -@erase "$(INTDIR)\legoentitypresenter.obj" + -@erase "$(INTDIR)\legoflctexturepresenter.obj" + -@erase "$(INTDIR)\legohideanimpresenter.obj" + -@erase "$(INTDIR)\legoinputmanager.obj" + -@erase "$(INTDIR)\legojetski.obj" + -@erase "$(INTDIR)\legoloadcachesoundpresenter.obj" + -@erase "$(INTDIR)\legolocomotionanimpresenter.obj" -@erase "$(INTDIR)\legonavcontroller.obj" -@erase "$(INTDIR)\legoomni.obj" + -@erase "$(INTDIR)\legopalettepresenter.obj" + -@erase "$(INTDIR)\legopathactor.obj" + -@erase "$(INTDIR)\legopathcontroller.obj" + -@erase "$(INTDIR)\legopathpresenter.obj" + -@erase "$(INTDIR)\legophonemepresenter.obj" + -@erase "$(INTDIR)\legoplantmanager.obj" + -@erase "$(INTDIR)\legorace.obj" + -@erase "$(INTDIR)\legosoundmanager.obj" + -@erase "$(INTDIR)\legostate.obj" + -@erase "$(INTDIR)\legotexturepresenter.obj" + -@erase "$(INTDIR)\legovideomanager.obj" + -@erase "$(INTDIR)\legoworld.obj" + -@erase "$(INTDIR)\legoworldpresenter.obj" + -@erase "$(INTDIR)\motorcycle.obj" -@erase "$(INTDIR)\mxatomid.obj" + -@erase "$(INTDIR)\mxaudiopresenter.obj" -@erase "$(INTDIR)\mxautolocker.obj" + -@erase "$(INTDIR)\mxbackgroundaudiomanager.obj" + -@erase "$(INTDIR)\mxcompositemediapresenter.obj" + -@erase "$(INTDIR)\mxcompositepresenter.obj" + -@erase "$(INTDIR)\mxcontrolpresenter.obj" -@erase "$(INTDIR)\mxcore.obj" -@erase "$(INTDIR)\mxcriticalsection.obj" + -@erase "$(INTDIR)\mxdiskstreamcontroller.obj" + -@erase "$(INTDIR)\mxdiskstreamprovider.obj" + -@erase "$(INTDIR)\mxdsaction.obj" + -@erase "$(INTDIR)\mxdsanim.obj" + -@erase "$(INTDIR)\mxdschunk.obj" + -@erase "$(INTDIR)\mxdsevent.obj" -@erase "$(INTDIR)\mxdsfile.obj" + -@erase "$(INTDIR)\mxdsmediaaction.obj" + -@erase "$(INTDIR)\mxdsmultiaction.obj" -@erase "$(INTDIR)\mxdsobject.obj" + -@erase "$(INTDIR)\mxdsobjectaction.obj" + -@erase "$(INTDIR)\mxdsparallelaction.obj" + -@erase "$(INTDIR)\mxdsselectaction.obj" + -@erase "$(INTDIR)\mxdsserialaction.obj" + -@erase "$(INTDIR)\mxdssound.obj" -@erase "$(INTDIR)\mxdssource.obj" + -@erase "$(INTDIR)\mxdsstill.obj" + -@erase "$(INTDIR)\mxdssubscriber.obj" + -@erase "$(INTDIR)\mxentity.obj" + -@erase "$(INTDIR)\mxeventmanager.obj" + -@erase "$(INTDIR)\mxeventpresenter.obj" + -@erase "$(INTDIR)\mxflcpresenter.obj" -@erase "$(INTDIR)\mxioinfo.obj" + -@erase "$(INTDIR)\mxloopingflcpresenter.obj" + -@erase "$(INTDIR)\mxloopingsmkpresenter.obj" + -@erase "$(INTDIR)\mxmediapresenter.obj" + -@erase "$(INTDIR)\mxmusicpresenter.obj" + -@erase "$(INTDIR)\mxnotificationmanager.obj" -@erase "$(INTDIR)\mxomni.obj" -@erase "$(INTDIR)\mxomnicreateflags.obj" -@erase "$(INTDIR)\mxomnicreateparam.obj" -@erase "$(INTDIR)\mxomnicreateparambase.obj" -@erase "$(INTDIR)\mxpalette.obj" + -@erase "$(INTDIR)\mxpresenter.obj" + -@erase "$(INTDIR)\mxsmkpresenter.obj" + -@erase "$(INTDIR)\mxsoundmanager.obj" + -@erase "$(INTDIR)\mxsoundpresenter.obj" + -@erase "$(INTDIR)\mxstillpresenter.obj" + -@erase "$(INTDIR)\mxstreamer.obj" -@erase "$(INTDIR)\mxstring.obj" -@erase "$(INTDIR)\mxtimer.obj" + -@erase "$(INTDIR)\mxtransitionmanager.obj" -@erase "$(INTDIR)\mxunknown100dc6b0.obj" -@erase "$(INTDIR)\mxvideomanager.obj" -@erase "$(INTDIR)\mxvideoparam.obj" -@erase "$(INTDIR)\mxvideoparamflags.obj" + -@erase "$(INTDIR)\mxvideopresenter.obj" + -@erase "$(INTDIR)\mxwavepresenter.obj" + -@erase "$(INTDIR)\pizza.obj" + -@erase "$(INTDIR)\pizzeria.obj" + -@erase "$(INTDIR)\pizzeriastate.obj" + -@erase "$(INTDIR)\police.obj" + -@erase "$(INTDIR)\policeentity.obj" + -@erase "$(INTDIR)\policestate.obj" + -@erase "$(INTDIR)\racecar.obj" + -@erase "$(INTDIR)\racestandsentity.obj" + -@erase "$(INTDIR)\racestate.obj" + -@erase "$(INTDIR)\radio.obj" + -@erase "$(INTDIR)\radiostate.obj" + -@erase "$(INTDIR)\registrationbook.obj" + -@erase "$(INTDIR)\score.obj" + -@erase "$(INTDIR)\skateboard.obj" + -@erase "$(INTDIR)\towtrack.obj" + -@erase "$(INTDIR)\towtrackmissionstate.obj" -@erase "$(INTDIR)\vc40.pdb" -@erase ".\Release\LEGO1.DLL" -@erase ".\Release\LEGO1.EXP" @@ -134,28 +259,153 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ /pdb:"Release/LEGO1.PDB" /debug /machine:I386 /out:"Release/LEGO1.DLL"\ /implib:"Release/LEGO1.LIB" LINK32_OBJS= \ + "$(INTDIR)\act1state.obj" \ + "$(INTDIR)\act2brick.obj" \ + "$(INTDIR)\act2policestation.obj" \ + "$(INTDIR)\act3.obj" \ + "$(INTDIR)\act3shark.obj" \ + "$(INTDIR)\act3state.obj" \ + "$(INTDIR)\ambulance.obj" \ + "$(INTDIR)\ambulancemissionstate.obj" \ + "$(INTDIR)\animstate.obj" \ + "$(INTDIR)\beachhouseentity.obj" \ + "$(INTDIR)\bike.obj" \ + "$(INTDIR)\buildingentity.obj" \ + "$(INTDIR)\bumpbouy.obj" \ + "$(INTDIR)\carrace.obj" \ "$(INTDIR)\dllmain.obj" \ + "$(INTDIR)\dunebuggy.obj" \ + "$(INTDIR)\elevatorbottom.obj" \ + "$(INTDIR)\gasstation.obj" \ + "$(INTDIR)\gasstationentity.obj" \ + "$(INTDIR)\gasstationstate.obj" \ + "$(INTDIR)\helicopter.obj" \ + "$(INTDIR)\helicopterstate.obj" \ + "$(INTDIR)\historybook.obj" \ + "$(INTDIR)\hospital.obj" \ + "$(INTDIR)\hospitalentity.obj" \ + "$(INTDIR)\hospitalstate.obj" \ + "$(INTDIR)\infocenter.obj" \ + "$(INTDIR)\infocenterdoor.obj" \ + "$(INTDIR)\infocenterentity.obj" \ + "$(INTDIR)\infocenterstate.obj" \ + "$(INTDIR)\isle.obj" \ + "$(INTDIR)\isleactor.obj" \ + "$(INTDIR)\islepathactor.obj" \ + "$(INTDIR)\jetski.obj" \ + "$(INTDIR)\jetskiRace.obj" \ + "$(INTDIR)\jukebox.obj" \ + "$(INTDIR)\jukeboxentity.obj" \ + "$(INTDIR)\jukeboxstate.obj" \ + "$(INTDIR)\legoact2state.obj" \ + "$(INTDIR)\legoactioncontrolpresenter.obj" \ + "$(INTDIR)\legoanimactor.obj" \ + "$(INTDIR)\legoanimationmanager.obj" \ + "$(INTDIR)\legoanimmmpresenter.obj" \ + "$(INTDIR)\legoanimpresenter.obj" \ + "$(INTDIR)\legobuildingmanager.obj" \ + "$(INTDIR)\legocachesound.obj" \ + "$(INTDIR)\legocameracontroller.obj" \ + "$(INTDIR)\legocarbuild.obj" \ + "$(INTDIR)\legocarbuildanimpresenter.obj" \ + "$(INTDIR)\legocontrolmanager.obj" \ + "$(INTDIR)\legoentity.obj" \ + "$(INTDIR)\legoentitypresenter.obj" \ + "$(INTDIR)\legoflctexturepresenter.obj" \ + "$(INTDIR)\legohideanimpresenter.obj" \ + "$(INTDIR)\legoinputmanager.obj" \ + "$(INTDIR)\legojetski.obj" \ + "$(INTDIR)\legoloadcachesoundpresenter.obj" \ + "$(INTDIR)\legolocomotionanimpresenter.obj" \ "$(INTDIR)\legonavcontroller.obj" \ "$(INTDIR)\legoomni.obj" \ + "$(INTDIR)\legopalettepresenter.obj" \ + "$(INTDIR)\legopathactor.obj" \ + "$(INTDIR)\legopathcontroller.obj" \ + "$(INTDIR)\legopathpresenter.obj" \ + "$(INTDIR)\legophonemepresenter.obj" \ + "$(INTDIR)\legoplantmanager.obj" \ + "$(INTDIR)\legorace.obj" \ + "$(INTDIR)\legosoundmanager.obj" \ + "$(INTDIR)\legostate.obj" \ + "$(INTDIR)\legotexturepresenter.obj" \ + "$(INTDIR)\legovideomanager.obj" \ + "$(INTDIR)\legoworld.obj" \ + "$(INTDIR)\legoworldpresenter.obj" \ + "$(INTDIR)\motorcycle.obj" \ "$(INTDIR)\mxatomid.obj" \ + "$(INTDIR)\mxaudiopresenter.obj" \ "$(INTDIR)\mxautolocker.obj" \ + "$(INTDIR)\mxbackgroundaudiomanager.obj" \ + "$(INTDIR)\mxcompositemediapresenter.obj" \ + "$(INTDIR)\mxcompositepresenter.obj" \ + "$(INTDIR)\mxcontrolpresenter.obj" \ "$(INTDIR)\mxcore.obj" \ "$(INTDIR)\mxcriticalsection.obj" \ + "$(INTDIR)\mxdiskstreamcontroller.obj" \ + "$(INTDIR)\mxdiskstreamprovider.obj" \ + "$(INTDIR)\mxdsaction.obj" \ + "$(INTDIR)\mxdsanim.obj" \ + "$(INTDIR)\mxdschunk.obj" \ + "$(INTDIR)\mxdsevent.obj" \ "$(INTDIR)\mxdsfile.obj" \ + "$(INTDIR)\mxdsmediaaction.obj" \ + "$(INTDIR)\mxdsmultiaction.obj" \ "$(INTDIR)\mxdsobject.obj" \ + "$(INTDIR)\mxdsobjectaction.obj" \ + "$(INTDIR)\mxdsparallelaction.obj" \ + "$(INTDIR)\mxdsselectaction.obj" \ + "$(INTDIR)\mxdsserialaction.obj" \ + "$(INTDIR)\mxdssound.obj" \ "$(INTDIR)\mxdssource.obj" \ + "$(INTDIR)\mxdsstill.obj" \ + "$(INTDIR)\mxdssubscriber.obj" \ + "$(INTDIR)\mxentity.obj" \ + "$(INTDIR)\mxeventmanager.obj" \ + "$(INTDIR)\mxeventpresenter.obj" \ + "$(INTDIR)\mxflcpresenter.obj" \ "$(INTDIR)\mxioinfo.obj" \ + "$(INTDIR)\mxloopingflcpresenter.obj" \ + "$(INTDIR)\mxloopingsmkpresenter.obj" \ + "$(INTDIR)\mxmediapresenter.obj" \ + "$(INTDIR)\mxmusicpresenter.obj" \ + "$(INTDIR)\mxnotificationmanager.obj" \ "$(INTDIR)\mxomni.obj" \ "$(INTDIR)\mxomnicreateflags.obj" \ "$(INTDIR)\mxomnicreateparam.obj" \ "$(INTDIR)\mxomnicreateparambase.obj" \ "$(INTDIR)\mxpalette.obj" \ + "$(INTDIR)\mxpresenter.obj" \ + "$(INTDIR)\mxsmkpresenter.obj" \ + "$(INTDIR)\mxsoundmanager.obj" \ + "$(INTDIR)\mxsoundpresenter.obj" \ + "$(INTDIR)\mxstillpresenter.obj" \ + "$(INTDIR)\mxstreamer.obj" \ "$(INTDIR)\mxstring.obj" \ "$(INTDIR)\mxtimer.obj" \ + "$(INTDIR)\mxtransitionmanager.obj" \ "$(INTDIR)\mxunknown100dc6b0.obj" \ "$(INTDIR)\mxvideomanager.obj" \ "$(INTDIR)\mxvideoparam.obj" \ - "$(INTDIR)\mxvideoparamflags.obj" + "$(INTDIR)\mxvideoparamflags.obj" \ + "$(INTDIR)\mxvideopresenter.obj" \ + "$(INTDIR)\mxwavepresenter.obj" \ + "$(INTDIR)\pizza.obj" \ + "$(INTDIR)\pizzeria.obj" \ + "$(INTDIR)\pizzeriastate.obj" \ + "$(INTDIR)\police.obj" \ + "$(INTDIR)\policeentity.obj" \ + "$(INTDIR)\policestate.obj" \ + "$(INTDIR)\racecar.obj" \ + "$(INTDIR)\racestandsentity.obj" \ + "$(INTDIR)\racestate.obj" \ + "$(INTDIR)\radio.obj" \ + "$(INTDIR)\radiostate.obj" \ + "$(INTDIR)\registrationbook.obj" \ + "$(INTDIR)\score.obj" \ + "$(INTDIR)\skateboard.obj" \ + "$(INTDIR)\towtrack.obj" \ + "$(INTDIR)\towtrackmissionstate.obj" ".\Release\LEGO1.DLL" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< @@ -180,28 +430,153 @@ INTDIR=.\LEGO1\Debug ALL : ".\Debug\LEGO1.DLL" CLEAN : + -@erase "$(INTDIR)\act1state.obj" + -@erase "$(INTDIR)\act2brick.obj" + -@erase "$(INTDIR)\act2policestation.obj" + -@erase "$(INTDIR)\act3.obj" + -@erase "$(INTDIR)\act3shark.obj" + -@erase "$(INTDIR)\act3state.obj" + -@erase "$(INTDIR)\ambulance.obj" + -@erase "$(INTDIR)\ambulancemissionstate.obj" + -@erase "$(INTDIR)\animstate.obj" + -@erase "$(INTDIR)\beachhouseentity.obj" + -@erase "$(INTDIR)\bike.obj" + -@erase "$(INTDIR)\buildingentity.obj" + -@erase "$(INTDIR)\bumpbouy.obj" + -@erase "$(INTDIR)\carrace.obj" -@erase "$(INTDIR)\dllmain.obj" + -@erase "$(INTDIR)\dunebuggy.obj" + -@erase "$(INTDIR)\elevatorbottom.obj" + -@erase "$(INTDIR)\gasstation.obj" + -@erase "$(INTDIR)\gasstationentity.obj" + -@erase "$(INTDIR)\gasstationstate.obj" + -@erase "$(INTDIR)\helicopter.obj" + -@erase "$(INTDIR)\helicopterstate.obj" + -@erase "$(INTDIR)\historybook.obj" + -@erase "$(INTDIR)\hospital.obj" + -@erase "$(INTDIR)\hospitalentity.obj" + -@erase "$(INTDIR)\hospitalstate.obj" + -@erase "$(INTDIR)\infocenter.obj" + -@erase "$(INTDIR)\infocenterdoor.obj" + -@erase "$(INTDIR)\infocenterentity.obj" + -@erase "$(INTDIR)\infocenterstate.obj" + -@erase "$(INTDIR)\isle.obj" + -@erase "$(INTDIR)\isleactor.obj" + -@erase "$(INTDIR)\islepathactor.obj" + -@erase "$(INTDIR)\jetski.obj" + -@erase "$(INTDIR)\jetskiRace.obj" + -@erase "$(INTDIR)\jukebox.obj" + -@erase "$(INTDIR)\jukeboxentity.obj" + -@erase "$(INTDIR)\jukeboxstate.obj" + -@erase "$(INTDIR)\legoact2state.obj" + -@erase "$(INTDIR)\legoactioncontrolpresenter.obj" + -@erase "$(INTDIR)\legoanimactor.obj" + -@erase "$(INTDIR)\legoanimationmanager.obj" + -@erase "$(INTDIR)\legoanimmmpresenter.obj" + -@erase "$(INTDIR)\legoanimpresenter.obj" + -@erase "$(INTDIR)\legobuildingmanager.obj" + -@erase "$(INTDIR)\legocachesound.obj" + -@erase "$(INTDIR)\legocameracontroller.obj" + -@erase "$(INTDIR)\legocarbuild.obj" + -@erase "$(INTDIR)\legocarbuildanimpresenter.obj" + -@erase "$(INTDIR)\legocontrolmanager.obj" + -@erase "$(INTDIR)\legoentity.obj" + -@erase "$(INTDIR)\legoentitypresenter.obj" + -@erase "$(INTDIR)\legoflctexturepresenter.obj" + -@erase "$(INTDIR)\legohideanimpresenter.obj" + -@erase "$(INTDIR)\legoinputmanager.obj" + -@erase "$(INTDIR)\legojetski.obj" + -@erase "$(INTDIR)\legoloadcachesoundpresenter.obj" + -@erase "$(INTDIR)\legolocomotionanimpresenter.obj" -@erase "$(INTDIR)\legonavcontroller.obj" -@erase "$(INTDIR)\legoomni.obj" + -@erase "$(INTDIR)\legopalettepresenter.obj" + -@erase "$(INTDIR)\legopathactor.obj" + -@erase "$(INTDIR)\legopathcontroller.obj" + -@erase "$(INTDIR)\legopathpresenter.obj" + -@erase "$(INTDIR)\legophonemepresenter.obj" + -@erase "$(INTDIR)\legoplantmanager.obj" + -@erase "$(INTDIR)\legorace.obj" + -@erase "$(INTDIR)\legosoundmanager.obj" + -@erase "$(INTDIR)\legostate.obj" + -@erase "$(INTDIR)\legotexturepresenter.obj" + -@erase "$(INTDIR)\legovideomanager.obj" + -@erase "$(INTDIR)\legoworld.obj" + -@erase "$(INTDIR)\legoworldpresenter.obj" + -@erase "$(INTDIR)\motorcycle.obj" -@erase "$(INTDIR)\mxatomid.obj" + -@erase "$(INTDIR)\mxaudiopresenter.obj" -@erase "$(INTDIR)\mxautolocker.obj" + -@erase "$(INTDIR)\mxbackgroundaudiomanager.obj" + -@erase "$(INTDIR)\mxcompositemediapresenter.obj" + -@erase "$(INTDIR)\mxcompositepresenter.obj" + -@erase "$(INTDIR)\mxcontrolpresenter.obj" -@erase "$(INTDIR)\mxcore.obj" -@erase "$(INTDIR)\mxcriticalsection.obj" + -@erase "$(INTDIR)\mxdiskstreamcontroller.obj" + -@erase "$(INTDIR)\mxdiskstreamprovider.obj" + -@erase "$(INTDIR)\mxdsaction.obj" + -@erase "$(INTDIR)\mxdsanim.obj" + -@erase "$(INTDIR)\mxdschunk.obj" + -@erase "$(INTDIR)\mxdsevent.obj" -@erase "$(INTDIR)\mxdsfile.obj" + -@erase "$(INTDIR)\mxdsmediaaction.obj" + -@erase "$(INTDIR)\mxdsmultiaction.obj" -@erase "$(INTDIR)\mxdsobject.obj" + -@erase "$(INTDIR)\mxdsobjectaction.obj" + -@erase "$(INTDIR)\mxdsparallelaction.obj" + -@erase "$(INTDIR)\mxdsselectaction.obj" + -@erase "$(INTDIR)\mxdsserialaction.obj" + -@erase "$(INTDIR)\mxdssound.obj" -@erase "$(INTDIR)\mxdssource.obj" + -@erase "$(INTDIR)\mxdsstill.obj" + -@erase "$(INTDIR)\mxdssubscriber.obj" + -@erase "$(INTDIR)\mxentity.obj" + -@erase "$(INTDIR)\mxeventmanager.obj" + -@erase "$(INTDIR)\mxeventpresenter.obj" + -@erase "$(INTDIR)\mxflcpresenter.obj" -@erase "$(INTDIR)\mxioinfo.obj" + -@erase "$(INTDIR)\mxloopingflcpresenter.obj" + -@erase "$(INTDIR)\mxloopingsmkpresenter.obj" + -@erase "$(INTDIR)\mxmediapresenter.obj" + -@erase "$(INTDIR)\mxmusicpresenter.obj" + -@erase "$(INTDIR)\mxnotificationmanager.obj" -@erase "$(INTDIR)\mxomni.obj" -@erase "$(INTDIR)\mxomnicreateflags.obj" -@erase "$(INTDIR)\mxomnicreateparam.obj" -@erase "$(INTDIR)\mxomnicreateparambase.obj" -@erase "$(INTDIR)\mxpalette.obj" + -@erase "$(INTDIR)\mxpresenter.obj" + -@erase "$(INTDIR)\mxsmkpresenter.obj" + -@erase "$(INTDIR)\mxsoundmanager.obj" + -@erase "$(INTDIR)\mxsoundpresenter.obj" + -@erase "$(INTDIR)\mxstillpresenter.obj" + -@erase "$(INTDIR)\mxstreamer.obj" -@erase "$(INTDIR)\mxstring.obj" -@erase "$(INTDIR)\mxtimer.obj" + -@erase "$(INTDIR)\mxtransitionmanager.obj" -@erase "$(INTDIR)\mxunknown100dc6b0.obj" -@erase "$(INTDIR)\mxvideomanager.obj" -@erase "$(INTDIR)\mxvideoparam.obj" -@erase "$(INTDIR)\mxvideoparamflags.obj" + -@erase "$(INTDIR)\mxvideopresenter.obj" + -@erase "$(INTDIR)\mxwavepresenter.obj" + -@erase "$(INTDIR)\pizza.obj" + -@erase "$(INTDIR)\pizzeria.obj" + -@erase "$(INTDIR)\pizzeriastate.obj" + -@erase "$(INTDIR)\police.obj" + -@erase "$(INTDIR)\policeentity.obj" + -@erase "$(INTDIR)\policestate.obj" + -@erase "$(INTDIR)\racecar.obj" + -@erase "$(INTDIR)\racestandsentity.obj" + -@erase "$(INTDIR)\racestate.obj" + -@erase "$(INTDIR)\radio.obj" + -@erase "$(INTDIR)\radiostate.obj" + -@erase "$(INTDIR)\registrationbook.obj" + -@erase "$(INTDIR)\score.obj" + -@erase "$(INTDIR)\skateboard.obj" + -@erase "$(INTDIR)\towtrack.obj" + -@erase "$(INTDIR)\towtrackmissionstate.obj" -@erase "$(INTDIR)\vc40.idb" -@erase "$(INTDIR)\vc40.pdb" -@erase "$(OUTDIR)\LEGO1.exp" @@ -262,28 +637,153 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ /pdb:"$(OUTDIR)/LEGO1.pdb" /debug /machine:I386 /out:"Debug/LEGO1.DLL"\ /implib:"$(OUTDIR)/LEGO1.lib" LINK32_OBJS= \ + "$(INTDIR)\act1state.obj" \ + "$(INTDIR)\act2brick.obj" \ + "$(INTDIR)\act2policestation.obj" \ + "$(INTDIR)\act3.obj" \ + "$(INTDIR)\act3shark.obj" \ + "$(INTDIR)\act3state.obj" \ + "$(INTDIR)\ambulance.obj" \ + "$(INTDIR)\ambulancemissionstate.obj" \ + "$(INTDIR)\animstate.obj" \ + "$(INTDIR)\beachhouseentity.obj" \ + "$(INTDIR)\bike.obj" \ + "$(INTDIR)\buildingentity.obj" \ + "$(INTDIR)\bumpbouy.obj" \ + "$(INTDIR)\carrace.obj" \ "$(INTDIR)\dllmain.obj" \ + "$(INTDIR)\dunebuggy.obj" \ + "$(INTDIR)\elevatorbottom.obj" \ + "$(INTDIR)\gasstation.obj" \ + "$(INTDIR)\gasstationentity.obj" \ + "$(INTDIR)\gasstationstate.obj" \ + "$(INTDIR)\helicopter.obj" \ + "$(INTDIR)\helicopterstate.obj" \ + "$(INTDIR)\historybook.obj" \ + "$(INTDIR)\hospital.obj" \ + "$(INTDIR)\hospitalentity.obj" \ + "$(INTDIR)\hospitalstate.obj" \ + "$(INTDIR)\infocenter.obj" \ + "$(INTDIR)\infocenterdoor.obj" \ + "$(INTDIR)\infocenterentity.obj" \ + "$(INTDIR)\infocenterstate.obj" \ + "$(INTDIR)\isle.obj" \ + "$(INTDIR)\isleactor.obj" \ + "$(INTDIR)\islepathactor.obj" \ + "$(INTDIR)\jetski.obj" \ + "$(INTDIR)\jetskiRace.obj" \ + "$(INTDIR)\jukebox.obj" \ + "$(INTDIR)\jukeboxentity.obj" \ + "$(INTDIR)\jukeboxstate.obj" \ + "$(INTDIR)\legoact2state.obj" \ + "$(INTDIR)\legoactioncontrolpresenter.obj" \ + "$(INTDIR)\legoanimactor.obj" \ + "$(INTDIR)\legoanimationmanager.obj" \ + "$(INTDIR)\legoanimmmpresenter.obj" \ + "$(INTDIR)\legoanimpresenter.obj" \ + "$(INTDIR)\legobuildingmanager.obj" \ + "$(INTDIR)\legocachesound.obj" \ + "$(INTDIR)\legocameracontroller.obj" \ + "$(INTDIR)\legocarbuild.obj" \ + "$(INTDIR)\legocarbuildanimpresenter.obj" \ + "$(INTDIR)\legocontrolmanager.obj" \ + "$(INTDIR)\legoentity.obj" \ + "$(INTDIR)\legoentitypresenter.obj" \ + "$(INTDIR)\legoflctexturepresenter.obj" \ + "$(INTDIR)\legohideanimpresenter.obj" \ + "$(INTDIR)\legoinputmanager.obj" \ + "$(INTDIR)\legojetski.obj" \ + "$(INTDIR)\legoloadcachesoundpresenter.obj" \ + "$(INTDIR)\legolocomotionanimpresenter.obj" \ "$(INTDIR)\legonavcontroller.obj" \ "$(INTDIR)\legoomni.obj" \ + "$(INTDIR)\legopalettepresenter.obj" \ + "$(INTDIR)\legopathactor.obj" \ + "$(INTDIR)\legopathcontroller.obj" \ + "$(INTDIR)\legopathpresenter.obj" \ + "$(INTDIR)\legophonemepresenter.obj" \ + "$(INTDIR)\legoplantmanager.obj" \ + "$(INTDIR)\legorace.obj" \ + "$(INTDIR)\legosoundmanager.obj" \ + "$(INTDIR)\legostate.obj" \ + "$(INTDIR)\legotexturepresenter.obj" \ + "$(INTDIR)\legovideomanager.obj" \ + "$(INTDIR)\legoworld.obj" \ + "$(INTDIR)\legoworldpresenter.obj" \ + "$(INTDIR)\motorcycle.obj" \ "$(INTDIR)\mxatomid.obj" \ + "$(INTDIR)\mxaudiopresenter.obj" \ "$(INTDIR)\mxautolocker.obj" \ + "$(INTDIR)\mxbackgroundaudiomanager.obj" \ + "$(INTDIR)\mxcompositemediapresenter.obj" \ + "$(INTDIR)\mxcompositepresenter.obj" \ + "$(INTDIR)\mxcontrolpresenter.obj" \ "$(INTDIR)\mxcore.obj" \ "$(INTDIR)\mxcriticalsection.obj" \ + "$(INTDIR)\mxdiskstreamcontroller.obj" \ + "$(INTDIR)\mxdiskstreamprovider.obj" \ + "$(INTDIR)\mxdsaction.obj" \ + "$(INTDIR)\mxdsanim.obj" \ + "$(INTDIR)\mxdschunk.obj" \ + "$(INTDIR)\mxdsevent.obj" \ "$(INTDIR)\mxdsfile.obj" \ + "$(INTDIR)\mxdsmediaaction.obj" \ + "$(INTDIR)\mxdsmultiaction.obj" \ "$(INTDIR)\mxdsobject.obj" \ + "$(INTDIR)\mxdsobjectaction.obj" \ + "$(INTDIR)\mxdsparallelaction.obj" \ + "$(INTDIR)\mxdsselectaction.obj" \ + "$(INTDIR)\mxdsserialaction.obj" \ + "$(INTDIR)\mxdssound.obj" \ "$(INTDIR)\mxdssource.obj" \ + "$(INTDIR)\mxdsstill.obj" \ + "$(INTDIR)\mxdssubscriber.obj" \ + "$(INTDIR)\mxentity.obj" \ + "$(INTDIR)\mxeventmanager.obj" \ + "$(INTDIR)\mxeventpresenter.obj" \ + "$(INTDIR)\mxflcpresenter.obj" \ "$(INTDIR)\mxioinfo.obj" \ + "$(INTDIR)\mxloopingflcpresenter.obj" \ + "$(INTDIR)\mxloopingsmkpresenter.obj" \ + "$(INTDIR)\mxmediapresenter.obj" \ + "$(INTDIR)\mxmusicpresenter.obj" \ + "$(INTDIR)\mxnotificationmanager.obj" \ "$(INTDIR)\mxomni.obj" \ "$(INTDIR)\mxomnicreateflags.obj" \ "$(INTDIR)\mxomnicreateparam.obj" \ "$(INTDIR)\mxomnicreateparambase.obj" \ "$(INTDIR)\mxpalette.obj" \ + "$(INTDIR)\mxpresenter.obj" \ + "$(INTDIR)\mxsmkpresenter.obj" \ + "$(INTDIR)\mxsoundmanager.obj" \ + "$(INTDIR)\mxsoundpresenter.obj" \ + "$(INTDIR)\mxstillpresenter.obj" \ + "$(INTDIR)\mxstreamer.obj" \ "$(INTDIR)\mxstring.obj" \ "$(INTDIR)\mxtimer.obj" \ + "$(INTDIR)\mxtransitionmanager.obj" \ "$(INTDIR)\mxunknown100dc6b0.obj" \ "$(INTDIR)\mxvideomanager.obj" \ "$(INTDIR)\mxvideoparam.obj" \ - "$(INTDIR)\mxvideoparamflags.obj" + "$(INTDIR)\mxvideoparamflags.obj" \ + "$(INTDIR)\mxvideopresenter.obj" \ + "$(INTDIR)\mxwavepresenter.obj" \ + "$(INTDIR)\pizza.obj" \ + "$(INTDIR)\pizzeria.obj" \ + "$(INTDIR)\pizzeriastate.obj" \ + "$(INTDIR)\police.obj" \ + "$(INTDIR)\policeentity.obj" \ + "$(INTDIR)\policestate.obj" \ + "$(INTDIR)\racecar.obj" \ + "$(INTDIR)\racestandsentity.obj" \ + "$(INTDIR)\racestate.obj" \ + "$(INTDIR)\radio.obj" \ + "$(INTDIR)\radiostate.obj" \ + "$(INTDIR)\registrationbook.obj" \ + "$(INTDIR)\score.obj" \ + "$(INTDIR)\skateboard.obj" \ + "$(INTDIR)\towtrack.obj" \ + "$(INTDIR)\towtrackmissionstate.obj" ".\Debug\LEGO1.DLL" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< @@ -309,8 +809,8 @@ ALL : "LEGO1 - Win32 Release" ".\Release\ISLE.EXE" CLEAN : -@erase "$(INTDIR)\define.obj" - -@erase "$(INTDIR)\isle.obj" -@erase "$(INTDIR)\isle.res" + -@erase "$(INTDIR)\isleapp.obj" -@erase "$(INTDIR)\vc40.pdb" -@erase ".\Release\ISLE.EXE" -@erase ".\Release\ISLE.PDB" @@ -369,8 +869,8 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ /out:"Release/ISLE.EXE" /LIBPATH:"ISLE/ext" LINK32_OBJS= \ "$(INTDIR)\define.obj" \ - "$(INTDIR)\isle.obj" \ "$(INTDIR)\isle.res" \ + "$(INTDIR)\isleapp.obj" \ ".\Release\LEGO1.LIB" ".\Release\ISLE.EXE" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) @@ -397,8 +897,8 @@ ALL : "LEGO1 - Win32 Debug" ".\Debug\ISLE.EXE" CLEAN : -@erase "$(INTDIR)\define.obj" - -@erase "$(INTDIR)\isle.obj" -@erase "$(INTDIR)\isle.res" + -@erase "$(INTDIR)\isleapp.obj" -@erase "$(INTDIR)\vc40.idb" -@erase "$(INTDIR)\vc40.pdb" -@erase ".\Debug\ISLE.EXE" @@ -459,8 +959,8 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ /out:"Debug/ISLE.EXE" /LIBPATH:"ISLE/ext" LINK32_OBJS= \ "$(INTDIR)\define.obj" \ - "$(INTDIR)\isle.obj" \ "$(INTDIR)\isle.res" \ + "$(INTDIR)\isleapp.obj" \ ".\LEGO1\Debug\LEGO1.lib" ".\Debug\ISLE.EXE" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) @@ -511,15 +1011,19 @@ SOURCE=.\LEGO1\dllmain.cpp SOURCE=.\LEGO1\legoomni.cpp DEP_CPP_LEGOO=\ + ".\LEGO1\isle.h"\ ".\LEGO1\lego3dmanager.h"\ ".\LEGO1\lego3dview.h"\ + ".\LEGO1\legobuildingmanager.h"\ ".\LEGO1\legoentity.h"\ ".\LEGO1\legogamestate.h"\ ".\LEGO1\legoinputmanager.h"\ ".\LEGO1\legonavcontroller.h"\ ".\LEGO1\legoomni.h"\ + ".\LEGO1\legoplantmanager.h"\ ".\LEGO1\legoroi.h"\ ".\LEGO1\legovideomanager.h"\ + ".\LEGO1\legoworld.h"\ ".\LEGO1\mxatomid.h"\ ".\LEGO1\mxbackgroundaudiomanager.h"\ ".\LEGO1\mxcore.h"\ @@ -528,6 +1032,7 @@ DEP_CPP_LEGOO=\ ".\LEGO1\mxdsfile.h"\ ".\LEGO1\mxdsobject.h"\ ".\LEGO1\mxdssource.h"\ + ".\LEGO1\mxentity.h"\ ".\LEGO1\mxeventmanager.h"\ ".\LEGO1\mxioinfo.h"\ ".\LEGO1\mxmusicmanager.h"\ @@ -539,7 +1044,6 @@ DEP_CPP_LEGOO=\ ".\LEGO1\mxomnicreateparambase.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxsoundmanager.h"\ ".\LEGO1\mxstreamcontroller.h"\ ".\LEGO1\mxstreamer.h"\ @@ -621,7 +1125,6 @@ DEP_CPP_MXOMN=\ ".\LEGO1\mxomnicreateparambase.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxsoundmanager.h"\ ".\LEGO1\mxstreamcontroller.h"\ ".\LEGO1\mxstreamer.h"\ @@ -649,7 +1152,6 @@ DEP_CPP_MXVID=\ ".\LEGO1\mxcore.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxtypes.h"\ ".\LEGO1\mxvariabletable.h"\ ".\LEGO1\mxvideoparam.h"\ @@ -685,7 +1187,6 @@ DEP_CPP_MXOMNI=\ ".\LEGO1\mxomnicreateparambase.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxstring.h"\ ".\LEGO1\mxtypes.h"\ ".\LEGO1\mxvariabletable.h"\ @@ -709,7 +1210,6 @@ DEP_CPP_MXOMNIC=\ ".\LEGO1\mxomnicreateparambase.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxstring.h"\ ".\LEGO1\mxtypes.h"\ ".\LEGO1\mxvariabletable.h"\ @@ -757,16 +1257,20 @@ DEP_CPP_MXOMNICR=\ SOURCE=.\LEGO1\legonavcontroller.cpp DEP_CPP_LEGON=\ + ".\LEGO1\isle.h"\ ".\LEGO1\lego3dmanager.h"\ ".\LEGO1\lego3dview.h"\ + ".\LEGO1\legobuildingmanager.h"\ ".\LEGO1\legoentity.h"\ ".\LEGO1\legogamestate.h"\ ".\LEGO1\legoinputmanager.h"\ ".\LEGO1\legonavcontroller.h"\ ".\LEGO1\legoomni.h"\ + ".\LEGO1\legoplantmanager.h"\ ".\LEGO1\legoroi.h"\ ".\LEGO1\legoutil.h"\ ".\LEGO1\legovideomanager.h"\ + ".\LEGO1\legoworld.h"\ ".\LEGO1\mxatomid.h"\ ".\LEGO1\mxbackgroundaudiomanager.h"\ ".\LEGO1\mxcore.h"\ @@ -775,6 +1279,7 @@ DEP_CPP_LEGON=\ ".\LEGO1\mxdsfile.h"\ ".\LEGO1\mxdsobject.h"\ ".\LEGO1\mxdssource.h"\ + ".\LEGO1\mxentity.h"\ ".\LEGO1\mxeventmanager.h"\ ".\LEGO1\mxioinfo.h"\ ".\LEGO1\mxmusicmanager.h"\ @@ -786,7 +1291,6 @@ DEP_CPP_LEGON=\ ".\LEGO1\mxomnicreateparambase.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxsoundmanager.h"\ ".\LEGO1\mxstreamcontroller.h"\ ".\LEGO1\mxstreamer.h"\ @@ -844,7 +1348,6 @@ SOURCE=.\LEGO1\mxunknown100dc6b0.cpp DEP_CPP_MXUNK=\ ".\LEGO1\mxcore.h"\ ".\LEGO1\mxcriticalsection.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxtypes.h"\ ".\LEGO1\mxunknown100dc6b0.h"\ @@ -863,7 +1366,6 @@ DEP_CPP_MXVIDEO=\ ".\LEGO1\mxcriticalsection.h"\ ".\LEGO1\mxpalette.h"\ ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxtypes.h"\ ".\LEGO1\mxunknown100dc6b0.h"\ ".\LEGO1\mxvariabletable.h"\ @@ -884,7 +1386,6 @@ SOURCE=.\LEGO1\mxpalette.cpp DEP_CPP_MXPAL=\ ".\LEGO1\mxcore.h"\ ".\LEGO1\mxpalette.h"\ - ".\LEGO1\mxresult.h"\ ".\LEGO1\mxtypes.h"\ @@ -896,12 +1397,1228 @@ DEP_CPP_MXPAL=\ ################################################################################ # Begin Source File -SOURCE=.\LEGO1\mxioinfo.cpp -DEP_CPP_MXIOI=\ - ".\LEGO1\mxioinfo.h"\ +SOURCE=.\LEGO1\act1state.cpp +DEP_CPP_ACT1S=\ + ".\LEGO1\act1state.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ -"$(INTDIR)\mxioinfo.obj" : $(SOURCE) $(DEP_CPP_MXIOI) "$(INTDIR)" +"$(INTDIR)\act1state.obj" : $(SOURCE) $(DEP_CPP_ACT1S) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\act2brick.cpp +DEP_CPP_ACT2B=\ + ".\LEGO1\act2brick.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\act2brick.obj" : $(SOURCE) $(DEP_CPP_ACT2B) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\act2policestation.cpp +DEP_CPP_ACT2P=\ + ".\LEGO1\act2policestation.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\act2policestation.obj" : $(SOURCE) $(DEP_CPP_ACT2P) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\act3.cpp +DEP_CPP_ACT3_=\ + ".\LEGO1\act3.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\act3.obj" : $(SOURCE) $(DEP_CPP_ACT3_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\act3shark.cpp +DEP_CPP_ACT3S=\ + ".\LEGO1\act3shark.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoanimactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\act3shark.obj" : $(SOURCE) $(DEP_CPP_ACT3S) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\ambulance.cpp +DEP_CPP_AMBUL=\ + ".\LEGO1\ambulance.h"\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\ambulance.obj" : $(SOURCE) $(DEP_CPP_AMBUL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\ambulancemissionstate.cpp +DEP_CPP_AMBULA=\ + ".\LEGO1\ambulancemissionstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\ambulancemissionstate.obj" : $(SOURCE) $(DEP_CPP_AMBULA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\animstate.cpp +DEP_CPP_ANIMS=\ + ".\LEGO1\animstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\animstate.obj" : $(SOURCE) $(DEP_CPP_ANIMS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\beachhouseentity.cpp +DEP_CPP_BEACH=\ + ".\LEGO1\beachhouseentity.h"\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\beachhouseentity.obj" : $(SOURCE) $(DEP_CPP_BEACH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\bike.cpp +DEP_CPP_BIKE_=\ + ".\LEGO1\bike.h"\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\bike.obj" : $(SOURCE) $(DEP_CPP_BIKE_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\buildingentity.cpp +DEP_CPP_BUILD=\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\buildingentity.obj" : $(SOURCE) $(DEP_CPP_BUILD) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\bumpbouy.cpp +DEP_CPP_BUMPB=\ + ".\LEGO1\bumpbouy.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoanimactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\bumpbouy.obj" : $(SOURCE) $(DEP_CPP_BUMPB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\carrace.cpp +DEP_CPP_CARRA=\ + ".\LEGO1\carrace.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legorace.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\carrace.obj" : $(SOURCE) $(DEP_CPP_CARRA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\dunebuggy.cpp +DEP_CPP_DUNEB=\ + ".\LEGO1\dunebuggy.h"\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\dunebuggy.obj" : $(SOURCE) $(DEP_CPP_DUNEB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\elevatorbottom.cpp +DEP_CPP_ELEVA=\ + ".\LEGO1\elevatorbottom.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\elevatorbottom.obj" : $(SOURCE) $(DEP_CPP_ELEVA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\gasstation.cpp +DEP_CPP_GASST=\ + ".\LEGO1\gasstation.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\gasstation.obj" : $(SOURCE) $(DEP_CPP_GASST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\gasstationentity.cpp +DEP_CPP_GASSTA=\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\gasstationentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\gasstationentity.obj" : $(SOURCE) $(DEP_CPP_GASSTA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\gasstationstate.cpp +DEP_CPP_GASSTAT=\ + ".\LEGO1\gasstationstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\gasstationstate.obj" : $(SOURCE) $(DEP_CPP_GASSTAT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\helicopter.cpp +DEP_CPP_HELIC=\ + ".\LEGO1\helicopter.h"\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\helicopter.obj" : $(SOURCE) $(DEP_CPP_HELIC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\historybook.cpp +DEP_CPP_HISTO=\ + ".\LEGO1\historybook.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\historybook.obj" : $(SOURCE) $(DEP_CPP_HISTO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\hospital.cpp +DEP_CPP_HOSPI=\ + ".\LEGO1\hospital.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\hospital.obj" : $(SOURCE) $(DEP_CPP_HOSPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\hospitalentity.cpp +DEP_CPP_HOSPIT=\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\hospitalentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\hospitalentity.obj" : $(SOURCE) $(DEP_CPP_HOSPIT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\hospitalstate.cpp +DEP_CPP_HOSPITA=\ + ".\LEGO1\hospitalstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\hospitalstate.obj" : $(SOURCE) $(DEP_CPP_HOSPITA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\infocenter.cpp +DEP_CPP_INFOC=\ + ".\LEGO1\infocenter.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\infocenter.obj" : $(SOURCE) $(DEP_CPP_INFOC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\infocenterdoor.cpp +DEP_CPP_INFOCE=\ + ".\LEGO1\infocenterdoor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\infocenterdoor.obj" : $(SOURCE) $(DEP_CPP_INFOCE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\infocenterentity.cpp +DEP_CPP_INFOCEN=\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\infocenterentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\infocenterentity.obj" : $(SOURCE) $(DEP_CPP_INFOCEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\infocenterstate.cpp +DEP_CPP_INFOCENT=\ + ".\LEGO1\infocenterstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\infocenterstate.obj" : $(SOURCE) $(DEP_CPP_INFOCENT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\isle.cpp +DEP_CPP_ISLE_=\ + ".\LEGO1\isle.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\isle.obj" : $(SOURCE) $(DEP_CPP_ISLE_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\isleactor.cpp +DEP_CPP_ISLEA=\ + ".\LEGO1\isleactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\isleactor.obj" : $(SOURCE) $(DEP_CPP_ISLEA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\islepathactor.cpp +DEP_CPP_ISLEP=\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\islepathactor.obj" : $(SOURCE) $(DEP_CPP_ISLEP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\jetski.cpp +DEP_CPP_JETSK=\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\jetski.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\jetski.obj" : $(SOURCE) $(DEP_CPP_JETSK) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\jetskiRace.cpp +DEP_CPP_JETSKI=\ + ".\LEGO1\jetskiRace.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legorace.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\jetskiRace.obj" : $(SOURCE) $(DEP_CPP_JETSKI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\jukebox.cpp +DEP_CPP_JUKEB=\ + ".\LEGO1\jukebox.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\jukebox.obj" : $(SOURCE) $(DEP_CPP_JUKEB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\jukeboxentity.cpp +DEP_CPP_JUKEBO=\ + ".\LEGO1\jukeboxentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\jukeboxentity.obj" : $(SOURCE) $(DEP_CPP_JUKEBO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoactioncontrolpresenter.cpp +DEP_CPP_LEGOA=\ + ".\LEGO1\legoactioncontrolpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoactioncontrolpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOA)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoanimactor.cpp +DEP_CPP_LEGOAN=\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoanimactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoanimactor.obj" : $(SOURCE) $(DEP_CPP_LEGOAN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoanimationmanager.cpp +DEP_CPP_LEGOANI=\ + ".\LEGO1\legoanimationmanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoanimationmanager.obj" : $(SOURCE) $(DEP_CPP_LEGOANI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoanimmmpresenter.cpp +DEP_CPP_LEGOANIM=\ + ".\LEGO1\legoanimmmpresenter.h"\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoanimmmpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOANIM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoanimpresenter.cpp +DEP_CPP_LEGOANIMP=\ + ".\LEGO1\legoanimpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legoanimpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOANIMP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legobuildingmanager.cpp +DEP_CPP_LEGOB=\ + ".\LEGO1\legobuildingmanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legobuildingmanager.obj" : $(SOURCE) $(DEP_CPP_LEGOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legocachesound.cpp +DEP_CPP_LEGOC=\ + ".\LEGO1\legocachesound.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legocachesound.obj" : $(SOURCE) $(DEP_CPP_LEGOC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legocameracontroller.cpp +DEP_CPP_LEGOCA=\ + ".\LEGO1\legocameracontroller.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legocameracontroller.obj" : $(SOURCE) $(DEP_CPP_LEGOCA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legocarbuild.cpp +DEP_CPP_LEGOCAR=\ + ".\LEGO1\legocarbuild.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legocarbuild.obj" : $(SOURCE) $(DEP_CPP_LEGOCAR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legocarbuildanimpresenter.cpp +DEP_CPP_LEGOCARB=\ + ".\LEGO1\legoanimpresenter.h"\ + ".\LEGO1\legocarbuildanimpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legocarbuildanimpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOCARB)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legocontrolmanager.cpp +DEP_CPP_LEGOCO=\ + ".\LEGO1\legocontrolmanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legocontrolmanager.obj" : $(SOURCE) $(DEP_CPP_LEGOCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoentity.cpp +DEP_CPP_LEGOE=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoentity.obj" : $(SOURCE) $(DEP_CPP_LEGOE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoentitypresenter.cpp +DEP_CPP_LEGOEN=\ + ".\LEGO1\legoentitypresenter.h"\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoentitypresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoflctexturepresenter.cpp +DEP_CPP_LEGOF=\ + ".\LEGO1\legoflctexturepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxflcpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legoflctexturepresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOF)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legohideanimpresenter.cpp +DEP_CPP_LEGOH=\ + ".\LEGO1\legoanimpresenter.h"\ + ".\LEGO1\legohideanimpresenter.h"\ + ".\LEGO1\legoloopinganimpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legohideanimpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoinputmanager.cpp +DEP_CPP_LEGOI=\ + ".\LEGO1\legoinputmanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoinputmanager.obj" : $(SOURCE) $(DEP_CPP_LEGOI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legojetski.cpp +DEP_CPP_LEGOJ=\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoanimactor.h"\ + ".\LEGO1\legocarraceactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legojetski.h"\ + ".\LEGO1\legojetskiraceactor.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\legoraceactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legojetski.obj" : $(SOURCE) $(DEP_CPP_LEGOJ) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoloadcachesoundpresenter.cpp +DEP_CPP_LEGOL=\ + ".\LEGO1\legoloadcachesoundpresenter.h"\ + ".\LEGO1\mxaudiopresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxsoundpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxwavepresenter.h"\ + + +"$(INTDIR)\legoloadcachesoundpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOL)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legolocomotionanimpresenter.cpp +DEP_CPP_LEGOLO=\ + ".\LEGO1\legoanimpresenter.h"\ + ".\LEGO1\legolocomotionanimpresenter.h"\ + ".\LEGO1\legoloopinganimpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legolocomotionanimpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOLO)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legopalettepresenter.cpp +DEP_CPP_LEGOP=\ + ".\LEGO1\legopalettepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legopalettepresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legopathactor.cpp +DEP_CPP_LEGOPA=\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legopathactor.obj" : $(SOURCE) $(DEP_CPP_LEGOPA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legopathpresenter.cpp +DEP_CPP_LEGOPAT=\ + ".\LEGO1\legopathpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legopathpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOPAT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legophonemepresenter.cpp +DEP_CPP_LEGOPH=\ + ".\LEGO1\legophonemepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxflcpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\legophonemepresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOPH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoplantmanager.cpp +DEP_CPP_LEGOPL=\ + ".\LEGO1\legoplantmanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoplantmanager.obj" : $(SOURCE) $(DEP_CPP_LEGOPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legorace.cpp +DEP_CPP_LEGOR=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legorace.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legorace.obj" : $(SOURCE) $(DEP_CPP_LEGOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legosoundmanager.cpp +DEP_CPP_LEGOS=\ + ".\LEGO1\legosoundmanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxsoundmanager.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legosoundmanager.obj" : $(SOURCE) $(DEP_CPP_LEGOS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legotexturepresenter.cpp +DEP_CPP_LEGOT=\ + ".\LEGO1\legotexturepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legotexturepresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoworld.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_LEGOW=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoworld.obj" : $(SOURCE) $(DEP_CPP_LEGOW) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_LEGOW=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoworld.obj" : $(SOURCE) $(DEP_CPP_LEGOW) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoworldpresenter.cpp +DEP_CPP_LEGOWO=\ + ".\LEGO1\legoentitypresenter.h"\ + ".\LEGO1\legoworldpresenter.h"\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoworldpresenter.obj" : $(SOURCE) $(DEP_CPP_LEGOWO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\motorcycle.cpp +DEP_CPP_MOTOR=\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\motorcycle.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\motorcycle.obj" : $(SOURCE) $(DEP_CPP_MOTOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxcontrolpresenter.cpp +DEP_CPP_MXCON=\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcontrolpresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxcontrolpresenter.obj" : $(SOURCE) $(DEP_CPP_MXCON) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdiskstreamcontroller.cpp +DEP_CPP_MXDIS=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdiskstreamcontroller.h"\ + ".\LEGO1\mxstreamcontroller.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdiskstreamcontroller.obj" : $(SOURCE) $(DEP_CPP_MXDIS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdschunk.cpp +DEP_CPP_MXDSC=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdschunk.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdschunk.obj" : $(SOURCE) $(DEP_CPP_MXDSC) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -923,6 +2640,691 @@ DEP_CPP_MXDSF=\ $(CPP) $(CPP_PROJ) $(SOURCE) +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxentity.cpp +DEP_CPP_MXENT=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxentity.obj" : $(SOURCE) $(DEP_CPP_MXENT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxeventmanager.cpp +DEP_CPP_MXEVE=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxeventmanager.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxunknown100dc6b0.h"\ + + +"$(INTDIR)\mxeventmanager.obj" : $(SOURCE) $(DEP_CPP_MXEVE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxeventpresenter.cpp +DEP_CPP_MXEVEN=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxeventpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxeventpresenter.obj" : $(SOURCE) $(DEP_CPP_MXEVEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxflcpresenter.cpp +DEP_CPP_MXFLC=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxflcpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxflcpresenter.obj" : $(SOURCE) $(DEP_CPP_MXFLC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxloopingsmkpresenter.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXLOO=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxloopingsmkpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxsmkpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxloopingsmkpresenter.obj" : $(SOURCE) $(DEP_CPP_MXLOO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXLOO=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxloopingsmkpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxsmkpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxloopingsmkpresenter.obj" : $(SOURCE) $(DEP_CPP_MXLOO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxmediapresenter.cpp +DEP_CPP_MXMED=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxmediapresenter.obj" : $(SOURCE) $(DEP_CPP_MXMED) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxmusicpresenter.cpp +DEP_CPP_MXMUS=\ + ".\LEGO1\mxaudiopresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxmusicpresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxmusicpresenter.obj" : $(SOURCE) $(DEP_CPP_MXMUS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxnotificationmanager.cpp +DEP_CPP_MXNOT=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxnotificationmanager.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxnotificationmanager.obj" : $(SOURCE) $(DEP_CPP_MXNOT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxpresenter.cpp +DEP_CPP_MXPRE=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxpresenter.obj" : $(SOURCE) $(DEP_CPP_MXPRE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxsmkpresenter.cpp +DEP_CPP_MXSMK=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxsmkpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxsmkpresenter.obj" : $(SOURCE) $(DEP_CPP_MXSMK) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxsoundmanager.cpp +DEP_CPP_MXSOU=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxsoundmanager.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxsoundmanager.obj" : $(SOURCE) $(DEP_CPP_MXSOU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxstillpresenter.cpp +DEP_CPP_MXSTI=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxstillpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxstillpresenter.obj" : $(SOURCE) $(DEP_CPP_MXSTI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxstreamer.cpp +DEP_CPP_MXSTRE=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxstreamcontroller.h"\ + ".\LEGO1\mxstreamer.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxstreamer.obj" : $(SOURCE) $(DEP_CPP_MXSTRE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxtransitionmanager.cpp +DEP_CPP_MXTRA=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtransitionmanager.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxtransitionmanager.obj" : $(SOURCE) $(DEP_CPP_MXTRA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxvideopresenter.cpp +DEP_CPP_MXVIDEOP=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxvideopresenter.obj" : $(SOURCE) $(DEP_CPP_MXVIDEOP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxwavepresenter.cpp +DEP_CPP_MXWAV=\ + ".\LEGO1\mxaudiopresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxsoundpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxwavepresenter.h"\ + + +"$(INTDIR)\mxwavepresenter.obj" : $(SOURCE) $(DEP_CPP_MXWAV) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\pizza.cpp +DEP_CPP_PIZZA=\ + ".\LEGO1\isleactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\pizza.h"\ + + +"$(INTDIR)\pizza.obj" : $(SOURCE) $(DEP_CPP_PIZZA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\pizzeria.cpp +DEP_CPP_PIZZE=\ + ".\LEGO1\isleactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\pizzeria.h"\ + + +"$(INTDIR)\pizzeria.obj" : $(SOURCE) $(DEP_CPP_PIZZE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\pizzeriastate.cpp +DEP_CPP_PIZZER=\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\pizzeriastate.h"\ + + +"$(INTDIR)\pizzeriastate.obj" : $(SOURCE) $(DEP_CPP_PIZZER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\police.cpp +DEP_CPP_POLIC=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\police.h"\ + + +"$(INTDIR)\police.obj" : $(SOURCE) $(DEP_CPP_POLIC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\policeentity.cpp +DEP_CPP_POLICE=\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\policeentity.h"\ + + +"$(INTDIR)\policeentity.obj" : $(SOURCE) $(DEP_CPP_POLICE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\policestate.cpp +DEP_CPP_POLICES=\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\policestate.h"\ + + +"$(INTDIR)\policestate.obj" : $(SOURCE) $(DEP_CPP_POLICES) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\racecar.cpp +DEP_CPP_RACEC=\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\racecar.h"\ + + +"$(INTDIR)\racecar.obj" : $(SOURCE) $(DEP_CPP_RACEC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\racestandsentity.cpp +DEP_CPP_RACES=\ + ".\LEGO1\buildingentity.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\racestandsentity.h"\ + + +"$(INTDIR)\racestandsentity.obj" : $(SOURCE) $(DEP_CPP_RACES) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\racestate.cpp +DEP_CPP_RACEST=\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\racestate.h"\ + + +"$(INTDIR)\racestate.obj" : $(SOURCE) $(DEP_CPP_RACEST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\radio.cpp +DEP_CPP_RADIO=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\radio.h"\ + + +"$(INTDIR)\radio.obj" : $(SOURCE) $(DEP_CPP_RADIO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\radiostate.cpp +DEP_CPP_RADIOS=\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\radiostate.h"\ + + +"$(INTDIR)\radiostate.obj" : $(SOURCE) $(DEP_CPP_RADIOS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\registrationbook.cpp +DEP_CPP_REGIS=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\registrationbook.h"\ + + +"$(INTDIR)\registrationbook.obj" : $(SOURCE) $(DEP_CPP_REGIS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\score.cpp +DEP_CPP_SCORE=\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\score.h"\ + + +"$(INTDIR)\score.obj" : $(SOURCE) $(DEP_CPP_SCORE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\skateboard.cpp +DEP_CPP_SKATE=\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\skateboard.h"\ + + +"$(INTDIR)\skateboard.obj" : $(SOURCE) $(DEP_CPP_SKATE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\towtrack.cpp +DEP_CPP_TOWTR=\ + ".\LEGO1\islepathactor.h"\ + ".\LEGO1\legoactor.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legopathactor.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\towtrack.h"\ + + +"$(INTDIR)\towtrack.obj" : $(SOURCE) $(DEP_CPP_TOWTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\towtrackmissionstate.cpp +DEP_CPP_TOWTRA=\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\towtrackmissionstate.h"\ + + +"$(INTDIR)\towtrackmissionstate.obj" : $(SOURCE) $(DEP_CPP_TOWTRA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxcompositemediapresenter.cpp +DEP_CPP_MXCOM=\ + ".\LEGO1\mxcompositemediapresenter.h"\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxcompositemediapresenter.obj" : $(SOURCE) $(DEP_CPP_MXCOM)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxcompositepresenter.cpp +DEP_CPP_MXCOMP=\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxcompositepresenter.obj" : $(SOURCE) $(DEP_CPP_MXCOMP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legostate.cpp +DEP_CPP_LEGOST=\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legostate.obj" : $(SOURCE) $(DEP_CPP_LEGOST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxaudiopresenter.cpp +DEP_CPP_MXAUD=\ + ".\LEGO1\mxaudiopresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxaudiopresenter.obj" : $(SOURCE) $(DEP_CPP_MXAUD) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxsoundpresenter.cpp +DEP_CPP_MXSOUN=\ + ".\LEGO1\mxaudiopresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxsoundpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxsoundpresenter.obj" : $(SOURCE) $(DEP_CPP_MXSOUN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxioinfo.cpp +DEP_CPP_MXIOI=\ + ".\LEGO1\mxioinfo.h"\ + + +"$(INTDIR)\mxioinfo.obj" : $(SOURCE) $(DEP_CPP_MXIOI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + # End Source File ################################################################################ # Begin Source File @@ -938,6 +3340,804 @@ DEP_CPP_MXDSS=\ $(CPP) $(CPP_PROJ) $(SOURCE) +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\act3state.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_ACT3ST=\ + ".\LEGO1\act3state.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\act3state.obj" : $(SOURCE) $(DEP_CPP_ACT3ST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_ACT3ST=\ + ".\LEGO1\act3state.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\act3state.obj" : $(SOURCE) $(DEP_CPP_ACT3ST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\helicopterstate.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_HELICO=\ + ".\LEGO1\helicopterstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\helicopterstate.obj" : $(SOURCE) $(DEP_CPP_HELICO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_HELICO=\ + ".\LEGO1\helicopterstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\helicopterstate.obj" : $(SOURCE) $(DEP_CPP_HELICO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\jukeboxstate.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_JUKEBOX=\ + ".\LEGO1\jukeboxstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\jukeboxstate.obj" : $(SOURCE) $(DEP_CPP_JUKEBOX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_JUKEBOX=\ + ".\LEGO1\jukeboxstate.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\jukeboxstate.obj" : $(SOURCE) $(DEP_CPP_JUKEBOX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legoact2state.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_LEGOAC=\ + ".\LEGO1\legoact2state.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoact2state.obj" : $(SOURCE) $(DEP_CPP_LEGOAC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_LEGOAC=\ + ".\LEGO1\legoact2state.h"\ + ".\LEGO1\legostate.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legoact2state.obj" : $(SOURCE) $(DEP_CPP_LEGOAC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legopathcontroller.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_LEGOPATH=\ + ".\LEGO1\legopathcontroller.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legopathcontroller.obj" : $(SOURCE) $(DEP_CPP_LEGOPATH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_LEGOPATH=\ + ".\LEGO1\legopathcontroller.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\legopathcontroller.obj" : $(SOURCE) $(DEP_CPP_LEGOPATH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\legovideomanager.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_LEGOV=\ + ".\LEGO1\lego3dmanager.h"\ + ".\LEGO1\lego3dview.h"\ + ".\LEGO1\legovideomanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpalette.h"\ + ".\LEGO1\mxrect32.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxunknown100dc6b0.h"\ + ".\LEGO1\mxvariabletable.h"\ + ".\LEGO1\mxvideomanager.h"\ + ".\LEGO1\mxvideoparam.h"\ + ".\LEGO1\mxvideoparamflags.h"\ + ".\LEGO1\viewmanager.h"\ + + +"$(INTDIR)\legovideomanager.obj" : $(SOURCE) $(DEP_CPP_LEGOV) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_LEGOV=\ + ".\LEGO1\lego3dmanager.h"\ + ".\LEGO1\lego3dview.h"\ + ".\LEGO1\legovideomanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxpalette.h"\ + ".\LEGO1\mxrect32.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxunknown100dc6b0.h"\ + ".\LEGO1\mxvariabletable.h"\ + ".\LEGO1\mxvideomanager.h"\ + ".\LEGO1\mxvideoparam.h"\ + ".\LEGO1\mxvideoparamflags.h"\ + ".\LEGO1\viewmanager.h"\ + + +"$(INTDIR)\legovideomanager.obj" : $(SOURCE) $(DEP_CPP_LEGOV) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxbackgroundaudiomanager.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXBAC=\ + ".\LEGO1\mxbackgroundaudiomanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxbackgroundaudiomanager.obj" : $(SOURCE) $(DEP_CPP_MXBAC)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXBAC=\ + ".\LEGO1\mxbackgroundaudiomanager.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxbackgroundaudiomanager.obj" : $(SOURCE) $(DEP_CPP_MXBAC)\ + "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdiskstreamprovider.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDISK=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdiskstreamprovider.h"\ + ".\LEGO1\mxstreamprovider.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdiskstreamprovider.obj" : $(SOURCE) $(DEP_CPP_MXDISK) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDISK=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdiskstreamprovider.h"\ + ".\LEGO1\mxstreamprovider.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdiskstreamprovider.obj" : $(SOURCE) $(DEP_CPP_MXDISK) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSA=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsaction.obj" : $(SOURCE) $(DEP_CPP_MXDSA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSA=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsaction.obj" : $(SOURCE) $(DEP_CPP_MXDSA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsanim.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSAN=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsanim.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsanim.obj" : $(SOURCE) $(DEP_CPP_MXDSAN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSAN=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsanim.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsanim.obj" : $(SOURCE) $(DEP_CPP_MXDSAN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsevent.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSE=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsevent.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsevent.obj" : $(SOURCE) $(DEP_CPP_MXDSE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSE=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsevent.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsevent.obj" : $(SOURCE) $(DEP_CPP_MXDSE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsmediaaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSM=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsmediaaction.obj" : $(SOURCE) $(DEP_CPP_MXDSM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSM=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsmediaaction.obj" : $(SOURCE) $(DEP_CPP_MXDSM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsmultiaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSMU=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsmultiaction.obj" : $(SOURCE) $(DEP_CPP_MXDSMU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSMU=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsmultiaction.obj" : $(SOURCE) $(DEP_CPP_MXDSMU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsobjectaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSOB=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsobjectaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsobjectaction.obj" : $(SOURCE) $(DEP_CPP_MXDSOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSOB=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsobjectaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsobjectaction.obj" : $(SOURCE) $(DEP_CPP_MXDSOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsparallelaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSP=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsparallelaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsparallelaction.obj" : $(SOURCE) $(DEP_CPP_MXDSP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSP=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsparallelaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsparallelaction.obj" : $(SOURCE) $(DEP_CPP_MXDSP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsselectaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSSE=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsparallelaction.h"\ + ".\LEGO1\mxdsselectaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsselectaction.obj" : $(SOURCE) $(DEP_CPP_MXDSSE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSSE=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsparallelaction.h"\ + ".\LEGO1\mxdsselectaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsselectaction.obj" : $(SOURCE) $(DEP_CPP_MXDSSE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsserialaction.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSSER=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsserialaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsserialaction.obj" : $(SOURCE) $(DEP_CPP_MXDSSER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSSER=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmultiaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsserialaction.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsserialaction.obj" : $(SOURCE) $(DEP_CPP_MXDSSER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdssound.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSSO=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdssound.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdssound.obj" : $(SOURCE) $(DEP_CPP_MXDSSO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSSO=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdssound.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdssound.obj" : $(SOURCE) $(DEP_CPP_MXDSSO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdsstill.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSST=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsstill.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsstill.obj" : $(SOURCE) $(DEP_CPP_MXDSST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSST=\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsmediaaction.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdsstill.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdsstill.obj" : $(SOURCE) $(DEP_CPP_MXDSST) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxdssubscriber.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXDSSU=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdssubscriber.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdssubscriber.obj" : $(SOURCE) $(DEP_CPP_MXDSSU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXDSSU=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxdssubscriber.h"\ + ".\LEGO1\mxtypes.h"\ + + +"$(INTDIR)\mxdssubscriber.obj" : $(SOURCE) $(DEP_CPP_MXDSSU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\LEGO1\mxloopingflcpresenter.cpp + +!IF "$(CFG)" == "LEGO1 - Win32 Release" + +DEP_CPP_MXLOOP=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxflcpresenter.h"\ + ".\LEGO1\mxloopingflcpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxloopingflcpresenter.obj" : $(SOURCE) $(DEP_CPP_MXLOOP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "LEGO1 - Win32 Debug" + +DEP_CPP_MXLOOP=\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxflcpresenter.h"\ + ".\LEGO1\mxloopingflcpresenter.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxvideopresenter.h"\ + + +"$(INTDIR)\mxloopingflcpresenter.obj" : $(SOURCE) $(DEP_CPP_MXLOOP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + # End Source File # End Target ################################################################################ @@ -955,63 +4155,12 @@ DEP_CPP_MXDSS=\ ################################################################################ # Begin Source File -SOURCE=.\ISLE\isle.cpp -DEP_CPP_ISLE_=\ +SOURCE=.\ISLE\define.cpp +DEP_CPP_DEFIN=\ ".\ISLE\define.h"\ - ".\ISLE\isle.h"\ - ".\ISLE\res\resource.h"\ - ".\LEGO1\lego3dmanager.h"\ - ".\LEGO1\lego3dview.h"\ - ".\LEGO1\legoanimationmanager.h"\ - ".\LEGO1\legobuildingmanager.h"\ - ".\LEGO1\legoentity.h"\ - ".\LEGO1\legogamestate.h"\ - ".\LEGO1\legoinputmanager.h"\ - ".\LEGO1\legomodelpresenter.h"\ - ".\LEGO1\legonavcontroller.h"\ - ".\LEGO1\legoomni.h"\ - ".\LEGO1\legopartpresenter.h"\ - ".\LEGO1\legoroi.h"\ - ".\LEGO1\legovideomanager.h"\ - ".\LEGO1\legoworldpresenter.h"\ - ".\LEGO1\mxatomid.h"\ - ".\LEGO1\mxbackgroundaudiomanager.h"\ - ".\LEGO1\mxcore.h"\ - ".\LEGO1\mxcriticalsection.h"\ - ".\LEGO1\mxdirectdraw.h"\ - ".\LEGO1\mxdsaction.h"\ - ".\LEGO1\mxdsfile.h"\ - ".\LEGO1\mxdsobject.h"\ - ".\LEGO1\mxdssource.h"\ - ".\LEGO1\mxeventmanager.h"\ - ".\LEGO1\mxioinfo.h"\ - ".\LEGO1\mxmusicmanager.h"\ - ".\LEGO1\mxnotificationmanager.h"\ - ".\LEGO1\mxobjectfactory.h"\ - ".\LEGO1\mxomni.h"\ - ".\LEGO1\mxomnicreateflags.h"\ - ".\LEGO1\mxomnicreateparam.h"\ - ".\LEGO1\mxomnicreateparambase.h"\ - ".\LEGO1\mxpalette.h"\ - ".\LEGO1\mxrect32.h"\ - ".\LEGO1\mxresult.h"\ - ".\LEGO1\mxsoundmanager.h"\ - ".\LEGO1\mxstreamcontroller.h"\ - ".\LEGO1\mxstreamer.h"\ - ".\LEGO1\mxstring.h"\ - ".\LEGO1\mxticklemanager.h"\ - ".\LEGO1\mxtimer.h"\ - ".\LEGO1\mxtransitionmanager.h"\ - ".\LEGO1\mxtypes.h"\ - ".\LEGO1\mxunknown100dc6b0.h"\ - ".\LEGO1\mxvariabletable.h"\ - ".\LEGO1\mxvideomanager.h"\ - ".\LEGO1\mxvideoparam.h"\ - ".\LEGO1\mxvideoparamflags.h"\ - ".\LEGO1\viewmanager.h"\ -"$(INTDIR)\isle.obj" : $(SOURCE) $(DEP_CPP_ISLE_) "$(INTDIR)" +"$(INTDIR)\define.obj" : $(SOURCE) $(DEP_CPP_DEFIN) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -1164,6 +4313,18 @@ SOURCE=.\LEGO1\legoworldpresenter.h ################################################################################ # Begin Source File +SOURCE=.\LEGO1\mxatomid.h + +!IF "$(CFG)" == "ISLE - Win32 Release" + +!ELSEIF "$(CFG)" == "ISLE - Win32 Debug" + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + SOURCE=.\LEGO1\mxbackgroundaudiomanager.h !IF "$(CFG)" == "ISLE - Win32 Release" @@ -1446,24 +4607,71 @@ SOURCE=.\LEGO1\mxvideoparamflags.h ################################################################################ # Begin Source File -SOURCE=.\LEGO1\mxatomid.h - -!IF "$(CFG)" == "ISLE - Win32 Release" - -!ELSEIF "$(CFG)" == "ISLE - Win32 Debug" - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\ISLE\define.cpp -DEP_CPP_DEFIN=\ +SOURCE=.\ISLE\isleapp.cpp +DEP_CPP_ISLEAP=\ ".\ISLE\define.h"\ + ".\ISLE\isleapp.h"\ + ".\ISLE\res\resource.h"\ + ".\LEGO1\isle.h"\ + ".\LEGO1\lego3dmanager.h"\ + ".\LEGO1\lego3dview.h"\ + ".\LEGO1\legoanimationmanager.h"\ + ".\LEGO1\legobuildingmanager.h"\ + ".\LEGO1\legoentity.h"\ + ".\LEGO1\legoentitypresenter.h"\ + ".\LEGO1\legogamestate.h"\ + ".\LEGO1\legoinputmanager.h"\ + ".\LEGO1\legomodelpresenter.h"\ + ".\LEGO1\legonavcontroller.h"\ + ".\LEGO1\legoomni.h"\ + ".\LEGO1\legopartpresenter.h"\ + ".\LEGO1\legoplantmanager.h"\ + ".\LEGO1\legoroi.h"\ + ".\LEGO1\legovideomanager.h"\ + ".\LEGO1\legoworld.h"\ + ".\LEGO1\legoworldpresenter.h"\ + ".\LEGO1\mxatomid.h"\ + ".\LEGO1\mxbackgroundaudiomanager.h"\ + ".\LEGO1\mxcompositepresenter.h"\ + ".\LEGO1\mxcore.h"\ + ".\LEGO1\mxcriticalsection.h"\ + ".\LEGO1\mxdirectdraw.h"\ + ".\LEGO1\mxdsaction.h"\ + ".\LEGO1\mxdsfile.h"\ + ".\LEGO1\mxdsobject.h"\ + ".\LEGO1\mxdssource.h"\ + ".\LEGO1\mxentity.h"\ + ".\LEGO1\mxeventmanager.h"\ + ".\LEGO1\mxioinfo.h"\ + ".\LEGO1\mxmediapresenter.h"\ + ".\LEGO1\mxmusicmanager.h"\ + ".\LEGO1\mxnotificationmanager.h"\ + ".\LEGO1\mxobjectfactory.h"\ + ".\LEGO1\mxomni.h"\ + ".\LEGO1\mxomnicreateflags.h"\ + ".\LEGO1\mxomnicreateparam.h"\ + ".\LEGO1\mxomnicreateparambase.h"\ + ".\LEGO1\mxpalette.h"\ + ".\LEGO1\mxpresenter.h"\ + ".\LEGO1\mxrect32.h"\ + ".\LEGO1\mxsoundmanager.h"\ + ".\LEGO1\mxstreamcontroller.h"\ + ".\LEGO1\mxstreamer.h"\ + ".\LEGO1\mxstring.h"\ + ".\LEGO1\mxticklemanager.h"\ + ".\LEGO1\mxtimer.h"\ + ".\LEGO1\mxtransitionmanager.h"\ + ".\LEGO1\mxtypes.h"\ + ".\LEGO1\mxunknown100dc6b0.h"\ + ".\LEGO1\mxvariabletable.h"\ + ".\LEGO1\mxvideomanager.h"\ + ".\LEGO1\mxvideoparam.h"\ + ".\LEGO1\mxvideoparamflags.h"\ + ".\LEGO1\mxvideopresenter.h"\ + ".\LEGO1\viewmanager.h"\ -"$(INTDIR)\define.obj" : $(SOURCE) $(DEP_CPP_DEFIN) "$(INTDIR)" +"$(INTDIR)\isleapp.obj" : $(SOURCE) $(DEP_CPP_ISLEAP) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) diff --git a/isle.mdp b/isle.mdp index 56789362a8e8383ca4db0ab95d5f19ac0cc4e1d1..a5fc4336c047d2ec813b3d9e4b9a8ed8026f48de 100644 GIT binary patch literal 78336 zcmeHQNswH}ajhoS0ftxx0Kr`?2^?NJ*AREEFk_gfNsKQ6r1LyFaFz)7`(_ z3owvnOR{K7mTAi#Z}iongAY3RsDqb_BCH7O;_wnaNj~Uc%knPUvcq9IGi&|-*U$Rn z2rU$;e=nOXnYm8VZ^6Whh_2yv5$pBqjCZ^X|Ht%1L}p?e=Y|109S zcwM|r+$vBP`{=(>D>se?JR9Es-Z;IFJ>4#L<)*++`oHsY;&*plJpFgq8t;8NVs9aQpb{j5w=m_IMTB51B;vvE5Go>N#6*aq@nQ2hH!p2rIE z>_T8KTUuI@_(KZ+Rgee!d%A$X1@Y>G{0}R6_QCJ?y)+v(r&)9H%xpZ##&UitILUKF z@jvztvcK>3^w-7TqWGg7!0$>rZ9boFOq(myWSS0An3=ixa8&Vs75IPesZH^?k{@aD zgZh-e$^PD|`0MqEGk#G{`3Wfn!1^cl_cq1AHl|DB4zo)1rF%@?yK z&g#h|9klw_6&8OW{w~G;ON#$t5C2!3^?SGCKM%C{mHf?AGy44NzrEJ@L->0`%x?Pq z?_O(wn4iM-@FRapJACIq$$l+ByJ(l(e!25p+j-ru7qhiBumjKaHquV>xvY~y%fwvq z*LMCjnCEDh-s0((nA&x%?fjQPp5ME;DV_#Ae*Q%MF#W>+Mfu6j!_On?iw1HE+fKGP z9D=%f*-+0Ci6=V``_BA7Uu%2~=E*x1{|A8{KRAw)S>M=6vh(ooW}ckeXs09OE2kmi zi4gvS@@PB%W#}*Rf0u{9Yq!bH<30;^djtCWZiQb~Op(8fFWUJO@Hh`2g)h$YqCDEp z{}1%{zDt{8P4RzB;qO)L;185v+j+gN7cZslY}{$SKfOMgjkrC9b{>8nQs2dk{p5Np zX|FeBM{qCK1_bfO&Z~X%&tC@l!THz=f7ANRhStv^JMYN<1(d&tclKp%=e2$|Re!7a zYdintf0gTT4)8d>f9%KuztRWg*LFVdCp6FZU{Qh?S@YsJbM1z<^ID$2cv+4Y?oYbE z?s$=%cl!I69z5=|xL{BoZRa)rzw+P#MjynJop<;zf3_@-yN_!-|Mh>9`uVe$CH@5P z((=3GrR}_)5ARDil1|$04U#@u;}Oh`oS&fW{Bf|AI6ptA^k2na+j*`3^ZhKD!X#^6 z#8nHEZmluHz(!M{`}X~KCnk>}sCR#)E|R50}5T^RFuY-*~w^Z;3hl2lr;{-@N>M?Ly+^{@STJ#Q~$uqGV!=y?lW zqyB0;KmSeXCw$z)AF=pB{b+ywxWczQcvt`0&Ts$TwZ^C4vng)(x5>@}|Fd9QQ9s)}{9QcRc}G9Q z|9S9_QF@Pl$j$@*3u-d7u z3w-v8pBqI3b7C9J0`;L^a9#-YJQ~mc;`txW2kkFte=VN>#q&S35_X8Xg+900%K6`ZIE6k4PjZJKns@}F4VZruKR1d7=HToX0s!>+(~mj5rn5jQ z2%$gg2nlB9?W9DRllqra`WMJrkblDTG5S1r;n@q2of7l^)Ol*m|C4e0nExm9uKEz4 z#(ch*|L1uw1PiiXePjM#J|3)}3w8W8=KskYz?lD+Uq?DGBUnh!DmuYA5p%2E1>`F~~oyjk=AZiCa)JD_6eE^#;1 zNj1e=^+3m;H-HA_#KAA=ZpQOJecll3fAjUTG5=52Q^fjT=^w@VU%CIgb+T^#i>?dP z`LeP8H`f2+E{jn#x1Lwmg<<|vtpDAl`!L-4Q(YGp>wj&1tM=CL+#=Thmg^kdy2V)k zEB9-i7ZU4#?K*PvhvNBPJpXg;YCQidpKrPPiRXW1{k&Pv|K2W+L7n=dxEH*y`{Cvv zeHV@%@A&h_Sp)L?50m{4KeKY-T=Svk<=$}l6kJ`>Pm@WyLp03io|m3j?Ph~?6)w1# zu1?17)!w9^t|HlLC%w{x+XdRAQKPZQ;Ku2MsFuds!OxB?Gzk4!7(wg=99k_wTP&^o-Sc4l?CU|YxQgsbPI01Rp@fe}4ph zh6~Y9`U=h14rha5Z>jrmi0>#FPaU=u17q2aGvFHR+|^zu&FXjVS~l)?94Xk&4K|W# zHt2Phx{q?58*JcZO>5(9HtZy`PS1)H;NI%Nu#A?v#{%55tRDoyjaM)i9^g53dSkd? ztTRroEp_h;Kqra3ii{us!A56t1ukw1%2#8O3^owdhFkNd>6L!6HVI5B7Y~yw87y`0 z;KC1FGl79YEiIp_0mEz8mb&bc8f?HNWN9*JXG6G*tl!5a70|sT2(CTi3|3>Q z`w-vlDO?lSPt77>SKeS_+8YFo7NEw-aMH_}xquW`lW`C4$DHDSf>V{&wHj5{v0d4yL?fu;p+M2+z>OK@vq)$IyShhcKnF&)%S$jVQ$7T&8=OMbP()scTT zTpwoFh9^&)=(HbgosjI=4O*>DZF#7X`}uLuCOV9T{pqB1fofq-wZ>ouYs@*|duo*R zdu?*C@HS53&u-E{vn*k3_YgMeCSxTAj~%pT{bUIDc2V=}^i4E&(3?!~o=@@&Yp4ZW zRR_!NW34o4ce`+%TMB+*Z+g9kR$9GvB|SS!wD;@sWvyguHW;(S-{k;Re4}mZ_P`4o^3mjC#|gFB!9n)KIshtQ(;T>UOg?yppwnyY40{ zjRkkIOzDLkDNEpXfE_7I;&g$vE$FdGRkHSi9Gf-_lf<%GMC>S;cEKKLJiEQWl1?Y< zJ;|7zRT6l~tT=XUzA{@+TiHepc@@%C@)O)PLXY9}_@cH>`@~0+omGx`hPTQ&9c--l z%umfM*C87W3c|4tkru8%6KqM_*xXjkE(UC=4JJRG;B&1Uq@W(!a4Z4#);{Wx9$1f1 zwlgLHWh;+|)CNYK;CRwfP(<)_M#+}b13RTrK6l~;RV~2Jx}Cwb=-|wF`WBpr%8M*C z8eH}Tn;2Y)h%dAe7Ok5N;bj8_vfyaJt~*6|5)r!}5i6TyD?XDho! zp-^-HC)as!triaJ!gCZROg3&`Z|e<{Z2=$O=}4w96oIq8PH(baI?*A~*uLXIS-T65 zP_pmr;F&|U@Hh`PT-(GNbbww3aBh^@iJ=Gz>It*~cC0|a8nD4eKg&jNh&36k7w7`A z4bo08*&@ko(%YhRaJ6^u3LLVy2VFEOtiL?iCv#yW?x(k|}W%iIlJs+^%Htq)CI7uXZP>vGka^N)t(zi&qjefX zc0|Srgh(WgbvOv;=$Mz8URp4wb!s0|Sve;5^p=%lvJUZxR+fyF6U>_KX?6`x#`QT9 zyNPOO`OJoOfN|Rzj50WT2QQ**0@)@V+Jb>%M;G_)x&r|*GYo+h*t25?hp1@I3M8zW z2OB-`U$4}eM!1;*e|VjhoO5hX>4452p0T#bo}f6oVb`~MjCJ6wok6vOK&Ko$>(C$` zJ<{Ui7pr_EA~T%ZP2Ryd_m%NZTKjO0ViCuy?hM);^78{rw0EQ>S8pDlz z$tjXpcDNBs3(gfJOaTGHo=d?F2DTy3?p+dg(2)eA91vLSyF|fuCUA(^o^Fu@HppBn z>|#REoWp}K7JU>s5&`!I_|94rh<~-Tds5HIEIX%SA(uc>3IJB@ATfQUkWXXNHe&in zx~k*DF?}SMLlM(QV)}^8l4E@#h$R0ArjH!Sr;m8j57`GpbjKlUi`*vm*)1lJK+2{z zsx~7;YK}dnEoTRjwgWVUWDwa-z{M!g!~_zXY^z5uCXjeCk)?9L5042XPJXu3N=zWp zX3r*gNMpo4-dV7FfX6o#~)H6_NX!@kQ56L~BG#d6*R8{R>hm_VY+dtw5KE_8|sB&wK9+H!sT4z8R|s$(BBG`H?STlc%w0aWEE2p+*F5vOB54G8V&Y@ky1Ni0tq?T5crBei11W{-pBI*lZ8b4UF(=NPhr1pe*dYybBa|N8 zVU5G5GK`ebnXw0Wmj*&?)KlK>p}5sj6pGtDU?Z}^)KPM7ph9MJLtg^W9T zK&Dd&vSsTmQWv6E4Vjss)g|jJe>l0eVGj@TPTetYxw?nIXu`xAJs>k1^eMP=X5xXH zd6_Fz_W+GKa?8{`I5QIYB6SbaNa`t3_rT3!v+=*Gku#dLP+kjn=%KI#?9drm3Xw&R z*he+%VqDRKHG`o`$E!MMRHuP__ii&XsB-suowMP)pd1!z%F#XjGvi|6yx?YBECDOJ zSs|tn-6MsWq4_d&57OwZT!ijHn~m5hJ@vrM+$j{Gd!S~`x#i~`oRPB}JM^Fz^=!a> z4(uh^UT<}whtxDgq+sBHTm=w3=w_}VL>EibJVb9P5*3TiJv3%h(PHJ}6dsCPE80@J zWd$A@v*@rDTP<9*Hgdi97Mpw8FkYH$!znfQfbVftRb6QAp}adsDN9QOy*JYqCF56Z zPPq~q9FVuW5>*wLdwOCvX%x#}UhbhXh6t%ju|W?(uJ`=wA z%{OmRxrZpXpz|f=9&~P z$?q*A_lRRQ7!=1Ak$aH2b?AuzdPvMnEEJG?poTjp?|RC|JtS|_lNU}+s*1-wWTwY> z*kVh^JxDWDh@{&XG0Bw&^47+fWlzz#hp(9e-jZ<-fy2L4ljDIKgH&BE?xAv|@>EI& z2+F169s)+Bv%^lAuztIuQ1$$Kd6_YEerRc%zDz5-c_d0Sb7a)9ckmsI`KSD>&9J?Fn*z$ zxnv*vD-E^re9@ZgQgDv|W)xIacfJtZLtreGB2Z=E9;DH~jp2DvW|kF7z&%hatFHju zLtrGZ<=-BZk)Tlg?SY!fqQh}jlf`U%8dxg)_HZ}us8hOK&zPC!9Lk`_XhsruS#~lT z#d{0BJw0&t|pWhs#;h zu{!zQjrzj7lpA8di^G#|1(^erc72q>{lwLno%FQK0QRGbm(3*}402u~ul7>7wz;~+ zBM2)#b}@KjtE>wHBRQSx#;XNbKml@&Kg0GAg7XK$40;cu=_H;3QTsX9mI2QpN4jD> z(4pM%FT-#zGL()fgW6;76t8ag_R0!-hVvnqw}pragPzB=BF`zfIR)bC0?lf1iI=)^ zHq<06eY}Z*fkBhuNqL~)m-777T@efj_zlqG(@!o8^ypy2=j$;P2jQY}x{&t@o$Ora zdJonoG|ge4i@_JB@f=#+r(Hdi&^gPS&=faf`0oWLR^O^#%@+n$->F^=foB0j7#4#D zX$yt3)slez>l(X#Ze1lepFvvb$>aU}GE&G$do%8FHP#?B@5Fi;hO}?Y;9dz%#=WpC zRVa>OMfP2~L>vlusbC$4!o7lw0Vfyjy!QNv;dcmIwNC&T_+!vJ0lmxtP$4Sd$FL#s z@S>GqNA{XvAJ^*sd_aI{`KaNSbDTNp(KnZ7JoXjssL7913HuMPAu&F@yn`V3^=3E45QIUTNJ zF#GeNItF>CGQhqt9YeMNZesqZ_EeHcyJ-$#DI6nU=4%VqvJ1}*R)@Qg1*ge6`)~S z+?NZ^FuH?ymZof0qozFo=042*bb@#>D^( z1KuTrFAQSd3A`|{Jvx@c_3;)Bs{6EfhvP8S_xI#evwSCKwZaeDXO-YQ+^786AW%Mv zn@S%>VPp-_l-D~r1J}{oEpuTj!yl}GJZY-~rqg9~Ex6Hx9Wj6LD$_dIOnIRzgOVJb zi&+^g^hal*gWnN2SbVu?{ujLPAKQ;dS}9ks-$TrhkVqjEAa+?h2oD!0a);24!F8s8X|yA-2x<^3l{<#Z8EjLO*) zmKc?L>Qao#{fI^7Of4XIjLR|vT~StUs&I?3?Fzi9aLvWHE5N447IU>g6z4WePl2B) z&qs72&Rx-fDNIC?TmeJ{!7*J#Tv?`7LFklZdZOwTM7iol6@#vTIu(=74VE4)nW4og zC*$Q6EX~j&lAf}85%PE^#$LhSC?ENkUVZ8j-3%}icwT(!A<4Coi?`PiDi_MGAjs)c z2I*@d%?nRGQahFZxnO+-W9KRYmE)BQ*jG@=_?AyD7xChsSYYrm}+=zBv-Rq#v1)1wpg`VhMP%*@Zvj8eH}K{ z{z#x}`pSIGfmJuZ%bK>xftNt7TNKb2*y^=V)bku5;yF$ufcIoLkOXhB-H% zwBV)aYh%2Vf-+~>VRX2+decEN!qdMpcXKfr*x@Xr5-%2{%eu=T*T(j+P_Z*ksMfj+ z&D&U$5>y5{ovWt`I|Th1APO<)u7 zkDr-!I%h1OlUC;I=-w^oECU@mZ9!)lW?TzTNoN^tR-RMTSwsJ z&Qz7>yI5H1*RL}RER>lwJLuN%hFCDy728`9?6tsT?5X%?G^)DlqE13rC%po9>(r=ZyWoE}qzOd0CAcR-kNr3zu0y zId~_xZC8zJy!E1ZOkF>43Q5E9iVV0g|NC`CM%{8zSjg7*s+#Cnx8vUb#_T*d@KqXh z?s58YzHVbnIRbUF0PCmpM-R|V*oYpW6L60nV2!)Pq6cVhQuF}b)3+)Y6y~2jd#eIL(D#RWnOgJ!w~!^eH4jkwfhxd+FC2@XsDY?~sDY?~ zsDY?~sDY?~sDY?~sDY?~sDUkOVD`y9;Co)k}sGvcf`C(etf#rwoF;#u*2aX~yM zo)<5Oi{b;~l2{QhiVunpiOb@{;v?cE@lmlVJ|=!rd|bRN644TE(GjV*BGyD#^u#M- zUG&933`HhJ;-|z|OvF^o#8q)kY>4aP6XK`EC&kZ*pB0}HpBA4HKPNsbUKKwtenEUr zd|v#b_=5N)@tXMMH@EtK$kHcb2jnaZSo?=D9j*CL^Kx&ve5!c~?krCxDg4oV?s@5n z)owOOS0NQ^x;h!RDM`7M*xXoTaBgaI>s)0SNH@S; zCpRApaHr(v07xb`KfrTxv!w0|K+W5M0-eyw%>nspOcFO)S*5A6lgh=b%%VQEc+op_yoe*mwTlSp># zO|1wq4GcjsLy~BY^HafjZBAHjJr@WWPz9~;Iuh8?lKKdA(!%B7QWF6hl%+jRlW8i= z0?|CeE2cn0ue~BVcDziCb8BMN?FvqZ{5$ffoxsx3g>*IMo7v&&$X|Tz6w$C7w7P>v z7yA&w{ros+6CK7vA)?aPeh$g`TZU{@pTCTK~V;bbMUrP@*=_KCxNaT0Zw z9UlFT5VpW|aDg$C8!?uvT%L;1%^2H8%&GrioUI%*;nShL zLMR#z;+y-8c*3Qk5!VX9F?{*#D4p~?=F#HUsA2<=PypxMdl+G)R^K>}gQE;j>MDC7 zE(q5{OasQ6a3QY3+es164oS7ik0d5Gm+vHO>dy6bot6$sj!^%R!;(E14*H`(b=ggO z#D5EjnsoNw9k?017OP6q_o;Or(=RmmeO9XMU1Fo!=^gERh9Sq0t%c?~CKbisW<(lb}WjiQIfHrjJ%(dNqE`k=j3k{;a-BY&a zVOHp!f{w$fX%Qd(Xu#vedi0Kqbgd}!m?$=5pl|?Ff2>Le2m6#&fc@o{Kgo*@CBs9e z@^hU3)`2}suKb(|>Nc?;R4jCDom`%I3b3T6K)({MlK4>**t0vP09ut&Bed0)n5_$B s3vXbptQ2#NlgTnW_}S~MQi73$4~!1tB$tSbxQT~cCRd1;8cjdpA6U7ASO5S3 diff --git a/tools/reccmp/reccmp.py b/tools/reccmp/reccmp.py index a8d3cd07..3b783fc9 100755 --- a/tools/reccmp/reccmp.py +++ b/tools/reccmp/reccmp.py @@ -292,7 +292,7 @@ def parse_asm(file, addr, size): line = line.strip() - if line.startswith(pattern): + if line.startswith(pattern) and not line.endswith("STUB"): par = line[len(pattern):].strip().split() module = par[0] if module != basename: