-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefines.hpp
More file actions
69 lines (65 loc) · 2.14 KB
/
Defines.hpp
File metadata and controls
69 lines (65 loc) · 2.14 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
//Default settings
#define AUTHOR "Brainless Ben"
#define NAME "NLD Drones"
#define REQVER 2.14
//Categorie names
#define BEN_Catergorie "BEN_Drones"
#define BEN_SubCatParrot "BEN_D_Parrot"
#define BEN_SubCatCrocus "BEN_D_Crocus"
#define BEN_SubCatRaven "BEN_D_Raven"
/*
default settings
maxSpeed=100; ()
fuelCapacity=100;
liftForceCoef=1; (Lift)
startDuration=3;
bodyFrictionCoef=0.30000001;
altFullForce=1000; (Hight)
altNoForce=2000; (Hight)
steerAheadSimul=0.5; (A/D "Yaw")
steerAheadPlan=0.69999999; (A/D "Yaw")
predictTurnSimul=1.5; (Mouse Side to Side "Roll")
predictTurnPlan=2; (Mouse Side to Side "Roll")
cyclicAsideForceCoef=2; (Mouse Up/Down "Pitch") ? (Mouse Side to Side "Roll")
cyclicForwardForceCoef=1.2; (Mouse Up/Down "Pitch")
backRotorForceCoef=5; (force for A/D "Yaw")
mainRotorSpeed=-7;
backRotorSpeed=7;
tailBladeVertical=0;
*/
//Drone1 settings // [Parrot]
#define Drone1_FuelCap 15
#define Drone1_LiftForce 10
#define Drone1_BodyFriction 0.1
#define Drone1_AltNoForce 6000
#define Drone1_AltFullForce 4000
#define Drone1_SteerAheadSimul 0.2
#define Drone1_SteerAheadPlan 0.5
#define Drone1_PredictTurnSimul 1
#define Drone1_PreductTurnPlan 2
#define Drone1_CyclicAsideForce 1.0
#define Drone1_CyclicForwardForce 0.5
#define Drone1_BackRotorForce 4
#define Drone1_MainRotorSpeed 15
#define Drone1_BackRotorSpeed 15
#define Drone1_MainBladeRadius 0.2
#define Drone1_TailBladeRadius 0.2
#define Drone1_TailBladeVertical 0
//Drone2 settings // [Darter / Crocus]
#define Drone2_FuelCap 5
#define Drone2_LiftForce 7
#define Drone2_BodyFriction 0.2
#define Drone2_AltNoForce 6000
#define Drone2_AltFullForce 4000
#define Drone2_SteerAheadSimul 0.2
#define Drone2_SteerAheadPlan 0.6
#define Drone2_PredictTurnSimul 2
#define Drone2_PreductTurnPlan 3
#define Drone2_CyclicAsideForce 2
#define Drone2_CyclicForwardForce 1
#define Drone2_BackRotorForce 4
#define Drone2_MainRotorSpeed -10
#define Drone2_BackRotorSpeed 10
#define Drone2_MainBladeRadius 0.2
#define Drone2_TailBladeRadius 0.2
#define Drone2_TailBladeVertical 0