DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
Boat.c
См. документацию.
1
3{
4 // simulation
7
8 // miscellaneous
10};
11
14{
16};
17
18class BoatOwnerState : TransportOwnerState
19{
20
21};
22
23class BoatMove : TransportMove
24{
25};
26
27class Boat extends Transport
28{
30 protected override event typename GetOwnerStateType()
31 {
32 return BoatOwnerState;
33 }
34
36 protected override event typename GetMoveType()
37 {
38 return BoatMove;
39 }
40
42 proto native float GetThrottle();
43
45 proto native void SetThrottle(float value);
46
48 proto native float GetSteering();
49
51 proto native void SetSteering(float value);
52
54 proto native int GetGearCount();
55
57 proto native int GetNeutralGear();
58
60 proto native int GetGear();
61
63 proto native int GetCurrentGear();
64
66 proto native int GetClutch();
67
69 proto native void ShiftUp();
70
72 proto native void ShiftTo(int gear);
73
75 proto native void ShiftDown();
76
78 proto native bool HasEngine();
79
81 proto native float EngineGetRPMMin();
82
84 proto native float EngineGetRPMIdle();
85
87 proto native float EngineGetRPMMax();
88
90 proto native float EngineGetRPMRedline();
91
93 proto native float EngineGetRPM();
94
96 proto native bool EngineIsOn();
97
99 proto native void EngineStart();
100
102 proto native void EngineStop();
103
106
108 proto native float PropellerGetAngularVelocity();
109
115 proto native float GetFluidCapacity(BoatFluid fluid);
116
123 proto native float GetFluidFraction(BoatFluid fluid);
124
126 proto native void Leak(BoatFluid fluid, float amount);
127
129 proto native void LeakAll(BoatFluid fluid);
130
132 proto native void Fill(BoatFluid fluid, float amount);
133
137 void OnInput(float dt) {}
138
145 {
146 // engine can start by default
147 return true;
148 }
149
154
158 void OnEngineStop() {}
159
166 void OnGearChanged(int newGear, int oldGear) {}
167
176 void OnFluidChanged(BoatFluid fluid, float newValue, float oldValue) {}
177
186 float OnSound(BoatSoundCtrl ctrl, float oldValue)
187 {
188 // just use the computed value by the game code
189 return oldValue;
190 }
191
192};
BoatSoundCtrl
Boat's sound controller list. (native, do not change or extend)
Определения Boat.c:3
@ SPEED
speed of the boat in km/h
Определения Boat.c:6
@ ENGINE
indicates if engine is ON
Определения Boat.c:5
@ PLAYER
indicates if driver is controlled by player
Определения Boat.c:9
BoatFluid
Type of vehicle's fluid. (native, do not change or extend)
Определения Boat.c:14
@ FUEL
Определения Boat.c:15
Определения Boat.c:24
Определения Boat.c:19
proto native bool HasEngine()
Returns if there is an engine.
void OnInput(float dt)
Определения Boat.c:137
proto native void Fill(BoatFluid fluid, float amount)
Adds to the specified fluid the specified amount.
proto native float PropellerGetAngularVelocity()
Returns the angular velocity of the propeller.
proto native void ShiftUp()
Shifts the future gear up, triggering gearbox simulation.
proto native int GetCurrentGear()
Returns the index of the current gear, -1 if there is no engine.
void OnEngineStop()
Определения Boat.c:158
proto native void Leak(BoatFluid fluid, float amount)
Removes from the specified fluid the specified amount.
proto native float EngineGetRPM()
Returns engine's rpm value.
proto native void ShiftDown()
Shifts the future gear down, triggering gearbox simulation.
proto native vector PropellerGetPosition()
Returns the propeller position in local space.
override event GetMoveType()
Определения Boat.c:36
proto native float EngineGetRPMIdle()
Returns engine's idle rpm before engine stalls.
proto native void LeakAll(BoatFluid fluid)
Removes all the specified fluid from vehicle.
proto native bool EngineIsOn()
Returns true when engine is running, false otherwise.
proto native int GetClutch()
Returns the value of how much the clutch is disengaged.
proto native int GetNeutralGear()
Returns the index of the neutral gear.
proto native void SetThrottle(float value)
Sets the future throttle value.
proto native void EngineStart()
Starts the engine.
proto native void ShiftTo(int gear)
Shifts the future gear to selected gear, triggering gearbox simulation.
proto native float EngineGetRPMMin()
Returns engine's min operating rpm.
float OnSound(BoatSoundCtrl ctrl, float oldValue)
Определения Boat.c:186
proto native float GetFluidFraction(BoatFluid fluid)
proto native void EngineStop()
Stops the engine.
void OnFluidChanged(BoatFluid fluid, float newValue, float oldValue)
Определения Boat.c:176
proto native float GetFluidCapacity(BoatFluid fluid)
override event GetOwnerStateType()
Определения Boat.c:30
proto native float GetThrottle()
Returns the actual throttle value in range <0, 1>.
proto native void SetSteering(float value)
Sets the future steering value.
proto native int GetGear()
Returns the index of the future gear, -1 if there is no engine.
proto native float EngineGetRPMMax()
Returns engine's max rpm before engine blows up.
void OnGearChanged(int newGear, int oldGear)
Определения Boat.c:166
bool OnBeforeEngineStart()
Определения Boat.c:144
proto native float EngineGetRPMRedline()
Returns engine's maximal working rpm without damaging the engine.
proto native float GetSteering()
Returns the actual steering value in range <-1, 1>.
void OnEngineStart()
Определения Boat.c:153
proto native int GetGearCount()
Returns the number of gears.
Base native class for all motorized wheeled vehicles.
Определения Boat.c:28
Определения EnConvert.c:106