From 32e3eb665715ae6bf6d633873526715dd140fe91 Mon Sep 17 00:00:00 2001 From: Colin Noga Date: Sun, 23 Sep 2012 17:43:47 -0500 Subject: shy guy fixes --- src/shyguy.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/shyguy.cpp') diff --git a/src/shyguy.cpp b/src/shyguy.cpp index 174b075..f0ae63a 100644 --- a/src/shyguy.cpp +++ b/src/shyguy.cpp @@ -114,6 +114,7 @@ class daShyGuy : public dEn_c { void _vf148(); void _vf14C(); + bool CreateIceActors(); USING_STATES(daShyGuy); DECLARE_STATE(Walk); @@ -354,6 +355,22 @@ daShyGuy *daShyGuy::build() { doStateChange(&StateID_Die); } + DoSomethingCool my_struct; + + extern "C" void sub_80024C20(void); + extern "C" void __destroy_arr(void*, void(*)(void), int, int); + //extern "C" __destroy_arr(struct DoSomethingCool, void(*)(void), int cnt, int bar); + + bool daShyGuy::CreateIceActors() + { + struct DoSomethingCool my_struct = { 0, this->pos, {1.0, 1.5, 1.5}, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + this->frzMgr.Create_ICEACTORs( (void*)&my_struct, 1 ); + __destroy_arr( (void*)&my_struct, sub_80024C20, 0x3C, 1 ); + return true; + } + + + void daShyGuy::collisionCat13_Hammer(ActivePhysics *apThis, ActivePhysics *apOther) { doStateChange(&StateID_Die); } -- cgit v1.2.3 From e739a0171f3efc5791ae32460a341d284efa36be Mon Sep 17 00:00:00 2001 From: Treeki Date: Mon, 24 Sep 2012 00:52:54 +0200 Subject: fixed fasthack compilation --- src/shyguy.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/shyguy.cpp') diff --git a/src/shyguy.cpp b/src/shyguy.cpp index f0ae63a..5a21e6c 100644 --- a/src/shyguy.cpp +++ b/src/shyguy.cpp @@ -355,8 +355,6 @@ daShyGuy *daShyGuy::build() { doStateChange(&StateID_Die); } - DoSomethingCool my_struct; - extern "C" void sub_80024C20(void); extern "C" void __destroy_arr(void*, void(*)(void), int, int); //extern "C" __destroy_arr(struct DoSomethingCool, void(*)(void), int cnt, int bar); -- cgit v1.2.3