helicopter_mfd.hpp 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395
  1. class MFD
  2. {
  3. class AirplaneHUD
  4. {
  5. topLeft="HUD_top_left";
  6. topRight="HUD_top_right";
  7. bottomLeft="HUD_bottom_left";
  8. borderLeft=0;
  9. borderRight=0;
  10. borderTop=0;
  11. borderBottom=0;
  12. color[]={0.15000001,1,0.15000001,1};
  13. helmetMountedDisplay=1;
  14. helmetPosition[]={-0.037500001,0.037500001,0.1};
  15. helmetRight[]={0.075000003,0,0};
  16. helmetDown[]={0,-0.075000003,0};
  17. font="LucidaConsoleB";
  18. turret[]={-2};
  19. class Bones
  20. {
  21. class HUDCenter
  22. {
  23. type="fixed";
  24. pos[]={0.5,0.5};
  25. };
  26. class HorizonBankSource
  27. {
  28. type="rotational";
  29. source="HorizonBank";
  30. center[]={0.5,0.5};
  31. min=-6.2831001;
  32. max=6.2831001;
  33. minAngle=-360;
  34. maxAngle=360;
  35. };
  36. class HorizonDiveSource
  37. {
  38. source="horizonDive";
  39. type="linear";
  40. min=-1;
  41. max=1;
  42. minPos[]={0.5,2.5};
  43. maxPos[]={0.5,-1.5};
  44. };
  45. class VelocityVector
  46. {
  47. type="vector";
  48. source="velocityToView";
  49. pos0[]={0.5,0.5};
  50. pos10[]={0.73400003,0.73000002};
  51. };
  52. class ForwardVector
  53. {
  54. type="vector";
  55. source="forward";
  56. pos0[]={0,0};
  57. pos10[]={0.234,0.23};
  58. };
  59. /*class GunnerAim
  60. {
  61. type="vector";
  62. source="turret";
  63. pos0[]={0,-0.60000002};
  64. pos10[]={0.0068000001,-0.012};
  65. projection=0;
  66. };*/
  67. class WeaponAim
  68. {
  69. type="vector";
  70. source="weaponToView";
  71. pos0[]={0.5,0.5};
  72. pos10[]={0.73400003,0.73000002};
  73. };
  74. class SliderDiveSource
  75. {
  76. type="linear";
  77. source="horizonDive";
  78. min="RAD(-10)";
  79. max="RAD(10)";
  80. minPos[]={0.105,0.38};
  81. maxPos[]={0.105,0.54000002};
  82. };
  83. class SliderDiveSource30: SliderDiveSource
  84. {
  85. min="RAD(10)";
  86. max="RAD(30)";
  87. minPos[]={0,-0.039999999};
  88. maxPos[]=
  89. {
  90. 0,
  91. "0)"
  92. };
  93. };
  94. class SliderDiveSource90: SliderDiveSource30
  95. {
  96. min="RAD(30)";
  97. max="RAD(90)";
  98. minPos[]={0,-0.039999999};
  99. };
  100. class SliderDiveSource30m: SliderDiveSource
  101. {
  102. min="RAD(-30)";
  103. max="RAD(-10)";
  104. minPos[]={0,0};
  105. maxPos[]={0,0.039999999};
  106. };
  107. class SliderDiveSource90m: SliderDiveSource30m
  108. {
  109. min="RAD(-90)";
  110. max="RAD(-30)";
  111. maxPos[]={0,0.039999999};
  112. };
  113. class SliderAltitudeSource
  114. {
  115. type="linear";
  116. source="altitudeAGL";
  117. sourceOffset=-3;
  118. min=0;
  119. max=1000;
  120. minPos[]={0.88499999,0.2};
  121. maxPos[]={0.88499999,0.375};
  122. };
  123. class GForceSource
  124. {
  125. type="linear";
  126. source="gmeter";
  127. sourceScale=0.15000001;
  128. min=-1;
  129. max=3;
  130. minPos[]={0.105,0.69999999};
  131. maxPos[]={0.105,0.86000001};
  132. };
  133. class SliderVSpeedSource
  134. {
  135. type="linear";
  136. source="vspeed";
  137. min=-15;
  138. max=15;
  139. minPos[]={0.79500002,0.60000002};
  140. maxPos[]={0.79500002,0.83999997};
  141. };
  142. class ImpactPoint
  143. {
  144. type="vector";
  145. source="ImpactPointToView";
  146. pos0[]={0.5,0.5};
  147. pos10[]={0.73400003,0.73000002};
  148. };
  149. class ImpactPointRockets
  150. {
  151. type="vector";
  152. source="ImpactPointToView";
  153. pos0[]={0.5,0.52499998};
  154. pos10[]={0.73400003,0.755};
  155. };
  156. class WPPoint
  157. {
  158. type="vector";
  159. source="WPPointToView";
  160. pos0[]={0.5,0.5};
  161. pos10[]={0.73400003,0.73000002};
  162. };
  163. class rtdRPM1
  164. {
  165. type="linear";
  166. source="rtdrpm1";
  167. min=0.1;
  168. max=1;
  169. minPos[]={0,-0.75999999};
  170. maxPos[]={0,0};
  171. };
  172. class rtdRPM2: rtdRPM1
  173. {
  174. source="rtdrpm2";
  175. };
  176. class Limit0109
  177. {
  178. type="limit";
  179. limits[]={0.1,0.1,0.89999998,0.89999998};
  180. };
  181. class Target
  182. {
  183. source="targettoview";
  184. type="vector";
  185. pos0[]={0.5,0.5};
  186. pos10[]={0.73400003,0.73000002};
  187. };
  188. class MissileFlightTimeRot1
  189. {
  190. type="rotational";
  191. source="MissileFlightTime";
  192. sourceScale=0.46000001;
  193. center[]={0,0};
  194. min=0;
  195. max=0.5;
  196. minAngle=0;
  197. maxAngle=18;
  198. aspectRatio=0.98290598;
  199. };
  200. class MissileFlightTimeRot2: MissileFlightTimeRot1
  201. {
  202. maxAngle=36;
  203. max=1;
  204. };
  205. class MissileFlightTimeRot3: MissileFlightTimeRot1
  206. {
  207. maxAngle=54;
  208. max=1.5;
  209. };
  210. class MissileFlightTimeRot4: MissileFlightTimeRot1
  211. {
  212. maxAngle=72;
  213. max=2;
  214. };
  215. class MissileFlightTimeRot5: MissileFlightTimeRot1
  216. {
  217. maxAngle=90;
  218. max=2.5;
  219. };
  220. class MissileFlightTimeRot6: MissileFlightTimeRot1
  221. {
  222. maxAngle=108;
  223. max=3;
  224. };
  225. class MissileFlightTimeRot7: MissileFlightTimeRot1
  226. {
  227. maxAngle=126;
  228. max=3.5;
  229. };
  230. class MissileFlightTimeRot8: MissileFlightTimeRot1
  231. {
  232. maxAngle=144;
  233. max=4;
  234. };
  235. class MissileFlightTimeRot9: MissileFlightTimeRot1
  236. {
  237. maxAngle=162;
  238. max=4.5;
  239. };
  240. class MissileFlightTimeRot10: MissileFlightTimeRot1
  241. {
  242. maxAngle=180;
  243. max=5;
  244. };
  245. class MissileFlightTimeRot11: MissileFlightTimeRot1
  246. {
  247. maxAngle=198;
  248. max=5.5;
  249. };
  250. class MissileFlightTimeRot12: MissileFlightTimeRot1
  251. {
  252. maxAngle=216;
  253. max=6;
  254. };
  255. class MissileFlightTimeRot13: MissileFlightTimeRot1
  256. {
  257. maxAngle=234;
  258. max=6.5;
  259. };
  260. class MissileFlightTimeRot14: MissileFlightTimeRot1
  261. {
  262. maxAngle=252;
  263. max=7;
  264. };
  265. class MissileFlightTimeRot15: MissileFlightTimeRot1
  266. {
  267. maxAngle=270;
  268. max=7.5;
  269. };
  270. class MissileFlightTimeRot16: MissileFlightTimeRot1
  271. {
  272. maxAngle=288;
  273. max=8;
  274. };
  275. class MissileFlightTimeRot17: MissileFlightTimeRot1
  276. {
  277. maxAngle=306;
  278. max=8.5;
  279. };
  280. class MissileFlightTimeRot18: MissileFlightTimeRot1
  281. {
  282. maxAngle=324;
  283. max=9;
  284. };
  285. class MissileFlightTimeRot19: MissileFlightTimeRot1
  286. {
  287. maxAngle=342;
  288. max=9.5;
  289. };
  290. class MissileFlightTimeRot20: MissileFlightTimeRot1
  291. {
  292. maxAngle=360;
  293. max=10;
  294. };
  295. class HorizonBankRotFull
  296. {
  297. type="rotational";
  298. source="horizonBank";
  299. center[]={0,0};
  300. min=-3.1415999;
  301. max=3.1415999;
  302. minAngle=-180;
  303. maxAngle=180;
  304. aspectRatio=1;
  305. };
  306. };
  307. class Draw
  308. {
  309. alpha="user3";
  310. color[]=
  311. {
  312. "user0",
  313. "user1",
  314. "user2"
  315. };
  316. condition="(1 - (cameraHeadingDiffY<=-19) + (abs(cameraHeadingDiffX)>=24))*on";
  317. class VelocityLine
  318. {
  319. type="line";
  320. width=2;
  321. points[]=
  322. {
  323. {
  324. "HUDCenter",
  325. 1
  326. },
  327. {
  328. "VelocityVector",
  329. 1
  330. },
  331. {},
  332. {
  333. "VelocityVector",
  334. {0,-0.0049145301},
  335. 1
  336. },
  337. {
  338. "VelocityVector",
  339. {0.0024999999,-0.0042559798},
  340. 1
  341. },
  342. {
  343. "VelocityVector",
  344. {0.0043299999,-0.0024572599},
  345. 1
  346. },
  347. {
  348. "VelocityVector",
  349. {0.0049999999,0},
  350. 1
  351. },
  352. {
  353. "VelocityVector",
  354. {0.0043299999,0.0024572599},
  355. 1
  356. },
  357. {
  358. "VelocityVector",
  359. {0.0024999999,0.0042559798},
  360. 1
  361. },
  362. {
  363. "VelocityVector",
  364. {0,0.0049145301},
  365. 1
  366. },
  367. {
  368. "VelocityVector",
  369. {-0.0024999999,0.0042559798},
  370. 1
  371. },
  372. {
  373. "VelocityVector",
  374. {-0.0043299999,0.0024572599},
  375. 1
  376. },
  377. {
  378. "VelocityVector",
  379. {-0.0049999999,0},
  380. 1
  381. },
  382. {
  383. "VelocityVector",
  384. {-0.0043299999,-0.0024572599},
  385. 1
  386. },
  387. {
  388. "VelocityVector",
  389. {-0.0024999999,-0.0042559798},
  390. 1
  391. },
  392. {
  393. "VelocityVector",
  394. {0,-0.0049145301},
  395. 1
  396. },
  397. {}
  398. };
  399. };
  400. class Static
  401. {
  402. type="line";
  403. width=3;
  404. points[]=
  405. {
  406. {
  407. "SliderDiveSource90",
  408. 1,
  409. "SliderDiveSource30",
  410. 1,
  411. "SliderDiveSource",
  412. 1,
  413. "SliderDiveSource30m",
  414. 1,
  415. "SliderDiveSource90m",
  416. 1,
  417. {0.015,0.0099999998},
  418. 1
  419. },
  420. {
  421. "SliderDiveSource90",
  422. 1,
  423. "SliderDiveSource30",
  424. 1,
  425. "SliderDiveSource",
  426. 1,
  427. "SliderDiveSource30m",
  428. 1,
  429. "SliderDiveSource90m",
  430. 1,
  431. {0,0},
  432. 1
  433. },
  434. {
  435. "SliderDiveSource90",
  436. 1,
  437. "SliderDiveSource30",
  438. 1,
  439. "SliderDiveSource",
  440. 1,
  441. "SliderDiveSource30m",
  442. 1,
  443. "SliderDiveSource90m",
  444. 1,
  445. {0.015,-0.0099999998},
  446. 1
  447. },
  448. {
  449. "SliderDiveSource90",
  450. 1,
  451. "SliderDiveSource30",
  452. 1,
  453. "SliderDiveSource",
  454. 1,
  455. "SliderDiveSource30m",
  456. 1,
  457. "SliderDiveSource90m",
  458. 1,
  459. {0.015,0.0099999998},
  460. 1
  461. },
  462. {},
  463. {
  464. "SliderDiveSource90",
  465. 1,
  466. "SliderDiveSource30",
  467. 1,
  468. "SliderDiveSource",
  469. 1,
  470. "SliderDiveSource30m",
  471. 1,
  472. "SliderDiveSource90m",
  473. 1,
  474. {0.029999999,0.015},
  475. 1
  476. },
  477. {
  478. "SliderDiveSource90",
  479. 1,
  480. "SliderDiveSource30",
  481. 1,
  482. "SliderDiveSource",
  483. 1,
  484. "SliderDiveSource30m",
  485. 1,
  486. "SliderDiveSource90m",
  487. 1,
  488. {0.088,0.015},
  489. 1
  490. },
  491. {
  492. "SliderDiveSource90",
  493. 1,
  494. "SliderDiveSource30",
  495. 1,
  496. "SliderDiveSource",
  497. 1,
  498. "SliderDiveSource30m",
  499. 1,
  500. "SliderDiveSource90m",
  501. 1,
  502. {0.088,-0.015},
  503. 1
  504. },
  505. {
  506. "SliderDiveSource90",
  507. 1,
  508. "SliderDiveSource30",
  509. 1,
  510. "SliderDiveSource",
  511. 1,
  512. "SliderDiveSource30m",
  513. 1,
  514. "SliderDiveSource90m",
  515. 1,
  516. {0.029999999,-0.015},
  517. 1
  518. },
  519. {
  520. "SliderDiveSource90",
  521. 1,
  522. "SliderDiveSource30",
  523. 1,
  524. "SliderDiveSource",
  525. 1,
  526. "SliderDiveSource30m",
  527. 1,
  528. "SliderDiveSource90m",
  529. 1,
  530. {0.029999999,0.015},
  531. 1
  532. },
  533. {},
  534. {
  535. {0.1,0.30000001},
  536. 1
  537. },
  538. {
  539. {0.1,0.62},
  540. 1
  541. },
  542. {},
  543. {
  544. {0.1,0.30000001},
  545. 1
  546. },
  547. {
  548. {0.079999998,0.30000001},
  549. 1
  550. },
  551. {},
  552. {
  553. {0.1,0.34},
  554. 1
  555. },
  556. {
  557. {0.079999998,0.34},
  558. 1
  559. },
  560. {},
  561. {
  562. {0.1,0.38},
  563. 1
  564. },
  565. {
  566. {0.079999998,0.38},
  567. 1
  568. },
  569. {},
  570. {
  571. {0.1,0.46000001},
  572. 1
  573. },
  574. {
  575. {0.079999998,0.46000001},
  576. 1
  577. },
  578. {},
  579. {
  580. {0.1,0.54000002},
  581. 1
  582. },
  583. {
  584. {0.079999998,0.54000002},
  585. 1
  586. },
  587. {},
  588. {
  589. {0.1,0.57999998},
  590. 1
  591. },
  592. {
  593. {0.079999998,0.57999998},
  594. 1
  595. },
  596. {},
  597. {
  598. {0.1,0.62},
  599. 1
  600. },
  601. {
  602. {0.079999998,0.62},
  603. 1
  604. },
  605. {},
  606. {
  607. "GForceSource",
  608. {0.015,0.0099999998},
  609. 1
  610. },
  611. {
  612. "GForceSource",
  613. {0,0},
  614. 1
  615. },
  616. {
  617. "GForceSource",
  618. {0.015,-0.0099999998},
  619. 1
  620. },
  621. {
  622. "GForceSource",
  623. {0.015,0.0099999998},
  624. 1
  625. },
  626. {},
  627. {
  628. {0.1,0.68800002},
  629. 1
  630. },
  631. {
  632. {0.1,0.81999999},
  633. 1
  634. },
  635. {},
  636. {
  637. {0.1,0.69999999},
  638. 1
  639. },
  640. {
  641. {0.079999998,0.69999999},
  642. 1
  643. },
  644. {},
  645. {
  646. {0.1,0.74000001},
  647. 1
  648. },
  649. {
  650. {0.079999998,0.74000001},
  651. 1
  652. },
  653. {},
  654. {
  655. {0.1,0.77999997},
  656. 1
  657. },
  658. {
  659. {0.079999998,0.77999997},
  660. 1
  661. },
  662. {},
  663. {
  664. {0.1,0.81999999},
  665. 1
  666. },
  667. {
  668. {0.079999998,0.81999999},
  669. 1
  670. },
  671. {},
  672. /*{
  673. {0.40000001,0.86000001},
  674. 1
  675. },
  676. {
  677. {0.40000001,0.94},
  678. 1
  679. },
  680. {
  681. {0.60000002,0.94},
  682. 1
  683. },
  684. {
  685. {0.60000002,0.86000001},
  686. 1
  687. },
  688. {
  689. {0.40000001,0.86000001},
  690. 1
  691. },
  692. {},
  693. {
  694. {0.40000001,0.89499998},
  695. 1
  696. },
  697. {
  698. {0.40799999,0.89499998},
  699. 1
  700. },
  701. {},
  702. {
  703. {0.60000002,0.89499998},
  704. 1
  705. },
  706. {
  707. {0.59200001,0.89499998},
  708. 1
  709. },
  710. {},
  711. {
  712. {0.5,0.86000001},
  713. 1
  714. },
  715. {
  716. {0.5,0.86799997},
  717. 1
  718. },
  719. {},
  720. {
  721. {0.5,0.94},
  722. 1
  723. },*/
  724. {
  725. {0.5,0.93199998},
  726. 1
  727. },
  728. {},
  729. {
  730. {0.46000001,0.07},
  731. 1
  732. },
  733. {
  734. {0.54000002,0.07},
  735. 1
  736. },
  737. {
  738. {0.54000002,0.035},
  739. 1
  740. },
  741. {
  742. {0.46000001,0.035},
  743. 1
  744. },
  745. {
  746. {0.46000001,0.07},
  747. 1
  748. },
  749. {},
  750. {
  751. {0.15000001,0.115},
  752. 1
  753. },
  754. {
  755. {0.85000002,0.115},
  756. 1
  757. },
  758. {},//
  759. {
  760. {0,0.95999998},
  761. 1
  762. },
  763. {
  764. {1.1,0.95999998},
  765. 1
  766. },
  767. {},
  768. {
  769. {0.47999999,0.5},
  770. 1
  771. },
  772. {
  773. {0.49000001,0.5},
  774. 1
  775. },
  776. {},
  777. {
  778. {0.50999999,0.5},
  779. 1
  780. },
  781. {
  782. {0.51999998,0.5},
  783. 1
  784. },
  785. {},
  786. {
  787. {0.5,0.49000001},
  788. 1
  789. },
  790. {
  791. {0.5,0.47999999},
  792. 1
  793. },
  794. {},
  795. {
  796. {0.5,0.50999999},
  797. 1
  798. },
  799. {
  800. {0.5,0.51999998},
  801. 1
  802. },
  803. {},
  804. {
  805. "WeaponAim",
  806. 1,
  807. {-0.02,0},
  808. 1
  809. },
  810. {
  811. "WeaponAim",
  812. 1,
  813. {-0.0099999998,0},
  814. 1
  815. },
  816. {},
  817. {
  818. "WeaponAim",
  819. 1,
  820. {0.0099999998,0},
  821. 1
  822. },
  823. {
  824. "WeaponAim",
  825. 1,
  826. {0.02,0},
  827. 1
  828. },
  829. {},
  830. {
  831. "WeaponAim",
  832. 1,
  833. {0,-0.0099999998},
  834. 1
  835. },
  836. {
  837. "WeaponAim",
  838. 1,
  839. {0,-0.02},
  840. 1
  841. },
  842. {},
  843. {
  844. "WeaponAim",
  845. 1,
  846. {0,0.0099999998},
  847. 1
  848. },
  849. {
  850. "WeaponAim",
  851. 1,
  852. {0,0.02},
  853. 1
  854. },
  855. {},
  856. {
  857. "HUDCenter",
  858. {-0.16500001,7.0890902e-009},
  859. 1
  860. },
  861. {
  862. "HUDCenter",
  863. {-0.22,9.45212e-009},
  864. 1
  865. },
  866. {},
  867. {
  868. "HUDCenter",
  869. {0.16500001,-1.9339701e-009},
  870. 1
  871. },
  872. {
  873. "HUDCenter",
  874. {0.22,-2.57863e-009},
  875. 1
  876. },
  877. {},
  878. {
  879. "HUDCenter",
  880. {-0.082500003,0.140452},
  881. 1
  882. },
  883. {
  884. "HUDCenter",
  885. {-0.096249998,0.16385999},
  886. 1
  887. },
  888. {},
  889. {
  890. "HUDCenter",
  891. {0.082500003,0.140452},
  892. 1
  893. },
  894. {
  895. "HUDCenter",
  896. {0.096249998,0.16385999},
  897. 1
  898. },
  899. {},
  900. {
  901. "HUDCenter",
  902. {-0.142894,0.081089698},
  903. 1
  904. },
  905. {
  906. "HUDCenter",
  907. {-0.16671,0.094604701},
  908. 1
  909. },
  910. {},
  911. {
  912. "HUDCenter",
  913. {0.142894,0.081089698},
  914. 1
  915. },
  916. {
  917. "HUDCenter",
  918. {0.16671,0.094604701},
  919. 1
  920. },
  921. {},
  922. {
  923. "HUDCenter",
  924. {-0.116673,0.114678},
  925. 1
  926. },
  927. {
  928. "HUDCenter",
  929. {-0.155564,0.152904},
  930. 1
  931. },
  932. {},
  933. {
  934. "HUDCenter",
  935. {0.116673,0.114678},
  936. 1
  937. },
  938. {
  939. "HUDCenter",
  940. {0.155563,0.152904},
  941. 1
  942. },
  943. {},
  944. {}
  945. };
  946. };
  947. /*class Gunner
  948. {
  949. type="line";
  950. width=4;
  951. points[]=
  952. {
  953. {
  954. "GunnerAim",
  955. {0.48500001,0.89200002},
  956. 1
  957. },
  958. {
  959. "GunnerAim",
  960. {0.48500001,0.90799999},
  961. 1
  962. },
  963. {
  964. "GunnerAim",
  965. {0.51499999,0.90799999},
  966. 1
  967. },
  968. {
  969. "GunnerAim",
  970. {0.51499999,0.89200002},
  971. 1
  972. },
  973. {
  974. "GunnerAim",
  975. {0.48500001,0.89200002},
  976. 1
  977. }
  978. };
  979. };*/
  980. class DiveNumber
  981. {
  982. type="text";
  983. source="horizondive";
  984. sourceScale=57.29578;
  985. sourceOffset=0;
  986. align="left";
  987. scale=1;
  988. pos[]=
  989. {
  990. "SliderDiveSource90",
  991. 1,
  992. "SliderDiveSource30",
  993. 1,
  994. "SliderDiveSource",
  995. 1,
  996. "SliderDiveSource30m",
  997. 1,
  998. "SliderDiveSource90m",
  999. 1,
  1000. {
  1001. 0.085000001,
  1002. "0.00-0.011"
  1003. },
  1004. 1
  1005. };
  1006. right[]=
  1007. {
  1008. "SliderDiveSource90",
  1009. 1,
  1010. "SliderDiveSource30",
  1011. 1,
  1012. "SliderDiveSource",
  1013. 1,
  1014. "SliderDiveSource30m",
  1015. 1,
  1016. "SliderDiveSource90m",
  1017. 1,
  1018. {
  1019. 0.12,
  1020. "0.00-0.011"
  1021. },
  1022. 1
  1023. };
  1024. down[]=
  1025. {
  1026. "SliderDiveSource90",
  1027. 1,
  1028. "SliderDiveSource30",
  1029. 1,
  1030. "SliderDiveSource",
  1031. 1,
  1032. "SliderDiveSource30m",
  1033. 1,
  1034. "SliderDiveSource90m",
  1035. 1,
  1036. {
  1037. 0.085000001,
  1038. "0.03-0.011"
  1039. },
  1040. 1
  1041. };
  1042. };
  1043. class VSpeedGroup
  1044. {
  1045. condition="on";
  1046. class VSpeedNumber
  1047. {
  1048. type="text";
  1049. source="vspeed";
  1050. sourceScale=1;
  1051. align="center";
  1052. scale=1;
  1053. pos[]=
  1054. {
  1055. {
  1056. "0.82+0.07",
  1057. 0.72799999
  1058. },
  1059. 1
  1060. };
  1061. right[]=
  1062. {
  1063. {
  1064. "0.87+0.07",
  1065. 0.72799999
  1066. },
  1067. 1
  1068. };
  1069. down[]=
  1070. {
  1071. {
  1072. "0.82+0.07",
  1073. 0.76300001
  1074. },
  1075. 1
  1076. };
  1077. };
  1078. class Static
  1079. {
  1080. type="line";
  1081. width=3;
  1082. points[]=
  1083. {
  1084. {
  1085. {0.85900003,0.75999999},
  1086. 1
  1087. },
  1088. {
  1089. {0.91900003,0.75999999},
  1090. 1
  1091. },
  1092. {
  1093. {0.91900003,0.72500002},
  1094. 1
  1095. },
  1096. {
  1097. {0.85900003,0.72500002},
  1098. 1
  1099. },
  1100. {
  1101. {0.85900003,0.75999999},
  1102. 1
  1103. },
  1104. {}
  1105. };
  1106. };
  1107. };
  1108. class VSpeedGroupUp
  1109. {
  1110. condition="vspeed";
  1111. class Static
  1112. {
  1113. type="line";
  1114. width=3;
  1115. points[]=
  1116. {
  1117. {
  1118. {0.86900002,0.71499997},
  1119. 1
  1120. },
  1121. {
  1122. {0.90899998,0.71499997},
  1123. 1
  1124. },
  1125. {
  1126. {0.889,0.69499999},
  1127. 1
  1128. },
  1129. {
  1130. {0.86900002,0.71499997},
  1131. 1
  1132. },
  1133. {}
  1134. };
  1135. };
  1136. };
  1137. class VSpeedGroupDown
  1138. {
  1139. condition="-vspeed";
  1140. class Static
  1141. {
  1142. type="line";
  1143. width=3;
  1144. points[]=
  1145. {
  1146. {
  1147. {0.86900002,0.76999998},
  1148. 1
  1149. },
  1150. {
  1151. {0.90899998,0.76999998},
  1152. 1
  1153. },
  1154. {
  1155. {0.889,0.79000002},
  1156. 1
  1157. },
  1158. {
  1159. {0.86900002,0.76999998},
  1160. 1
  1161. },
  1162. {}
  1163. };
  1164. };
  1165. };
  1166. class AltGroup
  1167. {
  1168. condition="1000 - altitudeAGL";
  1169. class Static
  1170. {
  1171. type="line";
  1172. width=3;
  1173. points[]=
  1174. {
  1175. {
  1176. "SliderAltitudeSource",
  1177. {0.024,0.0099999998},
  1178. 1
  1179. },
  1180. {
  1181. "SliderAltitudeSource",
  1182. {0.0089999996,0},
  1183. 1
  1184. },
  1185. {
  1186. "SliderAltitudeSource",
  1187. {0.024,-0.0099999998},
  1188. 1
  1189. },
  1190. {
  1191. "SliderAltitudeSource",
  1192. {0.024,0.0099999998},
  1193. 1
  1194. },
  1195. {},
  1196. {
  1197. "SliderAltitudeSource",
  1198. {0.035,0.015},
  1199. 1
  1200. },
  1201. {
  1202. "SliderAltitudeSource",
  1203. {0.093000002,0.015},
  1204. 1
  1205. },
  1206. {
  1207. "SliderAltitudeSource",
  1208. {0.093000002,-0.015},
  1209. 1
  1210. },
  1211. {
  1212. "SliderAltitudeSource",
  1213. {0.035,-0.015},
  1214. 1
  1215. },
  1216. {
  1217. "SliderAltitudeSource",
  1218. {0.035,0.015},
  1219. 1
  1220. },
  1221. {},
  1222. {
  1223. {0.889,0.2},
  1224. 1
  1225. },
  1226. {
  1227. {0.889,0.375},
  1228. 1
  1229. },
  1230. {},
  1231. {
  1232. {0.87900001,0.2},
  1233. 1
  1234. },
  1235. {
  1236. {0.89899999,0.2},
  1237. 1
  1238. },
  1239. {},
  1240. {
  1241. {0.87900001,0.375},
  1242. 1
  1243. },
  1244. {
  1245. {0.89899999,0.375},
  1246. 1
  1247. },
  1248. {}
  1249. };
  1250. };
  1251. class AltNumber
  1252. {
  1253. type="text";
  1254. source="altitudeAGL";
  1255. sourceScale=1;
  1256. sourceOffset=-3;
  1257. align="left";
  1258. scale=1;
  1259. pos[]=
  1260. {
  1261. "SliderAltitudeSource",
  1262. {
  1263. 0.085000001,
  1264. "0.00-0.011"
  1265. },
  1266. 1
  1267. };
  1268. right[]=
  1269. {
  1270. "SliderAltitudeSource",
  1271. {
  1272. 0.11,
  1273. "0.00-0.011"
  1274. },
  1275. 1
  1276. };
  1277. down[]=
  1278. {
  1279. "SliderAltitudeSource",
  1280. {
  1281. 0.085000001,
  1282. "0.03-0.011"
  1283. },
  1284. 1
  1285. };
  1286. };
  1287. class AltStatic50
  1288. {
  1289. type="text";
  1290. source="static";
  1291. text="1000";
  1292. scale=1;
  1293. sourceScale=1;
  1294. align="center";
  1295. pos[]=
  1296. {
  1297. {0.88499999,0.171},
  1298. 1
  1299. };
  1300. right[]=
  1301. {
  1302. {0.92500001,0.171},
  1303. 1
  1304. };
  1305. down[]=
  1306. {
  1307. {0.88499999,0.20100001},
  1308. 1
  1309. };
  1310. };
  1311. };
  1312. class SpeedNumber
  1313. {
  1314. type="text";
  1315. source="speed";
  1316. sourceScale=3.5999999;
  1317. sourceLength=3;
  1318. align="left";
  1319. scale=1;
  1320. pos[]=
  1321. {
  1322. {0.13,0.22},
  1323. 1
  1324. };
  1325. down[]=
  1326. {
  1327. {0.13,0.25999999},
  1328. 1
  1329. };
  1330. right[]=
  1331. {
  1332. {0.2,0.22},
  1333. 1
  1334. };
  1335. };
  1336. class Angle_90
  1337. {
  1338. type="text";
  1339. source="static";
  1340. text="90";
  1341. scale=1;
  1342. sourceScale=1;
  1343. align="left";
  1344. pos[]=
  1345. {
  1346. {0.07,0.285},
  1347. 1
  1348. };
  1349. right[]=
  1350. {
  1351. {0.11,0.285},
  1352. 1
  1353. };
  1354. down[]=
  1355. {
  1356. {0.07,0.315},
  1357. 1
  1358. };
  1359. };
  1360. class Angle_30
  1361. {
  1362. type="text";
  1363. source="static";
  1364. text="30";
  1365. scale=1;
  1366. sourceScale=1;
  1367. align="left";
  1368. pos[]=
  1369. {
  1370. {0.07,0.32499999},
  1371. 1
  1372. };
  1373. right[]=
  1374. {
  1375. {0.11,0.32499999},
  1376. 1
  1377. };
  1378. down[]=
  1379. {
  1380. {0.07,0.35499999},
  1381. 1
  1382. };
  1383. };
  1384. class Angle_10
  1385. {
  1386. type="text";
  1387. source="static";
  1388. text="10";
  1389. scale=1;
  1390. sourceScale=1;
  1391. align="left";
  1392. pos[]=
  1393. {
  1394. {0.07,0.36500001},
  1395. 1
  1396. };
  1397. right[]=
  1398. {
  1399. {0.11,0.36500001},
  1400. 1
  1401. };
  1402. down[]=
  1403. {
  1404. {0.07,0.39500001},
  1405. 1
  1406. };
  1407. };
  1408. class Angle_0
  1409. {
  1410. type="text";
  1411. source="static";
  1412. text="0";
  1413. scale=1;
  1414. sourceScale=1;
  1415. align="left";
  1416. pos[]=
  1417. {
  1418. {0.07,0.44499999},
  1419. 1
  1420. };
  1421. right[]=
  1422. {
  1423. {0.11,0.44499999},
  1424. 1
  1425. };
  1426. down[]=
  1427. {
  1428. {0.07,0.47499999},
  1429. 1
  1430. };
  1431. };
  1432. class Angle_10m
  1433. {
  1434. type="text";
  1435. source="static";
  1436. text="-10";
  1437. scale=1;
  1438. sourceScale=1;
  1439. align="left";
  1440. pos[]=
  1441. {
  1442. {0.07,0.52499998},
  1443. 1
  1444. };
  1445. right[]=
  1446. {
  1447. {0.11,0.52499998},
  1448. 1
  1449. };
  1450. down[]=
  1451. {
  1452. {0.07,0.55500001},
  1453. 1
  1454. };
  1455. };
  1456. class Angle_30m
  1457. {
  1458. type="text";
  1459. source="static";
  1460. text="-30";
  1461. scale=1;
  1462. sourceScale=1;
  1463. align="left";
  1464. pos[]=
  1465. {
  1466. {0.07,0.565},
  1467. 1
  1468. };
  1469. right[]=
  1470. {
  1471. {0.11,0.565},
  1472. 1
  1473. };
  1474. down[]=
  1475. {
  1476. {0.07,0.59500003},
  1477. 1
  1478. };
  1479. };
  1480. class Angle_90m
  1481. {
  1482. type="text";
  1483. source="static";
  1484. text="-90";
  1485. scale=1;
  1486. sourceScale=1;
  1487. align="left";
  1488. pos[]=
  1489. {
  1490. {0.07,0.60500002},
  1491. 1
  1492. };
  1493. right[]=
  1494. {
  1495. {0.11,0.60500002},
  1496. 1
  1497. };
  1498. down[]=
  1499. {
  1500. {0.07,0.63499999},
  1501. 1
  1502. };
  1503. };
  1504. class GMeterStatic3
  1505. {
  1506. type="text";
  1507. source="static";
  1508. text="3";
  1509. scale=1;
  1510. sourceScale=1;
  1511. align="left";
  1512. pos[]=
  1513. {
  1514. {0.07,0.68300003},
  1515. 1
  1516. };
  1517. right[]=
  1518. {
  1519. {0.11,0.68300003},
  1520. 1
  1521. };
  1522. down[]=
  1523. {
  1524. {0.07,0.713},
  1525. 1
  1526. };
  1527. };
  1528. class GMeterStatic2
  1529. {
  1530. type="text";
  1531. source="static";
  1532. text="2";
  1533. scale=1;
  1534. sourceScale=1;
  1535. align="left";
  1536. pos[]=
  1537. {
  1538. {0.07,0.72299999},
  1539. 1
  1540. };
  1541. right[]=
  1542. {
  1543. {0.11,0.72299999},
  1544. 1
  1545. };
  1546. down[]=
  1547. {
  1548. {0.07,0.75300002},
  1549. 1
  1550. };
  1551. };
  1552. class GMeterStatic1
  1553. {
  1554. type="text";
  1555. source="static";
  1556. text="1";
  1557. scale=1;
  1558. sourceScale=1;
  1559. align="left";
  1560. pos[]=
  1561. {
  1562. {0.07,0.76300001},
  1563. 1
  1564. };
  1565. right[]=
  1566. {
  1567. {0.11,0.76300001},
  1568. 1
  1569. };
  1570. down[]=
  1571. {
  1572. {0.07,0.79299998},
  1573. 1
  1574. };
  1575. };
  1576. class GMeterStatic0
  1577. {
  1578. type="text";
  1579. source="static";
  1580. text="0";
  1581. scale=1;
  1582. sourceScale=1;
  1583. align="left";
  1584. pos[]=
  1585. {
  1586. {0.07,0.80299997},
  1587. 1
  1588. };
  1589. right[]=
  1590. {
  1591. {0.11,0.80299997},
  1592. 1
  1593. };
  1594. down[]=
  1595. {
  1596. {0.07,0.833},
  1597. 1
  1598. };
  1599. };
  1600. class RtdOnlyGroup
  1601. {
  1602. condition="simulRTD";
  1603. class CollectiveNumber
  1604. {
  1605. type="text";
  1606. source="rtdCollective";
  1607. sourceScale=100;
  1608. align="left";
  1609. scale=1;
  1610. pos[]=
  1611. {
  1612. {0.889,0.46000001},
  1613. 1
  1614. };
  1615. right[]=
  1616. {
  1617. {0.93900001,0.46000001},
  1618. 1
  1619. };
  1620. down[]=
  1621. {
  1622. {0.889,0.495},
  1623. 1
  1624. };
  1625. };
  1626. class CollectiveText
  1627. {
  1628. type="text";
  1629. source="static";
  1630. text="%";
  1631. scale=1;
  1632. sourceScale=1;
  1633. align="right";
  1634. pos[]=
  1635. {
  1636. {0.89899999,0.46000001},
  1637. 1
  1638. };
  1639. right[]=
  1640. {
  1641. {0.949,0.46000001},
  1642. 1
  1643. };
  1644. down[]=
  1645. {
  1646. {0.89899999,0.495},
  1647. 1
  1648. };
  1649. };
  1650. class EngineRPM
  1651. {
  1652. type="line";
  1653. width=3;
  1654. points[]=
  1655. {
  1656. {
  1657. {0.88999999,0.5},
  1658. 1
  1659. },
  1660. {
  1661. {0.88999999,0.66000003},
  1662. 1
  1663. },
  1664. {},
  1665. {
  1666. {0.92000002,0.5},
  1667. 1
  1668. },
  1669. {
  1670. {0.86000001,0.5},
  1671. 1
  1672. },
  1673. {},
  1674. {
  1675. {0.92000002,0.66000003},
  1676. 1
  1677. },
  1678. {
  1679. {0.86000001,0.66000003},
  1680. 1
  1681. },
  1682. {},
  1683. {
  1684. {0.91000003,0.54000002},
  1685. 1
  1686. },
  1687. {
  1688. {0.87,0.54000002},
  1689. 1
  1690. },
  1691. {},
  1692. {
  1693. {0.91000003,0.57999998},
  1694. 1
  1695. },
  1696. {
  1697. {0.87,0.57999998},
  1698. 1
  1699. },
  1700. {},
  1701. {
  1702. {0.91000003,0.62},
  1703. 1
  1704. },
  1705. {
  1706. {0.87,0.62},
  1707. 1
  1708. },
  1709. {}
  1710. };
  1711. };
  1712. class EngineRPMLines
  1713. {
  1714. type="line";
  1715. width=5;
  1716. points[]=
  1717. {
  1718. {
  1719. {
  1720. "0.90+0.01",
  1721. 0.66000003
  1722. },
  1723. 1
  1724. },
  1725. {
  1726. "rtdrpm1",
  1727. {
  1728. "0.90+0.01",
  1729. 0.66000003
  1730. },
  1731. 1
  1732. },
  1733. {},
  1734. {
  1735. {
  1736. "0.86+0.01",
  1737. 0.66000003
  1738. },
  1739. 1
  1740. },
  1741. {
  1742. "rtdrpm2",
  1743. {
  1744. "0.86+0.01",
  1745. 0.66000003
  1746. },
  1747. 1
  1748. },
  1749. {},
  1750. {}
  1751. };
  1752. };
  1753. class RPM60Text
  1754. {
  1755. type="text";
  1756. source="static";
  1757. text="60";
  1758. scale=1;
  1759. sourceScale=1;
  1760. align="right";
  1761. pos[]=
  1762. {
  1763. {0.92500001,0.64499998},
  1764. 1
  1765. };
  1766. right[]=
  1767. {
  1768. {0.95499998,0.64499998},
  1769. 1
  1770. };
  1771. down[]=
  1772. {
  1773. {0.92500001,0.67000002},
  1774. 1
  1775. };
  1776. };
  1777. class RPM80Text
  1778. {
  1779. type="text";
  1780. source="static";
  1781. text="80";
  1782. scale=1;
  1783. sourceScale=1;
  1784. align="right";
  1785. pos[]=
  1786. {
  1787. {0.92500001,0.60500002},
  1788. 1
  1789. };
  1790. right[]=
  1791. {
  1792. {0.95499998,0.60500002},
  1793. 1
  1794. };
  1795. down[]=
  1796. {
  1797. {0.92500001,0.63},
  1798. 1
  1799. };
  1800. };
  1801. class RPM100Text
  1802. {
  1803. type="text";
  1804. source="static";
  1805. text="100";
  1806. scale=1;
  1807. sourceScale=1;
  1808. align="right";
  1809. pos[]=
  1810. {
  1811. {0.92500001,0.565},
  1812. 1
  1813. };
  1814. right[]=
  1815. {
  1816. {0.95499998,0.565},
  1817. 1
  1818. };
  1819. down[]=
  1820. {
  1821. {0.92500001,0.58999997},
  1822. 1
  1823. };
  1824. };
  1825. class RPM120Text
  1826. {
  1827. type="text";
  1828. source="static";
  1829. text="120";
  1830. scale=1;
  1831. sourceScale=1;
  1832. align="right";
  1833. pos[]=
  1834. {
  1835. {0.92500001,0.52499998},
  1836. 1
  1837. };
  1838. right[]=
  1839. {
  1840. {0.95499998,0.52499998},
  1841. 1
  1842. };
  1843. down[]=
  1844. {
  1845. {0.92500001,0.55000001},
  1846. 1
  1847. };
  1848. };
  1849. };
  1850. class HeadingNumber
  1851. {
  1852. type="text";
  1853. source="heading";
  1854. sourceScale=1;
  1855. align="center";
  1856. scale=1;
  1857. pos[]=
  1858. {
  1859. {
  1860. "0.80-0.302",
  1861. "0.082-0.043"
  1862. },
  1863. 1
  1864. };
  1865. right[]=
  1866. {
  1867. {
  1868. "0.84-0.302",
  1869. "0.082-0.043"
  1870. },
  1871. 1
  1872. };
  1873. down[]=
  1874. {
  1875. {
  1876. "0.80-0.302",
  1877. "0.117-0.043"
  1878. },
  1879. 1
  1880. };
  1881. };
  1882. class HeadingRotationArrow
  1883. {
  1884. condition="5-abs(cameraDir-heading)*( (abs(heading-cameraDir))<=355)";
  1885. class HeadingArrow
  1886. {
  1887. type="line";
  1888. width=3;
  1889. points[]=
  1890. {
  1891. {
  1892. {0.51999998,0.079999998},
  1893. 1
  1894. },
  1895. {
  1896. {0.5,0.11},
  1897. 1
  1898. },
  1899. {
  1900. {0.47999999,0.079999998},
  1901. 1
  1902. },
  1903. {
  1904. {0.51999998,0.079999998},
  1905. 1
  1906. },
  1907. {}
  1908. };
  1909. };
  1910. };
  1911. class HeadingRotation
  1912. {
  1913. condition="abs(cameraDir-heading)*( (abs(heading-cameraDir))<=355)-5";
  1914. class HeadingHeadNumber
  1915. {
  1916. type="text";
  1917. source="cameraDir";
  1918. sourceScale=1;
  1919. align="center";
  1920. scale=1;
  1921. pos[]=
  1922. {
  1923. {
  1924. "0.80-0.302",
  1925. "0.082+0.001"
  1926. },
  1927. 1
  1928. };
  1929. right[]=
  1930. {
  1931. {
  1932. "0.83-0.302",
  1933. "0.082+0.001"
  1934. },
  1935. 1
  1936. };
  1937. down[]=
  1938. {
  1939. {
  1940. "0.80-0.302",
  1941. "0.113+0.001"
  1942. },
  1943. 1
  1944. };
  1945. };
  1946. class HeadingArrow
  1947. {
  1948. type="line";
  1949. width=3;
  1950. points[]=
  1951. {
  1952. {
  1953. {0.47799999,0.075000003},
  1954. 1
  1955. },
  1956. {
  1957. {0.52200001,0.075000003},
  1958. 1
  1959. },
  1960. {
  1961. {0.55199999,0.094999999},
  1962. 1
  1963. },
  1964. {
  1965. {0.52200001,0.115},
  1966. 1
  1967. },
  1968. {
  1969. {0.47799999,0.115},
  1970. 1
  1971. },
  1972. {
  1973. {0.44800001,0.094999999},
  1974. 1
  1975. },
  1976. {
  1977. {0.47799999,0.075000003},
  1978. 1
  1979. },
  1980. {}
  1981. };
  1982. };
  1983. };
  1984. class HeadingScale
  1985. {
  1986. type="scale";
  1987. horizontal=1;
  1988. source="heading";
  1989. sourceScale=0.1;
  1990. sourceoffset=0;
  1991. width=3;
  1992. NeverEatSeaWeed=1;
  1993. top=0.15000001;
  1994. center=0.5;
  1995. bottom=0.85000002;
  1996. lineXleft=0.114;
  1997. lineYright=0.12;
  1998. lineXleftMajor=0.114;
  1999. lineYrightMajor=0.13;
  2000. majorLineEach=2;
  2001. numberEach=6;
  2002. step=0.5;
  2003. stepSize=0.034482799;
  2004. align="center";
  2005. scale=1;
  2006. pos[]={0.15000001,0.13};
  2007. right[]={0.20999999,0.13};
  2008. down[]={0.15000001,0.17};
  2009. };
  2010. class HorizonBanking
  2011. {
  2012. type="line";
  2013. width=3;
  2014. clipTL[]={0,0.1};
  2015. clipBR[]={1,0.89999998};
  2016. points[]=
  2017. {
  2018. {
  2019. "HorizonBankSource",
  2020. {0.16,0},
  2021. 1
  2022. },
  2023. {
  2024. "HorizonBankSource",
  2025. {0.1,0},
  2026. 1
  2027. },
  2028. {
  2029. "HorizonBankSource",
  2030. {0.085000001,-0.015},
  2031. 1
  2032. },
  2033. {
  2034. "HorizonBankSource",
  2035. {0.07,0},
  2036. 1
  2037. },
  2038. {
  2039. "HorizonBankSource",
  2040. {0.050000001,0},
  2041. 1
  2042. },
  2043. {},
  2044. {
  2045. "HorizonBankSource",
  2046. {-0.16,0},
  2047. 1
  2048. },
  2049. {
  2050. "HorizonBankSource",
  2051. {-0.1,0},
  2052. 1
  2053. },
  2054. {
  2055. "HorizonBankSource",
  2056. {-0.085000001,-0.015},
  2057. 1
  2058. },
  2059. {
  2060. "HorizonBankSource",
  2061. {-0.07,0},
  2062. 1
  2063. },
  2064. {
  2065. "HorizonBankSource",
  2066. {-0.050000001,0},
  2067. 1
  2068. },
  2069. {}
  2070. };
  2071. };
  2072. class CoordXNumber
  2073. {
  2074. type="text";
  2075. source="coordinateX";
  2076. sourceScale=0.0099999998;
  2077. sourceLength=3;
  2078. sourceOffset=-0.5;
  2079. align="right";
  2080. scale=1;
  2081. pos[]=
  2082. {
  2083. {0.80900002,0.96100003},
  2084. 1
  2085. };
  2086. right[]=
  2087. {
  2088. {0.85900003,0.96100003},
  2089. 1
  2090. };
  2091. down[]=
  2092. {
  2093. {0.80900002,0.99599999},
  2094. 1
  2095. };
  2096. };
  2097. class CoordYNumber: CoordXNumber
  2098. {
  2099. source="coordinateY";
  2100. pos[]=
  2101. {
  2102. {0.89899999,0.96100003},
  2103. 1
  2104. };
  2105. right[]=
  2106. {
  2107. {0.949,0.96100003},
  2108. 1
  2109. };
  2110. down[]=
  2111. {
  2112. {0.89899999,0.99599999},
  2113. 1
  2114. };
  2115. };
  2116. class Time: CoordXNumber
  2117. {
  2118. source="time";
  2119. text="%X";
  2120. align="left";
  2121. pos[]=
  2122. {
  2123. {0.60500002,0.96100003},
  2124. 1
  2125. };
  2126. right[]=
  2127. {
  2128. {0.65499997,0.96100003},
  2129. 1
  2130. };
  2131. down[]=
  2132. {
  2133. {0.60500002,0.99599999},
  2134. 1
  2135. };
  2136. };
  2137. class CurrentWeapon
  2138. {
  2139. type="text";
  2140. source="weapon";
  2141. sourceScale=1;
  2142. align="left";
  2143. scale=1;
  2144. pos[]=
  2145. {
  2146. {0.97899997,0.889},
  2147. 1
  2148. };
  2149. right[]=
  2150. {
  2151. {1.029,0.889},
  2152. 1
  2153. };
  2154. down[]=
  2155. {
  2156. {0.97899997,0.92400002},
  2157. 1
  2158. };
  2159. };
  2160. class CurrentAmmo: CurrentWeapon
  2161. {
  2162. source="ammo";
  2163. align="left";
  2164. pos[]=
  2165. {
  2166. {0.97899997,0.921},
  2167. 1
  2168. };
  2169. right[]=
  2170. {
  2171. {1.029,0.921},
  2172. 1
  2173. };
  2174. down[]=
  2175. {
  2176. {0.97899997,0.95599997},
  2177. 1
  2178. };
  2179. };
  2180. class CoordXText
  2181. {
  2182. type="text";
  2183. source="static";
  2184. text="GRID:";
  2185. scale=1;
  2186. sourceScale=1;
  2187. align="right";
  2188. pos[]=
  2189. {
  2190. {0.65499997,0.96100003},
  2191. 1
  2192. };
  2193. right[]=
  2194. {
  2195. {0.70499998,0.96100003},
  2196. 1
  2197. };
  2198. down[]=
  2199. {
  2200. {0.65499997,0.99599999},
  2201. 1
  2202. };
  2203. };
  2204. class CoordYText
  2205. {
  2206. type="text";
  2207. source="static";
  2208. text="";
  2209. scale=1;
  2210. sourceScale=1;
  2211. align="right";
  2212. pos[]=
  2213. {
  2214. {0.875,0.96100003},
  2215. 1
  2216. };
  2217. right[]=
  2218. {
  2219. {0.92500001,0.96100003},
  2220. 1
  2221. };
  2222. down[]=
  2223. {
  2224. {0.875,0.99599999},
  2225. 1
  2226. };
  2227. };
  2228. class LightsGroup
  2229. {
  2230. condition="lights";
  2231. class LightsText
  2232. {
  2233. type="text";
  2234. source="static";
  2235. text="LIGHT";
  2236. align="left";
  2237. scale=1;
  2238. pos[]=
  2239. {
  2240. {0.149,0.96100003},
  2241. 1
  2242. };
  2243. right[]=
  2244. {
  2245. {0.199,0.96100003},
  2246. 1
  2247. };
  2248. down[]=
  2249. {
  2250. {0.149,0.99599999},
  2251. 1
  2252. };
  2253. };
  2254. };
  2255. class CollisionLights
  2256. {
  2257. condition="collisionlights";
  2258. class CollisionLightsText
  2259. {
  2260. type="text";
  2261. source="static";
  2262. text="COLL";
  2263. align="left";
  2264. scale=1;
  2265. pos[]=
  2266. {
  2267. {0.30899999,0.96100003},
  2268. 1
  2269. };
  2270. right[]=
  2271. {
  2272. {0.359,0.96100003},
  2273. 1
  2274. };
  2275. down[]=
  2276. {
  2277. {0.30899999,0.99599999},
  2278. 1
  2279. };
  2280. };
  2281. };
  2282. class WeaponsLocking
  2283. {
  2284. condition="missilelocking";
  2285. blinkingPattern[]={0.2,0.2};
  2286. blinkingStartsOn=1;
  2287. class Text
  2288. {
  2289. type="text";
  2290. source="static";
  2291. text="LOCKING";
  2292. align="center";
  2293. scale=1;
  2294. pos[]=
  2295. {
  2296. {0.215,0.87970102},
  2297. 1
  2298. };
  2299. right[]=
  2300. {
  2301. {0.27500001,0.87970102},
  2302. 1
  2303. };
  2304. down[]=
  2305. {
  2306. {0.215,0.928846},
  2307. 1
  2308. };
  2309. };
  2310. };
  2311. class TargetInfo
  2312. {
  2313. condition="missilelocked";
  2314. class TargetLockedText
  2315. {
  2316. type="text";
  2317. source="static";
  2318. text="TARGET ACQUIRED";
  2319. scale=1;
  2320. sourceScale=1;
  2321. align="center";
  2322. pos[]=
  2323. {
  2324. {0.19499999,0.85900003},
  2325. 1
  2326. };
  2327. right[]=
  2328. {
  2329. {0.235,0.85900003},
  2330. 1
  2331. };
  2332. down[]=
  2333. {
  2334. {0.19499999,0.88999999},
  2335. 1
  2336. };
  2337. };
  2338. class TimeOfFlightText
  2339. {
  2340. type="text";
  2341. source="static";
  2342. text="TOF:";
  2343. scale=1;
  2344. sourceScale=1;
  2345. align="left";
  2346. pos[]=
  2347. {
  2348. {
  2349. "0.127+0.13",
  2350. 0.889
  2351. },
  2352. 1
  2353. };
  2354. right[]=
  2355. {
  2356. {0.30199999,0.889},
  2357. 1
  2358. };
  2359. down[]=
  2360. {
  2361. {
  2362. "0.127+0.13",
  2363. 0.92400002
  2364. },
  2365. 1
  2366. };
  2367. };
  2368. class DistanceText
  2369. {
  2370. type="text";
  2371. source="static";
  2372. text="DISTANCE:";
  2373. scale=1;
  2374. sourceScale=1;
  2375. align="left";
  2376. pos[]=
  2377. {
  2378. {
  2379. "0.125+0.13",
  2380. 0.921
  2381. },
  2382. 1
  2383. };
  2384. right[]=
  2385. {
  2386. {0.30000001,0.921},
  2387. 1
  2388. };
  2389. down[]=
  2390. {
  2391. {
  2392. "0.125+0.13",
  2393. 0.95599997
  2394. },
  2395. 1
  2396. };
  2397. };
  2398. class TOF_source: CurrentWeapon
  2399. {
  2400. source="missileflighttime";
  2401. align="right";
  2402. pos[]=
  2403. {
  2404. {0.26899999,0.889},
  2405. 1
  2406. };
  2407. right[]=
  2408. {
  2409. {0.31900001,0.889},
  2410. 1
  2411. };
  2412. down[]=
  2413. {
  2414. {0.26899999,0.92400002},
  2415. 1
  2416. };
  2417. };
  2418. class TargetDistance: CurrentWeapon
  2419. {
  2420. source="targetDist";
  2421. sourceLength=0;
  2422. sourcePrecision=1;
  2423. sourceScale=0.001;
  2424. align="right";
  2425. pos[]=
  2426. {
  2427. {0.26899999,0.921},
  2428. 1
  2429. };
  2430. right[]=
  2431. {
  2432. {0.31900001,0.921},
  2433. 1
  2434. };
  2435. down[]=
  2436. {
  2437. {0.26899999,0.95599997},
  2438. 1
  2439. };
  2440. };
  2441. };
  2442. class IncomingMissile
  2443. {
  2444. condition="incomingmissile";
  2445. blinkingPattern[]={0.30000001,0.30000001};
  2446. blinkingStartsOn=1;
  2447. class Text
  2448. {
  2449. type="text";
  2450. source="static";
  2451. text="!INCOMING MISSILE!";
  2452. align="center";
  2453. scale=1;
  2454. pos[]=
  2455. {
  2456. {0.48500001,0.21623901},
  2457. 1
  2458. };
  2459. right[]=
  2460. {
  2461. {0.54500002,0.21623901},
  2462. 1
  2463. };
  2464. down[]=
  2465. {
  2466. {0.48500001,0.265385},
  2467. 1
  2468. };
  2469. };
  2470. };
  2471. class MGun
  2472. {
  2473. condition="-2+mgun*ImpactDistance";
  2474. class Cross
  2475. {
  2476. type="line";
  2477. width=3;
  2478. points[]=
  2479. {
  2480. {
  2481. "ImpactPoint",
  2482. {0,-0.0294872},
  2483. 1
  2484. },
  2485. {
  2486. "ImpactPoint",
  2487. {0,-0.0393162},
  2488. 1
  2489. },
  2490. {},
  2491. {
  2492. "ImpactPoint",
  2493. {0.02,-0.024},
  2494. 1
  2495. },
  2496. {
  2497. "ImpactPoint",
  2498. {0.025,-0.030999999},
  2499. 1
  2500. },
  2501. {},
  2502. {
  2503. "ImpactPoint",
  2504. {0,-0.0020000001},
  2505. 1
  2506. },
  2507. {
  2508. "ImpactPoint",
  2509. {0,0.0020000001},
  2510. 1
  2511. },
  2512. {},
  2513. {
  2514. "ImpactPoint",
  2515. {-0.0020000001,0},
  2516. 1
  2517. },
  2518. {
  2519. "ImpactPoint",
  2520. {0.0020000001,0},
  2521. 1
  2522. },
  2523. {}
  2524. };
  2525. };
  2526. class Circle
  2527. {
  2528. type="line";
  2529. width=3;
  2530. points[]=
  2531. {
  2532. {
  2533. "ImpactPoint",
  2534. {0,-0.0275214},
  2535. 1
  2536. },
  2537. {
  2538. "ImpactPoint",
  2539. {0,-0.0344017},
  2540. 1
  2541. },
  2542. {
  2543. "MissileFlightTimeRot1",
  2544. {0,0.035},
  2545. 1,
  2546. "ImpactPoint",
  2547. 1
  2548. },
  2549. {
  2550. "MissileFlightTimeRot2",
  2551. {0,0.035},
  2552. 1,
  2553. "ImpactPoint",
  2554. 1
  2555. },
  2556. {
  2557. "MissileFlightTimeRot3",
  2558. {0,0.035},
  2559. 1,
  2560. "ImpactPoint",
  2561. 1
  2562. },
  2563. {
  2564. "MissileFlightTimeRot4",
  2565. {0,0.035},
  2566. 1,
  2567. "ImpactPoint",
  2568. 1
  2569. },
  2570. {
  2571. "MissileFlightTimeRot5",
  2572. {0,0.035},
  2573. 1,
  2574. "ImpactPoint",
  2575. 1
  2576. },
  2577. {
  2578. "MissileFlightTimeRot6",
  2579. {0,0.035},
  2580. 1,
  2581. "ImpactPoint",
  2582. 1
  2583. },
  2584. {
  2585. "MissileFlightTimeRot7",
  2586. {0,0.035},
  2587. 1,
  2588. "ImpactPoint",
  2589. 1
  2590. },
  2591. {
  2592. "MissileFlightTimeRot8",
  2593. {0,0.035},
  2594. 1,
  2595. "ImpactPoint",
  2596. 1
  2597. },
  2598. {
  2599. "MissileFlightTimeRot9",
  2600. {0,0.035},
  2601. 1,
  2602. "ImpactPoint",
  2603. 1
  2604. },
  2605. {
  2606. "MissileFlightTimeRot10",
  2607. {0,0.035},
  2608. 1,
  2609. "ImpactPoint",
  2610. 1
  2611. },
  2612. {
  2613. "MissileFlightTimeRot11",
  2614. {0,0.035},
  2615. 1,
  2616. "ImpactPoint",
  2617. 1
  2618. },
  2619. {
  2620. "MissileFlightTimeRot12",
  2621. {0,0.035},
  2622. 1,
  2623. "ImpactPoint",
  2624. 1
  2625. },
  2626. {
  2627. "MissileFlightTimeRot13",
  2628. {0,0.035},
  2629. 1,
  2630. "ImpactPoint",
  2631. 1
  2632. },
  2633. {
  2634. "MissileFlightTimeRot14",
  2635. {0,0.035},
  2636. 1,
  2637. "ImpactPoint",
  2638. 1
  2639. },
  2640. {
  2641. "MissileFlightTimeRot15",
  2642. {0,0.035},
  2643. 1,
  2644. "ImpactPoint",
  2645. 1
  2646. },
  2647. {
  2648. "MissileFlightTimeRot16",
  2649. {0,0.035},
  2650. 1,
  2651. "ImpactPoint",
  2652. 1
  2653. },
  2654. {
  2655. "MissileFlightTimeRot17",
  2656. {0,0.035},
  2657. 1,
  2658. "ImpactPoint",
  2659. 1
  2660. },
  2661. {
  2662. "MissileFlightTimeRot18",
  2663. {0,0.035},
  2664. 1,
  2665. "ImpactPoint",
  2666. 1
  2667. },
  2668. {
  2669. "MissileFlightTimeRot19",
  2670. {0,0.035},
  2671. 1,
  2672. "ImpactPoint",
  2673. 1
  2674. },
  2675. {
  2676. "MissileFlightTimeRot20",
  2677. {0,0.035},
  2678. 1,
  2679. "ImpactPoint",
  2680. 1
  2681. },
  2682. {
  2683. "MissileFlightTimeRot20",
  2684. {0,0.028000001},
  2685. 1,
  2686. "ImpactPoint",
  2687. 1
  2688. }
  2689. };
  2690. };
  2691. class Circle_Min_Range
  2692. {
  2693. type="line";
  2694. width=3;
  2695. points[]=
  2696. {
  2697. {
  2698. "ImpactPoint",
  2699. {0,-0.0294872},
  2700. 1
  2701. },
  2702. {
  2703. "ImpactPoint",
  2704. {0.0052080001,-0.029038999},
  2705. 1
  2706. },
  2707. {
  2708. "ImpactPoint",
  2709. {0.01026,-0.0277091},
  2710. 1
  2711. },
  2712. {
  2713. "ImpactPoint",
  2714. {0.015,-0.0255359},
  2715. 1
  2716. },
  2717. {
  2718. "ImpactPoint",
  2719. {0.019284001,-0.022587201},
  2720. 1
  2721. },
  2722. {
  2723. "ImpactPoint",
  2724. {0.022980001,-0.0189544},
  2725. 1
  2726. },
  2727. {
  2728. "ImpactPoint",
  2729. {0.025979999,-0.0147436},
  2730. 1
  2731. },
  2732. {
  2733. "ImpactPoint",
  2734. {0.028191,-0.0100846},
  2735. 1
  2736. },
  2737. {
  2738. "ImpactPoint",
  2739. {0.029544,-0.0051189698},
  2740. 1
  2741. },
  2742. {
  2743. "ImpactPoint",
  2744. {0.029999999,0},
  2745. 1
  2746. },
  2747. {
  2748. "ImpactPoint",
  2749. {0.029544,0.0051189698},
  2750. 1
  2751. },
  2752. {
  2753. "ImpactPoint",
  2754. {0.028191,0.0100846},
  2755. 1
  2756. },
  2757. {
  2758. "ImpactPoint",
  2759. {0.025979999,0.0147436},
  2760. 1
  2761. },
  2762. {
  2763. "ImpactPoint",
  2764. {0.022980001,0.0189544},
  2765. 1
  2766. },
  2767. {
  2768. "ImpactPoint",
  2769. {0.019284001,0.022587201},
  2770. 1
  2771. },
  2772. {
  2773. "ImpactPoint",
  2774. {0.015,0.0255359},
  2775. 1
  2776. },
  2777. {
  2778. "ImpactPoint",
  2779. {0.01026,0.0277091},
  2780. 1
  2781. },
  2782. {
  2783. "ImpactPoint",
  2784. {0.0052080001,0.029038999},
  2785. 1
  2786. },
  2787. {
  2788. "ImpactPoint",
  2789. {0,0.0294872},
  2790. 1
  2791. },
  2792. {
  2793. "ImpactPoint",
  2794. {-0.0052080001,0.029038999},
  2795. 1
  2796. },
  2797. {
  2798. "ImpactPoint",
  2799. {-0.01026,0.0277091},
  2800. 1
  2801. },
  2802. {
  2803. "ImpactPoint",
  2804. {-0.015,0.0255359},
  2805. 1
  2806. },
  2807. {
  2808. "ImpactPoint",
  2809. {-0.019284001,0.022587201},
  2810. 1
  2811. },
  2812. {
  2813. "ImpactPoint",
  2814. {-0.022980001,0.0189544},
  2815. 1
  2816. },
  2817. {
  2818. "ImpactPoint",
  2819. {-0.025979999,0.0147436},
  2820. 1
  2821. },
  2822. {
  2823. "ImpactPoint",
  2824. {-0.028191,0.0100846},
  2825. 1
  2826. },
  2827. {
  2828. "ImpactPoint",
  2829. {-0.029544,0.0051189698},
  2830. 1
  2831. },
  2832. {
  2833. "ImpactPoint",
  2834. {-0.029999999,0},
  2835. 1
  2836. },
  2837. {
  2838. "ImpactPoint",
  2839. {-0.029544,-0.0051189698},
  2840. 1
  2841. },
  2842. {
  2843. "ImpactPoint",
  2844. {-0.028191,-0.0100846},
  2845. 1
  2846. },
  2847. {
  2848. "ImpactPoint",
  2849. {-0.025979999,-0.0147436},
  2850. 1
  2851. },
  2852. {
  2853. "ImpactPoint",
  2854. {-0.022980001,-0.0189544},
  2855. 1
  2856. },
  2857. {
  2858. "ImpactPoint",
  2859. {-0.019284001,-0.022587201},
  2860. 1
  2861. },
  2862. {
  2863. "ImpactPoint",
  2864. {-0.015,-0.0255359},
  2865. 1
  2866. },
  2867. {
  2868. "ImpactPoint",
  2869. {-0.01026,-0.0277091},
  2870. 1
  2871. },
  2872. {
  2873. "ImpactPoint",
  2874. {-0.0052080001,-0.029038999},
  2875. 1
  2876. },
  2877. {
  2878. "ImpactPoint",
  2879. {0,-0.0294872},
  2880. 1
  2881. }
  2882. };
  2883. };
  2884. class Distance
  2885. {
  2886. type="text";
  2887. source="ImpactDistance";
  2888. sourceScale=0.001;
  2889. sourcePrecision=1;
  2890. max=15;
  2891. align="center";
  2892. scale=1;
  2893. pos[]=
  2894. {
  2895. "ImpactPoint",
  2896. {-0.0020000001,-0.079999998},
  2897. 1
  2898. };
  2899. right[]=
  2900. {
  2901. "ImpactPoint",
  2902. {0.045000002,-0.079999998},
  2903. 1
  2904. };
  2905. down[]=
  2906. {
  2907. "ImpactPoint",
  2908. {-0.0020000001,-0.039999999},
  2909. 1
  2910. };
  2911. };
  2912. };
  2913. class Rockets
  2914. {
  2915. condition="-2+rocket*ImpactDistance";
  2916. class Cross
  2917. {
  2918. type="line";
  2919. width=3;
  2920. points[]=
  2921. {
  2922. {
  2923. "ImpactPoint",
  2924. {0,-0.0294872},
  2925. 1
  2926. },
  2927. {
  2928. "ImpactPoint",
  2929. {0,-0.0393162},
  2930. 1
  2931. },
  2932. {},
  2933. {
  2934. "ImpactPoint",
  2935. {0.02,-0.024},
  2936. 1
  2937. },
  2938. {
  2939. "ImpactPoint",
  2940. {0.025,-0.030999999},
  2941. 1
  2942. },
  2943. {},
  2944. {
  2945. "ImpactPoint",
  2946. {0,-0.0020000001},
  2947. 1
  2948. },
  2949. {
  2950. "ImpactPoint",
  2951. {0,0.0020000001},
  2952. 1
  2953. },
  2954. {},
  2955. {
  2956. "ImpactPoint",
  2957. {-0.0020000001,0},
  2958. 1
  2959. },
  2960. {
  2961. "ImpactPoint",
  2962. {0.0020000001,0},
  2963. 1
  2964. },
  2965. {}
  2966. };
  2967. };
  2968. class Circle
  2969. {
  2970. type="line";
  2971. width=3;
  2972. points[]=
  2973. {
  2974. {
  2975. "ImpactPoint",
  2976. {0,-0.0275214},
  2977. 1
  2978. },
  2979. {
  2980. "ImpactPoint",
  2981. {0,-0.0344017},
  2982. 1
  2983. },
  2984. {
  2985. "MissileFlightTimeRot1",
  2986. {0,0.035},
  2987. 1,
  2988. "ImpactPoint",
  2989. 1
  2990. },
  2991. {
  2992. "MissileFlightTimeRot2",
  2993. {0,0.035},
  2994. 1,
  2995. "ImpactPoint",
  2996. 1
  2997. },
  2998. {
  2999. "MissileFlightTimeRot3",
  3000. {0,0.035},
  3001. 1,
  3002. "ImpactPoint",
  3003. 1
  3004. },
  3005. {
  3006. "MissileFlightTimeRot4",
  3007. {0,0.035},
  3008. 1,
  3009. "ImpactPoint",
  3010. 1
  3011. },
  3012. {
  3013. "MissileFlightTimeRot5",
  3014. {0,0.035},
  3015. 1,
  3016. "ImpactPoint",
  3017. 1
  3018. },
  3019. {
  3020. "MissileFlightTimeRot6",
  3021. {0,0.035},
  3022. 1,
  3023. "ImpactPoint",
  3024. 1
  3025. },
  3026. {
  3027. "MissileFlightTimeRot7",
  3028. {0,0.035},
  3029. 1,
  3030. "ImpactPoint",
  3031. 1
  3032. },
  3033. {
  3034. "MissileFlightTimeRot8",
  3035. {0,0.035},
  3036. 1,
  3037. "ImpactPoint",
  3038. 1
  3039. },
  3040. {
  3041. "MissileFlightTimeRot9",
  3042. {0,0.035},
  3043. 1,
  3044. "ImpactPoint",
  3045. 1
  3046. },
  3047. {
  3048. "MissileFlightTimeRot10",
  3049. {0,0.035},
  3050. 1,
  3051. "ImpactPoint",
  3052. 1
  3053. },
  3054. {
  3055. "MissileFlightTimeRot11",
  3056. {0,0.035},
  3057. 1,
  3058. "ImpactPoint",
  3059. 1
  3060. },
  3061. {
  3062. "MissileFlightTimeRot12",
  3063. {0,0.035},
  3064. 1,
  3065. "ImpactPoint",
  3066. 1
  3067. },
  3068. {
  3069. "MissileFlightTimeRot13",
  3070. {0,0.035},
  3071. 1,
  3072. "ImpactPoint",
  3073. 1
  3074. },
  3075. {
  3076. "MissileFlightTimeRot14",
  3077. {0,0.035},
  3078. 1,
  3079. "ImpactPoint",
  3080. 1
  3081. },
  3082. {
  3083. "MissileFlightTimeRot15",
  3084. {0,0.035},
  3085. 1,
  3086. "ImpactPoint",
  3087. 1
  3088. },
  3089. {
  3090. "MissileFlightTimeRot16",
  3091. {0,0.035},
  3092. 1,
  3093. "ImpactPoint",
  3094. 1
  3095. },
  3096. {
  3097. "MissileFlightTimeRot17",
  3098. {0,0.035},
  3099. 1,
  3100. "ImpactPoint",
  3101. 1
  3102. },
  3103. {
  3104. "MissileFlightTimeRot18",
  3105. {0,0.035},
  3106. 1,
  3107. "ImpactPoint",
  3108. 1
  3109. },
  3110. {
  3111. "MissileFlightTimeRot19",
  3112. {0,0.035},
  3113. 1,
  3114. "ImpactPoint",
  3115. 1
  3116. },
  3117. {
  3118. "MissileFlightTimeRot20",
  3119. {0,0.035},
  3120. 1,
  3121. "ImpactPoint",
  3122. 1
  3123. },
  3124. {
  3125. "MissileFlightTimeRot20",
  3126. {0,0.028000001},
  3127. 1,
  3128. "ImpactPoint",
  3129. 1
  3130. }
  3131. };
  3132. };
  3133. class Circle_Min_Range
  3134. {
  3135. type="line";
  3136. width=3;
  3137. points[]=
  3138. {
  3139. {
  3140. "ImpactPoint",
  3141. {0,-0.0294872},
  3142. 1
  3143. },
  3144. {
  3145. "ImpactPoint",
  3146. {0.0052080001,-0.029038999},
  3147. 1
  3148. },
  3149. {
  3150. "ImpactPoint",
  3151. {0.01026,-0.0277091},
  3152. 1
  3153. },
  3154. {
  3155. "ImpactPoint",
  3156. {0.015,-0.0255359},
  3157. 1
  3158. },
  3159. {
  3160. "ImpactPoint",
  3161. {0.019284001,-0.022587201},
  3162. 1
  3163. },
  3164. {
  3165. "ImpactPoint",
  3166. {0.022980001,-0.0189544},
  3167. 1
  3168. },
  3169. {
  3170. "ImpactPoint",
  3171. {0.025979999,-0.0147436},
  3172. 1
  3173. },
  3174. {
  3175. "ImpactPoint",
  3176. {0.028191,-0.0100846},
  3177. 1
  3178. },
  3179. {
  3180. "ImpactPoint",
  3181. {0.029544,-0.0051189698},
  3182. 1
  3183. },
  3184. {
  3185. "ImpactPoint",
  3186. {0.029999999,0},
  3187. 1
  3188. },
  3189. {
  3190. "ImpactPoint",
  3191. {0.029544,0.0051189698},
  3192. 1
  3193. },
  3194. {
  3195. "ImpactPoint",
  3196. {0.028191,0.0100846},
  3197. 1
  3198. },
  3199. {
  3200. "ImpactPoint",
  3201. {0.025979999,0.0147436},
  3202. 1
  3203. },
  3204. {
  3205. "ImpactPoint",
  3206. {0.022980001,0.0189544},
  3207. 1
  3208. },
  3209. {
  3210. "ImpactPoint",
  3211. {0.019284001,0.022587201},
  3212. 1
  3213. },
  3214. {
  3215. "ImpactPoint",
  3216. {0.015,0.0255359},
  3217. 1
  3218. },
  3219. {
  3220. "ImpactPoint",
  3221. {0.01026,0.0277091},
  3222. 1
  3223. },
  3224. {
  3225. "ImpactPoint",
  3226. {0.0052080001,0.029038999},
  3227. 1
  3228. },
  3229. {
  3230. "ImpactPoint",
  3231. {0,0.0294872},
  3232. 1
  3233. },
  3234. {
  3235. "ImpactPoint",
  3236. {-0.0052080001,0.029038999},
  3237. 1
  3238. },
  3239. {
  3240. "ImpactPoint",
  3241. {-0.01026,0.0277091},
  3242. 1
  3243. },
  3244. {
  3245. "ImpactPoint",
  3246. {-0.015,0.0255359},
  3247. 1
  3248. },
  3249. {
  3250. "ImpactPoint",
  3251. {-0.019284001,0.022587201},
  3252. 1
  3253. },
  3254. {
  3255. "ImpactPoint",
  3256. {-0.022980001,0.0189544},
  3257. 1
  3258. },
  3259. {
  3260. "ImpactPoint",
  3261. {-0.025979999,0.0147436},
  3262. 1
  3263. },
  3264. {
  3265. "ImpactPoint",
  3266. {-0.028191,0.0100846},
  3267. 1
  3268. },
  3269. {
  3270. "ImpactPoint",
  3271. {-0.029544,0.0051189698},
  3272. 1
  3273. },
  3274. {
  3275. "ImpactPoint",
  3276. {-0.029999999,0},
  3277. 1
  3278. },
  3279. {
  3280. "ImpactPoint",
  3281. {-0.029544,-0.0051189698},
  3282. 1
  3283. },
  3284. {
  3285. "ImpactPoint",
  3286. {-0.028191,-0.0100846},
  3287. 1
  3288. },
  3289. {
  3290. "ImpactPoint",
  3291. {-0.025979999,-0.0147436},
  3292. 1
  3293. },
  3294. {
  3295. "ImpactPoint",
  3296. {-0.022980001,-0.0189544},
  3297. 1
  3298. },
  3299. {
  3300. "ImpactPoint",
  3301. {-0.019284001,-0.022587201},
  3302. 1
  3303. },
  3304. {
  3305. "ImpactPoint",
  3306. {-0.015,-0.0255359},
  3307. 1
  3308. },
  3309. {
  3310. "ImpactPoint",
  3311. {-0.01026,-0.0277091},
  3312. 1
  3313. },
  3314. {
  3315. "ImpactPoint",
  3316. {-0.0052080001,-0.029038999},
  3317. 1
  3318. },
  3319. {
  3320. "ImpactPoint",
  3321. {0,-0.0294872},
  3322. 1
  3323. }
  3324. };
  3325. };
  3326. class Distance
  3327. {
  3328. type="text";
  3329. source="ImpactDistance";
  3330. sourceScale=0.001;
  3331. sourcePrecision=1;
  3332. max=15;
  3333. align="center";
  3334. scale=1;
  3335. pos[]=
  3336. {
  3337. "ImpactPoint",
  3338. {-0.0020000001,-0.079999998},
  3339. 1
  3340. };
  3341. right[]=
  3342. {
  3343. "ImpactPoint",
  3344. {0.045000002,-0.079999998},
  3345. 1
  3346. };
  3347. down[]=
  3348. {
  3349. "ImpactPoint",
  3350. {-0.0020000001,-0.039999999},
  3351. 1
  3352. };
  3353. };
  3354. };
  3355. class BombCrosshairGroup
  3356. {
  3357. type="group";
  3358. condition="bomb";
  3359. class BombCrosshair
  3360. {
  3361. type="line";
  3362. width=4;
  3363. points[]=
  3364. {
  3365. {
  3366. "ImpactPoint",
  3367. {0,-0.0982906},
  3368. 1
  3369. },
  3370. {
  3371. "ImpactPoint",
  3372. {0.01736,-0.096796602},
  3373. 1
  3374. },
  3375. {
  3376. "ImpactPoint",
  3377. {0.034200002,-0.0923637},
  3378. 1
  3379. },
  3380. {
  3381. "ImpactPoint",
  3382. {0.050000001,-0.085119702},
  3383. 1
  3384. },
  3385. {
  3386. "ImpactPoint",
  3387. {0.064280003,-0.075290598},
  3388. 1
  3389. },
  3390. {
  3391. "ImpactPoint",
  3392. {0.0766,-0.063181199},
  3393. 1
  3394. },
  3395. {
  3396. "ImpactPoint",
  3397. {0.086599998,-0.0491453},
  3398. 1
  3399. },
  3400. {
  3401. "ImpactPoint",
  3402. {0.093970001,-0.033615399},
  3403. 1
  3404. },
  3405. {
  3406. "ImpactPoint",
  3407. {0.098480001,-0.0170632},
  3408. 1
  3409. },
  3410. {
  3411. "ImpactPoint",
  3412. {0.1,0},
  3413. 1
  3414. },
  3415. {
  3416. "ImpactPoint",
  3417. {0.098480001,0.0170632},
  3418. 1
  3419. },
  3420. {
  3421. "ImpactPoint",
  3422. {0.093970001,0.033615399},
  3423. 1
  3424. },
  3425. {
  3426. "ImpactPoint",
  3427. {0.086599998,0.0491453},
  3428. 1
  3429. },
  3430. {
  3431. "ImpactPoint",
  3432. {0.0766,0.063181199},
  3433. 1
  3434. },
  3435. {
  3436. "ImpactPoint",
  3437. {0.064280003,0.075290598},
  3438. 1
  3439. },
  3440. {
  3441. "ImpactPoint",
  3442. {0.050000001,0.085119702},
  3443. 1
  3444. },
  3445. {
  3446. "ImpactPoint",
  3447. {0.034200002,0.0923637},
  3448. 1
  3449. },
  3450. {
  3451. "ImpactPoint",
  3452. {0.01736,0.096796602},
  3453. 1
  3454. },
  3455. {
  3456. "ImpactPoint",
  3457. {0,0.0982906},
  3458. 1
  3459. },
  3460. {
  3461. "ImpactPoint",
  3462. {-0.01736,0.096796602},
  3463. 1
  3464. },
  3465. {
  3466. "ImpactPoint",
  3467. {-0.034200002,0.0923637},
  3468. 1
  3469. },
  3470. {
  3471. "ImpactPoint",
  3472. {-0.050000001,0.085119702},
  3473. 1
  3474. },
  3475. {
  3476. "ImpactPoint",
  3477. {-0.064280003,0.075290598},
  3478. 1
  3479. },
  3480. {
  3481. "ImpactPoint",
  3482. {-0.0766,0.063181199},
  3483. 1
  3484. },
  3485. {
  3486. "ImpactPoint",
  3487. {-0.086599998,0.0491453},
  3488. 1
  3489. },
  3490. {
  3491. "ImpactPoint",
  3492. {-0.093970001,0.033615399},
  3493. 1
  3494. },
  3495. {
  3496. "ImpactPoint",
  3497. {-0.098480001,0.0170632},
  3498. 1
  3499. },
  3500. {
  3501. "ImpactPoint",
  3502. {-0.1,0},
  3503. 1
  3504. },
  3505. {
  3506. "ImpactPoint",
  3507. {-0.098480001,-0.0170632},
  3508. 1
  3509. },
  3510. {
  3511. "ImpactPoint",
  3512. {-0.093970001,-0.033615399},
  3513. 1
  3514. },
  3515. {
  3516. "ImpactPoint",
  3517. {-0.086599998,-0.0491453},
  3518. 1
  3519. },
  3520. {
  3521. "ImpactPoint",
  3522. {-0.0766,-0.063181199},
  3523. 1
  3524. },
  3525. {
  3526. "ImpactPoint",
  3527. {-0.064280003,-0.075290598},
  3528. 1
  3529. },
  3530. {
  3531. "ImpactPoint",
  3532. {-0.050000001,-0.085119702},
  3533. 1
  3534. },
  3535. {
  3536. "ImpactPoint",
  3537. {-0.034200002,-0.0923637},
  3538. 1
  3539. },
  3540. {
  3541. "ImpactPoint",
  3542. {-0.01736,-0.096796602},
  3543. 1
  3544. },
  3545. {
  3546. "ImpactPoint",
  3547. {0,-0.0982906},
  3548. 1
  3549. },
  3550. {},
  3551. {
  3552. "ImpactPoint",
  3553. 1,
  3554. "Limit0109",
  3555. 1,
  3556. {0,-0.0196581},
  3557. 1
  3558. },
  3559. {
  3560. "ImpactPoint",
  3561. 1,
  3562. "Limit0109",
  3563. 1,
  3564. {0.014,-0.0137607},
  3565. 1
  3566. },
  3567. {
  3568. "ImpactPoint",
  3569. 1,
  3570. "Limit0109",
  3571. 1,
  3572. {
  3573. "+ 0.02",
  3574. 0
  3575. },
  3576. 1
  3577. },
  3578. {
  3579. "ImpactPoint",
  3580. 1,
  3581. "Limit0109",
  3582. 1,
  3583. {0.014,0.0137607},
  3584. 1
  3585. },
  3586. {
  3587. "ImpactPoint",
  3588. 1,
  3589. "Limit0109",
  3590. 1,
  3591. {0,0.0196581},
  3592. 1
  3593. },
  3594. {
  3595. "ImpactPoint",
  3596. 1,
  3597. "Limit0109",
  3598. 1,
  3599. {-0.014,0.0137607},
  3600. 1
  3601. },
  3602. {
  3603. "ImpactPoint",
  3604. 1,
  3605. "Limit0109",
  3606. 1,
  3607. {
  3608. "- 0.02",
  3609. 0
  3610. },
  3611. 1
  3612. },
  3613. {
  3614. "ImpactPoint",
  3615. 1,
  3616. "Limit0109",
  3617. 1,
  3618. {-0.014,-0.0137607},
  3619. 1
  3620. },
  3621. {
  3622. "ImpactPoint",
  3623. 1,
  3624. "Limit0109",
  3625. 1,
  3626. {0,-0.0196581},
  3627. 1
  3628. },
  3629. {},
  3630. {
  3631. "VelocityVector",
  3632. 0.001,
  3633. "ImpactPoint",
  3634. 1,
  3635. "Limit0109",
  3636. 1,
  3637. {0,0},
  3638. 1
  3639. },
  3640. {
  3641. "VelocityVector",
  3642. 1,
  3643. "Limit0109",
  3644. 1,
  3645. {0,0},
  3646. 1
  3647. }
  3648. };
  3649. };
  3650. class Distance
  3651. {
  3652. type="text";
  3653. source="ImpactDistance";
  3654. sourceScale=0.001;
  3655. sourcePrecision=1;
  3656. max=15;
  3657. align="center";
  3658. scale=1;
  3659. pos[]=
  3660. {
  3661. "ImpactPoint",
  3662. {-0.0020000001,0.11},
  3663. 1
  3664. };
  3665. right[]=
  3666. {
  3667. "ImpactPoint",
  3668. {0.045000002,0.11},
  3669. 1
  3670. };
  3671. down[]=
  3672. {
  3673. "ImpactPoint",
  3674. {-0.0020000001,0.15000001},
  3675. 1
  3676. };
  3677. };
  3678. };
  3679. class WP
  3680. {
  3681. condition="wpvalid";
  3682. class WPdist
  3683. {
  3684. type="text";
  3685. source="wpdist";
  3686. sourceScale=0.001;
  3687. sourcePrecision=1;
  3688. align="left";
  3689. scale=1;
  3690. pos[]=
  3691. {
  3692. {0.935,0.79713702},
  3693. 1
  3694. };
  3695. right[]=
  3696. {
  3697. {0.97500002,0.79713702},
  3698. 1
  3699. };
  3700. down[]=
  3701. {
  3702. {0.935,0.83448702},
  3703. 1
  3704. };
  3705. };
  3706. class WPstatic
  3707. {
  3708. type="text";
  3709. source="static";
  3710. text=">";
  3711. align="center";
  3712. scale=2;
  3713. pos[]=
  3714. {
  3715. {0.94999999,0.79713702},
  3716. 1
  3717. };
  3718. right[]=
  3719. {
  3720. {0.97000003,0.79713702},
  3721. 1
  3722. };
  3723. down[]=
  3724. {
  3725. {0.94999999,0.83448702},
  3726. 1
  3727. };
  3728. };
  3729. class WPIndex
  3730. {
  3731. type="text";
  3732. source="wpIndex";
  3733. sourceScale=1;
  3734. align="right";
  3735. scale=1;
  3736. pos[]=
  3737. {
  3738. {0.95999998,0.79713702},
  3739. 1
  3740. };
  3741. right[]=
  3742. {
  3743. {1,0.79713702},
  3744. 1
  3745. };
  3746. down[]=
  3747. {
  3748. {0.95999998,0.83448702},
  3749. 1
  3750. };
  3751. };
  3752. class WP
  3753. {
  3754. width=1;
  3755. type="line";
  3756. points[]=
  3757. {
  3758. {
  3759. "wppoint",
  3760. 1,
  3761. {
  3762. "HorizonBankRotFull",
  3763. 0.015,
  3764. -0.035
  3765. },
  3766. 1
  3767. },
  3768. {
  3769. "wppoint",
  3770. 1,
  3771. {
  3772. "HorizonBankRotFull",
  3773. 0,
  3774. 0
  3775. },
  3776. 1
  3777. },
  3778. {
  3779. "wppoint",
  3780. 1,
  3781. {
  3782. "HorizonBankRotFull",
  3783. -0.015,
  3784. -0.035
  3785. },
  3786. 1
  3787. }
  3788. };
  3789. };
  3790. };
  3791. class RadarBoxes
  3792. {
  3793. type="radartoview";
  3794. pos0[]={0.5,0.5};
  3795. pos10[]={0.73400003,0.73000002};
  3796. width=2;
  3797. points[]=
  3798. {
  3799. {
  3800. {-0.0020000001,-0.0019658101},
  3801. 1
  3802. },
  3803. {
  3804. {0.0020000001,-0.0019658101},
  3805. 1
  3806. },
  3807. {
  3808. {0.0020000001,0.0019658101},
  3809. 1
  3810. },
  3811. {
  3812. {-0.0020000001,0.0019658101},
  3813. 1
  3814. },
  3815. {
  3816. {-0.0020000001,-0.0019658101},
  3817. 1
  3818. }
  3819. };
  3820. };
  3821. class TargetDiamond
  3822. {
  3823. class shape
  3824. {
  3825. type="line";
  3826. width=4;
  3827. points[]=
  3828. {
  3829. {
  3830. "Target",
  3831. 1,
  3832. "Limit0109",
  3833. 1,
  3834. {0.02,0.0196581},
  3835. 1
  3836. },
  3837. {
  3838. "Target",
  3839. 1,
  3840. "Limit0109",
  3841. 1,
  3842. {-0.02,0.0196581},
  3843. 1
  3844. },
  3845. {
  3846. "Target",
  3847. 1,
  3848. "Limit0109",
  3849. 1,
  3850. {-0.02,-0.0196581},
  3851. 1
  3852. },
  3853. {
  3854. "Target",
  3855. 1,
  3856. "Limit0109",
  3857. 1,
  3858. {0.02,-0.0196581},
  3859. 1
  3860. },
  3861. {
  3862. "Target",
  3863. 1,
  3864. "Limit0109",
  3865. 1,
  3866. {0.02,0.0196581},
  3867. 1
  3868. }
  3869. };
  3870. };
  3871. };
  3872. class TargetLocked
  3873. {
  3874. condition="missilelocked";
  3875. class shape
  3876. {
  3877. type="line";
  3878. width=4;
  3879. points[]=
  3880. {
  3881. {
  3882. "Target",
  3883. 1,
  3884. "Limit0109",
  3885. 1,
  3886. {0,-0.0294872},
  3887. 1
  3888. },
  3889. {
  3890. "Target",
  3891. 1,
  3892. "Limit0109",
  3893. 1,
  3894. {0.029999999,0},
  3895. 1
  3896. },
  3897. {
  3898. "Target",
  3899. 1,
  3900. "Limit0109",
  3901. 1,
  3902. {0,0.0294872},
  3903. 1
  3904. },
  3905. {
  3906. "Target",
  3907. 1,
  3908. "Limit0109",
  3909. 1,
  3910. {-0.029999999,0},
  3911. 1
  3912. },
  3913. {
  3914. "Target",
  3915. 1,
  3916. "Limit0109",
  3917. 1,
  3918. {0,-0.0294872},
  3919. 1
  3920. }
  3921. };
  3922. };
  3923. };
  3924. };
  3925. };
  3926. class HMD_CMPilot: AirplaneHUD
  3927. {
  3928. turret[]={-1};
  3929. class Draw
  3930. {
  3931. alpha="user3";
  3932. color[]=
  3933. {
  3934. "user0",
  3935. "user1",
  3936. "user2"
  3937. };
  3938. condition="(1 - (cameraHeadingDiffY<=-19) + (abs(cameraHeadingDiffX)>=24))*on";
  3939. class CMName
  3940. {
  3941. type="text";
  3942. source="cmweapon";
  3943. sourceScale=1;
  3944. align="left";
  3945. scale=1;
  3946. pos[]=
  3947. {
  3948. {0.86900002,0.84899998},
  3949. 1
  3950. };
  3951. right[]=
  3952. {
  3953. {0.91900003,0.84899998},
  3954. 1
  3955. };
  3956. down[]=
  3957. {
  3958. {0.86900002,0.884},
  3959. 1
  3960. };
  3961. };
  3962. class CMCount
  3963. {
  3964. type="text";
  3965. source="cmammo";
  3966. sourceScale=1;
  3967. align="left";
  3968. scale=1;
  3969. pos[]=
  3970. {
  3971. {0.97899997,0.84899998},
  3972. 1
  3973. };
  3974. right[]=
  3975. {
  3976. {1.029,0.84899998},
  3977. 1
  3978. };
  3979. down[]=
  3980. {
  3981. {0.97899997,0.884},
  3982. 1
  3983. };
  3984. };
  3985. };
  3986. };
  3987. };