-
Notifications
You must be signed in to change notification settings - Fork 42
/
LocomotionClass.h
300 lines (223 loc) · 8.21 KB
/
LocomotionClass.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
//Here we go!
/*
NOTE:
The locos should NOT become victims of Operation: The Cleansing,
since we will possibly want to derive classes from them!
-pd
*/
#pragma once
#include <Interfaces.h>
#include <FootClass.h>
#include <Unsorted.h>
#include <YRCom.h>
#include <Helpers/ComPtr.h>
#include <Helpers/CompileTime.h>
class NOVTABLE LocomotionClass : public IPersistStream, public ILocomotion
{
public:
class CLSIDs {
public:
static constexpr reference<CLSID const, 0x7E9A30u> const Drive{};
static constexpr reference<CLSID const, 0x7E9AC0u> const Jumpjet{};
static constexpr reference<CLSID const, 0x7E9A40u> const Hover{};
static constexpr reference<CLSID const, 0x7E9AD0u> const Rocket{};
static constexpr reference<CLSID const, 0x7E9A50u> const Tunnel{};
static constexpr reference<CLSID const, 0x7E9A60u> const Walk{};
static constexpr reference<CLSID const, 0x7E9A70u> const Droppod{};
static constexpr reference<CLSID const, 0x7E9A80u> const Fly{};
static constexpr reference<CLSID const, 0x7E9A90u> const Teleport{};
static constexpr reference<CLSID const, 0x7E9AA0u> const Mech{};
static constexpr reference<CLSID const, 0x7E9AB0u> const Ship{};
};
//IUnknown
virtual HRESULT __stdcall QueryInterface(REFIID iid, void** ppvObject)
{ JMP_STD(0x55A9B0); }
virtual ULONG __stdcall AddRef()
{ JMP_STD(0x55A950); }
virtual ULONG __stdcall Release()
{ JMP_STD(0x55A970); }
//ILocomotion
virtual HRESULT __stdcall Link_To_Object(void* pointer)
{ JMP_STD(0x55A710); }
virtual bool __stdcall Is_Moving()
{ return false; }
virtual CoordStruct* __stdcall Destination(CoordStruct* pcoord)
{
pcoord->X = 0;
pcoord->Y = 0;
pcoord->Z = 0;
return pcoord;
}
virtual CoordStruct* __stdcall Head_To_Coord(CoordStruct* pcoord)
{
*pcoord = LinkedTo->Location;
return pcoord;
}
virtual Move __stdcall Can_Enter_Cell(CellStruct cell)
{ return Move::OK; }
virtual bool __stdcall Is_To_Have_Shadow()
{ return true; }
virtual Matrix3DStruct* __stdcall Draw_Matrix(Matrix3DStruct* pMatrix, int* key)
{ JMP_STD(0x55A730); }
virtual Matrix3DStruct* __stdcall Shadow_Matrix(Matrix3DStruct* pMatrix, int* key)
{ JMP_STD(0x55A7D0); }
virtual Point2D* __stdcall Draw_Point(Point2D* pPoint)
{
pPoint->X = 0;
pPoint->Y = 0;
return pPoint;
}
virtual Point2D* __stdcall Shadow_Point(Point2D* pPoint)
{ JMP_STD(0x55A8C0); }
virtual VisualType __stdcall Visual_Character(VARIANT_BOOL bUnused)
{ return VisualType::Normal; }
virtual int __stdcall Z_Adjust()
{ return 0; }
virtual ZGradient __stdcall Z_Gradient()
{ return ZGradient::Deg90; }
virtual bool __stdcall Process()
{ return true; }
virtual void __stdcall Move_To(CoordStruct to) { }
virtual void __stdcall Stop_Moving() { }
virtual void __stdcall Do_Turn(DirStruct coord) { }
virtual void __stdcall Unlimbo() { }
virtual void __stdcall Tilt_Pitch_AI() { }
virtual bool __stdcall Power_On()
{ Powered = true; return Is_Powered(); }
virtual bool __stdcall Power_Off()
{ Powered = false; return Is_Powered(); }
virtual bool __stdcall Is_Powered()
{ return Powered; }
virtual bool __stdcall Is_Ion_Sensitive()
{ return false; }
virtual bool __stdcall Push(DirStruct dir)
{ return false; }
virtual bool __stdcall Shove(DirStruct dir)
{ return false; }
virtual void __stdcall Force_Track(int track, CoordStruct coord) { }
//In_Which_Layer is not overloaded by LocomotionClass!
virtual void __stdcall Force_Immediate_Destination(CoordStruct coord) { }
virtual void __stdcall Force_New_Slope(int ramp){ }
virtual bool __stdcall Is_Moving_Now()
{ return Is_Moving(); }
virtual int __stdcall Apparent_Speed()
{ return LinkedTo->GetCurrentSpeed(); }
virtual int __stdcall Drawing_Code()
{ return 0; }
virtual FireError __stdcall Can_Fire()
{ return FireError::OK; }
virtual int __stdcall Get_Status()
{ return 0; }
virtual void __stdcall Acquire_Hunter_Seeker_Target() { }
virtual bool __stdcall Is_Surfacing()
{ return false; }
virtual void __stdcall Mark_All_Occupation_Bits(int mark) { }
virtual bool __stdcall Is_Moving_Here(CoordStruct to)
{ return false; }
virtual bool __stdcall Will_Jump_Tracks()
{ return false; }
virtual bool __stdcall Is_Really_Moving_Now()
{ return Is_Moving_Now(); }
virtual void __stdcall Stop_Movement_Animation() { }
virtual void __stdcall Lock() { }
virtual void __stdcall Unlock() { }
virtual void __stdcall ILocomotion_B8() { }
virtual int __stdcall Get_Track_Number()
{ return -1; }
virtual int __stdcall Get_Track_Index()
{ return -1; }
virtual int __stdcall Get_Speed_Accum()
{ return -1; }
//IPersistStream
virtual HRESULT __stdcall IsDirty()
{ return Dirty ? S_OK: S_FALSE; }
virtual HRESULT __stdcall Save(IStream* pStm, BOOL fClearDirty)
{ JMP_STD(0x55AA60); }
virtual HRESULT __stdcall GetSizeMax(ULARGE_INTEGER* pcbSize)
{ JMP_STD(0x55AB40); }
//Destructor
virtual ~LocomotionClass()
{ JMP_THIS(0x55A6F0); }
//LocomotionClass
virtual int Size() = 0;
// ---------------------------------------------------
// wow, I was so wrong about this
// will fill Piggy with the right pointer if the Loco supports it
static HRESULT TryPiggyback(IPiggyback **Piggy, ILocomotion **Loco)
{ PUSH_VAR32(Loco); SET_REG32(ECX, Piggy); CALL(0x45AF20); }
static HRESULT CreateInstance(ILocomotion **ppv, const CLSID *rclsid, LPUNKNOWN pUnkOuter, DWORD dwClsContext)
{ PUSH_VAR32(dwClsContext); PUSH_VAR32(pUnkOuter); PUSH_VAR32(rclsid); SET_REG32(ECX, ppv); CALL(0x41C250); }
// these two are identical, why do they both exist...
static void AddRef1(LocomotionClass **Loco)
{ SET_REG32(ECX, Loco); CALL(0x45A170); }
static void AddRef2(LocomotionClass **Loco)
{ SET_REG32(ECX, Loco); CALL(0x6CE270); }
static void ChangeLocomotorTo(FootClass *Object, const CLSID &clsid) {
// remember the current one
YRComPtr<ILocomotion> Original(Object->Locomotor);
// create a new locomotor and link it
auto NewLoco = CreateInstance(clsid);
NewLoco->Link_To_Object(Object);
// get piggy interface and piggy original
YRComPtr<IPiggyback> Piggy(NewLoco);
Piggy->Begin_Piggyback(Original.get());
// replace the current locomotor
Object->Locomotor = std::move(NewLoco);
}
// creates a new instance by class ID. returns a pointer to ILocomotion
static YRComPtr<ILocomotion> CreateInstance(const CLSID &rclsid) {
return YRComPtr<ILocomotion>(rclsid, nullptr,
CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER | CLSCTX_LOCAL_SERVER);
}
// finds out whether a locomotor is currently piggybacking and restores
// the original locomotor. this function ignores Is_Ok_To_End().
static bool End_Piggyback(YRComPtr<ILocomotion> &pLoco) {
if(!pLoco) {
Game::RaiseError(E_POINTER);
}
if(YRComPtr<IPiggyback> pPiggy = pLoco) {
if(pPiggy->Is_Piggybacking()) {
// this frees the current locomotor
pLoco.reset(nullptr);
// this restores the old one
auto res = pPiggy->End_Piggyback(pLoco.pointer_to());
if(FAILED(res)) {
Game::RaiseError(res);
}
return (res == S_OK);
}
}
return false;
}
/*
static void RestoreLocomotor(FootClass *Object) {
ILocomotion * currentLoco = Object->Locomotor;
DWORD lptr = reinterpret_cast<DWORD>(currentLoco);
lptr -= 4;
LocomotionClass* theMotion = reinterpret_cast<LocomotionClass *>(lptr); // dirty... so dirty...
theMotion->AddRef();
ILocomotion ** ptr = &Object->Locomotor;
ReleaseIf(*ptr);
*ptr = 0;
// theMotion->EndPiggyback(ptr); only works if the locomotor supports piggyback -> should be done from inside the locomotor itself
theMotion->Release();
}
*/
// ----------------------------------------------------
//Constructor
LocomotionClass()
: LocomotionClass(noinit_t())
{ JMP_THIS(0x55A6C0); }
protected:
explicit __forceinline LocomotionClass(noinit_t)
{ }
//===========================================================================
//===== Properties ==========================================================
//===========================================================================
public:
DWORD unknown_08;
FootClass* LinkedTo; //This Locomotor is linked to this object.
bool Powered; //Does this Locomotor currently have power?
bool Dirty; //bIsDirty - Has something changed?
LONG RefCount; // COM reference count. Don't touch.
};