mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 03:01:17 +00:00
Add mxdssource.cpp
This commit is contained in:
parent
d07c9e8c34
commit
c81fa5e044
@ -5,19 +5,6 @@
|
||||
#define SI_MAJOR_VERSION 2
|
||||
#define SI_MINOR_VERSION 2
|
||||
|
||||
// OFFSET: LEGO1 0x100bffd0
|
||||
void MxDSSource::SomethingWhichCallsRead(void* pUnknownObject)
|
||||
{
|
||||
// TODO: Calls read, reading into a buffer somewhere in pUnknownObject.
|
||||
Read(NULL, 0);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100bfff0
|
||||
long MxDSSource::GetLengthInDWords()
|
||||
{
|
||||
return m_lengthInDWords;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100cc4b0
|
||||
MxDSFile::MxDSFile(const char *filename, unsigned long skipReadingChunks)
|
||||
{
|
||||
|
||||
14
LEGO1/mxdssource.cpp
Normal file
14
LEGO1/mxdssource.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
#include "mxdssource.h"
|
||||
|
||||
// OFFSET: LEGO1 0x100bffd0
|
||||
void MxDSSource::SomethingWhichCallsRead(void* pUnknownObject)
|
||||
{
|
||||
// TODO: Calls read, reading into a buffer somewhere in pUnknownObject.
|
||||
Read(NULL, 0);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100bfff0
|
||||
long MxDSSource::GetLengthInDWords()
|
||||
{
|
||||
return m_lengthInDWords;
|
||||
}
|
||||
42
isle.mak
42
isle.mak
@ -63,6 +63,7 @@ CLEAN :
|
||||
-@erase "$(INTDIR)\mxcriticalsection.obj"
|
||||
-@erase "$(INTDIR)\mxdsfile.obj"
|
||||
-@erase "$(INTDIR)\mxdsobject.obj"
|
||||
-@erase "$(INTDIR)\mxdssource.obj"
|
||||
-@erase "$(INTDIR)\mxioinfo.obj"
|
||||
-@erase "$(INTDIR)\mxomni.obj"
|
||||
-@erase "$(INTDIR)\mxomnicreateflags.obj"
|
||||
@ -142,6 +143,7 @@ LINK32_OBJS= \
|
||||
"$(INTDIR)\mxcriticalsection.obj" \
|
||||
"$(INTDIR)\mxdsfile.obj" \
|
||||
"$(INTDIR)\mxdsobject.obj" \
|
||||
"$(INTDIR)\mxdssource.obj" \
|
||||
"$(INTDIR)\mxioinfo.obj" \
|
||||
"$(INTDIR)\mxomni.obj" \
|
||||
"$(INTDIR)\mxomnicreateflags.obj" \
|
||||
@ -187,6 +189,7 @@ CLEAN :
|
||||
-@erase "$(INTDIR)\mxcriticalsection.obj"
|
||||
-@erase "$(INTDIR)\mxdsfile.obj"
|
||||
-@erase "$(INTDIR)\mxdsobject.obj"
|
||||
-@erase "$(INTDIR)\mxdssource.obj"
|
||||
-@erase "$(INTDIR)\mxioinfo.obj"
|
||||
-@erase "$(INTDIR)\mxomni.obj"
|
||||
-@erase "$(INTDIR)\mxomnicreateflags.obj"
|
||||
@ -268,6 +271,7 @@ LINK32_OBJS= \
|
||||
"$(INTDIR)\mxcriticalsection.obj" \
|
||||
"$(INTDIR)\mxdsfile.obj" \
|
||||
"$(INTDIR)\mxdsobject.obj" \
|
||||
"$(INTDIR)\mxdssource.obj" \
|
||||
"$(INTDIR)\mxioinfo.obj" \
|
||||
"$(INTDIR)\mxomni.obj" \
|
||||
"$(INTDIR)\mxomnicreateflags.obj" \
|
||||
@ -532,7 +536,9 @@ DEP_CPP_LEGOO=\
|
||||
".\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"\
|
||||
@ -653,8 +659,11 @@ DEP_CPP_MXOMN=\
|
||||
SOURCE=.\LEGO1\mxvideoparam.cpp
|
||||
DEP_CPP_MXVID=\
|
||||
".\LEGO1\legoinc.h"\
|
||||
".\LEGO1\mxbool.h"\
|
||||
".\LEGO1\mxcore.h"\
|
||||
".\LEGO1\mxpalette.h"\
|
||||
".\LEGO1\mxrect32.h"\
|
||||
".\LEGO1\mxresult.h"\
|
||||
".\LEGO1\mxvariabletable.h"\
|
||||
".\LEGO1\mxvideoparam.h"\
|
||||
".\LEGO1\mxvideoparamflags.h"\
|
||||
@ -692,6 +701,7 @@ DEP_CPP_MXOMNI=\
|
||||
".\LEGO1\mxomnicreateparambase.h"\
|
||||
".\LEGO1\mxpalette.h"\
|
||||
".\LEGO1\mxrect32.h"\
|
||||
".\LEGO1\mxresult.h"\
|
||||
".\LEGO1\mxstring.h"\
|
||||
".\LEGO1\mxvariabletable.h"\
|
||||
".\LEGO1\mxvideoparam.h"\
|
||||
@ -716,6 +726,7 @@ DEP_CPP_MXOMNIC=\
|
||||
".\LEGO1\mxomnicreateparambase.h"\
|
||||
".\LEGO1\mxpalette.h"\
|
||||
".\LEGO1\mxrect32.h"\
|
||||
".\LEGO1\mxresult.h"\
|
||||
".\LEGO1\mxstring.h"\
|
||||
".\LEGO1\mxvariabletable.h"\
|
||||
".\LEGO1\mxvideoparam.h"\
|
||||
@ -781,7 +792,9 @@ DEP_CPP_LEGON=\
|
||||
".\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"\
|
||||
@ -850,6 +863,7 @@ DEP_CPP_MXUNK=\
|
||||
".\LEGO1\mxbool.h"\
|
||||
".\LEGO1\mxcore.h"\
|
||||
".\LEGO1\mxcriticalsection.h"\
|
||||
".\LEGO1\mxresult.h"\
|
||||
".\LEGO1\mxunknown100dc6b0.h"\
|
||||
|
||||
|
||||
@ -869,6 +883,7 @@ DEP_CPP_MXVIDEO=\
|
||||
".\LEGO1\mxcriticalsection.h"\
|
||||
".\LEGO1\mxpalette.h"\
|
||||
".\LEGO1\mxrect32.h"\
|
||||
".\LEGO1\mxresult.h"\
|
||||
".\LEGO1\mxunknown100dc6b0.h"\
|
||||
".\LEGO1\mxvariabletable.h"\
|
||||
".\LEGO1\mxvideomanager.h"\
|
||||
@ -886,7 +901,10 @@ DEP_CPP_MXVIDEO=\
|
||||
|
||||
SOURCE=.\LEGO1\mxpalette.cpp
|
||||
DEP_CPP_MXPAL=\
|
||||
".\LEGO1\mxbool.h"\
|
||||
".\LEGO1\mxcore.h"\
|
||||
".\LEGO1\mxpalette.h"\
|
||||
".\LEGO1\mxresult.h"\
|
||||
|
||||
|
||||
"$(INTDIR)\mxpalette.obj" : $(SOURCE) $(DEP_CPP_MXPAL) "$(INTDIR)"
|
||||
@ -912,13 +930,33 @@ DEP_CPP_MXIOI=\
|
||||
|
||||
SOURCE=.\LEGO1\mxdsfile.cpp
|
||||
DEP_CPP_MXDSF=\
|
||||
".\LEGO1\mxbool.h"\
|
||||
".\LEGO1\mxcore.h"\
|
||||
".\LEGO1\mxdsfile.h"\
|
||||
".\LEGO1\mxdssource.h"\
|
||||
".\LEGO1\mxioinfo.h"\
|
||||
".\LEGO1\mxstring.h"\
|
||||
|
||||
|
||||
"$(INTDIR)\mxdsfile.obj" : $(SOURCE) $(DEP_CPP_MXDSF) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
# End Source File
|
||||
################################################################################
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\LEGO1\mxdssource.cpp
|
||||
DEP_CPP_MXDSS=\
|
||||
".\LEGO1\mxbool.h"\
|
||||
".\LEGO1\mxcore.h"\
|
||||
".\LEGO1\mxdssource.h"\
|
||||
|
||||
|
||||
"$(INTDIR)\mxdssource.obj" : $(SOURCE) $(DEP_CPP_MXDSS) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
# End Source File
|
||||
# End Target
|
||||
################################################################################
|
||||
@ -978,7 +1016,9 @@ DEP_CPP_ISLE_=\
|
||||
".\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"\
|
||||
@ -1041,7 +1081,9 @@ DEP_CPP_MAIN_=\
|
||||
".\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"\
|
||||
|
||||
Loading…
Reference in New Issue
Block a user