forked from spring/spring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptMoveType.h
More file actions
85 lines (64 loc) · 1.92 KB
/
ScriptMoveType.h
File metadata and controls
85 lines (64 loc) · 1.92 KB
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
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#ifndef SCRIPT_MOVE_TYPE_H
#define SCRIPT_MOVE_TYPE_H
#include "MoveType.h"
class CScriptMoveType : public AMoveType
{
CR_DECLARE_DERIVED(CScriptMoveType)
public:
CScriptMoveType(CUnit* owner);
virtual ~CScriptMoveType();
public:
bool Update() override;
void ForceUpdates();
void SetPhysics(const float3& pos, const float3& vel, const float3& rot);
void SetPosition(const float3& pos);
void SetVelocity(const float3& vel);
void SetRelativeVelocity(const float3& rvel);
void SetRotation(const float3& rot);
void SetRotationVelocity(const float3& rvel);
void SetHeading(short heading);
void SetNoBlocking(bool state);
public: // null'ed virtuals
void StartMoving(float3, float goalRadius) override {}
void StartMoving(float3, float goalRadius, float speed) override {}
void KeepPointingTo(float3, float distance, bool aggressive) override {}
void KeepPointingTo(CUnit* unit, float distance, bool aggressive) override {}
void StopMoving(bool callScript = false, bool hardStop = false, bool cancelRaw = false) override {}
void SetGoal(const float3& pos, float distance = 0.0f) override {}
void SetMaxSpeed(float speed) override {}
void SetWantedMaxSpeed(float speed) override {}
void LeaveTransport() override {}
protected:
void CheckLimits();
void CheckNotify();
public:
int tag;
bool extrapolate;
bool useRelVel;
bool useRotVel;
float drag;
/// velocity vector
float3 velVec;
/// relative velocity (to current direction)
float3 relVel;
/// angular position
float3 rot;
/// angular velocity
float3 rotVel;
float3 mins;
float3 maxs;
bool trackSlope;
bool trackGround;
float groundOffset;
float gravityFactor;
float windFactor;
bool noBlocking;
bool gndStop;
bool shotStop;
bool slopeStop;
bool collideStop;
protected:
int scriptNotify;
};
#endif // SCRIPT_MOVE_TYPE_H