DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
Boat.c
См. документацию.
1
3{
4 // simulation
7
8 // miscellaneous
10};
11
14{
16};
17
19{
20};
21
22class BoatOwnerState : TransportOwnerState
23{
24};
25
26class BoatMove : TransportMove
27{
28};
29
31class Boat extends Transport
32{
34 protected override event typename GetOwnerStateType()
35 {
36 return BoatOwnerState;
37 }
38
40 protected override event typename GetMoveType()
41 {
42 return BoatMove;
43 }
44
46 proto native float GetSteering();
47
49 proto native void SetSteering(float value);
50
52 proto native float GetThrottle();
53
55 proto native void SetThrottle(float value);
56
58 proto native int GetClutch();
59
61 proto native void SetClutch(float value);
62
64 proto native bool HasEngine();
65
67 proto native float EngineGetRPMMin();
68
70 proto native float EngineGetRPMIdle();
71
73 proto native float EngineGetRPMMax();
74
76 proto native float EngineGetRPMRedline();
77
79 proto native float EngineGetRPM();
80
82 proto native bool EngineIsOn();
83
85 proto native void EngineStart();
86
88 proto native void EngineStop();
89
91 proto native int GetCurrentGear();
92
94 proto native int GetGear();
95
97 proto native int GetNeutralGear();
98
100 proto native int GetGearCount();
101
103 proto native void ShiftUp();
104
106 proto native void ShiftTo(int gear);
107
109 proto native void ShiftDown();
110
113
115 proto native float PropellerGetAngularVelocity();
116
122 proto native float GetFluidCapacity(BoatFluid fluid);
123
130 proto native float GetFluidFraction(BoatFluid fluid);
131
133 proto native void Leak(BoatFluid fluid, float amount);
134
136 proto native void LeakAll(BoatFluid fluid);
137
139 proto native void Fill(BoatFluid fluid, float amount);
140
147 {
148 // engine can start by default
149 return true;
150 }
151
156
160 void OnEngineStop() {}
161
168 void OnGearChanged(int newGear, int oldGear) {}
169
178 void OnFluidChanged(BoatFluid fluid, float newValue, float oldValue) {}
179
188 float OnSound(BoatSoundCtrl ctrl, float oldValue)
189 {
190 // just use the computed value by the game code
191 return oldValue;
192 }
193
194};
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:27
Определения Boat.c:23
Определения Boat.c:19
proto native bool HasEngine()
Returns if there is an engine.
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:160
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:40
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 SetClutch(float value)
Sets the future clutch 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:188
proto native float GetFluidFraction(BoatFluid fluid)
proto native void EngineStop()
Stops the engine.
void OnFluidChanged(BoatFluid fluid, float newValue, float oldValue)
Определения Boat.c:178
proto native float GetFluidCapacity(BoatFluid fluid)
override event GetOwnerStateType()
Определения Boat.c:34
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:168
bool OnBeforeEngineStart()
Определения Boat.c:146
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:155
proto native int GetGearCount()
Returns the number of gears.
Native class for boats - handles physics simulation.
Определения Boat.c:32
Определения Transport.c:5
Определения EnConvert.c:119