From c0c336500955a23e344651e5412c9d9d441ef4ee Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 28 Jun 2023 22:22:32 +0100 Subject: first pass of T2DLL --- src/T2DLL/T2ClassFactory.cpp | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) (limited to 'src/T2DLL/T2ClassFactory.cpp') diff --git a/src/T2DLL/T2ClassFactory.cpp b/src/T2DLL/T2ClassFactory.cpp index cff2ee9..92764a6 100644 --- a/src/T2DLL/T2ClassFactory.cpp +++ b/src/T2DLL/T2ClassFactory.cpp @@ -1,25 +1,53 @@ +#include "T2Archive.h" +#include "T2Balloon.h" #include "T2ClassFactory.h" +#include "T2Dialog.h" +#include "T2SoundPlayer.h" /*static*/ void T2ClassFactory::Initialize() { + CLASSFACTORY_CLASSINFO info; + + info.x0 = 1; + + info.id = 1; + info.newFunc = (void *) &new_T2Archive; + Register(&info); + + info.id = 2; + info.newFunc = (void *) &new_T2Dialog; + Register(&info); + + info.id = 3; + info.newFunc = (void *) &new_T2Balloon; + Register(&info); + + info.id = 4; + info.newFunc = (void *) &new_T2SoundPlayer; + Register(&info); } /*static*/ void T2ClassFactory::Discard() { } -/*static*/ void T2ClassFactory::Register(CLASSFACTORY_CLASSINFO*) { +/*static*/ void T2ClassFactory::Register(CLASSFACTORY_CLASSINFO* inClassInfo) { } -/*static*/ void* T2ClassFactory::Query(int) { +/*static*/ void* T2ClassFactory::Query(int inID) { + return NULL; } /*static*/ void* T2ClassFactory::new_T2Archive() { + return new T2Archive; } /*static*/ void* T2ClassFactory::new_T2Dialog() { + return new T2Dialog; } /*static*/ void* T2ClassFactory::new_T2Balloon() { + return new T2Balloon; } -/*static*/ void* T2ClassFactory::new_T2SoundPlayer(CWnd*, IDirectSound*) { +/*static*/ void* T2ClassFactory::new_T2SoundPlayer(CWnd* inArg1, IDirectSound* inArg2) { + return new T2SoundPlayer(inArg1, inArg2); } -- cgit v1.2.3