mfd.hpp 160 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841
  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.2;
  12. color[]={0.15000001,1,0.15000001,1};
  13. enableParallax=1;
  14. class Bones
  15. {
  16. class PlaneOrientation
  17. {
  18. type="fixed";
  19. pos[]={0.498,0.38};
  20. };
  21. class WeaponAim
  22. {
  23. type="vector";
  24. source="weapon";
  25. pos0[]={0.498,0.38};
  26. pos10[]={1.166,1.215};
  27. };
  28. class Target
  29. {
  30. type="vector";
  31. source="target";
  32. pos0[]={0.498,0.38};
  33. pos10[]={1.166,1.215};
  34. };
  35. class TargetingPodDir
  36. {
  37. source="pilotcamera";
  38. type="vector";
  39. pos0[]={0.498,0.38};
  40. pos10[]={1.166,1.215};
  41. };
  42. class TargetingPodTarget
  43. {
  44. source="pilotcameratarget";
  45. type="vector";
  46. pos0[]={0.498,0.405};
  47. pos10[]={1.166,1.215};
  48. };
  49. class ImpactPoint
  50. {
  51. type="vector";
  52. source="ImpactPoint";
  53. pos0[]={0.5,0.38};
  54. pos10[]={1.168,1.215};
  55. };
  56. class NormalizeBombCircle
  57. {
  58. type="normalizedorsmaller";
  59. limit=0.079999998;
  60. aspectRatio=1.25;
  61. };
  62. class Velocity
  63. {
  64. type="vector";
  65. source="velocity";
  66. pos0[]={0.498,0.38};
  67. pos10[]={1.166,1.215};
  68. };
  69. class Level0
  70. {
  71. type="horizon";
  72. pos0[]={0.5,0.38};
  73. pos10[]={1.168,1.215};
  74. angle=0;
  75. };
  76. class Limit0109
  77. {
  78. type="limit";
  79. limits[]={0.1,0.1,0.89999998,0.89999998};
  80. };
  81. class LimitWaypoint
  82. {
  83. type="limit";
  84. limits[]={0.2,0.97000003,0.80000001,0.97000003};
  85. };
  86. class WPPoint
  87. {
  88. type="vector";
  89. source="WPPoint";
  90. pos0[]={0.5,0.38};
  91. pos10[]={1.168,1.215};
  92. };
  93. class VerticalSpeed
  94. {
  95. type="linear";
  96. source="vspeed";
  97. sourceScale=1;
  98. min=-100;
  99. max=100;
  100. minPos[]={0,0.15000001};
  101. maxPos[]={0,-0.15000001};
  102. };
  103. class HorizonIndicatorBank
  104. {
  105. type="rotational";
  106. source="horizonBank";
  107. sourceScale=1;
  108. center[]={0.064999998,0.12};
  109. min=-3.1415927;
  110. max=3.1415927;
  111. minAngle=0;
  112. maxAngle=360;
  113. aspectRatio=1.25;
  114. };
  115. class HorizonIndicatorDive: HorizonIndicatorBank
  116. {
  117. source="horizonDive";
  118. min=-1.5707999;
  119. max=1.5707999;
  120. minAngle=90;
  121. maxAngle=-90;
  122. };
  123. class TerrainBone
  124. {
  125. type="linear";
  126. source="altitudeAGL";
  127. sourceScale=1;
  128. min=0;
  129. max=200;
  130. minPos[]={0,0.88};
  131. maxPos[]={0,0.38};
  132. };
  133. class MissileFlightTimeRot1
  134. {
  135. type="rotational";
  136. source="MissileFlightTime";
  137. sourceScale=1;
  138. center[]={0,0};
  139. min=0;
  140. max=0.5;
  141. minAngle=0;
  142. maxAngle=18;
  143. aspectRatio=1.25;
  144. };
  145. class MissileFlightTimeRot2: MissileFlightTimeRot1
  146. {
  147. maxAngle=36;
  148. max=1;
  149. };
  150. class MissileFlightTimeRot3: MissileFlightTimeRot1
  151. {
  152. maxAngle=54;
  153. max=1.5;
  154. };
  155. class MissileFlightTimeRot4: MissileFlightTimeRot1
  156. {
  157. maxAngle=72;
  158. max=2;
  159. };
  160. class MissileFlightTimeRot5: MissileFlightTimeRot1
  161. {
  162. maxAngle=90;
  163. max=2.5;
  164. };
  165. class MissileFlightTimeRot6: MissileFlightTimeRot1
  166. {
  167. maxAngle=108;
  168. max=3;
  169. };
  170. class MissileFlightTimeRot7: MissileFlightTimeRot1
  171. {
  172. maxAngle=126;
  173. max=3.5;
  174. };
  175. class MissileFlightTimeRot8: MissileFlightTimeRot1
  176. {
  177. maxAngle=144;
  178. max=4;
  179. };
  180. class MissileFlightTimeRot9: MissileFlightTimeRot1
  181. {
  182. maxAngle=162;
  183. max=4.5;
  184. };
  185. class MissileFlightTimeRot10: MissileFlightTimeRot1
  186. {
  187. maxAngle=180;
  188. max=5;
  189. };
  190. class MissileFlightTimeRot11: MissileFlightTimeRot1
  191. {
  192. maxAngle=198;
  193. max=5.5;
  194. };
  195. class MissileFlightTimeRot12: MissileFlightTimeRot1
  196. {
  197. maxAngle=216;
  198. max=6;
  199. };
  200. class MissileFlightTimeRot13: MissileFlightTimeRot1
  201. {
  202. maxAngle=234;
  203. max=6.5;
  204. };
  205. class MissileFlightTimeRot14: MissileFlightTimeRot1
  206. {
  207. maxAngle=252;
  208. max=7;
  209. };
  210. class MissileFlightTimeRot15: MissileFlightTimeRot1
  211. {
  212. maxAngle=270;
  213. max=7.5;
  214. };
  215. class MissileFlightTimeRot16: MissileFlightTimeRot1
  216. {
  217. maxAngle=288;
  218. max=8;
  219. };
  220. class MissileFlightTimeRot17: MissileFlightTimeRot1
  221. {
  222. maxAngle=306;
  223. max=8.5;
  224. };
  225. class MissileFlightTimeRot18: MissileFlightTimeRot1
  226. {
  227. maxAngle=324;
  228. max=9;
  229. };
  230. class MissileFlightTimeRot19: MissileFlightTimeRot1
  231. {
  232. maxAngle=342;
  233. max=9.5;
  234. };
  235. class MissileFlightTimeRot20: MissileFlightTimeRot1
  236. {
  237. maxAngle=360;
  238. max=10;
  239. };
  240. class Airport1
  241. {
  242. type="vector";
  243. source="airportCorner1";
  244. pos0[]={0.5,0.38};
  245. pos10[]={1.168,1.215};
  246. };
  247. class Airport2: Airport1
  248. {
  249. source="airportCorner2";
  250. };
  251. class Airport3: Airport1
  252. {
  253. source="airportCorner3";
  254. };
  255. class Airport4: Airport1
  256. {
  257. source="airportCorner4";
  258. };
  259. class ILS_H
  260. {
  261. type="ils";
  262. pos0[]={0.5,0.38};
  263. pos3[]={0.70039999,0.38};
  264. };
  265. class ILS_W: ILS_H
  266. {
  267. pos3[]={0.5,0.63050002};
  268. };
  269. class LarAmmoMax
  270. {
  271. type="linear";
  272. source="LarAmmoMax";
  273. sourceScale=1;
  274. min=0;
  275. max=1;
  276. minPos[]={0,1};
  277. maxPos[]={0,0};
  278. };
  279. class LarAmmoMin: LarAmmoMax
  280. {
  281. source="LarAmmoMin";
  282. };
  283. class LarTargetDist: LarAmmoMax
  284. {
  285. source="LarTargetDist";
  286. };
  287. };
  288. class Draw
  289. {
  290. alpha="user3";
  291. color[]=
  292. {
  293. "user0",
  294. "user1",
  295. "user2"
  296. };
  297. condition="on";
  298. class PlaneOrientationCrosshair
  299. {
  300. clipTL[]={0,1};
  301. clipBR[]={1,0};
  302. type="line";
  303. width=4;
  304. points[]=
  305. {
  306. {
  307. "PlaneOrientation",
  308. {-0.0099999998,0},
  309. 1
  310. },
  311. {
  312. "PlaneOrientation",
  313. {0.0099999998,0},
  314. 1
  315. },
  316. {},
  317. {
  318. "PlaneOrientation",
  319. {0,-0.0125},
  320. 1
  321. },
  322. {
  323. "PlaneOrientation",
  324. {0,0.0125},
  325. 1
  326. },
  327. {}
  328. };
  329. };
  330. class PlaneMovementCrosshair
  331. {
  332. clipTL[]={0,1};
  333. clipBR[]={1,0};
  334. type="line";
  335. width=4;
  336. points[]=
  337. {
  338. {
  339. "Velocity",
  340. {0,-0.025},
  341. 1
  342. },
  343. {
  344. "Velocity",
  345. {0.0099999998,-0.02165},
  346. 1
  347. },
  348. {
  349. "Velocity",
  350. {0.01732,-0.0125},
  351. 1
  352. },
  353. {
  354. "Velocity",
  355. {0.02,0},
  356. 1
  357. },
  358. {
  359. "Velocity",
  360. {0.01732,0.0125},
  361. 1
  362. },
  363. {
  364. "Velocity",
  365. {0.0099999998,0.02165},
  366. 1
  367. },
  368. {
  369. "Velocity",
  370. {0,0.025},
  371. 1
  372. },
  373. {
  374. "Velocity",
  375. {-0.0099999998,0.02165},
  376. 1
  377. },
  378. {
  379. "Velocity",
  380. {-0.01732,0.0125},
  381. 1
  382. },
  383. {
  384. "Velocity",
  385. {-0.02,0},
  386. 1
  387. },
  388. {
  389. "Velocity",
  390. {-0.01732,-0.0125},
  391. 1
  392. },
  393. {
  394. "Velocity",
  395. {-0.0099999998,-0.02165},
  396. 1
  397. },
  398. {
  399. "Velocity",
  400. {0,-0.025},
  401. 1
  402. },
  403. {},
  404. {
  405. "Velocity",
  406. {0.039999999,0},
  407. 1
  408. },
  409. {
  410. "Velocity",
  411. {0.02,0},
  412. 1
  413. },
  414. {},
  415. {
  416. "Velocity",
  417. {-0.039999999,0},
  418. 1
  419. },
  420. {
  421. "Velocity",
  422. {-0.02,0},
  423. 1
  424. },
  425. {},
  426. {
  427. "Velocity",
  428. {0,-0.050000001},
  429. 1
  430. },
  431. {
  432. "Velocity",
  433. {0,-0.025},
  434. 1
  435. },
  436. {}
  437. };
  438. };
  439. class MachineGunCrosshairGroup
  440. {
  441. type="group";
  442. condition="mgun";
  443. class MachineGunCrosshair
  444. {
  445. type="line";
  446. width=3;
  447. points[]=
  448. {
  449. {
  450. "ImpactPoint",
  451. {0,-0.1125},
  452. 1
  453. },
  454. {
  455. "ImpactPoint",
  456. {0,-0.1},
  457. 1
  458. },
  459. {},
  460. {
  461. "ImpactPoint",
  462. {0,0.1125},
  463. 1
  464. },
  465. {
  466. "ImpactPoint",
  467. {0,0.1},
  468. 1
  469. },
  470. {},
  471. {
  472. "ImpactPoint",
  473. {-0.090000004,0},
  474. 1
  475. },
  476. {
  477. "ImpactPoint",
  478. {-0.079999998,0},
  479. 1
  480. },
  481. {},
  482. {
  483. "ImpactPoint",
  484. {0.090000004,0},
  485. 1
  486. },
  487. {
  488. "ImpactPoint",
  489. {0.079999998,0},
  490. 1
  491. },
  492. {},
  493. {
  494. "ImpactPoint",
  495. {0,-0.0024999999},
  496. 1
  497. },
  498. {
  499. "ImpactPoint",
  500. {0,0.0024999999},
  501. 1
  502. },
  503. {},
  504. {
  505. "ImpactPoint",
  506. {-0.0020000001,0},
  507. 1
  508. },
  509. {
  510. "ImpactPoint",
  511. {0.0020000001,0},
  512. 1
  513. },
  514. {}
  515. };
  516. };
  517. class Circle
  518. {
  519. type="line";
  520. width=6;
  521. points[]=
  522. {
  523. {
  524. "ImpactPoint",
  525. {0,-0.079999998},
  526. 1
  527. },
  528. {
  529. "ImpactPoint",
  530. {0,-0.1},
  531. 1
  532. },
  533. {
  534. "MissileFlightTimeRot1",
  535. {0,0.079999998},
  536. 1,
  537. "ImpactPoint",
  538. 1
  539. },
  540. {
  541. "MissileFlightTimeRot2",
  542. {0,0.079999998},
  543. 1,
  544. "ImpactPoint",
  545. 1
  546. },
  547. {
  548. "MissileFlightTimeRot3",
  549. {0,0.079999998},
  550. 1,
  551. "ImpactPoint",
  552. 1
  553. },
  554. {
  555. "MissileFlightTimeRot4",
  556. {0,0.079999998},
  557. 1,
  558. "ImpactPoint",
  559. 1
  560. },
  561. {
  562. "MissileFlightTimeRot5",
  563. {0,0.079999998},
  564. 1,
  565. "ImpactPoint",
  566. 1
  567. },
  568. {
  569. "MissileFlightTimeRot6",
  570. {0,0.079999998},
  571. 1,
  572. "ImpactPoint",
  573. 1
  574. },
  575. {
  576. "MissileFlightTimeRot7",
  577. {0,0.079999998},
  578. 1,
  579. "ImpactPoint",
  580. 1
  581. },
  582. {
  583. "MissileFlightTimeRot8",
  584. {0,0.079999998},
  585. 1,
  586. "ImpactPoint",
  587. 1
  588. },
  589. {
  590. "MissileFlightTimeRot9",
  591. {0,0.079999998},
  592. 1,
  593. "ImpactPoint",
  594. 1
  595. },
  596. {
  597. "MissileFlightTimeRot10",
  598. {0,0.079999998},
  599. 1,
  600. "ImpactPoint",
  601. 1
  602. },
  603. {
  604. "MissileFlightTimeRot11",
  605. {0,0.079999998},
  606. 1,
  607. "ImpactPoint",
  608. 1
  609. },
  610. {
  611. "MissileFlightTimeRot12",
  612. {0,0.079999998},
  613. 1,
  614. "ImpactPoint",
  615. 1
  616. },
  617. {
  618. "MissileFlightTimeRot13",
  619. {0,0.079999998},
  620. 1,
  621. "ImpactPoint",
  622. 1
  623. },
  624. {
  625. "MissileFlightTimeRot14",
  626. {0,0.079999998},
  627. 1,
  628. "ImpactPoint",
  629. 1
  630. },
  631. {
  632. "MissileFlightTimeRot15",
  633. {0,0.079999998},
  634. 1,
  635. "ImpactPoint",
  636. 1
  637. },
  638. {
  639. "MissileFlightTimeRot16",
  640. {0,0.079999998},
  641. 1,
  642. "ImpactPoint",
  643. 1
  644. },
  645. {
  646. "MissileFlightTimeRot17",
  647. {0,0.079999998},
  648. 1,
  649. "ImpactPoint",
  650. 1
  651. },
  652. {
  653. "MissileFlightTimeRot18",
  654. {0,0.079999998},
  655. 1,
  656. "ImpactPoint",
  657. 1
  658. },
  659. {
  660. "MissileFlightTimeRot19",
  661. {0,0.079999998},
  662. 1,
  663. "ImpactPoint",
  664. 1
  665. },
  666. {
  667. "MissileFlightTimeRot20",
  668. {0,0.079999998},
  669. 1,
  670. "ImpactPoint",
  671. 1
  672. },
  673. {
  674. "MissileFlightTimeRot20",
  675. {0,0.064000003},
  676. 1,
  677. "ImpactPoint",
  678. 1
  679. }
  680. };
  681. };
  682. class Circle_Min_Range
  683. {
  684. type="line";
  685. width=3;
  686. points[]=
  687. {
  688. {
  689. "ImpactPoint",
  690. {0,-0.1},
  691. 1
  692. },
  693. {
  694. "ImpactPoint",
  695. {0.013888,-0.098480001},
  696. 1
  697. },
  698. {
  699. "ImpactPoint",
  700. {0.02736,-0.093970001},
  701. 1
  702. },
  703. {
  704. "ImpactPoint",
  705. {0.039999999,-0.086599998},
  706. 1
  707. },
  708. {
  709. "ImpactPoint",
  710. {0.051424,-0.0766},
  711. 1
  712. },
  713. {
  714. "ImpactPoint",
  715. {0.061280001,-0.064280003},
  716. 1
  717. },
  718. {
  719. "ImpactPoint",
  720. {0.069279999,-0.050000001},
  721. 1
  722. },
  723. {
  724. "ImpactPoint",
  725. {0.075176001,-0.034200002},
  726. 1
  727. },
  728. {
  729. "ImpactPoint",
  730. {0.078783996,-0.01736},
  731. 1
  732. },
  733. {
  734. "ImpactPoint",
  735. {0.079999998,0},
  736. 1
  737. },
  738. {
  739. "ImpactPoint",
  740. {0.078783996,0.01736},
  741. 1
  742. },
  743. {
  744. "ImpactPoint",
  745. {0.075176001,0.034200002},
  746. 1
  747. },
  748. {
  749. "ImpactPoint",
  750. {0.069279999,0.050000001},
  751. 1
  752. },
  753. {
  754. "ImpactPoint",
  755. {0.061280001,0.064280003},
  756. 1
  757. },
  758. {
  759. "ImpactPoint",
  760. {0.051424,0.0766},
  761. 1
  762. },
  763. {
  764. "ImpactPoint",
  765. {0.039999999,0.086599998},
  766. 1
  767. },
  768. {
  769. "ImpactPoint",
  770. {0.02736,0.093970001},
  771. 1
  772. },
  773. {
  774. "ImpactPoint",
  775. {0.013888,0.098480001},
  776. 1
  777. },
  778. {
  779. "ImpactPoint",
  780. {0,0.1},
  781. 1
  782. },
  783. {
  784. "ImpactPoint",
  785. {-0.013888,0.098480001},
  786. 1
  787. },
  788. {
  789. "ImpactPoint",
  790. {-0.02736,0.093970001},
  791. 1
  792. },
  793. {
  794. "ImpactPoint",
  795. {-0.039999999,0.086599998},
  796. 1
  797. },
  798. {
  799. "ImpactPoint",
  800. {-0.051424,0.0766},
  801. 1
  802. },
  803. {
  804. "ImpactPoint",
  805. {-0.061280001,0.064280003},
  806. 1
  807. },
  808. {
  809. "ImpactPoint",
  810. {-0.069279999,0.050000001},
  811. 1
  812. },
  813. {
  814. "ImpactPoint",
  815. {-0.075176001,0.034200002},
  816. 1
  817. },
  818. {
  819. "ImpactPoint",
  820. {-0.078783996,0.01736},
  821. 1
  822. },
  823. {
  824. "ImpactPoint",
  825. {-0.079999998,0},
  826. 1
  827. },
  828. {
  829. "ImpactPoint",
  830. {-0.078783996,-0.01736},
  831. 1
  832. },
  833. {
  834. "ImpactPoint",
  835. {-0.075176001,-0.034200002},
  836. 1
  837. },
  838. {
  839. "ImpactPoint",
  840. {-0.069279999,-0.050000001},
  841. 1
  842. },
  843. {
  844. "ImpactPoint",
  845. {-0.061280001,-0.064280003},
  846. 1
  847. },
  848. {
  849. "ImpactPoint",
  850. {-0.051424,-0.0766},
  851. 1
  852. },
  853. {
  854. "ImpactPoint",
  855. {-0.039999999,-0.086599998},
  856. 1
  857. },
  858. {
  859. "ImpactPoint",
  860. {-0.02736,-0.093970001},
  861. 1
  862. },
  863. {
  864. "ImpactPoint",
  865. {-0.013888,-0.098480001},
  866. 1
  867. },
  868. {
  869. "ImpactPoint",
  870. {0,-0.1},
  871. 1
  872. }
  873. };
  874. };
  875. class Distance
  876. {
  877. type="text";
  878. source="ImpactDistance";
  879. sourceScale=0.001;
  880. sourcePrecision=1;
  881. max=15;
  882. align="center";
  883. scale=1;
  884. pos[]=
  885. {
  886. "ImpactPoint",
  887. {-0.0020000001,0.11},
  888. 1
  889. };
  890. right[]=
  891. {
  892. "ImpactPoint",
  893. {0.045000002,0.11},
  894. 1
  895. };
  896. down[]=
  897. {
  898. "ImpactPoint",
  899. {-0.0020000001,0.15000001},
  900. 1
  901. };
  902. };
  903. };
  904. class AAMissileCrosshairGroup
  905. {
  906. type="group";
  907. condition="AAmissile";
  908. class AAMissileCrosshair
  909. {
  910. type="line";
  911. width=4;
  912. points[]=
  913. {
  914. {
  915. "WeaponAim",
  916. {0,-0.3125},
  917. 1
  918. },
  919. {
  920. "WeaponAim",
  921. {0.043400001,-0.30774999},
  922. 1
  923. },
  924. {
  925. "WeaponAim",
  926. {0.085500002,-0.29365599},
  927. 1
  928. },
  929. {
  930. "WeaponAim",
  931. {0.125,-0.270625},
  932. 1
  933. },
  934. {
  935. "WeaponAim",
  936. {0.16069999,-0.239375},
  937. 1
  938. },
  939. {
  940. "WeaponAim",
  941. {0.19149999,-0.200875},
  942. 1
  943. },
  944. {
  945. "WeaponAim",
  946. {0.2165,-0.15625},
  947. 1
  948. },
  949. {
  950. "WeaponAim",
  951. {0.234925,-0.106875},
  952. 1
  953. },
  954. {
  955. "WeaponAim",
  956. {0.2462,-0.054249998},
  957. 1
  958. },
  959. {
  960. "WeaponAim",
  961. {0.25,0},
  962. 1
  963. },
  964. {
  965. "WeaponAim",
  966. {0.2462,0.054249998},
  967. 1
  968. },
  969. {
  970. "WeaponAim",
  971. {0.234925,0.106875},
  972. 1
  973. },
  974. {
  975. "WeaponAim",
  976. {0.2165,0.15625},
  977. 1
  978. },
  979. {
  980. "WeaponAim",
  981. {0.19149999,0.200875},
  982. 1
  983. },
  984. {
  985. "WeaponAim",
  986. {0.16069999,0.239375},
  987. 1
  988. },
  989. {
  990. "WeaponAim",
  991. {0.125,0.270625},
  992. 1
  993. },
  994. {
  995. "WeaponAim",
  996. {0.085500002,0.29365599},
  997. 1
  998. },
  999. {
  1000. "WeaponAim",
  1001. {0.043400001,0.30774999},
  1002. 1
  1003. },
  1004. {
  1005. "WeaponAim",
  1006. {0,0.3125},
  1007. 1
  1008. },
  1009. {
  1010. "WeaponAim",
  1011. {-0.043400001,0.30774999},
  1012. 1
  1013. },
  1014. {
  1015. "WeaponAim",
  1016. {-0.085500002,0.29365599},
  1017. 1
  1018. },
  1019. {
  1020. "WeaponAim",
  1021. {-0.125,0.270625},
  1022. 1
  1023. },
  1024. {
  1025. "WeaponAim",
  1026. {-0.16069999,0.239375},
  1027. 1
  1028. },
  1029. {
  1030. "WeaponAim",
  1031. {-0.19149999,0.200875},
  1032. 1
  1033. },
  1034. {
  1035. "WeaponAim",
  1036. {-0.2165,0.15625},
  1037. 1
  1038. },
  1039. {
  1040. "WeaponAim",
  1041. {-0.234925,0.106875},
  1042. 1
  1043. },
  1044. {
  1045. "WeaponAim",
  1046. {-0.2462,0.054249998},
  1047. 1
  1048. },
  1049. {
  1050. "WeaponAim",
  1051. {-0.25,0},
  1052. 1
  1053. },
  1054. {
  1055. "WeaponAim",
  1056. {-0.2462,-0.054249998},
  1057. 1
  1058. },
  1059. {
  1060. "WeaponAim",
  1061. {-0.234925,-0.106875},
  1062. 1
  1063. },
  1064. {
  1065. "WeaponAim",
  1066. {-0.2165,-0.15625},
  1067. 1
  1068. },
  1069. {
  1070. "WeaponAim",
  1071. {-0.19149999,-0.200875},
  1072. 1
  1073. },
  1074. {
  1075. "WeaponAim",
  1076. {-0.16069999,-0.239375},
  1077. 1
  1078. },
  1079. {
  1080. "WeaponAim",
  1081. {-0.125,-0.270625},
  1082. 1
  1083. },
  1084. {
  1085. "WeaponAim",
  1086. {-0.085500002,-0.29365599},
  1087. 1
  1088. },
  1089. {
  1090. "WeaponAim",
  1091. {-0.043400001,-0.30774999},
  1092. 1
  1093. },
  1094. {
  1095. "WeaponAim",
  1096. {0,-0.3125},
  1097. 1
  1098. }
  1099. };
  1100. };
  1101. };
  1102. class ATMissileCrosshairGroup
  1103. {
  1104. condition="ATmissile";
  1105. type="group";
  1106. class ATMissileCrosshair
  1107. {
  1108. type="line";
  1109. width=4;
  1110. points[]=
  1111. {
  1112. {
  1113. "WeaponAim",
  1114. {-0.15000001,-0.15000001},
  1115. 1
  1116. },
  1117. {
  1118. "WeaponAim",
  1119. {-0.15000001,-0.13},
  1120. 1
  1121. },
  1122. {},
  1123. {
  1124. "WeaponAim",
  1125. {-0.15000001,0.15000001},
  1126. 1
  1127. },
  1128. {
  1129. "WeaponAim",
  1130. {-0.15000001,0.13},
  1131. 1
  1132. },
  1133. {},
  1134. {
  1135. "WeaponAim",
  1136. {0.15000001,-0.15000001},
  1137. 1
  1138. },
  1139. {
  1140. "WeaponAim",
  1141. {0.15000001,-0.13},
  1142. 1
  1143. },
  1144. {},
  1145. {
  1146. "WeaponAim",
  1147. {0.15000001,0.15000001},
  1148. 1
  1149. },
  1150. {
  1151. "WeaponAim",
  1152. {0.15000001,0.13},
  1153. 1
  1154. },
  1155. {},
  1156. {
  1157. "WeaponAim",
  1158. {-0.15000001,-0.15000001},
  1159. 1
  1160. },
  1161. {
  1162. "WeaponAim",
  1163. {-0.13,-0.15000001},
  1164. 1
  1165. },
  1166. {},
  1167. {
  1168. "WeaponAim",
  1169. {-0.15000001,0.15000001},
  1170. 1
  1171. },
  1172. {
  1173. "WeaponAim",
  1174. {-0.13,0.15000001},
  1175. 1
  1176. },
  1177. {},
  1178. {
  1179. "WeaponAim",
  1180. {0.15000001,-0.15000001},
  1181. 1
  1182. },
  1183. {
  1184. "WeaponAim",
  1185. {0.13,-0.15000001},
  1186. 1
  1187. },
  1188. {},
  1189. {
  1190. "WeaponAim",
  1191. {0.15000001,0.15000001},
  1192. 1
  1193. },
  1194. {
  1195. "WeaponAim",
  1196. {0.13,0.15000001},
  1197. 1
  1198. }
  1199. };
  1200. };
  1201. };
  1202. class RocketCrosshairGroup
  1203. {
  1204. type="group";
  1205. condition="Rocket";
  1206. class MachineGunCrosshair
  1207. {
  1208. type="line";
  1209. width=3;
  1210. points[]=
  1211. {
  1212. {
  1213. "ImpactPoint",
  1214. {0,-0.050000001},
  1215. 1
  1216. },
  1217. {
  1218. "ImpactPoint",
  1219. {0,-0.025},
  1220. 1
  1221. },
  1222. {},
  1223. {
  1224. "ImpactPoint",
  1225. {0,0.050000001},
  1226. 1
  1227. },
  1228. {
  1229. "ImpactPoint",
  1230. {0,0.025},
  1231. 1
  1232. },
  1233. {},
  1234. {
  1235. "ImpactPoint",
  1236. {-0.039999999,0},
  1237. 1
  1238. },
  1239. {
  1240. "ImpactPoint",
  1241. {-0.02,0},
  1242. 1
  1243. },
  1244. {},
  1245. {
  1246. "ImpactPoint",
  1247. {0.039999999,0},
  1248. 1
  1249. },
  1250. {
  1251. "ImpactPoint",
  1252. {0.02,0},
  1253. 1
  1254. },
  1255. {},
  1256. {
  1257. "ImpactPoint",
  1258. {0.0099999998,-0.050000001},
  1259. 1
  1260. },
  1261. {
  1262. "ImpactPoint",
  1263. {-0.0099999998,-0.050000001},
  1264. 1
  1265. },
  1266. {},
  1267. {
  1268. "ImpactPoint",
  1269. {0,-0.0024999999},
  1270. 1
  1271. },
  1272. {
  1273. "ImpactPoint",
  1274. {0,0.0024999999},
  1275. 1
  1276. },
  1277. {},
  1278. {
  1279. "ImpactPoint",
  1280. {-0.0020000001,0},
  1281. 1
  1282. },
  1283. {
  1284. "ImpactPoint",
  1285. {0.0020000001,0},
  1286. 1
  1287. },
  1288. {}
  1289. };
  1290. };
  1291. class Distance
  1292. {
  1293. type="text";
  1294. source="ImpactDistance";
  1295. sourceScale=0.001;
  1296. sourcePrecision=1;
  1297. max=15;
  1298. align="center";
  1299. scale=1;
  1300. pos[]=
  1301. {
  1302. "ImpactPoint",
  1303. {-0.0020000001,0.07},
  1304. 1
  1305. };
  1306. right[]=
  1307. {
  1308. "ImpactPoint",
  1309. {0.045000002,0.07},
  1310. 1
  1311. };
  1312. down[]=
  1313. {
  1314. "ImpactPoint",
  1315. {-0.0020000001,0.11},
  1316. 1
  1317. };
  1318. };
  1319. };
  1320. class BombCrosshairGroup
  1321. {
  1322. type="group";
  1323. condition="bomb";
  1324. class BombCrosshair
  1325. {
  1326. width=4;
  1327. type="line";
  1328. points[]=
  1329. {
  1330. {
  1331. "ImpactPoint",
  1332. {0,0.1125},
  1333. 1
  1334. },
  1335. {
  1336. "ImpactPoint",
  1337. {0,0.1},
  1338. 1
  1339. },
  1340. {},
  1341. {
  1342. "ImpactPoint",
  1343. {-0.090000004,0},
  1344. 1
  1345. },
  1346. {
  1347. "ImpactPoint",
  1348. {-0.079999998,0},
  1349. 1
  1350. },
  1351. {},
  1352. {
  1353. "ImpactPoint",
  1354. {0.090000004,0},
  1355. 1
  1356. },
  1357. {
  1358. "ImpactPoint",
  1359. {0.079999998,0},
  1360. 1
  1361. },
  1362. {},
  1363. {
  1364. "ImpactPoint",
  1365. {0,-0.0024999999},
  1366. 1
  1367. },
  1368. {
  1369. "ImpactPoint",
  1370. {0,0.0024999999},
  1371. 1
  1372. },
  1373. {},
  1374. {
  1375. "ImpactPoint",
  1376. {-0.0020000001,0},
  1377. 1
  1378. },
  1379. {
  1380. "ImpactPoint",
  1381. {0.0020000001,0},
  1382. 1
  1383. },
  1384. {},
  1385. {
  1386. "ImpactPoint",
  1387. {0,-0.1},
  1388. 1
  1389. },
  1390. {
  1391. "ImpactPoint",
  1392. {0.013888,-0.098480001},
  1393. 1
  1394. },
  1395. {
  1396. "ImpactPoint",
  1397. {0.02736,-0.093970001},
  1398. 1
  1399. },
  1400. {
  1401. "ImpactPoint",
  1402. {0.039999999,-0.086599998},
  1403. 1
  1404. },
  1405. {
  1406. "ImpactPoint",
  1407. {0.051424,-0.0766},
  1408. 1
  1409. },
  1410. {
  1411. "ImpactPoint",
  1412. {0.061280001,-0.064280003},
  1413. 1
  1414. },
  1415. {
  1416. "ImpactPoint",
  1417. {0.069279999,-0.050000001},
  1418. 1
  1419. },
  1420. {
  1421. "ImpactPoint",
  1422. {0.075176001,-0.034200002},
  1423. 1
  1424. },
  1425. {
  1426. "ImpactPoint",
  1427. {0.078783996,-0.01736},
  1428. 1
  1429. },
  1430. {
  1431. "ImpactPoint",
  1432. {0.079999998,0},
  1433. 1
  1434. },
  1435. {
  1436. "ImpactPoint",
  1437. {0.078783996,0.01736},
  1438. 1
  1439. },
  1440. {
  1441. "ImpactPoint",
  1442. {0.075176001,0.034200002},
  1443. 1
  1444. },
  1445. {
  1446. "ImpactPoint",
  1447. {0.069279999,0.050000001},
  1448. 1
  1449. },
  1450. {
  1451. "ImpactPoint",
  1452. {0.061280001,0.064280003},
  1453. 1
  1454. },
  1455. {
  1456. "ImpactPoint",
  1457. {0.051424,0.0766},
  1458. 1
  1459. },
  1460. {
  1461. "ImpactPoint",
  1462. {0.039999999,0.086599998},
  1463. 1
  1464. },
  1465. {
  1466. "ImpactPoint",
  1467. {0.02736,0.093970001},
  1468. 1
  1469. },
  1470. {
  1471. "ImpactPoint",
  1472. {0.013888,0.098480001},
  1473. 1
  1474. },
  1475. {
  1476. "ImpactPoint",
  1477. {0,0.1},
  1478. 1
  1479. },
  1480. {
  1481. "ImpactPoint",
  1482. {-0.013888,0.098480001},
  1483. 1
  1484. },
  1485. {
  1486. "ImpactPoint",
  1487. {-0.02736,0.093970001},
  1488. 1
  1489. },
  1490. {
  1491. "ImpactPoint",
  1492. {-0.039999999,0.086599998},
  1493. 1
  1494. },
  1495. {
  1496. "ImpactPoint",
  1497. {-0.051424,0.0766},
  1498. 1
  1499. },
  1500. {
  1501. "ImpactPoint",
  1502. {-0.061280001,0.064280003},
  1503. 1
  1504. },
  1505. {
  1506. "ImpactPoint",
  1507. {-0.069279999,0.050000001},
  1508. 1
  1509. },
  1510. {
  1511. "ImpactPoint",
  1512. {-0.075176001,0.034200002},
  1513. 1
  1514. },
  1515. {
  1516. "ImpactPoint",
  1517. {-0.078783996,0.01736},
  1518. 1
  1519. },
  1520. {
  1521. "ImpactPoint",
  1522. {-0.079999998,0},
  1523. 1
  1524. },
  1525. {
  1526. "ImpactPoint",
  1527. {-0.078783996,-0.01736},
  1528. 1
  1529. },
  1530. {
  1531. "ImpactPoint",
  1532. {-0.075176001,-0.034200002},
  1533. 1
  1534. },
  1535. {
  1536. "ImpactPoint",
  1537. {-0.069279999,-0.050000001},
  1538. 1
  1539. },
  1540. {
  1541. "ImpactPoint",
  1542. {-0.061280001,-0.064280003},
  1543. 1
  1544. },
  1545. {
  1546. "ImpactPoint",
  1547. {-0.051424,-0.0766},
  1548. 1
  1549. },
  1550. {
  1551. "ImpactPoint",
  1552. {-0.039999999,-0.086599998},
  1553. 1
  1554. },
  1555. {
  1556. "ImpactPoint",
  1557. {-0.02736,-0.093970001},
  1558. 1
  1559. },
  1560. {
  1561. "ImpactPoint",
  1562. {-0.013888,-0.098480001},
  1563. 1
  1564. },
  1565. {
  1566. "ImpactPoint",
  1567. {0,-0.1},
  1568. 1
  1569. },
  1570. {},
  1571. {},
  1572. {
  1573. "ImpactPoint",
  1574. -1,
  1575. "Velocity",
  1576. 1,
  1577. "NormalizeBombCircle",
  1578. 1,
  1579. "ImpactPoint",
  1580. 1,
  1581. {0,0},
  1582. 1
  1583. },
  1584. {
  1585. "Velocity",
  1586. 1,
  1587. "Limit0109",
  1588. 1,
  1589. {0,0},
  1590. 1
  1591. }
  1592. };
  1593. };
  1594. class Circle
  1595. {
  1596. type="line";
  1597. width=6;
  1598. points[]=
  1599. {
  1600. {
  1601. "ImpactPoint",
  1602. {0,-0.079999998},
  1603. 1
  1604. },
  1605. {
  1606. "ImpactPoint",
  1607. {0,-0.1},
  1608. 1
  1609. },
  1610. {
  1611. "MissileFlightTimeRot1",
  1612. {0,0.079999998},
  1613. 1,
  1614. "ImpactPoint",
  1615. 1
  1616. },
  1617. {
  1618. "MissileFlightTimeRot2",
  1619. {0,0.079999998},
  1620. 1,
  1621. "ImpactPoint",
  1622. 1
  1623. },
  1624. {
  1625. "MissileFlightTimeRot3",
  1626. {0,0.079999998},
  1627. 1,
  1628. "ImpactPoint",
  1629. 1
  1630. },
  1631. {
  1632. "MissileFlightTimeRot4",
  1633. {0,0.079999998},
  1634. 1,
  1635. "ImpactPoint",
  1636. 1
  1637. },
  1638. {
  1639. "MissileFlightTimeRot5",
  1640. {0,0.079999998},
  1641. 1,
  1642. "ImpactPoint",
  1643. 1
  1644. },
  1645. {
  1646. "MissileFlightTimeRot6",
  1647. {0,0.079999998},
  1648. 1,
  1649. "ImpactPoint",
  1650. 1
  1651. },
  1652. {
  1653. "MissileFlightTimeRot7",
  1654. {0,0.079999998},
  1655. 1,
  1656. "ImpactPoint",
  1657. 1
  1658. },
  1659. {
  1660. "MissileFlightTimeRot8",
  1661. {0,0.079999998},
  1662. 1,
  1663. "ImpactPoint",
  1664. 1
  1665. },
  1666. {
  1667. "MissileFlightTimeRot9",
  1668. {0,0.079999998},
  1669. 1,
  1670. "ImpactPoint",
  1671. 1
  1672. },
  1673. {
  1674. "MissileFlightTimeRot10",
  1675. {0,0.079999998},
  1676. 1,
  1677. "ImpactPoint",
  1678. 1
  1679. },
  1680. {
  1681. "MissileFlightTimeRot11",
  1682. {0,0.079999998},
  1683. 1,
  1684. "ImpactPoint",
  1685. 1
  1686. },
  1687. {
  1688. "MissileFlightTimeRot12",
  1689. {0,0.079999998},
  1690. 1,
  1691. "ImpactPoint",
  1692. 1
  1693. },
  1694. {
  1695. "MissileFlightTimeRot13",
  1696. {0,0.079999998},
  1697. 1,
  1698. "ImpactPoint",
  1699. 1
  1700. },
  1701. {
  1702. "MissileFlightTimeRot14",
  1703. {0,0.079999998},
  1704. 1,
  1705. "ImpactPoint",
  1706. 1
  1707. },
  1708. {
  1709. "MissileFlightTimeRot15",
  1710. {0,0.079999998},
  1711. 1,
  1712. "ImpactPoint",
  1713. 1
  1714. },
  1715. {
  1716. "MissileFlightTimeRot16",
  1717. {0,0.079999998},
  1718. 1,
  1719. "ImpactPoint",
  1720. 1
  1721. },
  1722. {
  1723. "MissileFlightTimeRot17",
  1724. {0,0.079999998},
  1725. 1,
  1726. "ImpactPoint",
  1727. 1
  1728. },
  1729. {
  1730. "MissileFlightTimeRot18",
  1731. {0,0.079999998},
  1732. 1,
  1733. "ImpactPoint",
  1734. 1
  1735. },
  1736. {
  1737. "MissileFlightTimeRot19",
  1738. {0,0.079999998},
  1739. 1,
  1740. "ImpactPoint",
  1741. 1
  1742. },
  1743. {
  1744. "MissileFlightTimeRot20",
  1745. {0,0.079999998},
  1746. 1,
  1747. "ImpactPoint",
  1748. 1
  1749. },
  1750. {
  1751. "MissileFlightTimeRot20",
  1752. {0,0.064000003},
  1753. 1,
  1754. "ImpactPoint",
  1755. 1
  1756. }
  1757. };
  1758. };
  1759. class Distance
  1760. {
  1761. type="text";
  1762. source="ImpactDistance";
  1763. sourceScale=0.001;
  1764. sourcePrecision=1;
  1765. max=15;
  1766. align="center";
  1767. scale=1;
  1768. pos[]=
  1769. {
  1770. "ImpactPoint",
  1771. {-0.0020000001,0.11},
  1772. 1
  1773. };
  1774. right[]=
  1775. {
  1776. "ImpactPoint",
  1777. {0.045000002,0.11},
  1778. 1
  1779. };
  1780. down[]=
  1781. {
  1782. "ImpactPoint",
  1783. {-0.0020000001,0.15000001},
  1784. 1
  1785. };
  1786. };
  1787. };
  1788. class WeaponName
  1789. {
  1790. type="text";
  1791. source="weapon";
  1792. sourceScale=1;
  1793. align="right";
  1794. scale=1;
  1795. pos[]=
  1796. {
  1797. {0.050000001,0.85000002},
  1798. 1
  1799. };
  1800. right[]=
  1801. {
  1802. {0.090000004,0.85000002},
  1803. 1
  1804. };
  1805. down[]=
  1806. {
  1807. {0.050000001,0.88999999},
  1808. 1
  1809. };
  1810. };
  1811. class AmmoCount
  1812. {
  1813. type="text";
  1814. source="ammo";
  1815. sourceScale=1;
  1816. align="left";
  1817. scale=1;
  1818. pos[]=
  1819. {
  1820. {0.94999999,0.85000002},
  1821. 1
  1822. };
  1823. right[]=
  1824. {
  1825. {0.99000001,0.85000002},
  1826. 1
  1827. };
  1828. down[]=
  1829. {
  1830. {0.94999999,0.88999999},
  1831. 1
  1832. };
  1833. };
  1834. class StallGroup
  1835. {
  1836. type="group";
  1837. condition="stall";
  1838. color[]={1,0,0};
  1839. blinkingPattern[]={0.2,0.2};
  1840. blinkingStartsOn=1;
  1841. class StallText
  1842. {
  1843. type="text";
  1844. source="static";
  1845. text="STALL";
  1846. align="center";
  1847. scale=1;
  1848. pos[]=
  1849. {
  1850. {0.5,0.25},
  1851. 1
  1852. };
  1853. right[]=
  1854. {
  1855. {0.54000002,0.25},
  1856. 1
  1857. };
  1858. down[]=
  1859. {
  1860. {0.5,0.28999999},
  1861. 1
  1862. };
  1863. };
  1864. };
  1865. class PitchNumber
  1866. {
  1867. type="text";
  1868. source="horizonDive";
  1869. sourceScale=57.29578;
  1870. align="right";
  1871. scale=1;
  1872. pos[]=
  1873. {
  1874. {0.13,0.22499999},
  1875. 1
  1876. };
  1877. right[]=
  1878. {
  1879. {0.17,0.22499999},
  1880. 1
  1881. };
  1882. down[]=
  1883. {
  1884. {0.13,0.26499999},
  1885. 1
  1886. };
  1887. };
  1888. class PitchText
  1889. {
  1890. type="text";
  1891. source="static";
  1892. text="PITCH";
  1893. align="left";
  1894. scale=1;
  1895. pos[]=
  1896. {
  1897. {0.11,0.22499999},
  1898. 1
  1899. };
  1900. right[]=
  1901. {
  1902. {0.15000001,0.22499999},
  1903. 1
  1904. };
  1905. down[]=
  1906. {
  1907. {0.11,0.26499999},
  1908. 1
  1909. };
  1910. };
  1911. class RollNumber
  1912. {
  1913. type="text";
  1914. source="horizonBank";
  1915. sourceScale=57.29578;
  1916. align="right";
  1917. scale=1;
  1918. pos[]=
  1919. {
  1920. {0.13,0.27000001},
  1921. 1
  1922. };
  1923. right[]=
  1924. {
  1925. {0.17,0.27000001},
  1926. 1
  1927. };
  1928. down[]=
  1929. {
  1930. {0.13,0.31},
  1931. 1
  1932. };
  1933. };
  1934. class RollText
  1935. {
  1936. type="text";
  1937. source="static";
  1938. text="ROLL";
  1939. align="left";
  1940. scale=1;
  1941. pos[]=
  1942. {
  1943. {0.11,0.27000001},
  1944. 1
  1945. };
  1946. right[]=
  1947. {
  1948. {0.15000001,0.27000001},
  1949. 1
  1950. };
  1951. down[]=
  1952. {
  1953. {0.11,0.31},
  1954. 1
  1955. };
  1956. };
  1957. class SpeedNumber
  1958. {
  1959. type="text";
  1960. source="speed";
  1961. sourceScale=3.5999999;
  1962. align="right";
  1963. scale=1;
  1964. pos[]=
  1965. {
  1966. {0.13,0.36000001},
  1967. 1
  1968. };
  1969. right[]=
  1970. {
  1971. {0.17,0.36000001},
  1972. 1
  1973. };
  1974. down[]=
  1975. {
  1976. {0.13,0.40000001},
  1977. 1
  1978. };
  1979. };
  1980. class SpeedText
  1981. {
  1982. type="text";
  1983. source="static";
  1984. text="SPEED";
  1985. align="left";
  1986. scale=1;
  1987. pos[]=
  1988. {
  1989. {0.11,0.36000001},
  1990. 1
  1991. };
  1992. right[]=
  1993. {
  1994. {0.15000001,0.36000001},
  1995. 1
  1996. };
  1997. down[]=
  1998. {
  1999. {0.11,0.40000001},
  2000. 1
  2001. };
  2002. };
  2003. class SpeedSeparator
  2004. {
  2005. type="line";
  2006. width=2;
  2007. points[]=
  2008. {
  2009. {
  2010. {0.12,0.22499999},
  2011. 1
  2012. },
  2013. {
  2014. {0.12,0.63300002},
  2015. 1
  2016. }
  2017. };
  2018. };
  2019. class FlapsGroup
  2020. {
  2021. type="group";
  2022. condition="flaps";
  2023. class FlapsText
  2024. {
  2025. type="text";
  2026. source="static";
  2027. text="FLAPS";
  2028. align="left";
  2029. scale=1;
  2030. pos[]=
  2031. {
  2032. {0.11,0.44999999},
  2033. 1
  2034. };
  2035. right[]=
  2036. {
  2037. {0.15000001,0.44999999},
  2038. 1
  2039. };
  2040. down[]=
  2041. {
  2042. {0.11,0.49000001},
  2043. 1
  2044. };
  2045. };
  2046. };
  2047. class GearGroup
  2048. {
  2049. type="group";
  2050. condition="ils";
  2051. class GearText
  2052. {
  2053. type="text";
  2054. source="static";
  2055. text="GEAR";
  2056. align="left";
  2057. scale=1;
  2058. pos[]=
  2059. {
  2060. {0.11,0.495},
  2061. 1
  2062. };
  2063. right[]=
  2064. {
  2065. {0.15000001,0.495},
  2066. 1
  2067. };
  2068. down[]=
  2069. {
  2070. {0.11,0.53500003},
  2071. 1
  2072. };
  2073. };
  2074. };
  2075. class ILS
  2076. {
  2077. condition="ils";
  2078. class Glideslope
  2079. {
  2080. clipTL[]={0,0};
  2081. clipBR[]={1,1};
  2082. class ILS
  2083. {
  2084. type="line";
  2085. points[]=
  2086. {
  2087. {
  2088. "ILS_W",
  2089. {-0.23999999,0},
  2090. 1
  2091. },
  2092. {
  2093. "ILS_W",
  2094. {0.23999999,0},
  2095. 1
  2096. },
  2097. {},
  2098. {
  2099. "ILS_W",
  2100. {-0.23999999,-0.029999999},
  2101. 1
  2102. },
  2103. {
  2104. "ILS_W",
  2105. {-0.23999999,0.029999999},
  2106. 1
  2107. },
  2108. {},
  2109. {
  2110. "ILS_W",
  2111. {-0.12,-0.022500001},
  2112. 1
  2113. },
  2114. {
  2115. "ILS_W",
  2116. {-0.12,0.022500001},
  2117. 1
  2118. },
  2119. {},
  2120. {
  2121. "ILS_W",
  2122. {0,-0.029999999},
  2123. 1
  2124. },
  2125. {
  2126. "ILS_W",
  2127. {0,0.029999999},
  2128. 1
  2129. },
  2130. {},
  2131. {
  2132. "ILS_W",
  2133. {0.12,-0.022500001},
  2134. 1
  2135. },
  2136. {
  2137. "ILS_W",
  2138. {0.12,0.022500001},
  2139. 1
  2140. },
  2141. {},
  2142. {
  2143. "ILS_W",
  2144. {0.23999999,-0.029999999},
  2145. 1
  2146. },
  2147. {
  2148. "ILS_W",
  2149. {0.23999999,0.029999999},
  2150. 1
  2151. },
  2152. {},
  2153. {
  2154. "ILS_H",
  2155. {0,-0.30000001},
  2156. 1
  2157. },
  2158. {
  2159. "ILS_H",
  2160. {0,0.30000001},
  2161. 1
  2162. },
  2163. {},
  2164. {
  2165. "ILS_H",
  2166. {-0.024,-0.30000001},
  2167. 1
  2168. },
  2169. {
  2170. "ILS_H",
  2171. {0.024,-0.30000001},
  2172. 1
  2173. },
  2174. {},
  2175. {
  2176. "ILS_H",
  2177. {-0.017999999,-0.15000001},
  2178. 1
  2179. },
  2180. {
  2181. "ILS_H",
  2182. {0.017999999,-0.15000001},
  2183. 1
  2184. },
  2185. {},
  2186. {
  2187. "ILS_H",
  2188. {-0.024,0},
  2189. 1
  2190. },
  2191. {
  2192. "ILS_H",
  2193. {0.024,0},
  2194. 1
  2195. },
  2196. {},
  2197. {
  2198. "ILS_H",
  2199. {-0.017999999,0.15000001},
  2200. 1
  2201. },
  2202. {
  2203. "ILS_H",
  2204. {0.017999999,0.15000001},
  2205. 1
  2206. },
  2207. {},
  2208. {
  2209. "ILS_H",
  2210. {-0.024,0.30000001},
  2211. 1
  2212. },
  2213. {
  2214. "ILS_H",
  2215. {0.024,0.30000001},
  2216. 1
  2217. }
  2218. };
  2219. };
  2220. class airport
  2221. {
  2222. type="line";
  2223. points[]=
  2224. {
  2225. {
  2226. "airport1",
  2227. 1
  2228. },
  2229. {
  2230. "airport2",
  2231. 1
  2232. },
  2233. {
  2234. "airport4",
  2235. 1
  2236. },
  2237. {
  2238. "airport3",
  2239. 1
  2240. },
  2241. {
  2242. "airport1",
  2243. 1
  2244. }
  2245. };
  2246. };
  2247. };
  2248. };
  2249. class LightsGroup
  2250. {
  2251. type="group";
  2252. condition="lights";
  2253. class LightsText
  2254. {
  2255. type="text";
  2256. source="static";
  2257. text="LLS";
  2258. align="left";
  2259. scale=1;
  2260. pos[]=
  2261. {
  2262. {0.11,0.54000002},
  2263. 1
  2264. };
  2265. right[]=
  2266. {
  2267. {0.15000001,0.54000002},
  2268. 1
  2269. };
  2270. down[]=
  2271. {
  2272. {0.11,0.57999998},
  2273. 1
  2274. };
  2275. };
  2276. };
  2277. class CollisionLightsGroup
  2278. {
  2279. type="group";
  2280. condition="collisionlights";
  2281. class CollisionLightsText
  2282. {
  2283. type="text";
  2284. source="static";
  2285. text="COLL";
  2286. align="left";
  2287. scale=1;
  2288. pos[]=
  2289. {
  2290. {0.11,0.58499998},
  2291. 1
  2292. };
  2293. right[]=
  2294. {
  2295. {0.15000001,0.58499998},
  2296. 1
  2297. };
  2298. down[]=
  2299. {
  2300. {0.11,0.625},
  2301. 1
  2302. };
  2303. };
  2304. };
  2305. class Climb
  2306. {
  2307. type="line";
  2308. width=1;
  2309. points[]=
  2310. {
  2311. {
  2312. "VerticalSpeed",
  2313. {0.875,0.22},
  2314. 1
  2315. },
  2316. {
  2317. "VerticalSpeed",
  2318. {0.875,0.54000002},
  2319. 1
  2320. },
  2321. {},
  2322. {
  2323. "VerticalSpeed",
  2324. {0.86900002,0.23},
  2325. 1
  2326. },
  2327. {
  2328. "VerticalSpeed",
  2329. {0.87400001,0.23},
  2330. 1
  2331. },
  2332. {},
  2333. {
  2334. "VerticalSpeed",
  2335. {0.86500001,0.25999999},
  2336. 1
  2337. },
  2338. {
  2339. "VerticalSpeed",
  2340. {0.87400001,0.25999999},
  2341. 1
  2342. },
  2343. {},
  2344. {
  2345. "VerticalSpeed",
  2346. {0.86500001,0.28999999},
  2347. 1
  2348. },
  2349. {
  2350. "VerticalSpeed",
  2351. {0.87400001,0.28999999},
  2352. 1
  2353. },
  2354. {},
  2355. {
  2356. "VerticalSpeed",
  2357. {0.86500001,0.31999999},
  2358. 1
  2359. },
  2360. {
  2361. "VerticalSpeed",
  2362. {0.87400001,0.31999999},
  2363. 1
  2364. },
  2365. {},
  2366. {
  2367. "VerticalSpeed",
  2368. {0.86500001,0.34999999},
  2369. 1
  2370. },
  2371. {
  2372. "VerticalSpeed",
  2373. {0.87400001,0.34999999},
  2374. 1
  2375. },
  2376. {},
  2377. {
  2378. "VerticalSpeed",
  2379. {0.85500002,0.38},
  2380. 1
  2381. },
  2382. {
  2383. "VerticalSpeed",
  2384. {0.87400001,0.38},
  2385. 1
  2386. },
  2387. {},
  2388. {
  2389. "VerticalSpeed",
  2390. {0.87400001,0.41},
  2391. 1
  2392. },
  2393. {
  2394. "VerticalSpeed",
  2395. {0.86500001,0.41},
  2396. 1
  2397. },
  2398. {},
  2399. {
  2400. "VerticalSpeed",
  2401. {0.87400001,0.44},
  2402. 1
  2403. },
  2404. {
  2405. "VerticalSpeed",
  2406. {0.86500001,0.44},
  2407. 1
  2408. },
  2409. {},
  2410. {
  2411. "VerticalSpeed",
  2412. {0.87400001,0.47},
  2413. 1
  2414. },
  2415. {
  2416. "VerticalSpeed",
  2417. {0.86500001,0.47},
  2418. 1
  2419. },
  2420. {},
  2421. {
  2422. "VerticalSpeed",
  2423. {0.87400001,0.5},
  2424. 1
  2425. },
  2426. {
  2427. "VerticalSpeed",
  2428. {0.86500001,0.5},
  2429. 1
  2430. },
  2431. {},
  2432. {
  2433. "VerticalSpeed",
  2434. {0.87400001,0.52999997},
  2435. 1
  2436. },
  2437. {
  2438. "VerticalSpeed",
  2439. {0.86900002,0.52999997},
  2440. 1
  2441. }
  2442. };
  2443. };
  2444. class ClimbMinGroup
  2445. {
  2446. type="group";
  2447. clipTL[]={0,0.40000001};
  2448. clipBR[]={1,0.75999999};
  2449. class ClimbMin
  2450. {
  2451. type="text";
  2452. source="static";
  2453. text="-100";
  2454. align="left";
  2455. scale=1;
  2456. pos[]=
  2457. {
  2458. "VerticalSpeed",
  2459. {0.866,0.51749998},
  2460. 1
  2461. };
  2462. right[]=
  2463. {
  2464. "VerticalSpeed",
  2465. {0.89099997,0.51749998},
  2466. 1
  2467. };
  2468. down[]=
  2469. {
  2470. "VerticalSpeed",
  2471. {0.866,0.54250002},
  2472. 1
  2473. };
  2474. };
  2475. };
  2476. class ClimbMaxGroup
  2477. {
  2478. type="group";
  2479. clipTL[]={0,0};
  2480. clipBR[]={1,0.36000001};
  2481. class ClimbMax
  2482. {
  2483. type="text";
  2484. source="static";
  2485. text="100";
  2486. align="left";
  2487. scale=1;
  2488. pos[]=
  2489. {
  2490. "VerticalSpeed",
  2491. {0.866,0.2175},
  2492. 1
  2493. };
  2494. right[]=
  2495. {
  2496. "VerticalSpeed",
  2497. {0.89099997,0.2175},
  2498. 1
  2499. };
  2500. down[]=
  2501. {
  2502. "VerticalSpeed",
  2503. {0.866,0.24250001},
  2504. 1
  2505. };
  2506. };
  2507. };
  2508. class ClimbText
  2509. {
  2510. type="text";
  2511. source="static";
  2512. text="CLIMB";
  2513. align="left";
  2514. scale=1;
  2515. pos[]=
  2516. {
  2517. {0.87,0.72100002},
  2518. 1
  2519. };
  2520. right[]=
  2521. {
  2522. {0.89499998,0.72100002},
  2523. 1
  2524. };
  2525. down[]=
  2526. {
  2527. {0.87,0.74599999},
  2528. 1
  2529. };
  2530. };
  2531. class TerrainGroup
  2532. {
  2533. type="group";
  2534. clipTL[]={0,0};
  2535. clipBR[]={1,0.69999999};
  2536. class TerrainLine
  2537. {
  2538. type="line";
  2539. width=1;
  2540. points[]=
  2541. {
  2542. {
  2543. "TerrainBone",
  2544. {0.74000001,0},
  2545. 1
  2546. },
  2547. {
  2548. "TerrainBone",
  2549. {0.90899998,0},
  2550. 1
  2551. }
  2552. };
  2553. };
  2554. class TerrainText
  2555. {
  2556. type="text";
  2557. source="static";
  2558. text="TERRAIN";
  2559. align="right";
  2560. scale=1;
  2561. pos[]=
  2562. {
  2563. "TerrainBone",
  2564. {0.74000001,0.003},
  2565. 1
  2566. };
  2567. right[]=
  2568. {
  2569. "TerrainBone",
  2570. {0.76499999,0.003},
  2571. 1
  2572. };
  2573. down[]=
  2574. {
  2575. "TerrainBone",
  2576. {0.74000001,0.028000001},
  2577. 1
  2578. };
  2579. };
  2580. class TerrainNumber
  2581. {
  2582. type="text";
  2583. source="altitudeAGL";
  2584. sourceScale=1;
  2585. align="right";
  2586. scale=1;
  2587. pos[]=
  2588. {
  2589. "TerrainBone",
  2590. {0.74000001,-0.043000001},
  2591. 1
  2592. };
  2593. right[]=
  2594. {
  2595. "TerrainBone",
  2596. {0.77999997,-0.043000001},
  2597. 1
  2598. };
  2599. down[]=
  2600. {
  2601. "TerrainBone",
  2602. {0.74000001,-0.003},
  2603. 1
  2604. };
  2605. };
  2606. };
  2607. class AltitudeNumber
  2608. {
  2609. type="text";
  2610. source="altitudeASL";
  2611. sourceScale=1;
  2612. align="left";
  2613. scale=1;
  2614. pos[]=
  2615. {
  2616. {0.84500003,0.36000001},
  2617. 1
  2618. };
  2619. right[]=
  2620. {
  2621. {0.88499999,0.36000001},
  2622. 1
  2623. };
  2624. down[]=
  2625. {
  2626. {0.84500003,0.40000001},
  2627. 1
  2628. };
  2629. };
  2630. class AltitudeText
  2631. {
  2632. type="text";
  2633. source="static";
  2634. text="ASL";
  2635. align="right";
  2636. scale=1;
  2637. pos[]=
  2638. {
  2639. {0.88,0.72000003},
  2640. 1
  2641. };
  2642. right[]=
  2643. {
  2644. {0.92000002,0.72000003},
  2645. 1
  2646. };
  2647. down[]=
  2648. {
  2649. {0.88,0.75999999},
  2650. 1
  2651. };
  2652. };
  2653. class AltitudeArrow
  2654. {
  2655. type="line";
  2656. width=3;
  2657. points[]=
  2658. {
  2659. {
  2660. {0.85699999,0.36399999},
  2661. 1
  2662. },
  2663. {
  2664. {0.875,0.38},
  2665. 1
  2666. },
  2667. {
  2668. {0.85699999,0.396},
  2669. 1
  2670. },
  2671. {},
  2672. {
  2673. {0.898,0.36399999},
  2674. 1
  2675. },
  2676. {
  2677. {0.88,0.38},
  2678. 1
  2679. },
  2680. {
  2681. {0.898,0.396},
  2682. 1
  2683. }
  2684. };
  2685. };
  2686. class AltitudeScale
  2687. {
  2688. type="scale";
  2689. horizontal=0;
  2690. source="altitudeASL";
  2691. sourceScale=1;
  2692. min=0;
  2693. width=4;
  2694. top=0.70999998;
  2695. center=0.38;
  2696. bottom=0.050000001;
  2697. lineXleft=0.88;
  2698. lineYright=0.88999999;
  2699. lineXleftMajor=0.88;
  2700. lineYrightMajor=0.89999998;
  2701. majorLineEach=5;
  2702. numberEach=10;
  2703. step=10;
  2704. stepSize=0.025;
  2705. align="right";
  2706. scale=1;
  2707. pos[]={0.91000003,0.69};
  2708. right[]={0.94999999,0.69};
  2709. down[]={0.91000003,0.73000002};
  2710. };
  2711. class HeadingArrows
  2712. {
  2713. type="line";
  2714. width=3;
  2715. points[]=
  2716. {
  2717. {
  2718. {0.484,0.89700001},
  2719. 1
  2720. },
  2721. {
  2722. {0.5,0.91500002},
  2723. 1
  2724. },
  2725. {
  2726. {0.51599997,0.89700001},
  2727. 1
  2728. },
  2729. {},
  2730. {
  2731. "WPPoint",
  2732. 1,
  2733. "LimitWaypoint",
  2734. 1,
  2735. {-0.016000001,0.017999999},
  2736. 1
  2737. },
  2738. {
  2739. "WPPoint",
  2740. 1,
  2741. "LimitWaypoint",
  2742. 1,
  2743. {0,0},
  2744. 1
  2745. },
  2746. {
  2747. "WPPoint",
  2748. 1,
  2749. "LimitWaypoint",
  2750. 1,
  2751. {0.016000001,0.017999999},
  2752. 1
  2753. }
  2754. };
  2755. };
  2756. class HeadingScale
  2757. {
  2758. type="scale";
  2759. horizontal=1;
  2760. source="heading";
  2761. sourceScale=1;
  2762. width=4;
  2763. top=0.050000001;
  2764. center=0.5;
  2765. bottom=0.94999999;
  2766. lineXleft=0.93000001;
  2767. lineYright=0.92000002;
  2768. lineXleftMajor=0.94;
  2769. lineYrightMajor=0.92000002;
  2770. majorLineEach=3;
  2771. numberEach=9;
  2772. step=5;
  2773. stepSize=0.02;
  2774. align="center";
  2775. scale=1;
  2776. pos[]={0.050000001,0.94};
  2777. right[]={0.090000004,0.94};
  2778. down[]={0.050000001,0.98000002};
  2779. };
  2780. class WP
  2781. {
  2782. condition="wpvalid";
  2783. class WPdist
  2784. {
  2785. type="text";
  2786. source="wpdist";
  2787. sourceScale=0.001;
  2788. sourcePrecision=1;
  2789. align="right";
  2790. scale=1;
  2791. pos[]=
  2792. {
  2793. {0.054000001,0.74062502},
  2794. 1
  2795. };
  2796. down[]=
  2797. {
  2798. {0.054000001,0.78812498},
  2799. 1
  2800. };
  2801. right[]=
  2802. {
  2803. {0.093999997,0.74062502},
  2804. 1
  2805. };
  2806. };
  2807. class WPIndex
  2808. {
  2809. type="text";
  2810. source="wpIndex";
  2811. sourceScale=1;
  2812. sourceLength=2;
  2813. align="right";
  2814. scale=1;
  2815. pos[]=
  2816. {
  2817. {0.107,0.708125},
  2818. 1
  2819. };
  2820. right[]=
  2821. {
  2822. {0.147,0.708125},
  2823. 1
  2824. };
  2825. down[]=
  2826. {
  2827. {0.107,0.75562501},
  2828. 1
  2829. };
  2830. };
  2831. class WPstatic
  2832. {
  2833. type="text";
  2834. source="static";
  2835. text="WP";
  2836. scale=1;
  2837. sourceScale=1;
  2838. align="right";
  2839. pos[]=
  2840. {
  2841. {
  2842. "0.045+0.01",
  2843. 0.71350002
  2844. },
  2845. 1
  2846. };
  2847. right[]=
  2848. {
  2849. {0.094999999,0.71350002},
  2850. 1
  2851. };
  2852. down[]=
  2853. {
  2854. {
  2855. "0.045+0.01",
  2856. 0.75349998
  2857. },
  2858. 1
  2859. };
  2860. };
  2861. class WPKM
  2862. {
  2863. type="text";
  2864. source="static";
  2865. text="KM";
  2866. scale=1;
  2867. sourceScale=1;
  2868. align="right";
  2869. pos[]=
  2870. {
  2871. {
  2872. "0.045+0.05",
  2873. 0.75050002
  2874. },
  2875. 1
  2876. };
  2877. right[]=
  2878. {
  2879. {0.13500001,0.75050002},
  2880. 1
  2881. };
  2882. down[]=
  2883. {
  2884. {
  2885. "0.045+0.05",
  2886. 0.78549999
  2887. },
  2888. 1
  2889. };
  2890. };
  2891. };
  2892. class HorizontalLine
  2893. {
  2894. clipTL[]={0.2,0};
  2895. clipBR[]={0.80000001,0.75999999};
  2896. class HorizontalLineDraw
  2897. {
  2898. type="line";
  2899. source="Level0";
  2900. points[]=
  2901. {
  2902. {
  2903. "Level0",
  2904. {-0.22499999,0},
  2905. 1
  2906. },
  2907. {
  2908. "Level0",
  2909. {-0.1875,0},
  2910. 1
  2911. },
  2912. {},
  2913. {
  2914. "Level0",
  2915. {-0.15000001,0},
  2916. 1
  2917. },
  2918. {
  2919. "Level0",
  2920. {-0.1125,0},
  2921. 1
  2922. },
  2923. {},
  2924. {
  2925. "Level0",
  2926. {-0.075000003,0},
  2927. 1
  2928. },
  2929. {
  2930. "Level0",
  2931. {-0.037500001,0},
  2932. 1
  2933. },
  2934. {},
  2935. {
  2936. "Level0",
  2937. {0.037500001,0},
  2938. 1
  2939. },
  2940. {
  2941. "Level0",
  2942. {0.075000003,0},
  2943. 1
  2944. },
  2945. {},
  2946. {
  2947. "Level0",
  2948. {0.1125,0},
  2949. 1
  2950. },
  2951. {
  2952. "Level0",
  2953. {0.15000001,0},
  2954. 1
  2955. },
  2956. {},
  2957. {
  2958. "Level0",
  2959. {0.1875,0},
  2960. 1
  2961. },
  2962. {
  2963. "Level0",
  2964. {0.22499999,0},
  2965. 1
  2966. }
  2967. };
  2968. };
  2969. };
  2970. class HorizonIndicatorBackground
  2971. {
  2972. type="line";
  2973. width=1;
  2974. points[]=
  2975. {
  2976. {
  2977. {0.00059999502,0.12},
  2978. 1
  2979. },
  2980. {
  2981. {0.1294,0.12},
  2982. 1
  2983. }
  2984. };
  2985. };
  2986. class HorizonIndicator
  2987. {
  2988. type="line";
  2989. width=4;
  2990. points[]=
  2991. {
  2992. {
  2993. "HorizonIndicatorBank",
  2994. {-0.055199999,0},
  2995. 1
  2996. },
  2997. {
  2998. "HorizonIndicatorBank",
  2999. {-0.046,0},
  3000. 1
  3001. },
  3002. {
  3003. "HorizonIndicatorBank",
  3004. {-0.045434199,0.0079856003},
  3005. 1
  3006. },
  3007. {
  3008. "HorizonIndicatorBank",
  3009. {-0.043226201,0.015732},
  3010. 1
  3011. },
  3012. {
  3013. "HorizonIndicatorBank",
  3014. {-0.039836001,0.023},
  3015. 1
  3016. },
  3017. {
  3018. "HorizonIndicatorBank",
  3019. {-0.035236001,0.029568801},
  3020. 1
  3021. },
  3022. {
  3023. "HorizonIndicatorBank",
  3024. {-0.029568801,0.035236001},
  3025. 1
  3026. },
  3027. {
  3028. "HorizonIndicatorBank",
  3029. {-0.023,0.039836001},
  3030. 1
  3031. },
  3032. {
  3033. "HorizonIndicatorBank",
  3034. {-0.015732,0.043226201},
  3035. 1
  3036. },
  3037. {
  3038. "HorizonIndicatorBank",
  3039. {-0.0079856003,0.045434199},
  3040. 1
  3041. },
  3042. {
  3043. "HorizonIndicatorBank",
  3044. {0,0.046},
  3045. 1
  3046. },
  3047. {
  3048. "HorizonIndicatorBank",
  3049. {0.0079856003,0.045434199},
  3050. 1
  3051. },
  3052. {
  3053. "HorizonIndicatorBank",
  3054. {0.015732,0.043226201},
  3055. 1
  3056. },
  3057. {
  3058. "HorizonIndicatorBank",
  3059. {0.023,0.039836001},
  3060. 1
  3061. },
  3062. {
  3063. "HorizonIndicatorBank",
  3064. {0.029568801,0.035236001},
  3065. 1
  3066. },
  3067. {
  3068. "HorizonIndicatorBank",
  3069. {0.035236001,0.029568801},
  3070. 1
  3071. },
  3072. {
  3073. "HorizonIndicatorBank",
  3074. {0.039836001,0.023},
  3075. 1
  3076. },
  3077. {
  3078. "HorizonIndicatorBank",
  3079. {0.043226201,0.015732},
  3080. 1
  3081. },
  3082. {
  3083. "HorizonIndicatorBank",
  3084. {0.045434199,0.0079856003},
  3085. 1
  3086. },
  3087. {
  3088. "HorizonIndicatorBank",
  3089. {0.046,0},
  3090. 1
  3091. },
  3092. {
  3093. "HorizonIndicatorBank",
  3094. {0.055199999,0},
  3095. 1
  3096. }
  3097. };
  3098. };
  3099. class RadarBoxes
  3100. {
  3101. type="radar";
  3102. pos0[]={0.498,0.38};
  3103. pos10[]={1.166,1.215};
  3104. width=4;
  3105. points[]=
  3106. {
  3107. {
  3108. {-0.0020000001,-0.0024999999},
  3109. 1
  3110. },
  3111. {
  3112. {0.0020000001,-0.0024999999},
  3113. 1
  3114. },
  3115. {
  3116. {0.0020000001,0.0024999999},
  3117. 1
  3118. },
  3119. {
  3120. {-0.0020000001,0.0024999999},
  3121. 1
  3122. },
  3123. {
  3124. {-0.0020000001,-0.0024999999},
  3125. 1
  3126. }
  3127. };
  3128. };
  3129. class TargetDiamond
  3130. {
  3131. class shape
  3132. {
  3133. type="line";
  3134. width=4;
  3135. points[]=
  3136. {
  3137. {
  3138. "Target",
  3139. 1,
  3140. "Limit0109",
  3141. 1,
  3142. {0.02,0.025},
  3143. 1
  3144. },
  3145. {
  3146. "Target",
  3147. 1,
  3148. "Limit0109",
  3149. 1,
  3150. {-0.02,0.025},
  3151. 1
  3152. },
  3153. {
  3154. "Target",
  3155. 1,
  3156. "Limit0109",
  3157. 1,
  3158. {-0.02,-0.025},
  3159. 1
  3160. },
  3161. {
  3162. "Target",
  3163. 1,
  3164. "Limit0109",
  3165. 1,
  3166. {0.02,-0.025},
  3167. 1
  3168. },
  3169. {
  3170. "Target",
  3171. 1,
  3172. "Limit0109",
  3173. 1,
  3174. {0.02,0.025},
  3175. 1
  3176. }
  3177. };
  3178. };
  3179. };
  3180. class TargetLocked
  3181. {
  3182. condition="missilelocked";
  3183. class shape
  3184. {
  3185. type="line";
  3186. width=4;
  3187. points[]=
  3188. {
  3189. {
  3190. "Target",
  3191. 1,
  3192. "Limit0109",
  3193. 1,
  3194. {0,-0.037500001},
  3195. 1
  3196. },
  3197. {
  3198. "Target",
  3199. 1,
  3200. "Limit0109",
  3201. 1,
  3202. {0.029999999,0},
  3203. 1
  3204. },
  3205. {
  3206. "Target",
  3207. 1,
  3208. "Limit0109",
  3209. 1,
  3210. {0,0.037500001},
  3211. 1
  3212. },
  3213. {
  3214. "Target",
  3215. 1,
  3216. "Limit0109",
  3217. 1,
  3218. {-0.029999999,0},
  3219. 1
  3220. },
  3221. {
  3222. "Target",
  3223. 1,
  3224. "Limit0109",
  3225. 1,
  3226. {0,-0.037500001},
  3227. 1
  3228. }
  3229. };
  3230. };
  3231. };
  3232. class TargetingPodGroup
  3233. {
  3234. condition="1-pilotcameralock";
  3235. class TargetingPodDir
  3236. {
  3237. type="line";
  3238. width=3;
  3239. points[]=
  3240. {
  3241. {
  3242. "TargetingPodDir",
  3243. 1,
  3244. {0.020805599,0.0051731099},
  3245. 1
  3246. },
  3247. {
  3248. "TargetingPodDir",
  3249. 1,
  3250. {0.020805599,-0.0051731099},
  3251. 1
  3252. },
  3253. {},
  3254. {
  3255. "TargetingPodDir",
  3256. 1,
  3257. {0.0176381,-0.0147318},
  3258. 1
  3259. },
  3260. {
  3261. "TargetingPodDir",
  3262. 1,
  3263. {0.0117854,-0.0220477},
  3264. 1
  3265. },
  3266. {},
  3267. {
  3268. "TargetingPodDir",
  3269. 1,
  3270. {0.0041384902,-0.026007},
  3271. 1
  3272. },
  3273. {
  3274. "TargetingPodDir",
  3275. 1,
  3276. {-0.0041384902,-0.026007},
  3277. 1
  3278. },
  3279. {},
  3280. {
  3281. "TargetingPodDir",
  3282. 1,
  3283. {-0.0117854,-0.0220477},
  3284. 1
  3285. },
  3286. {
  3287. "TargetingPodDir",
  3288. 1,
  3289. {-0.0176381,-0.0147318},
  3290. 1
  3291. },
  3292. {},
  3293. {
  3294. "TargetingPodDir",
  3295. 1,
  3296. {-0.020805599,-0.0051731099},
  3297. 1
  3298. },
  3299. {
  3300. "TargetingPodDir",
  3301. 1,
  3302. {-0.020805599,0.0051731202},
  3303. 1
  3304. },
  3305. {},
  3306. {
  3307. "TargetingPodDir",
  3308. 1,
  3309. {-0.0176381,0.0147318},
  3310. 1
  3311. },
  3312. {
  3313. "TargetingPodDir",
  3314. 1,
  3315. {-0.0117854,0.0220477},
  3316. 1
  3317. },
  3318. {},
  3319. {
  3320. "TargetingPodDir",
  3321. 1,
  3322. {-0.0041384902,0.026007},
  3323. 1
  3324. },
  3325. {
  3326. "TargetingPodDir",
  3327. 1,
  3328. {0.0041384902,0.026007},
  3329. 1
  3330. },
  3331. {},
  3332. {
  3333. "TargetingPodDir",
  3334. 1,
  3335. {0.0117854,0.0220477},
  3336. 1
  3337. },
  3338. {
  3339. "TargetingPodDir",
  3340. 1,
  3341. {0.0176381,0.0147318},
  3342. 1
  3343. },
  3344. {},
  3345. {
  3346. "TargetingPodDir",
  3347. 1,
  3348. {0.020805599,0.0051731002},
  3349. 1
  3350. },
  3351. {
  3352. "TargetingPodDir",
  3353. 1,
  3354. {0.020805599,-0.0051731202},
  3355. 1
  3356. },
  3357. {},
  3358. {
  3359. "TargetingPodDir",
  3360. 1,
  3361. {0.0176381,-0.0147318},
  3362. 1
  3363. },
  3364. {
  3365. "TargetingPodDir",
  3366. 1,
  3367. {0.0117854,-0.0220477},
  3368. 1
  3369. },
  3370. {},
  3371. {
  3372. "TargetingPodDir",
  3373. 1,
  3374. {0.0041384902,-0.026007},
  3375. 1
  3376. },
  3377. {
  3378. "TargetingPodDir",
  3379. 1,
  3380. {-0.0041385,-0.026007},
  3381. 1
  3382. },
  3383. {},
  3384. {
  3385. "TargetingPodDir",
  3386. 1,
  3387. {-0.0117854,-0.0220477},
  3388. 1
  3389. },
  3390. {
  3391. "TargetingPodDir",
  3392. 1,
  3393. {-0.0176381,-0.0147318},
  3394. 1
  3395. },
  3396. {},
  3397. {}
  3398. };
  3399. };
  3400. };
  3401. class TargetingPodGroupOn
  3402. {
  3403. condition="pilotcameralock";
  3404. class TargetingPodDir
  3405. {
  3406. type="line";
  3407. width=3;
  3408. points[]=
  3409. {
  3410. {
  3411. "TargetingPodTarget",
  3412. 1,
  3413. "Limit0109",
  3414. 1,
  3415. {0.020805599,0.0051731099},
  3416. 1
  3417. },
  3418. {
  3419. "TargetingPodTarget",
  3420. 1,
  3421. "Limit0109",
  3422. 1,
  3423. {0.020805599,-0.0051731099},
  3424. 1
  3425. },
  3426. {},
  3427. {
  3428. "TargetingPodTarget",
  3429. 1,
  3430. "Limit0109",
  3431. 1,
  3432. {0.0176381,-0.0147318},
  3433. 1
  3434. },
  3435. {
  3436. "TargetingPodTarget",
  3437. 1,
  3438. "Limit0109",
  3439. 1,
  3440. {0.0117854,-0.0220477},
  3441. 1
  3442. },
  3443. {},
  3444. {
  3445. "TargetingPodTarget",
  3446. 1,
  3447. "Limit0109",
  3448. 1,
  3449. {0.0041384902,-0.026007},
  3450. 1
  3451. },
  3452. {
  3453. "TargetingPodTarget",
  3454. 1,
  3455. "Limit0109",
  3456. 1,
  3457. {-0.0041384902,-0.026007},
  3458. 1
  3459. },
  3460. {},
  3461. {
  3462. "TargetingPodTarget",
  3463. 1,
  3464. "Limit0109",
  3465. 1,
  3466. {-0.0117854,-0.0220477},
  3467. 1
  3468. },
  3469. {
  3470. "TargetingPodTarget",
  3471. 1,
  3472. "Limit0109",
  3473. 1,
  3474. {-0.0176381,-0.0147318},
  3475. 1
  3476. },
  3477. {},
  3478. {
  3479. "TargetingPodTarget",
  3480. 1,
  3481. "Limit0109",
  3482. 1,
  3483. {-0.020805599,-0.0051731099},
  3484. 1
  3485. },
  3486. {
  3487. "TargetingPodTarget",
  3488. 1,
  3489. "Limit0109",
  3490. 1,
  3491. {-0.020805599,0.0051731202},
  3492. 1
  3493. },
  3494. {},
  3495. {
  3496. "TargetingPodTarget",
  3497. 1,
  3498. "Limit0109",
  3499. 1,
  3500. {-0.0176381,0.0147318},
  3501. 1
  3502. },
  3503. {
  3504. "TargetingPodTarget",
  3505. 1,
  3506. "Limit0109",
  3507. 1,
  3508. {-0.0117854,0.0220477},
  3509. 1
  3510. },
  3511. {},
  3512. {
  3513. "TargetingPodTarget",
  3514. 1,
  3515. "Limit0109",
  3516. 1,
  3517. {-0.0041384902,0.026007},
  3518. 1
  3519. },
  3520. {
  3521. "TargetingPodTarget",
  3522. 1,
  3523. "Limit0109",
  3524. 1,
  3525. {0.0041384902,0.026007},
  3526. 1
  3527. },
  3528. {},
  3529. {
  3530. "TargetingPodTarget",
  3531. 1,
  3532. "Limit0109",
  3533. 1,
  3534. {0.0117854,0.0220477},
  3535. 1
  3536. },
  3537. {
  3538. "TargetingPodTarget",
  3539. 1,
  3540. "Limit0109",
  3541. 1,
  3542. {0.0176381,0.0147318},
  3543. 1
  3544. },
  3545. {},
  3546. {
  3547. "TargetingPodTarget",
  3548. 1,
  3549. "Limit0109",
  3550. 1,
  3551. {0.020805599,0.0051731002},
  3552. 1
  3553. },
  3554. {
  3555. "TargetingPodTarget",
  3556. 1,
  3557. "Limit0109",
  3558. 1,
  3559. {0.020805599,-0.0051731202},
  3560. 1
  3561. },
  3562. {},
  3563. {
  3564. "TargetingPodTarget",
  3565. 1,
  3566. "Limit0109",
  3567. 1,
  3568. {0.0176381,-0.0147318},
  3569. 1
  3570. },
  3571. {
  3572. "TargetingPodTarget",
  3573. 1,
  3574. "Limit0109",
  3575. 1,
  3576. {0.0117854,-0.0220477},
  3577. 1
  3578. },
  3579. {},
  3580. {
  3581. "TargetingPodTarget",
  3582. 1,
  3583. "Limit0109",
  3584. 1,
  3585. {0.0041384902,-0.026007},
  3586. 1
  3587. },
  3588. {
  3589. "TargetingPodTarget",
  3590. 1,
  3591. "Limit0109",
  3592. 1,
  3593. {-0.0041385,-0.026007},
  3594. 1
  3595. },
  3596. {},
  3597. {
  3598. "TargetingPodTarget",
  3599. 1,
  3600. "Limit0109",
  3601. 1,
  3602. {-0.0117854,-0.0220477},
  3603. 1
  3604. },
  3605. {
  3606. "TargetingPodTarget",
  3607. 1,
  3608. "Limit0109",
  3609. 1,
  3610. {-0.0176381,-0.0147318},
  3611. 1
  3612. },
  3613. {},
  3614. {}
  3615. };
  3616. };
  3617. };
  3618. class LAR
  3619. {
  3620. type="group";
  3621. condition="(AAmissile + missilelocked)/2";
  3622. class Lines
  3623. {
  3624. type="line";
  3625. width=4;
  3626. points[]=
  3627. {
  3628. {
  3629. {0.20999999,0.55000001},
  3630. 1
  3631. },
  3632. {
  3633. {0.19,0.55000001},
  3634. 1
  3635. },
  3636. {
  3637. {0.19,0.76999998},
  3638. 1
  3639. },
  3640. {
  3641. {0.20999999,0.76999998},
  3642. 1
  3643. },
  3644. {},
  3645. {
  3646. {0.20999999,0.71499997},
  3647. 1
  3648. },
  3649. {
  3650. {0.19,0.71499997},
  3651. 1
  3652. },
  3653. {},
  3654. {
  3655. {0.20999999,0.66000003},
  3656. 1
  3657. },
  3658. {
  3659. {0.19,0.66000003},
  3660. 1
  3661. },
  3662. {},
  3663. {
  3664. {0.20999999,0.60500002},
  3665. 1
  3666. },
  3667. {
  3668. {0.19,0.60500002},
  3669. 1
  3670. },
  3671. {},
  3672. {
  3673. "LarTargetDist",
  3674. -0.22,
  3675. {0.17,0.79000002},
  3676. 1
  3677. },
  3678. {
  3679. "LarTargetDist",
  3680. -0.22,
  3681. {0.19,0.76999998},
  3682. 1
  3683. },
  3684. {
  3685. "LarTargetDist",
  3686. -0.22,
  3687. {0.17,0.75},
  3688. 1
  3689. },
  3690. {}
  3691. };
  3692. };
  3693. class Poly
  3694. {
  3695. type="polygon";
  3696. points[]=
  3697. {
  3698. {
  3699. {
  3700. "LarAmmoMin",
  3701. -0.22,
  3702. {0.191,0.76999998},
  3703. 1
  3704. },
  3705. {
  3706. "LarAmmoMax",
  3707. -0.22,
  3708. {0.191,0.76999998},
  3709. 1
  3710. },
  3711. {
  3712. "LarAmmoMax",
  3713. -0.22,
  3714. {0.208,0.76999998},
  3715. 1
  3716. },
  3717. {
  3718. "LarAmmoMin",
  3719. -0.22,
  3720. {0.208,0.76999998},
  3721. 1
  3722. }
  3723. }
  3724. };
  3725. };
  3726. class TopText
  3727. {
  3728. type="text";
  3729. source="LarTop";
  3730. sourceScale=0.001;
  3731. scale=1;
  3732. pos[]=
  3733. {
  3734. {0.22,0.52999997},
  3735. 1
  3736. };
  3737. right[]=
  3738. {
  3739. {0.25999999,0.52999997},
  3740. 1
  3741. };
  3742. down[]=
  3743. {
  3744. {0.22,0.56999999},
  3745. 1
  3746. };
  3747. align="right";
  3748. };
  3749. class MiddleText: TopText
  3750. {
  3751. source="LarTop";
  3752. sourcePrecision=-1;
  3753. sourceScale=0.00050000002;
  3754. pos[]=
  3755. {
  3756. {0.22,0.63999999},
  3757. 1
  3758. };
  3759. right[]=
  3760. {
  3761. {0.25999999,0.63999999},
  3762. 1
  3763. };
  3764. down[]=
  3765. {
  3766. {0.22,0.68000001},
  3767. 1
  3768. };
  3769. };
  3770. class SpeedText: TopText
  3771. {
  3772. source="LarTargetSpeed";
  3773. align="left";
  3774. sourceScale=3.5999999;
  3775. pos[]=
  3776. {
  3777. "LarTargetDist",
  3778. -0.22,
  3779. {0.16,0.75},
  3780. 1
  3781. };
  3782. right[]=
  3783. {
  3784. "LarTargetDist",
  3785. -0.22,
  3786. {0.2,0.75},
  3787. 1
  3788. };
  3789. down[]=
  3790. {
  3791. "LarTargetDist",
  3792. -0.22,
  3793. {0.16,0.79000002},
  3794. 1
  3795. };
  3796. };
  3797. };
  3798. };
  3799. };
  3800. class MFD_Left
  3801. {
  3802. topLeft="MFD_1_top_left";
  3803. topRight="MFD_1_top_right";
  3804. bottomLeft="MFD_1_bottom_left";
  3805. borderLeft=0;
  3806. borderRight=0;
  3807. borderTop=0.1;
  3808. borderBottom=0;
  3809. color[]={0.15000001,1,0.15000001,1};
  3810. enableParallax=0;
  3811. class Bones
  3812. {
  3813. class PylonAmmo1
  3814. {
  3815. type="linear";
  3816. source="PylonAmmoRelative";
  3817. sourceIndex=1;
  3818. sourceScale=1;
  3819. min=0;
  3820. max=1;
  3821. minPos[]={0,0};
  3822. maxPos[]={0,0.051757801};
  3823. };
  3824. class PylonAmmo2: PylonAmmo1
  3825. {
  3826. sourceIndex=2;
  3827. };
  3828. class PylonAmmo3: PylonAmmo1
  3829. {
  3830. sourceIndex=3;
  3831. };
  3832. class PylonAmmo4: PylonAmmo1
  3833. {
  3834. sourceIndex=4;
  3835. };
  3836. class PylonAmmo5: PylonAmmo1
  3837. {
  3838. sourceIndex=5;
  3839. };
  3840. class PylonAmmo6: PylonAmmo1
  3841. {
  3842. sourceIndex=6;
  3843. };
  3844. class PylonAmmo7: PylonAmmo1
  3845. {
  3846. sourceIndex=7;
  3847. };
  3848. class PylonAmmo8: PylonAmmo1
  3849. {
  3850. sourceIndex=8;
  3851. };
  3852. class PylonAmmo9: PylonAmmo1
  3853. {
  3854. sourceIndex=9;
  3855. };
  3856. class PylonAmmo10: PylonAmmo1
  3857. {
  3858. sourceIndex=10;
  3859. };
  3860. };
  3861. class Draw
  3862. {
  3863. color[]={0,0.83999997,0,1};
  3864. alpha=1;
  3865. condition="on";
  3866. class PylonSelected6
  3867. {
  3868. condition="PylonSelected6>0";
  3869. class NotEmpty
  3870. {
  3871. color[]={0.58999997,0.30000001,0,1};
  3872. condition="PylonAmmoRelative6>0";
  3873. class Static
  3874. {
  3875. class Lines
  3876. {
  3877. type="line";
  3878. width=4;
  3879. points[]=
  3880. {
  3881. {
  3882. {0.113477,0.15763301},
  3883. 1
  3884. },
  3885. {
  3886. {0.113477,0.24454699},
  3887. 1
  3888. },
  3889. {
  3890. {0.32246101,0.24454699},
  3891. 1
  3892. },
  3893. {
  3894. {0.32246101,0.15763301},
  3895. 1
  3896. },
  3897. {
  3898. {0.113477,0.15763301},
  3899. 1
  3900. },
  3901. {},
  3902. {
  3903. {0.32234401,0.226969},
  3904. 1
  3905. },
  3906. {
  3907. {0.35749999,0.226969},
  3908. 1
  3909. },
  3910. {
  3911. {0.35749999,0.175211},
  3912. 1
  3913. },
  3914. {
  3915. {0.32234401,0.175211},
  3916. 1
  3917. },
  3918. {
  3919. {0.32234401,0.226969},
  3920. 1
  3921. }
  3922. };
  3923. };
  3924. };
  3925. class PolyBar
  3926. {
  3927. type="polygon";
  3928. points[]=
  3929. {
  3930. {
  3931. {
  3932. {0.32234401,0.226969},
  3933. 1
  3934. },
  3935. {
  3936. {0.35749999,0.226969},
  3937. 1
  3938. },
  3939. {
  3940. "PylonAmmo6",
  3941. {0.35749999,0.175211},
  3942. 1
  3943. },
  3944. {
  3945. "PylonAmmo6",
  3946. {0.32234401,0.175211},
  3947. 1
  3948. }
  3949. }
  3950. };
  3951. };
  3952. class WeapName
  3953. {
  3954. type="text";
  3955. source="PylonMagazineName";
  3956. sourceindex=6;
  3957. sourceScale=1;
  3958. align="right";
  3959. scale=1;
  3960. pos[]=
  3961. {
  3962. {0.127148,0.163727},
  3963. 1
  3964. };
  3965. right[]=
  3966. {
  3967. {0.16328099,0.163727},
  3968. 1
  3969. };
  3970. down[]=
  3971. {
  3972. {0.127148,0.198883},
  3973. 1
  3974. };
  3975. };
  3976. class MagName
  3977. {
  3978. type="text";
  3979. source="PylonMagazineNameShort";
  3980. sourceindex=6;
  3981. sourceScale=1;
  3982. align="right";
  3983. scale=1;
  3984. pos[]=
  3985. {
  3986. {0.127148,0.20372701},
  3987. 1
  3988. };
  3989. right[]=
  3990. {
  3991. {0.16328099,0.20372701},
  3992. 1
  3993. };
  3994. down[]=
  3995. {
  3996. {0.127148,0.238883},
  3997. 1
  3998. };
  3999. };
  4000. class MagCount
  4001. {
  4002. type="text";
  4003. source="PylonAmmo";
  4004. sourceindex=6;
  4005. sourceScale=1;
  4006. align="left";
  4007. scale=1;
  4008. pos[]=
  4009. {
  4010. {0.30714801,0.20372701},
  4011. 1
  4012. };
  4013. right[]=
  4014. {
  4015. {0.343281,0.20372701},
  4016. 1
  4017. };
  4018. down[]=
  4019. {
  4020. {0.30714801,0.238883},
  4021. 1
  4022. };
  4023. };
  4024. };
  4025. class Empty
  4026. {
  4027. color[]={1,0,0,1};
  4028. condition="PylonAmmoRelative6<=0";
  4029. class Static
  4030. {
  4031. class Lines
  4032. {
  4033. type="line";
  4034. width=4;
  4035. points[]=
  4036. {
  4037. {
  4038. {0.32234401,0.226969},
  4039. 1
  4040. },
  4041. {
  4042. {0.35749999,0.226969},
  4043. 1
  4044. },
  4045. {
  4046. {0.35749999,0.175211},
  4047. 1
  4048. },
  4049. {
  4050. {0.32234401,0.175211},
  4051. 1
  4052. },
  4053. {
  4054. {0.32234401,0.226969},
  4055. 1
  4056. }
  4057. };
  4058. };
  4059. class Poly
  4060. {
  4061. type="polygon";
  4062. points[]=
  4063. {
  4064. {
  4065. {
  4066. {0.113477,0.15763301},
  4067. 1
  4068. },
  4069. {
  4070. {0.113477,0.24454699},
  4071. 1
  4072. },
  4073. {
  4074. {0.32246101,0.24454699},
  4075. 1
  4076. },
  4077. {
  4078. {0.32246101,0.15763301},
  4079. 1
  4080. }
  4081. }
  4082. };
  4083. };
  4084. };
  4085. class black
  4086. {
  4087. color[]={1,0,0,1};
  4088. class MagName
  4089. {
  4090. type="text";
  4091. source="PylonMagazineNameShort";
  4092. sourceindex=6;
  4093. sourceScale=1;
  4094. align="right";
  4095. scale=1;
  4096. pos[]=
  4097. {
  4098. {0.127148,0.16349199},
  4099. 1
  4100. };
  4101. right[]=
  4102. {
  4103. {0.14375,0.16349199},
  4104. 1
  4105. };
  4106. down[]=
  4107. {
  4108. {0.127148,0.18888301},
  4109. 1
  4110. };
  4111. };
  4112. };
  4113. };
  4114. };
  4115. class Pylon6
  4116. {
  4117. condition="PylonSelected6<=0";
  4118. class NotEmpty
  4119. {
  4120. color[]={0,0.83999997,0,1};
  4121. condition="PylonAmmoRelative6>0";
  4122. class Static
  4123. {
  4124. class Lines
  4125. {
  4126. type="line";
  4127. width=4;
  4128. points[]=
  4129. {
  4130. {
  4131. {0.113477,0.15763301},
  4132. 1
  4133. },
  4134. {
  4135. {0.113477,0.24454699},
  4136. 1
  4137. },
  4138. {
  4139. {0.32246101,0.24454699},
  4140. 1
  4141. },
  4142. {
  4143. {0.32246101,0.15763301},
  4144. 1
  4145. },
  4146. {
  4147. {0.113477,0.15763301},
  4148. 1
  4149. },
  4150. {},
  4151. {
  4152. {0.32234401,0.226969},
  4153. 1
  4154. },
  4155. {
  4156. {0.35749999,0.226969},
  4157. 1
  4158. },
  4159. {
  4160. {0.35749999,0.175211},
  4161. 1
  4162. },
  4163. {
  4164. {0.32234401,0.175211},
  4165. 1
  4166. },
  4167. {
  4168. {0.32234401,0.226969},
  4169. 1
  4170. }
  4171. };
  4172. };
  4173. };
  4174. class PolyBar
  4175. {
  4176. type="polygon";
  4177. points[]=
  4178. {
  4179. {
  4180. {
  4181. {0.32234401,0.226969},
  4182. 1
  4183. },
  4184. {
  4185. {0.35749999,0.226969},
  4186. 1
  4187. },
  4188. {
  4189. "PylonAmmo6",
  4190. {0.35749999,0.175211},
  4191. 1
  4192. },
  4193. {
  4194. "PylonAmmo6",
  4195. {0.32234401,0.175211},
  4196. 1
  4197. }
  4198. }
  4199. };
  4200. };
  4201. class WeapName
  4202. {
  4203. type="text";
  4204. source="PylonMagazineName";
  4205. sourceindex=6;
  4206. sourceScale=1;
  4207. align="right";
  4208. scale=1;
  4209. pos[]=
  4210. {
  4211. {0.127148,0.163727},
  4212. 1
  4213. };
  4214. right[]=
  4215. {
  4216. {0.16328099,0.163727},
  4217. 1
  4218. };
  4219. down[]=
  4220. {
  4221. {0.127148,0.198883},
  4222. 1
  4223. };
  4224. };
  4225. class MagName
  4226. {
  4227. type="text";
  4228. source="PylonMagazineNameShort";
  4229. sourceindex=6;
  4230. sourceScale=1;
  4231. align="right";
  4232. scale=1;
  4233. pos[]=
  4234. {
  4235. {0.127148,0.20372701},
  4236. 1
  4237. };
  4238. right[]=
  4239. {
  4240. {0.16328099,0.20372701},
  4241. 1
  4242. };
  4243. down[]=
  4244. {
  4245. {0.127148,0.238883},
  4246. 1
  4247. };
  4248. };
  4249. class MagCount
  4250. {
  4251. type="text";
  4252. source="PylonAmmo";
  4253. sourceindex=6;
  4254. sourceScale=1;
  4255. align="left";
  4256. scale=1;
  4257. pos[]=
  4258. {
  4259. {0.30714801,0.20372701},
  4260. 1
  4261. };
  4262. right[]=
  4263. {
  4264. {0.343281,0.20372701},
  4265. 1
  4266. };
  4267. down[]=
  4268. {
  4269. {0.30714801,0.238883},
  4270. 1
  4271. };
  4272. };
  4273. };
  4274. class Empty
  4275. {
  4276. color[]={1,0,0,1};
  4277. condition="PylonAmmoRelative6<=0";
  4278. class Static
  4279. {
  4280. class Lines
  4281. {
  4282. type="line";
  4283. width=4;
  4284. points[]=
  4285. {
  4286. {
  4287. {0.32234401,0.226969},
  4288. 1
  4289. },
  4290. {
  4291. {0.35749999,0.226969},
  4292. 1
  4293. },
  4294. {
  4295. {0.35749999,0.175211},
  4296. 1
  4297. },
  4298. {
  4299. {0.32234401,0.175211},
  4300. 1
  4301. },
  4302. {
  4303. {0.32234401,0.226969},
  4304. 1
  4305. }
  4306. };
  4307. };
  4308. class Poly
  4309. {
  4310. type="polygon";
  4311. points[]=
  4312. {
  4313. {
  4314. {
  4315. {0.113477,0.15763301},
  4316. 1
  4317. },
  4318. {
  4319. {0.113477,0.24454699},
  4320. 1
  4321. },
  4322. {
  4323. {0.32246101,0.24454699},
  4324. 1
  4325. },
  4326. {
  4327. {0.32246101,0.15763301},
  4328. 1
  4329. }
  4330. }
  4331. };
  4332. };
  4333. };
  4334. class black
  4335. {
  4336. color[]={1,0,0,1};
  4337. class MagName
  4338. {
  4339. type="text";
  4340. source="PylonMagazineNameShort";
  4341. sourceindex=6;
  4342. sourceScale=1;
  4343. align="right";
  4344. scale=1;
  4345. pos[]=
  4346. {
  4347. {0.127148,0.16349199},
  4348. 1
  4349. };
  4350. right[]=
  4351. {
  4352. {0.14375,0.16349199},
  4353. 1
  4354. };
  4355. down[]=
  4356. {
  4357. {0.127148,0.18888301},
  4358. 1
  4359. };
  4360. };
  4361. };
  4362. };
  4363. };
  4364. class PylonSelected7
  4365. {
  4366. condition="PylonSelected7>0";
  4367. class NotEmpty
  4368. {
  4369. color[]={0.58999997,0.30000001,0,1};
  4370. condition="PylonAmmoRelative7>0";
  4371. class Static
  4372. {
  4373. class Lines
  4374. {
  4375. type="line";
  4376. width=4;
  4377. points[]=
  4378. {
  4379. {
  4380. {0.113477,0.273844},
  4381. 1
  4382. },
  4383. {
  4384. {0.113477,0.36075801},
  4385. 1
  4386. },
  4387. {
  4388. {0.32246101,0.36075801},
  4389. 1
  4390. },
  4391. {
  4392. {0.32246101,0.273844},
  4393. 1
  4394. },
  4395. {
  4396. {0.113477,0.273844},
  4397. 1
  4398. },
  4399. {},
  4400. {
  4401. {0.32234401,0.34318},
  4402. 1
  4403. },
  4404. {
  4405. {0.35749999,0.34318},
  4406. 1
  4407. },
  4408. {
  4409. {0.35749999,0.29142201},
  4410. 1
  4411. },
  4412. {
  4413. {0.32234401,0.29142201},
  4414. 1
  4415. },
  4416. {
  4417. {0.32234401,0.34318},
  4418. 1
  4419. }
  4420. };
  4421. };
  4422. };
  4423. class PolyBar
  4424. {
  4425. type="polygon";
  4426. points[]=
  4427. {
  4428. {
  4429. {
  4430. {0.32234401,0.34318},
  4431. 1
  4432. },
  4433. {
  4434. {0.35749999,0.34318},
  4435. 1
  4436. },
  4437. {
  4438. "PylonAmmo7",
  4439. {0.35749999,0.29142201},
  4440. 1
  4441. },
  4442. {
  4443. "PylonAmmo7",
  4444. {0.32234401,0.29142201},
  4445. 1
  4446. }
  4447. }
  4448. };
  4449. };
  4450. class WeapName
  4451. {
  4452. type="text";
  4453. source="PylonMagazineName";
  4454. sourceindex=7;
  4455. sourceScale=1;
  4456. align="right";
  4457. scale=1;
  4458. pos[]=
  4459. {
  4460. {0.127148,0.27993801},
  4461. 1
  4462. };
  4463. right[]=
  4464. {
  4465. {0.16328099,0.27993801},
  4466. 1
  4467. };
  4468. down[]=
  4469. {
  4470. {0.127148,0.31509399},
  4471. 1
  4472. };
  4473. };
  4474. class MagName
  4475. {
  4476. type="text";
  4477. source="PylonMagazineNameShort";
  4478. sourceindex=7;
  4479. sourceScale=1;
  4480. align="right";
  4481. scale=1;
  4482. pos[]=
  4483. {
  4484. {0.127148,0.31993699},
  4485. 1
  4486. };
  4487. right[]=
  4488. {
  4489. {0.16328099,0.31993699},
  4490. 1
  4491. };
  4492. down[]=
  4493. {
  4494. {0.127148,0.35509399},
  4495. 1
  4496. };
  4497. };
  4498. class MagCount
  4499. {
  4500. type="text";
  4501. source="PylonAmmo";
  4502. sourceindex=7;
  4503. sourceScale=1;
  4504. align="left";
  4505. scale=1;
  4506. pos[]=
  4507. {
  4508. {0.30714801,0.31993699},
  4509. 1
  4510. };
  4511. right[]=
  4512. {
  4513. {0.343281,0.31993699},
  4514. 1
  4515. };
  4516. down[]=
  4517. {
  4518. {0.30714801,0.35509399},
  4519. 1
  4520. };
  4521. };
  4522. };
  4523. class Empty
  4524. {
  4525. color[]={1,0,0,1};
  4526. condition="PylonAmmoRelative7<=0";
  4527. class Static
  4528. {
  4529. class Lines
  4530. {
  4531. type="line";
  4532. width=4;
  4533. points[]=
  4534. {
  4535. {
  4536. {0.32234401,0.34318},
  4537. 1
  4538. },
  4539. {
  4540. {0.35749999,0.34318},
  4541. 1
  4542. },
  4543. {
  4544. {0.35749999,0.29142201},
  4545. 1
  4546. },
  4547. {
  4548. {0.32234401,0.29142201},
  4549. 1
  4550. },
  4551. {
  4552. {0.32234401,0.34318},
  4553. 1
  4554. }
  4555. };
  4556. };
  4557. class Poly
  4558. {
  4559. type="polygon";
  4560. points[]=
  4561. {
  4562. {
  4563. {
  4564. {0.113477,0.273844},
  4565. 1
  4566. },
  4567. {
  4568. {0.113477,0.36075801},
  4569. 1
  4570. },
  4571. {
  4572. {0.32246101,0.36075801},
  4573. 1
  4574. },
  4575. {
  4576. {0.32246101,0.273844},
  4577. 1
  4578. }
  4579. }
  4580. };
  4581. };
  4582. };
  4583. class black
  4584. {
  4585. color[]={1,0,0,1};
  4586. class MagName
  4587. {
  4588. type="text";
  4589. source="PylonMagazineNameShort";
  4590. sourceindex=7;
  4591. sourceScale=1;
  4592. align="right";
  4593. scale=1;
  4594. pos[]=
  4595. {
  4596. {0.127148,0.27970299},
  4597. 1
  4598. };
  4599. right[]=
  4600. {
  4601. {0.14375,0.27970299},
  4602. 1
  4603. };
  4604. down[]=
  4605. {
  4606. {0.127148,0.305094},
  4607. 1
  4608. };
  4609. };
  4610. };
  4611. };
  4612. };
  4613. class Pylon7
  4614. {
  4615. condition="PylonSelected7<=0";
  4616. class NotEmpty
  4617. {
  4618. color[]={0,0.83999997,0,1};
  4619. condition="PylonAmmoRelative7>0";
  4620. class Static
  4621. {
  4622. class Lines
  4623. {
  4624. type="line";
  4625. width=4;
  4626. points[]=
  4627. {
  4628. {
  4629. {0.113477,0.273844},
  4630. 1
  4631. },
  4632. {
  4633. {0.113477,0.36075801},
  4634. 1
  4635. },
  4636. {
  4637. {0.32246101,0.36075801},
  4638. 1
  4639. },
  4640. {
  4641. {0.32246101,0.273844},
  4642. 1
  4643. },
  4644. {
  4645. {0.113477,0.273844},
  4646. 1
  4647. },
  4648. {},
  4649. {
  4650. {0.32234401,0.34318},
  4651. 1
  4652. },
  4653. {
  4654. {0.35749999,0.34318},
  4655. 1
  4656. },
  4657. {
  4658. {0.35749999,0.29142201},
  4659. 1
  4660. },
  4661. {
  4662. {0.32234401,0.29142201},
  4663. 1
  4664. },
  4665. {
  4666. {0.32234401,0.34318},
  4667. 1
  4668. }
  4669. };
  4670. };
  4671. };
  4672. class PolyBar
  4673. {
  4674. type="polygon";
  4675. points[]=
  4676. {
  4677. {
  4678. {
  4679. {0.32234401,0.34318},
  4680. 1
  4681. },
  4682. {
  4683. {0.35749999,0.34318},
  4684. 1
  4685. },
  4686. {
  4687. "PylonAmmo7",
  4688. {0.35749999,0.29142201},
  4689. 1
  4690. },
  4691. {
  4692. "PylonAmmo7",
  4693. {0.32234401,0.29142201},
  4694. 1
  4695. }
  4696. }
  4697. };
  4698. };
  4699. class WeapName
  4700. {
  4701. type="text";
  4702. source="PylonMagazineName";
  4703. sourceindex=7;
  4704. sourceScale=1;
  4705. align="right";
  4706. scale=1;
  4707. pos[]=
  4708. {
  4709. {0.127148,0.27993801},
  4710. 1
  4711. };
  4712. right[]=
  4713. {
  4714. {0.16328099,0.27993801},
  4715. 1
  4716. };
  4717. down[]=
  4718. {
  4719. {0.127148,0.31509399},
  4720. 1
  4721. };
  4722. };
  4723. class MagName
  4724. {
  4725. type="text";
  4726. source="PylonMagazineNameShort";
  4727. sourceindex=7;
  4728. sourceScale=1;
  4729. align="right";
  4730. scale=1;
  4731. pos[]=
  4732. {
  4733. {0.127148,0.31993699},
  4734. 1
  4735. };
  4736. right[]=
  4737. {
  4738. {0.16328099,0.31993699},
  4739. 1
  4740. };
  4741. down[]=
  4742. {
  4743. {0.127148,0.35509399},
  4744. 1
  4745. };
  4746. };
  4747. class MagCount
  4748. {
  4749. type="text";
  4750. source="PylonAmmo";
  4751. sourceindex=7;
  4752. sourceScale=1;
  4753. align="left";
  4754. scale=1;
  4755. pos[]=
  4756. {
  4757. {0.30714801,0.31993699},
  4758. 1
  4759. };
  4760. right[]=
  4761. {
  4762. {0.343281,0.31993699},
  4763. 1
  4764. };
  4765. down[]=
  4766. {
  4767. {0.30714801,0.35509399},
  4768. 1
  4769. };
  4770. };
  4771. };
  4772. class Empty
  4773. {
  4774. color[]={1,0,0,1};
  4775. condition="PylonAmmoRelative7<=0";
  4776. class Static
  4777. {
  4778. class Lines
  4779. {
  4780. type="line";
  4781. width=4;
  4782. points[]=
  4783. {
  4784. {
  4785. {0.32234401,0.34318},
  4786. 1
  4787. },
  4788. {
  4789. {0.35749999,0.34318},
  4790. 1
  4791. },
  4792. {
  4793. {0.35749999,0.29142201},
  4794. 1
  4795. },
  4796. {
  4797. {0.32234401,0.29142201},
  4798. 1
  4799. },
  4800. {
  4801. {0.32234401,0.34318},
  4802. 1
  4803. }
  4804. };
  4805. };
  4806. class Poly
  4807. {
  4808. type="polygon";
  4809. points[]=
  4810. {
  4811. {
  4812. {
  4813. {0.113477,0.273844},
  4814. 1
  4815. },
  4816. {
  4817. {0.113477,0.36075801},
  4818. 1
  4819. },
  4820. {
  4821. {0.32246101,0.36075801},
  4822. 1
  4823. },
  4824. {
  4825. {0.32246101,0.273844},
  4826. 1
  4827. }
  4828. }
  4829. };
  4830. };
  4831. };
  4832. class black
  4833. {
  4834. color[]={1,0,0,1};
  4835. class MagName
  4836. {
  4837. type="text";
  4838. source="PylonMagazineNameShort";
  4839. sourceindex=7;
  4840. sourceScale=1;
  4841. align="right";
  4842. scale=1;
  4843. pos[]=
  4844. {
  4845. {0.127148,0.27970299},
  4846. 1
  4847. };
  4848. right[]=
  4849. {
  4850. {0.14375,0.27970299},
  4851. 1
  4852. };
  4853. down[]=
  4854. {
  4855. {0.127148,0.305094},
  4856. 1
  4857. };
  4858. };
  4859. };
  4860. };
  4861. };
  4862. class PylonSelected8
  4863. {
  4864. condition="PylonSelected8>0";
  4865. class NotEmpty
  4866. {
  4867. color[]={0.58999997,0.30000001,0,1};
  4868. condition="PylonAmmoRelative8>0";
  4869. class Static
  4870. {
  4871. class Lines
  4872. {
  4873. type="line";
  4874. width=4;
  4875. points[]=
  4876. {
  4877. {
  4878. {0.113477,0.390055},
  4879. 1
  4880. },
  4881. {
  4882. {0.113477,0.476969},
  4883. 1
  4884. },
  4885. {
  4886. {0.32246101,0.476969},
  4887. 1
  4888. },
  4889. {
  4890. {0.32246101,0.390055},
  4891. 1
  4892. },
  4893. {
  4894. {0.113477,0.390055},
  4895. 1
  4896. },
  4897. {},
  4898. {
  4899. {0.32234401,0.459391},
  4900. 1
  4901. },
  4902. {
  4903. {0.35749999,0.459391},
  4904. 1
  4905. },
  4906. {
  4907. {0.35749999,0.40763301},
  4908. 1
  4909. },
  4910. {
  4911. {0.32234401,0.40763301},
  4912. 1
  4913. },
  4914. {
  4915. {0.32234401,0.459391},
  4916. 1
  4917. }
  4918. };
  4919. };
  4920. };
  4921. class PolyBar
  4922. {
  4923. type="polygon";
  4924. points[]=
  4925. {
  4926. {
  4927. {
  4928. {0.32234401,0.459391},
  4929. 1
  4930. },
  4931. {
  4932. {0.35749999,0.459391},
  4933. 1
  4934. },
  4935. {
  4936. "PylonAmmo8",
  4937. {0.35749999,0.40763301},
  4938. 1
  4939. },
  4940. {
  4941. "PylonAmmo8",
  4942. {0.32234401,0.40763301},
  4943. 1
  4944. }
  4945. }
  4946. };
  4947. };
  4948. class WeapName
  4949. {
  4950. type="text";
  4951. source="PylonMagazineName";
  4952. sourceindex=8;
  4953. sourceScale=1;
  4954. align="right";
  4955. scale=1;
  4956. pos[]=
  4957. {
  4958. {0.127148,0.396148},
  4959. 1
  4960. };
  4961. right[]=
  4962. {
  4963. {0.16328099,0.396148},
  4964. 1
  4965. };
  4966. down[]=
  4967. {
  4968. {0.127148,0.43130499},
  4969. 1
  4970. };
  4971. };
  4972. class MagName
  4973. {
  4974. type="text";
  4975. source="PylonMagazineNameShort";
  4976. sourceindex=8;
  4977. sourceScale=1;
  4978. align="right";
  4979. scale=1;
  4980. pos[]=
  4981. {
  4982. {0.127148,0.43614799},
  4983. 1
  4984. };
  4985. right[]=
  4986. {
  4987. {0.16328099,0.43614799},
  4988. 1
  4989. };
  4990. down[]=
  4991. {
  4992. {0.127148,0.47130501},
  4993. 1
  4994. };
  4995. };
  4996. class MagCount
  4997. {
  4998. type="text";
  4999. source="PylonAmmo";
  5000. sourceindex=8;
  5001. sourceScale=1;
  5002. align="left";
  5003. scale=1;
  5004. pos[]=
  5005. {
  5006. {0.30714801,0.43614799},
  5007. 1
  5008. };
  5009. right[]=
  5010. {
  5011. {0.343281,0.43614799},
  5012. 1
  5013. };
  5014. down[]=
  5015. {
  5016. {0.30714801,0.47130501},
  5017. 1
  5018. };
  5019. };
  5020. };
  5021. class Empty
  5022. {
  5023. color[]={1,0,0,1};
  5024. condition="PylonAmmoRelative8<=0";
  5025. class Static
  5026. {
  5027. class Lines
  5028. {
  5029. type="line";
  5030. width=4;
  5031. points[]=
  5032. {
  5033. {
  5034. {0.32234401,0.459391},
  5035. 1
  5036. },
  5037. {
  5038. {0.35749999,0.459391},
  5039. 1
  5040. },
  5041. {
  5042. {0.35749999,0.40763301},
  5043. 1
  5044. },
  5045. {
  5046. {0.32234401,0.40763301},
  5047. 1
  5048. },
  5049. {
  5050. {0.32234401,0.459391},
  5051. 1
  5052. }
  5053. };
  5054. };
  5055. class Poly
  5056. {
  5057. type="polygon";
  5058. points[]=
  5059. {
  5060. {
  5061. {
  5062. {0.113477,0.390055},
  5063. 1
  5064. },
  5065. {
  5066. {0.113477,0.476969},
  5067. 1
  5068. },
  5069. {
  5070. {0.32246101,0.476969},
  5071. 1
  5072. },
  5073. {
  5074. {0.32246101,0.390055},
  5075. 1
  5076. }
  5077. }
  5078. };
  5079. };
  5080. };
  5081. class black
  5082. {
  5083. color[]={1,0,0,1};
  5084. class MagName
  5085. {
  5086. type="text";
  5087. source="PylonMagazineNameShort";
  5088. sourceindex=8;
  5089. sourceScale=1;
  5090. align="right";
  5091. scale=1;
  5092. pos[]=
  5093. {
  5094. {0.127148,0.39591399},
  5095. 1
  5096. };
  5097. right[]=
  5098. {
  5099. {0.14375,0.39591399},
  5100. 1
  5101. };
  5102. down[]=
  5103. {
  5104. {0.127148,0.421305},
  5105. 1
  5106. };
  5107. };
  5108. };
  5109. };
  5110. };
  5111. class Pylon8
  5112. {
  5113. condition="PylonSelected8<=0";
  5114. class NotEmpty
  5115. {
  5116. color[]={0,0.83999997,0,1};
  5117. condition="PylonAmmoRelative8>0";
  5118. class Static
  5119. {
  5120. class Lines
  5121. {
  5122. type="line";
  5123. width=4;
  5124. points[]=
  5125. {
  5126. {
  5127. {0.113477,0.390055},
  5128. 1
  5129. },
  5130. {
  5131. {0.113477,0.476969},
  5132. 1
  5133. },
  5134. {
  5135. {0.32246101,0.476969},
  5136. 1
  5137. },
  5138. {
  5139. {0.32246101,0.390055},
  5140. 1
  5141. },
  5142. {
  5143. {0.113477,0.390055},
  5144. 1
  5145. },
  5146. {},
  5147. {
  5148. {0.32234401,0.459391},
  5149. 1
  5150. },
  5151. {
  5152. {0.35749999,0.459391},
  5153. 1
  5154. },
  5155. {
  5156. {0.35749999,0.40763301},
  5157. 1
  5158. },
  5159. {
  5160. {0.32234401,0.40763301},
  5161. 1
  5162. },
  5163. {
  5164. {0.32234401,0.459391},
  5165. 1
  5166. }
  5167. };
  5168. };
  5169. };
  5170. class PolyBar
  5171. {
  5172. type="polygon";
  5173. points[]=
  5174. {
  5175. {
  5176. {
  5177. {0.32234401,0.459391},
  5178. 1
  5179. },
  5180. {
  5181. {0.35749999,0.459391},
  5182. 1
  5183. },
  5184. {
  5185. "PylonAmmo8",
  5186. {0.35749999,0.40763301},
  5187. 1
  5188. },
  5189. {
  5190. "PylonAmmo8",
  5191. {0.32234401,0.40763301},
  5192. 1
  5193. }
  5194. }
  5195. };
  5196. };
  5197. class WeapName
  5198. {
  5199. type="text";
  5200. source="PylonMagazineName";
  5201. sourceindex=8;
  5202. sourceScale=1;
  5203. align="right";
  5204. scale=1;
  5205. pos[]=
  5206. {
  5207. {0.127148,0.396148},
  5208. 1
  5209. };
  5210. right[]=
  5211. {
  5212. {0.16328099,0.396148},
  5213. 1
  5214. };
  5215. down[]=
  5216. {
  5217. {0.127148,0.43130499},
  5218. 1
  5219. };
  5220. };
  5221. class MagName
  5222. {
  5223. type="text";
  5224. source="PylonMagazineNameShort";
  5225. sourceindex=8;
  5226. sourceScale=1;
  5227. align="right";
  5228. scale=1;
  5229. pos[]=
  5230. {
  5231. {0.127148,0.43614799},
  5232. 1
  5233. };
  5234. right[]=
  5235. {
  5236. {0.16328099,0.43614799},
  5237. 1
  5238. };
  5239. down[]=
  5240. {
  5241. {0.127148,0.47130501},
  5242. 1
  5243. };
  5244. };
  5245. class MagCount
  5246. {
  5247. type="text";
  5248. source="PylonAmmo";
  5249. sourceindex=8;
  5250. sourceScale=1;
  5251. align="left";
  5252. scale=1;
  5253. pos[]=
  5254. {
  5255. {0.30714801,0.43614799},
  5256. 1
  5257. };
  5258. right[]=
  5259. {
  5260. {0.343281,0.43614799},
  5261. 1
  5262. };
  5263. down[]=
  5264. {
  5265. {0.30714801,0.47130501},
  5266. 1
  5267. };
  5268. };
  5269. };
  5270. class Empty
  5271. {
  5272. color[]={1,0,0,1};
  5273. condition="PylonAmmoRelative8<=0";
  5274. class Static
  5275. {
  5276. class Lines
  5277. {
  5278. type="line";
  5279. width=4;
  5280. points[]=
  5281. {
  5282. {
  5283. {0.32234401,0.459391},
  5284. 1
  5285. },
  5286. {
  5287. {0.35749999,0.459391},
  5288. 1
  5289. },
  5290. {
  5291. {0.35749999,0.40763301},
  5292. 1
  5293. },
  5294. {
  5295. {0.32234401,0.40763301},
  5296. 1
  5297. },
  5298. {
  5299. {0.32234401,0.459391},
  5300. 1
  5301. }
  5302. };
  5303. };
  5304. class Poly
  5305. {
  5306. type="polygon";
  5307. points[]=
  5308. {
  5309. {
  5310. {
  5311. {0.113477,0.390055},
  5312. 1
  5313. },
  5314. {
  5315. {0.113477,0.476969},
  5316. 1
  5317. },
  5318. {
  5319. {0.32246101,0.476969},
  5320. 1
  5321. },
  5322. {
  5323. {0.32246101,0.390055},
  5324. 1
  5325. }
  5326. }
  5327. };
  5328. };
  5329. };
  5330. class black
  5331. {
  5332. color[]={1,0,0,1};
  5333. class MagName
  5334. {
  5335. type="text";
  5336. source="PylonMagazineNameShort";
  5337. sourceindex=8;
  5338. sourceScale=1;
  5339. align="right";
  5340. scale=1;
  5341. pos[]=
  5342. {
  5343. {0.127148,0.39591399},
  5344. 1
  5345. };
  5346. right[]=
  5347. {
  5348. {0.14375,0.39591399},
  5349. 1
  5350. };
  5351. down[]=
  5352. {
  5353. {0.127148,0.421305},
  5354. 1
  5355. };
  5356. };
  5357. };
  5358. };
  5359. };
  5360. class PylonSelected9
  5361. {
  5362. condition="PylonSelected9>0";
  5363. class NotEmpty
  5364. {
  5365. color[]={0.58999997,0.30000001,0,1};
  5366. condition="PylonAmmoRelative9>0";
  5367. class Static
  5368. {
  5369. class Lines
  5370. {
  5371. type="line";
  5372. width=4;
  5373. points[]=
  5374. {
  5375. {
  5376. {0.113477,0.506266},
  5377. 1
  5378. },
  5379. {
  5380. {0.113477,0.59318},
  5381. 1
  5382. },
  5383. {
  5384. {0.32246101,0.59318},
  5385. 1
  5386. },
  5387. {
  5388. {0.32246101,0.506266},
  5389. 1
  5390. },
  5391. {
  5392. {0.113477,0.506266},
  5393. 1
  5394. },
  5395. {},
  5396. {
  5397. {0.32234401,0.57560199},
  5398. 1
  5399. },
  5400. {
  5401. {0.35749999,0.57560199},
  5402. 1
  5403. },
  5404. {
  5405. {0.35749999,0.523844},
  5406. 1
  5407. },
  5408. {
  5409. {0.32234401,0.523844},
  5410. 1
  5411. },
  5412. {
  5413. {0.32234401,0.57560199},
  5414. 1
  5415. }
  5416. };
  5417. };
  5418. };
  5419. class PolyBar
  5420. {
  5421. type="polygon";
  5422. points[]=
  5423. {
  5424. {
  5425. {
  5426. {0.32234401,0.57560199},
  5427. 1
  5428. },
  5429. {
  5430. {0.35749999,0.57560199},
  5431. 1
  5432. },
  5433. {
  5434. "PylonAmmo9",
  5435. {0.35749999,0.523844},
  5436. 1
  5437. },
  5438. {
  5439. "PylonAmmo9",
  5440. {0.32234401,0.523844},
  5441. 1
  5442. }
  5443. }
  5444. };
  5445. };
  5446. class WeapName
  5447. {
  5448. type="text";
  5449. source="PylonMagazineName";
  5450. sourceindex=9;
  5451. sourceScale=1;
  5452. align="right";
  5453. scale=1;
  5454. pos[]=
  5455. {
  5456. {0.127148,0.51235902},
  5457. 1
  5458. };
  5459. right[]=
  5460. {
  5461. {0.16328099,0.51235902},
  5462. 1
  5463. };
  5464. down[]=
  5465. {
  5466. {0.127148,0.54751599},
  5467. 1
  5468. };
  5469. };
  5470. class MagName
  5471. {
  5472. type="text";
  5473. source="PylonMagazineNameShort";
  5474. sourceindex=9;
  5475. sourceScale=1;
  5476. align="right";
  5477. scale=1;
  5478. pos[]=
  5479. {
  5480. {0.127148,0.55235898},
  5481. 1
  5482. };
  5483. right[]=
  5484. {
  5485. {0.16328099,0.55235898},
  5486. 1
  5487. };
  5488. down[]=
  5489. {
  5490. {0.127148,0.58751601},
  5491. 1
  5492. };
  5493. };
  5494. class MagCount
  5495. {
  5496. type="text";
  5497. source="PylonAmmo";
  5498. sourceindex=9;
  5499. sourceScale=1;
  5500. align="left";
  5501. scale=1;
  5502. pos[]=
  5503. {
  5504. {0.30714801,0.55235898},
  5505. 1
  5506. };
  5507. right[]=
  5508. {
  5509. {0.343281,0.55235898},
  5510. 1
  5511. };
  5512. down[]=
  5513. {
  5514. {0.30714801,0.58751601},
  5515. 1
  5516. };
  5517. };
  5518. };
  5519. class Empty
  5520. {
  5521. color[]={1,0,0,1};
  5522. condition="PylonAmmoRelative9<=0";
  5523. class Static
  5524. {
  5525. class Lines
  5526. {
  5527. type="line";
  5528. width=4;
  5529. points[]=
  5530. {
  5531. {
  5532. {0.32234401,0.57560199},
  5533. 1
  5534. },
  5535. {
  5536. {0.35749999,0.57560199},
  5537. 1
  5538. },
  5539. {
  5540. {0.35749999,0.523844},
  5541. 1
  5542. },
  5543. {
  5544. {0.32234401,0.523844},
  5545. 1
  5546. },
  5547. {
  5548. {0.32234401,0.57560199},
  5549. 1
  5550. }
  5551. };
  5552. };
  5553. class Poly
  5554. {
  5555. type="polygon";
  5556. points[]=
  5557. {
  5558. {
  5559. {
  5560. {0.113477,0.506266},
  5561. 1
  5562. },
  5563. {
  5564. {0.113477,0.59318},
  5565. 1
  5566. },
  5567. {
  5568. {0.32246101,0.59318},
  5569. 1
  5570. },
  5571. {
  5572. {0.32246101,0.506266},
  5573. 1
  5574. }
  5575. }
  5576. };
  5577. };
  5578. };
  5579. class black
  5580. {
  5581. color[]={1,0,0,1};
  5582. class MagName
  5583. {
  5584. type="text";
  5585. source="PylonMagazineNameShort";
  5586. sourceindex=9;
  5587. sourceScale=1;
  5588. align="right";
  5589. scale=1;
  5590. pos[]=
  5591. {
  5592. {0.127148,0.51212502},
  5593. 1
  5594. };
  5595. right[]=
  5596. {
  5597. {0.14375,0.51212502},
  5598. 1
  5599. };
  5600. down[]=
  5601. {
  5602. {0.127148,0.537516},
  5603. 1
  5604. };
  5605. };
  5606. };
  5607. };
  5608. };
  5609. class Pylon9
  5610. {
  5611. condition="PylonSelected9<=0";
  5612. class NotEmpty
  5613. {
  5614. color[]={0,0.83999997,0,1};
  5615. condition="PylonAmmoRelative9>0";
  5616. class Static
  5617. {
  5618. class Lines
  5619. {
  5620. type="line";
  5621. width=4;
  5622. points[]=
  5623. {
  5624. {
  5625. {0.113477,0.506266},
  5626. 1
  5627. },
  5628. {
  5629. {0.113477,0.59318},
  5630. 1
  5631. },
  5632. {
  5633. {0.32246101,0.59318},
  5634. 1
  5635. },
  5636. {
  5637. {0.32246101,0.506266},
  5638. 1
  5639. },
  5640. {
  5641. {0.113477,0.506266},
  5642. 1
  5643. },
  5644. {},
  5645. {
  5646. {0.32234401,0.57560199},
  5647. 1
  5648. },
  5649. {
  5650. {0.35749999,0.57560199},
  5651. 1
  5652. },
  5653. {
  5654. {0.35749999,0.523844},
  5655. 1
  5656. },
  5657. {
  5658. {0.32234401,0.523844},
  5659. 1
  5660. },
  5661. {
  5662. {0.32234401,0.57560199},
  5663. 1
  5664. }
  5665. };
  5666. };
  5667. };
  5668. class PolyBar
  5669. {
  5670. type="polygon";
  5671. points[]=
  5672. {
  5673. {
  5674. {
  5675. {0.32234401,0.57560199},
  5676. 1
  5677. },
  5678. {
  5679. {0.35749999,0.57560199},
  5680. 1
  5681. },
  5682. {
  5683. "PylonAmmo9",
  5684. {0.35749999,0.523844},
  5685. 1
  5686. },
  5687. {
  5688. "PylonAmmo9",
  5689. {0.32234401,0.523844},
  5690. 1
  5691. }
  5692. }
  5693. };
  5694. };
  5695. class WeapName
  5696. {
  5697. type="text";
  5698. source="PylonMagazineName";
  5699. sourceindex=9;
  5700. sourceScale=1;
  5701. align="right";
  5702. scale=1;
  5703. pos[]=
  5704. {
  5705. {0.127148,0.51235902},
  5706. 1
  5707. };
  5708. right[]=
  5709. {
  5710. {0.16328099,0.51235902},
  5711. 1
  5712. };
  5713. down[]=
  5714. {
  5715. {0.127148,0.54751599},
  5716. 1
  5717. };
  5718. };
  5719. class MagName
  5720. {
  5721. type="text";
  5722. source="PylonMagazineNameShort";
  5723. sourceindex=9;
  5724. sourceScale=1;
  5725. align="right";
  5726. scale=1;
  5727. pos[]=
  5728. {
  5729. {0.127148,0.55235898},
  5730. 1
  5731. };
  5732. right[]=
  5733. {
  5734. {0.16328099,0.55235898},
  5735. 1
  5736. };
  5737. down[]=
  5738. {
  5739. {0.127148,0.58751601},
  5740. 1
  5741. };
  5742. };
  5743. class MagCount
  5744. {
  5745. type="text";
  5746. source="PylonAmmo";
  5747. sourceindex=9;
  5748. sourceScale=1;
  5749. align="left";
  5750. scale=1;
  5751. pos[]=
  5752. {
  5753. {0.30714801,0.55235898},
  5754. 1
  5755. };
  5756. right[]=
  5757. {
  5758. {0.343281,0.55235898},
  5759. 1
  5760. };
  5761. down[]=
  5762. {
  5763. {0.30714801,0.58751601},
  5764. 1
  5765. };
  5766. };
  5767. };
  5768. class Empty
  5769. {
  5770. color[]={1,0,0,1};
  5771. condition="PylonAmmoRelative9<=0";
  5772. class Static
  5773. {
  5774. class Lines
  5775. {
  5776. type="line";
  5777. width=4;
  5778. points[]=
  5779. {
  5780. {
  5781. {0.32234401,0.57560199},
  5782. 1
  5783. },
  5784. {
  5785. {0.35749999,0.57560199},
  5786. 1
  5787. },
  5788. {
  5789. {0.35749999,0.523844},
  5790. 1
  5791. },
  5792. {
  5793. {0.32234401,0.523844},
  5794. 1
  5795. },
  5796. {
  5797. {0.32234401,0.57560199},
  5798. 1
  5799. }
  5800. };
  5801. };
  5802. class Poly
  5803. {
  5804. type="polygon";
  5805. points[]=
  5806. {
  5807. {
  5808. {
  5809. {0.113477,0.506266},
  5810. 1
  5811. },
  5812. {
  5813. {0.113477,0.59318},
  5814. 1
  5815. },
  5816. {
  5817. {0.32246101,0.59318},
  5818. 1
  5819. },
  5820. {
  5821. {0.32246101,0.506266},
  5822. 1
  5823. }
  5824. }
  5825. };
  5826. };
  5827. };
  5828. class black
  5829. {
  5830. color[]={1,0,0,1};
  5831. class MagName
  5832. {
  5833. type="text";
  5834. source="PylonMagazineNameShort";
  5835. sourceindex=9;
  5836. sourceScale=1;
  5837. align="right";
  5838. scale=1;
  5839. pos[]=
  5840. {
  5841. {0.127148,0.51212502},
  5842. 1
  5843. };
  5844. right[]=
  5845. {
  5846. {0.14375,0.51212502},
  5847. 1
  5848. };
  5849. down[]=
  5850. {
  5851. {0.127148,0.537516},
  5852. 1
  5853. };
  5854. };
  5855. };
  5856. };
  5857. };
  5858. class PylonSelected10
  5859. {
  5860. condition="PylonSelected10>0";
  5861. class NotEmpty
  5862. {
  5863. color[]={0.58999997,0.30000001,0,1};
  5864. condition="PylonAmmoRelative10>0";
  5865. class Static
  5866. {
  5867. class Lines
  5868. {
  5869. type="line";
  5870. width=4;
  5871. points[]=
  5872. {
  5873. {
  5874. {0.113477,0.62247699},
  5875. 1
  5876. },
  5877. {
  5878. {0.113477,0.709391},
  5879. 1
  5880. },
  5881. {
  5882. {0.32246101,0.709391},
  5883. 1
  5884. },
  5885. {
  5886. {0.32246101,0.62247699},
  5887. 1
  5888. },
  5889. {
  5890. {0.113477,0.62247699},
  5891. 1
  5892. },
  5893. {},
  5894. {
  5895. {0.32234401,0.69181299},
  5896. 1
  5897. },
  5898. {
  5899. {0.35749999,0.69181299},
  5900. 1
  5901. },
  5902. {
  5903. {0.35749999,0.640055},
  5904. 1
  5905. },
  5906. {
  5907. {0.32234401,0.640055},
  5908. 1
  5909. },
  5910. {
  5911. {0.32234401,0.69181299},
  5912. 1
  5913. }
  5914. };
  5915. };
  5916. };
  5917. class PolyBar
  5918. {
  5919. type="polygon";
  5920. points[]=
  5921. {
  5922. {
  5923. {
  5924. {0.32234401,0.69181299},
  5925. 1
  5926. },
  5927. {
  5928. {0.35749999,0.69181299},
  5929. 1
  5930. },
  5931. {
  5932. "PylonAmmo10",
  5933. {0.35749999,0.640055},
  5934. 1
  5935. },
  5936. {
  5937. "PylonAmmo10",
  5938. {0.32234401,0.640055},
  5939. 1
  5940. }
  5941. }
  5942. };
  5943. };
  5944. class WeapName
  5945. {
  5946. type="text";
  5947. source="PylonMagazineName";
  5948. sourceindex=10;
  5949. sourceScale=1;
  5950. align="right";
  5951. scale=1;
  5952. pos[]=
  5953. {
  5954. {0.127148,0.62857002},
  5955. 1
  5956. };
  5957. right[]=
  5958. {
  5959. {0.16328099,0.62857002},
  5960. 1
  5961. };
  5962. down[]=
  5963. {
  5964. {0.127148,0.66372699},
  5965. 1
  5966. };
  5967. };
  5968. class MagName
  5969. {
  5970. type="text";
  5971. source="PylonMagazineNameShort";
  5972. sourceindex=10;
  5973. sourceScale=1;
  5974. align="right";
  5975. scale=1;
  5976. pos[]=
  5977. {
  5978. {0.127148,0.66856998},
  5979. 1
  5980. };
  5981. right[]=
  5982. {
  5983. {0.16328099,0.66856998},
  5984. 1
  5985. };
  5986. down[]=
  5987. {
  5988. {0.127148,0.70372701},
  5989. 1
  5990. };
  5991. };
  5992. class MagCount
  5993. {
  5994. type="text";
  5995. source="PylonAmmo";
  5996. sourceindex=10;
  5997. sourceScale=1;
  5998. align="left";
  5999. scale=1;
  6000. pos[]=
  6001. {
  6002. {0.30714801,0.66856998},
  6003. 1
  6004. };
  6005. right[]=
  6006. {
  6007. {0.343281,0.66856998},
  6008. 1
  6009. };
  6010. down[]=
  6011. {
  6012. {0.30714801,0.70372701},
  6013. 1
  6014. };
  6015. };
  6016. };
  6017. class Empty
  6018. {
  6019. color[]={1,0,0,1};
  6020. condition="PylonAmmoRelative10<=0";
  6021. class Static
  6022. {
  6023. class Lines
  6024. {
  6025. type="line";
  6026. width=4;
  6027. points[]=
  6028. {
  6029. {
  6030. {0.32234401,0.69181299},
  6031. 1
  6032. },
  6033. {
  6034. {0.35749999,0.69181299},
  6035. 1
  6036. },
  6037. {
  6038. {0.35749999,0.640055},
  6039. 1
  6040. },
  6041. {
  6042. {0.32234401,0.640055},
  6043. 1
  6044. },
  6045. {
  6046. {0.32234401,0.69181299},
  6047. 1
  6048. }
  6049. };
  6050. };
  6051. class Poly
  6052. {
  6053. type="polygon";
  6054. points[]=
  6055. {
  6056. {
  6057. {
  6058. {0.113477,0.62247699},
  6059. 1
  6060. },
  6061. {
  6062. {0.113477,0.709391},
  6063. 1
  6064. },
  6065. {
  6066. {0.32246101,0.709391},
  6067. 1
  6068. },
  6069. {
  6070. {0.32246101,0.62247699},
  6071. 1
  6072. }
  6073. }
  6074. };
  6075. };
  6076. };
  6077. class black
  6078. {
  6079. color[]={1,0,0,1};
  6080. class MagName
  6081. {
  6082. type="text";
  6083. source="PylonMagazineNameShort";
  6084. sourceindex=10;
  6085. sourceScale=1;
  6086. align="right";
  6087. scale=1;
  6088. pos[]=
  6089. {
  6090. {0.127148,0.62833601},
  6091. 1
  6092. };
  6093. right[]=
  6094. {
  6095. {0.14375,0.62833601},
  6096. 1
  6097. };
  6098. down[]=
  6099. {
  6100. {0.127148,0.65372699},
  6101. 1
  6102. };
  6103. };
  6104. };
  6105. };
  6106. };
  6107. class Pylon10
  6108. {
  6109. condition="PylonSelected10<=0";
  6110. class NotEmpty
  6111. {
  6112. color[]={0,0.83999997,0,1};
  6113. condition="PylonAmmoRelative10>0";
  6114. class Static
  6115. {
  6116. class Lines
  6117. {
  6118. type="line";
  6119. width=4;
  6120. points[]=
  6121. {
  6122. {
  6123. {0.113477,0.62247699},
  6124. 1
  6125. },
  6126. {
  6127. {0.113477,0.709391},
  6128. 1
  6129. },
  6130. {
  6131. {0.32246101,0.709391},
  6132. 1
  6133. },
  6134. {
  6135. {0.32246101,0.62247699},
  6136. 1
  6137. },
  6138. {
  6139. {0.113477,0.62247699},
  6140. 1
  6141. },
  6142. {},
  6143. {
  6144. {0.32234401,0.69181299},
  6145. 1
  6146. },
  6147. {
  6148. {0.35749999,0.69181299},
  6149. 1
  6150. },
  6151. {
  6152. {0.35749999,0.640055},
  6153. 1
  6154. },
  6155. {
  6156. {0.32234401,0.640055},
  6157. 1
  6158. },
  6159. {
  6160. {0.32234401,0.69181299},
  6161. 1
  6162. }
  6163. };
  6164. };
  6165. };
  6166. class PolyBar
  6167. {
  6168. type="polygon";
  6169. points[]=
  6170. {
  6171. {
  6172. {
  6173. {0.32234401,0.69181299},
  6174. 1
  6175. },
  6176. {
  6177. {0.35749999,0.69181299},
  6178. 1
  6179. },
  6180. {
  6181. "PylonAmmo10",
  6182. {0.35749999,0.640055},
  6183. 1
  6184. },
  6185. {
  6186. "PylonAmmo10",
  6187. {0.32234401,0.640055},
  6188. 1
  6189. }
  6190. }
  6191. };
  6192. };
  6193. class WeapName
  6194. {
  6195. type="text";
  6196. source="PylonMagazineName";
  6197. sourceindex=10;
  6198. sourceScale=1;
  6199. align="right";
  6200. scale=1;
  6201. pos[]=
  6202. {
  6203. {0.127148,0.62857002},
  6204. 1
  6205. };
  6206. right[]=
  6207. {
  6208. {0.16328099,0.62857002},
  6209. 1
  6210. };
  6211. down[]=
  6212. {
  6213. {0.127148,0.66372699},
  6214. 1
  6215. };
  6216. };
  6217. class MagName
  6218. {
  6219. type="text";
  6220. source="PylonMagazineNameShort";
  6221. sourceindex=10;
  6222. sourceScale=1;
  6223. align="right";
  6224. scale=1;
  6225. pos[]=
  6226. {
  6227. {0.127148,0.66856998},
  6228. 1
  6229. };
  6230. right[]=
  6231. {
  6232. {0.16328099,0.66856998},
  6233. 1
  6234. };
  6235. down[]=
  6236. {
  6237. {0.127148,0.70372701},
  6238. 1
  6239. };
  6240. };
  6241. class MagCount
  6242. {
  6243. type="text";
  6244. source="PylonAmmo";
  6245. sourceindex=10;
  6246. sourceScale=1;
  6247. align="left";
  6248. scale=1;
  6249. pos[]=
  6250. {
  6251. {0.30714801,0.66856998},
  6252. 1
  6253. };
  6254. right[]=
  6255. {
  6256. {0.343281,0.66856998},
  6257. 1
  6258. };
  6259. down[]=
  6260. {
  6261. {0.30714801,0.70372701},
  6262. 1
  6263. };
  6264. };
  6265. };
  6266. class Empty
  6267. {
  6268. color[]={1,0,0,1};
  6269. condition="PylonAmmoRelative10<=0";
  6270. class Static
  6271. {
  6272. class Lines
  6273. {
  6274. type="line";
  6275. width=4;
  6276. points[]=
  6277. {
  6278. {
  6279. {0.32234401,0.69181299},
  6280. 1
  6281. },
  6282. {
  6283. {0.35749999,0.69181299},
  6284. 1
  6285. },
  6286. {
  6287. {0.35749999,0.640055},
  6288. 1
  6289. },
  6290. {
  6291. {0.32234401,0.640055},
  6292. 1
  6293. },
  6294. {
  6295. {0.32234401,0.69181299},
  6296. 1
  6297. }
  6298. };
  6299. };
  6300. class Poly
  6301. {
  6302. type="polygon";
  6303. points[]=
  6304. {
  6305. {
  6306. {
  6307. {0.113477,0.62247699},
  6308. 1
  6309. },
  6310. {
  6311. {0.113477,0.709391},
  6312. 1
  6313. },
  6314. {
  6315. {0.32246101,0.709391},
  6316. 1
  6317. },
  6318. {
  6319. {0.32246101,0.62247699},
  6320. 1
  6321. }
  6322. }
  6323. };
  6324. };
  6325. };
  6326. class black
  6327. {
  6328. color[]={1,0,0,1};
  6329. class MagName
  6330. {
  6331. type="text";
  6332. source="PylonMagazineNameShort";
  6333. sourceindex=10;
  6334. sourceScale=1;
  6335. align="right";
  6336. scale=1;
  6337. pos[]=
  6338. {
  6339. {0.127148,0.62833601},
  6340. 1
  6341. };
  6342. right[]=
  6343. {
  6344. {0.14375,0.62833601},
  6345. 1
  6346. };
  6347. down[]=
  6348. {
  6349. {0.127148,0.65372699},
  6350. 1
  6351. };
  6352. };
  6353. };
  6354. };
  6355. };
  6356. class PylonSelected5
  6357. {
  6358. condition="PylonSelected5>0";
  6359. class NotEmpty
  6360. {
  6361. color[]={0.58999997,0.30000001,0,1};
  6362. condition="PylonAmmoRelative5>0";
  6363. class Static
  6364. {
  6365. class Lines
  6366. {
  6367. type="line";
  6368. width=4;
  6369. points[]=
  6370. {
  6371. {
  6372. {0.70347703,0.15763301},
  6373. 1
  6374. },
  6375. {
  6376. {0.70347703,0.24454699},
  6377. 1
  6378. },
  6379. {
  6380. {0.91246098,0.24454699},
  6381. 1
  6382. },
  6383. {
  6384. {0.91246098,0.15763301},
  6385. 1
  6386. },
  6387. {
  6388. {0.70347703,0.15763301},
  6389. 1
  6390. },
  6391. {},
  6392. {
  6393. {0.66734397,0.226969},
  6394. 1
  6395. },
  6396. {
  6397. {0.70249999,0.226969},
  6398. 1
  6399. },
  6400. {
  6401. {0.70249999,0.175211},
  6402. 1
  6403. },
  6404. {
  6405. {0.66734397,0.175211},
  6406. 1
  6407. },
  6408. {
  6409. {0.66734397,0.226969},
  6410. 1
  6411. }
  6412. };
  6413. };
  6414. };
  6415. class PolyBar
  6416. {
  6417. type="polygon";
  6418. points[]=
  6419. {
  6420. {
  6421. {
  6422. {0.66734397,0.226969},
  6423. 1
  6424. },
  6425. {
  6426. {0.70249999,0.226969},
  6427. 1
  6428. },
  6429. {
  6430. "PylonAmmo5",
  6431. {0.70249999,0.175211},
  6432. 1
  6433. },
  6434. {
  6435. "PylonAmmo5",
  6436. {0.66734397,0.175211},
  6437. 1
  6438. }
  6439. }
  6440. };
  6441. };
  6442. class WeapName
  6443. {
  6444. type="text";
  6445. source="PylonMagazineName";
  6446. sourceindex=5;
  6447. sourceScale=1;
  6448. align="right";
  6449. scale=1;
  6450. pos[]=
  6451. {
  6452. {0.71714801,0.163727},
  6453. 1
  6454. };
  6455. right[]=
  6456. {
  6457. {0.753281,0.163727},
  6458. 1
  6459. };
  6460. down[]=
  6461. {
  6462. {0.71714801,0.198883},
  6463. 1
  6464. };
  6465. };
  6466. class MagName
  6467. {
  6468. type="text";
  6469. source="PylonMagazineNameShort";
  6470. sourceindex=5;
  6471. sourceScale=1;
  6472. align="right";
  6473. scale=1;
  6474. pos[]=
  6475. {
  6476. {0.71714801,0.20372701},
  6477. 1
  6478. };
  6479. right[]=
  6480. {
  6481. {0.753281,0.20372701},
  6482. 1
  6483. };
  6484. down[]=
  6485. {
  6486. {0.71714801,0.238883},
  6487. 1
  6488. };
  6489. };
  6490. class MagCount
  6491. {
  6492. type="text";
  6493. source="PylonAmmo";
  6494. sourceindex=5;
  6495. sourceScale=1;
  6496. align="left";
  6497. scale=1;
  6498. pos[]=
  6499. {
  6500. {0.89714801,0.20372701},
  6501. 1
  6502. };
  6503. right[]=
  6504. {
  6505. {0.933281,0.20372701},
  6506. 1
  6507. };
  6508. down[]=
  6509. {
  6510. {0.89714801,0.238883},
  6511. 1
  6512. };
  6513. };
  6514. };
  6515. class Empty
  6516. {
  6517. color[]={1,0,0,1};
  6518. condition="PylonAmmoRelative5<=0";
  6519. class Static
  6520. {
  6521. class Lines
  6522. {
  6523. type="line";
  6524. width=4;
  6525. points[]=
  6526. {
  6527. {
  6528. {0.66734397,0.226969},
  6529. 1
  6530. },
  6531. {
  6532. {0.70249999,0.226969},
  6533. 1
  6534. },
  6535. {
  6536. {0.70249999,0.175211},
  6537. 1
  6538. },
  6539. {
  6540. {0.66734397,0.175211},
  6541. 1
  6542. },
  6543. {
  6544. {0.66734397,0.226969},
  6545. 1
  6546. }
  6547. };
  6548. };
  6549. class Poly
  6550. {
  6551. type="polygon";
  6552. points[]=
  6553. {
  6554. {
  6555. {
  6556. {0.70347703,0.15763301},
  6557. 1
  6558. },
  6559. {
  6560. {0.70347703,0.24454699},
  6561. 1
  6562. },
  6563. {
  6564. {0.91246098,0.24454699},
  6565. 1
  6566. },
  6567. {
  6568. {0.91246098,0.15763301},
  6569. 1
  6570. }
  6571. }
  6572. };
  6573. };
  6574. };
  6575. class black
  6576. {
  6577. color[]={1,0,0,1};
  6578. class MagName
  6579. {
  6580. type="text";
  6581. source="PylonMagazineNameShort";
  6582. sourceindex=5;
  6583. sourceScale=1;
  6584. align="right";
  6585. scale=1;
  6586. pos[]=
  6587. {
  6588. {0.71714801,0.16349199},
  6589. 1
  6590. };
  6591. right[]=
  6592. {
  6593. {0.73374999,0.16349199},
  6594. 1
  6595. };
  6596. down[]=
  6597. {
  6598. {0.71714801,0.18888301},
  6599. 1
  6600. };
  6601. };
  6602. };
  6603. };
  6604. };
  6605. class Pylon5
  6606. {
  6607. condition="PylonSelected5<=0";
  6608. class NotEmpty
  6609. {
  6610. color[]={0,0.83999997,0,1};
  6611. condition="PylonAmmoRelative5>0";
  6612. class Static
  6613. {
  6614. class Lines
  6615. {
  6616. type="line";
  6617. width=4;
  6618. points[]=
  6619. {
  6620. {
  6621. {0.70347703,0.15763301},
  6622. 1
  6623. },
  6624. {
  6625. {0.70347703,0.24454699},
  6626. 1
  6627. },
  6628. {
  6629. {0.91246098,0.24454699},
  6630. 1
  6631. },
  6632. {
  6633. {0.91246098,0.15763301},
  6634. 1
  6635. },
  6636. {
  6637. {0.70347703,0.15763301},
  6638. 1
  6639. },
  6640. {},
  6641. {
  6642. {0.66734397,0.226969},
  6643. 1
  6644. },
  6645. {
  6646. {0.70249999,0.226969},
  6647. 1
  6648. },
  6649. {
  6650. {0.70249999,0.175211},
  6651. 1
  6652. },
  6653. {
  6654. {0.66734397,0.175211},
  6655. 1
  6656. },
  6657. {
  6658. {0.66734397,0.226969},
  6659. 1
  6660. }
  6661. };
  6662. };
  6663. };
  6664. class PolyBar
  6665. {
  6666. type="polygon";
  6667. points[]=
  6668. {
  6669. {
  6670. {
  6671. {0.66734397,0.226969},
  6672. 1
  6673. },
  6674. {
  6675. {0.70249999,0.226969},
  6676. 1
  6677. },
  6678. {
  6679. "PylonAmmo5",
  6680. {0.70249999,0.175211},
  6681. 1
  6682. },
  6683. {
  6684. "PylonAmmo5",
  6685. {0.66734397,0.175211},
  6686. 1
  6687. }
  6688. }
  6689. };
  6690. };
  6691. class WeapName
  6692. {
  6693. type="text";
  6694. source="PylonMagazineName";
  6695. sourceindex=5;
  6696. sourceScale=1;
  6697. align="right";
  6698. scale=1;
  6699. pos[]=
  6700. {
  6701. {0.71714801,0.163727},
  6702. 1
  6703. };
  6704. right[]=
  6705. {
  6706. {0.753281,0.163727},
  6707. 1
  6708. };
  6709. down[]=
  6710. {
  6711. {0.71714801,0.198883},
  6712. 1
  6713. };
  6714. };
  6715. class MagName
  6716. {
  6717. type="text";
  6718. source="PylonMagazineNameShort";
  6719. sourceindex=5;
  6720. sourceScale=1;
  6721. align="right";
  6722. scale=1;
  6723. pos[]=
  6724. {
  6725. {0.71714801,0.20372701},
  6726. 1
  6727. };
  6728. right[]=
  6729. {
  6730. {0.753281,0.20372701},
  6731. 1
  6732. };
  6733. down[]=
  6734. {
  6735. {0.71714801,0.238883},
  6736. 1
  6737. };
  6738. };
  6739. class MagCount
  6740. {
  6741. type="text";
  6742. source="PylonAmmo";
  6743. sourceindex=5;
  6744. sourceScale=1;
  6745. align="left";
  6746. scale=1;
  6747. pos[]=
  6748. {
  6749. {0.89714801,0.20372701},
  6750. 1
  6751. };
  6752. right[]=
  6753. {
  6754. {0.933281,0.20372701},
  6755. 1
  6756. };
  6757. down[]=
  6758. {
  6759. {0.89714801,0.238883},
  6760. 1
  6761. };
  6762. };
  6763. };
  6764. class Empty
  6765. {
  6766. color[]={1,0,0,1};
  6767. condition="PylonAmmoRelative5<=0";
  6768. class Static
  6769. {
  6770. class Lines
  6771. {
  6772. type="line";
  6773. width=4;
  6774. points[]=
  6775. {
  6776. {
  6777. {0.66734397,0.226969},
  6778. 1
  6779. },
  6780. {
  6781. {0.70249999,0.226969},
  6782. 1
  6783. },
  6784. {
  6785. {0.70249999,0.175211},
  6786. 1
  6787. },
  6788. {
  6789. {0.66734397,0.175211},
  6790. 1
  6791. },
  6792. {
  6793. {0.66734397,0.226969},
  6794. 1
  6795. }
  6796. };
  6797. };
  6798. class Poly
  6799. {
  6800. type="polygon";
  6801. points[]=
  6802. {
  6803. {
  6804. {
  6805. {0.70347703,0.15763301},
  6806. 1
  6807. },
  6808. {
  6809. {0.70347703,0.24454699},
  6810. 1
  6811. },
  6812. {
  6813. {0.91246098,0.24454699},
  6814. 1
  6815. },
  6816. {
  6817. {0.91246098,0.15763301},
  6818. 1
  6819. }
  6820. }
  6821. };
  6822. };
  6823. };
  6824. class black
  6825. {
  6826. color[]={1,0,0,1};
  6827. class MagName
  6828. {
  6829. type="text";
  6830. source="PylonMagazineNameShort";
  6831. sourceindex=5;
  6832. sourceScale=1;
  6833. align="right";
  6834. scale=1;
  6835. pos[]=
  6836. {
  6837. {0.71714801,0.16349199},
  6838. 1
  6839. };
  6840. right[]=
  6841. {
  6842. {0.73374999,0.16349199},
  6843. 1
  6844. };
  6845. down[]=
  6846. {
  6847. {0.71714801,0.18888301},
  6848. 1
  6849. };
  6850. };
  6851. };
  6852. };
  6853. };
  6854. class PylonSelected4
  6855. {
  6856. condition="PylonSelected4>0";
  6857. class NotEmpty
  6858. {
  6859. color[]={0.58999997,0.30000001,0,1};
  6860. condition="PylonAmmoRelative4>0";
  6861. class Static
  6862. {
  6863. class Lines
  6864. {
  6865. type="line";
  6866. width=4;
  6867. points[]=
  6868. {
  6869. {
  6870. {0.70347703,0.273844},
  6871. 1
  6872. },
  6873. {
  6874. {0.70347703,0.36075801},
  6875. 1
  6876. },
  6877. {
  6878. {0.91246098,0.36075801},
  6879. 1
  6880. },
  6881. {
  6882. {0.91246098,0.273844},
  6883. 1
  6884. },
  6885. {
  6886. {0.70347703,0.273844},
  6887. 1
  6888. },
  6889. {},
  6890. {
  6891. {0.66734397,0.34318},
  6892. 1
  6893. },
  6894. {
  6895. {0.70249999,0.34318},
  6896. 1
  6897. },
  6898. {
  6899. {0.70249999,0.29142201},
  6900. 1
  6901. },
  6902. {
  6903. {0.66734397,0.29142201},
  6904. 1
  6905. },
  6906. {
  6907. {0.66734397,0.34318},
  6908. 1
  6909. }
  6910. };
  6911. };
  6912. };
  6913. class PolyBar
  6914. {
  6915. type="polygon";
  6916. points[]=
  6917. {
  6918. {
  6919. {
  6920. {0.66734397,0.34318},
  6921. 1
  6922. },
  6923. {
  6924. {0.70249999,0.34318},
  6925. 1
  6926. },
  6927. {
  6928. "PylonAmmo4",
  6929. {0.70249999,0.29142201},
  6930. 1
  6931. },
  6932. {
  6933. "PylonAmmo4",
  6934. {0.66734397,0.29142201},
  6935. 1
  6936. }
  6937. }
  6938. };
  6939. };
  6940. class WeapName
  6941. {
  6942. type="text";
  6943. source="PylonMagazineName";
  6944. sourceindex=4;
  6945. sourceScale=1;
  6946. align="right";
  6947. scale=1;
  6948. pos[]=
  6949. {
  6950. {0.71714801,0.27993801},
  6951. 1
  6952. };
  6953. right[]=
  6954. {
  6955. {0.753281,0.27993801},
  6956. 1
  6957. };
  6958. down[]=
  6959. {
  6960. {0.71714801,0.31509399},
  6961. 1
  6962. };
  6963. };
  6964. class MagName
  6965. {
  6966. type="text";
  6967. source="PylonMagazineNameShort";
  6968. sourceindex=4;
  6969. sourceScale=1;
  6970. align="right";
  6971. scale=1;
  6972. pos[]=
  6973. {
  6974. {0.71714801,0.31993699},
  6975. 1
  6976. };
  6977. right[]=
  6978. {
  6979. {0.753281,0.31993699},
  6980. 1
  6981. };
  6982. down[]=
  6983. {
  6984. {0.71714801,0.35509399},
  6985. 1
  6986. };
  6987. };
  6988. class MagCount
  6989. {
  6990. type="text";
  6991. source="PylonAmmo";
  6992. sourceindex=4;
  6993. sourceScale=1;
  6994. align="left";
  6995. scale=1;
  6996. pos[]=
  6997. {
  6998. {0.89714801,0.31993699},
  6999. 1
  7000. };
  7001. right[]=
  7002. {
  7003. {0.933281,0.31993699},
  7004. 1
  7005. };
  7006. down[]=
  7007. {
  7008. {0.89714801,0.35509399},
  7009. 1
  7010. };
  7011. };
  7012. };
  7013. class Empty
  7014. {
  7015. color[]={1,0,0,1};
  7016. condition="PylonAmmoRelative4<=0";
  7017. class Static
  7018. {
  7019. class Lines
  7020. {
  7021. type="line";
  7022. width=4;
  7023. points[]=
  7024. {
  7025. {
  7026. {0.66734397,0.34318},
  7027. 1
  7028. },
  7029. {
  7030. {0.70249999,0.34318},
  7031. 1
  7032. },
  7033. {
  7034. {0.70249999,0.29142201},
  7035. 1
  7036. },
  7037. {
  7038. {0.66734397,0.29142201},
  7039. 1
  7040. },
  7041. {
  7042. {0.66734397,0.34318},
  7043. 1
  7044. }
  7045. };
  7046. };
  7047. class Poly
  7048. {
  7049. type="polygon";
  7050. points[]=
  7051. {
  7052. {
  7053. {
  7054. {0.70347703,0.273844},
  7055. 1
  7056. },
  7057. {
  7058. {0.70347703,0.36075801},
  7059. 1
  7060. },
  7061. {
  7062. {0.91246098,0.36075801},
  7063. 1
  7064. },
  7065. {
  7066. {0.91246098,0.273844},
  7067. 1
  7068. }
  7069. }
  7070. };
  7071. };
  7072. };
  7073. class black
  7074. {
  7075. color[]={1,0,0,1};
  7076. class MagName
  7077. {
  7078. type="text";
  7079. source="PylonMagazineNameShort";
  7080. sourceindex=4;
  7081. sourceScale=1;
  7082. align="right";
  7083. scale=1;
  7084. pos[]=
  7085. {
  7086. {0.71714801,0.27970299},
  7087. 1
  7088. };
  7089. right[]=
  7090. {
  7091. {0.73374999,0.27970299},
  7092. 1
  7093. };
  7094. down[]=
  7095. {
  7096. {0.71714801,0.305094},
  7097. 1
  7098. };
  7099. };
  7100. };
  7101. };
  7102. };
  7103. class Pylon4
  7104. {
  7105. condition="PylonSelected4<=0";
  7106. class NotEmpty
  7107. {
  7108. color[]={0,0.83999997,0,1};
  7109. condition="PylonAmmoRelative4>0";
  7110. class Static
  7111. {
  7112. class Lines
  7113. {
  7114. type="line";
  7115. width=4;
  7116. points[]=
  7117. {
  7118. {
  7119. {0.70347703,0.273844},
  7120. 1
  7121. },
  7122. {
  7123. {0.70347703,0.36075801},
  7124. 1
  7125. },
  7126. {
  7127. {0.91246098,0.36075801},
  7128. 1
  7129. },
  7130. {
  7131. {0.91246098,0.273844},
  7132. 1
  7133. },
  7134. {
  7135. {0.70347703,0.273844},
  7136. 1
  7137. },
  7138. {},
  7139. {
  7140. {0.66734397,0.34318},
  7141. 1
  7142. },
  7143. {
  7144. {0.70249999,0.34318},
  7145. 1
  7146. },
  7147. {
  7148. {0.70249999,0.29142201},
  7149. 1
  7150. },
  7151. {
  7152. {0.66734397,0.29142201},
  7153. 1
  7154. },
  7155. {
  7156. {0.66734397,0.34318},
  7157. 1
  7158. }
  7159. };
  7160. };
  7161. };
  7162. class PolyBar
  7163. {
  7164. type="polygon";
  7165. points[]=
  7166. {
  7167. {
  7168. {
  7169. {0.66734397,0.34318},
  7170. 1
  7171. },
  7172. {
  7173. {0.70249999,0.34318},
  7174. 1
  7175. },
  7176. {
  7177. "PylonAmmo4",
  7178. {0.70249999,0.29142201},
  7179. 1
  7180. },
  7181. {
  7182. "PylonAmmo4",
  7183. {0.66734397,0.29142201},
  7184. 1
  7185. }
  7186. }
  7187. };
  7188. };
  7189. class WeapName
  7190. {
  7191. type="text";
  7192. source="PylonMagazineName";
  7193. sourceindex=4;
  7194. sourceScale=1;
  7195. align="right";
  7196. scale=1;
  7197. pos[]=
  7198. {
  7199. {0.71714801,0.27993801},
  7200. 1
  7201. };
  7202. right[]=
  7203. {
  7204. {0.753281,0.27993801},
  7205. 1
  7206. };
  7207. down[]=
  7208. {
  7209. {0.71714801,0.31509399},
  7210. 1
  7211. };
  7212. };
  7213. class MagName
  7214. {
  7215. type="text";
  7216. source="PylonMagazineNameShort";
  7217. sourceindex=4;
  7218. sourceScale=1;
  7219. align="right";
  7220. scale=1;
  7221. pos[]=
  7222. {
  7223. {0.71714801,0.31993699},
  7224. 1
  7225. };
  7226. right[]=
  7227. {
  7228. {0.753281,0.31993699},
  7229. 1
  7230. };
  7231. down[]=
  7232. {
  7233. {0.71714801,0.35509399},
  7234. 1
  7235. };
  7236. };
  7237. class MagCount
  7238. {
  7239. type="text";
  7240. source="PylonAmmo";
  7241. sourceindex=4;
  7242. sourceScale=1;
  7243. align="left";
  7244. scale=1;
  7245. pos[]=
  7246. {
  7247. {0.89714801,0.31993699},
  7248. 1
  7249. };
  7250. right[]=
  7251. {
  7252. {0.933281,0.31993699},
  7253. 1
  7254. };
  7255. down[]=
  7256. {
  7257. {0.89714801,0.35509399},
  7258. 1
  7259. };
  7260. };
  7261. };
  7262. class Empty
  7263. {
  7264. color[]={1,0,0,1};
  7265. condition="PylonAmmoRelative4<=0";
  7266. class Static
  7267. {
  7268. class Lines
  7269. {
  7270. type="line";
  7271. width=4;
  7272. points[]=
  7273. {
  7274. {
  7275. {0.66734397,0.34318},
  7276. 1
  7277. },
  7278. {
  7279. {0.70249999,0.34318},
  7280. 1
  7281. },
  7282. {
  7283. {0.70249999,0.29142201},
  7284. 1
  7285. },
  7286. {
  7287. {0.66734397,0.29142201},
  7288. 1
  7289. },
  7290. {
  7291. {0.66734397,0.34318},
  7292. 1
  7293. }
  7294. };
  7295. };
  7296. class Poly
  7297. {
  7298. type="polygon";
  7299. points[]=
  7300. {
  7301. {
  7302. {
  7303. {0.70347703,0.273844},
  7304. 1
  7305. },
  7306. {
  7307. {0.70347703,0.36075801},
  7308. 1
  7309. },
  7310. {
  7311. {0.91246098,0.36075801},
  7312. 1
  7313. },
  7314. {
  7315. {0.91246098,0.273844},
  7316. 1
  7317. }
  7318. }
  7319. };
  7320. };
  7321. };
  7322. class black
  7323. {
  7324. color[]={1,0,0,1};
  7325. class MagName
  7326. {
  7327. type="text";
  7328. source="PylonMagazineNameShort";
  7329. sourceindex=4;
  7330. sourceScale=1;
  7331. align="right";
  7332. scale=1;
  7333. pos[]=
  7334. {
  7335. {0.71714801,0.27970299},
  7336. 1
  7337. };
  7338. right[]=
  7339. {
  7340. {0.73374999,0.27970299},
  7341. 1
  7342. };
  7343. down[]=
  7344. {
  7345. {0.71714801,0.305094},
  7346. 1
  7347. };
  7348. };
  7349. };
  7350. };
  7351. };
  7352. class PylonSelected3
  7353. {
  7354. condition="PylonSelected3>0";
  7355. class NotEmpty
  7356. {
  7357. color[]={0.58999997,0.30000001,0,1};
  7358. condition="PylonAmmoRelative3>0";
  7359. class Static
  7360. {
  7361. class Lines
  7362. {
  7363. type="line";
  7364. width=4;
  7365. points[]=
  7366. {
  7367. {
  7368. {0.70347703,0.390055},
  7369. 1
  7370. },
  7371. {
  7372. {0.70347703,0.476969},
  7373. 1
  7374. },
  7375. {
  7376. {0.91246098,0.476969},
  7377. 1
  7378. },
  7379. {
  7380. {0.91246098,0.390055},
  7381. 1
  7382. },
  7383. {
  7384. {0.70347703,0.390055},
  7385. 1
  7386. },
  7387. {},
  7388. {
  7389. {0.66734397,0.459391},
  7390. 1
  7391. },
  7392. {
  7393. {0.70249999,0.459391},
  7394. 1
  7395. },
  7396. {
  7397. {0.70249999,0.40763301},
  7398. 1
  7399. },
  7400. {
  7401. {0.66734397,0.40763301},
  7402. 1
  7403. },
  7404. {
  7405. {0.66734397,0.459391},
  7406. 1
  7407. }
  7408. };
  7409. };
  7410. };
  7411. class PolyBar
  7412. {
  7413. type="polygon";
  7414. points[]=
  7415. {
  7416. {
  7417. {
  7418. {0.66734397,0.459391},
  7419. 1
  7420. },
  7421. {
  7422. {0.70249999,0.459391},
  7423. 1
  7424. },
  7425. {
  7426. "PylonAmmo3",
  7427. {0.70249999,0.40763301},
  7428. 1
  7429. },
  7430. {
  7431. "PylonAmmo3",
  7432. {0.66734397,0.40763301},
  7433. 1
  7434. }
  7435. }
  7436. };
  7437. };
  7438. class WeapName
  7439. {
  7440. type="text";
  7441. source="PylonMagazineName";
  7442. sourceindex=3;
  7443. sourceScale=1;
  7444. align="right";
  7445. scale=1;
  7446. pos[]=
  7447. {
  7448. {0.71714801,0.396148},
  7449. 1
  7450. };
  7451. right[]=
  7452. {
  7453. {0.753281,0.396148},
  7454. 1
  7455. };
  7456. down[]=
  7457. {
  7458. {0.71714801,0.43130499},
  7459. 1
  7460. };
  7461. };
  7462. class MagName
  7463. {
  7464. type="text";
  7465. source="PylonMagazineNameShort";
  7466. sourceindex=3;
  7467. sourceScale=1;
  7468. align="right";
  7469. scale=1;
  7470. pos[]=
  7471. {
  7472. {0.71714801,0.43614799},
  7473. 1
  7474. };
  7475. right[]=
  7476. {
  7477. {0.753281,0.43614799},
  7478. 1
  7479. };
  7480. down[]=
  7481. {
  7482. {0.71714801,0.47130501},
  7483. 1
  7484. };
  7485. };
  7486. class MagCount
  7487. {
  7488. type="text";
  7489. source="PylonAmmo";
  7490. sourceindex=3;
  7491. sourceScale=1;
  7492. align="left";
  7493. scale=1;
  7494. pos[]=
  7495. {
  7496. {0.89714801,0.43614799},
  7497. 1
  7498. };
  7499. right[]=
  7500. {
  7501. {0.933281,0.43614799},
  7502. 1
  7503. };
  7504. down[]=
  7505. {
  7506. {0.89714801,0.47130501},
  7507. 1
  7508. };
  7509. };
  7510. };
  7511. class Empty
  7512. {
  7513. color[]={1,0,0,1};
  7514. condition="PylonAmmoRelative3<=0";
  7515. class Static
  7516. {
  7517. class Lines
  7518. {
  7519. type="line";
  7520. width=4;
  7521. points[]=
  7522. {
  7523. {
  7524. {0.66734397,0.459391},
  7525. 1
  7526. },
  7527. {
  7528. {0.70249999,0.459391},
  7529. 1
  7530. },
  7531. {
  7532. {0.70249999,0.40763301},
  7533. 1
  7534. },
  7535. {
  7536. {0.66734397,0.40763301},
  7537. 1
  7538. },
  7539. {
  7540. {0.66734397,0.459391},
  7541. 1
  7542. }
  7543. };
  7544. };
  7545. class Poly
  7546. {
  7547. type="polygon";
  7548. points[]=
  7549. {
  7550. {
  7551. {
  7552. {0.70347703,0.390055},
  7553. 1
  7554. },
  7555. {
  7556. {0.70347703,0.476969},
  7557. 1
  7558. },
  7559. {
  7560. {0.91246098,0.476969},
  7561. 1
  7562. },
  7563. {
  7564. {0.91246098,0.390055},
  7565. 1
  7566. }
  7567. }
  7568. };
  7569. };
  7570. };
  7571. class black
  7572. {
  7573. color[]={1,0,0,1};
  7574. class MagName
  7575. {
  7576. type="text";
  7577. source="PylonMagazineNameShort";
  7578. sourceindex=3;
  7579. sourceScale=1;
  7580. align="right";
  7581. scale=1;
  7582. pos[]=
  7583. {
  7584. {0.71714801,0.39591399},
  7585. 1
  7586. };
  7587. right[]=
  7588. {
  7589. {0.73374999,0.39591399},
  7590. 1
  7591. };
  7592. down[]=
  7593. {
  7594. {0.71714801,0.421305},
  7595. 1
  7596. };
  7597. };
  7598. };
  7599. };
  7600. };
  7601. class Pylon3
  7602. {
  7603. condition="PylonSelected3<=0";
  7604. class NotEmpty
  7605. {
  7606. color[]={0,0.83999997,0,1};
  7607. condition="PylonAmmoRelative3>0";
  7608. class Static
  7609. {
  7610. class Lines
  7611. {
  7612. type="line";
  7613. width=4;
  7614. points[]=
  7615. {
  7616. {
  7617. {0.70347703,0.390055},
  7618. 1
  7619. },
  7620. {
  7621. {0.70347703,0.476969},
  7622. 1
  7623. },
  7624. {
  7625. {0.91246098,0.476969},
  7626. 1
  7627. },
  7628. {
  7629. {0.91246098,0.390055},
  7630. 1
  7631. },
  7632. {
  7633. {0.70347703,0.390055},
  7634. 1
  7635. },
  7636. {},
  7637. {
  7638. {0.66734397,0.459391},
  7639. 1
  7640. },
  7641. {
  7642. {0.70249999,0.459391},
  7643. 1
  7644. },
  7645. {
  7646. {0.70249999,0.40763301},
  7647. 1
  7648. },
  7649. {
  7650. {0.66734397,0.40763301},
  7651. 1
  7652. },
  7653. {
  7654. {0.66734397,0.459391},
  7655. 1
  7656. }
  7657. };
  7658. };
  7659. };
  7660. class PolyBar
  7661. {
  7662. type="polygon";
  7663. points[]=
  7664. {
  7665. {
  7666. {
  7667. {0.66734397,0.459391},
  7668. 1
  7669. },
  7670. {
  7671. {0.70249999,0.459391},
  7672. 1
  7673. },
  7674. {
  7675. "PylonAmmo3",
  7676. {0.70249999,0.40763301},
  7677. 1
  7678. },
  7679. {
  7680. "PylonAmmo3",
  7681. {0.66734397,0.40763301},
  7682. 1
  7683. }
  7684. }
  7685. };
  7686. };
  7687. class WeapName
  7688. {
  7689. type="text";
  7690. source="PylonMagazineName";
  7691. sourceindex=3;
  7692. sourceScale=1;
  7693. align="right";
  7694. scale=1;
  7695. pos[]=
  7696. {
  7697. {0.71714801,0.396148},
  7698. 1
  7699. };
  7700. right[]=
  7701. {
  7702. {0.753281,0.396148},
  7703. 1
  7704. };
  7705. down[]=
  7706. {
  7707. {0.71714801,0.43130499},
  7708. 1
  7709. };
  7710. };
  7711. class MagName
  7712. {
  7713. type="text";
  7714. source="PylonMagazineNameShort";
  7715. sourceindex=3;
  7716. sourceScale=1;
  7717. align="right";
  7718. scale=1;
  7719. pos[]=
  7720. {
  7721. {0.71714801,0.43614799},
  7722. 1
  7723. };
  7724. right[]=
  7725. {
  7726. {0.753281,0.43614799},
  7727. 1
  7728. };
  7729. down[]=
  7730. {
  7731. {0.71714801,0.47130501},
  7732. 1
  7733. };
  7734. };
  7735. class MagCount
  7736. {
  7737. type="text";
  7738. source="PylonAmmo";
  7739. sourceindex=3;
  7740. sourceScale=1;
  7741. align="left";
  7742. scale=1;
  7743. pos[]=
  7744. {
  7745. {0.89714801,0.43614799},
  7746. 1
  7747. };
  7748. right[]=
  7749. {
  7750. {0.933281,0.43614799},
  7751. 1
  7752. };
  7753. down[]=
  7754. {
  7755. {0.89714801,0.47130501},
  7756. 1
  7757. };
  7758. };
  7759. };
  7760. class Empty
  7761. {
  7762. color[]={1,0,0,1};
  7763. condition="PylonAmmoRelative3<=0";
  7764. class Static
  7765. {
  7766. class Lines
  7767. {
  7768. type="line";
  7769. width=4;
  7770. points[]=
  7771. {
  7772. {
  7773. {0.66734397,0.459391},
  7774. 1
  7775. },
  7776. {
  7777. {0.70249999,0.459391},
  7778. 1
  7779. },
  7780. {
  7781. {0.70249999,0.40763301},
  7782. 1
  7783. },
  7784. {
  7785. {0.66734397,0.40763301},
  7786. 1
  7787. },
  7788. {
  7789. {0.66734397,0.459391},
  7790. 1
  7791. }
  7792. };
  7793. };
  7794. class Poly
  7795. {
  7796. type="polygon";
  7797. points[]=
  7798. {
  7799. {
  7800. {
  7801. {0.70347703,0.390055},
  7802. 1
  7803. },
  7804. {
  7805. {0.70347703,0.476969},
  7806. 1
  7807. },
  7808. {
  7809. {0.91246098,0.476969},
  7810. 1
  7811. },
  7812. {
  7813. {0.91246098,0.390055},
  7814. 1
  7815. }
  7816. }
  7817. };
  7818. };
  7819. };
  7820. class black
  7821. {
  7822. color[]={1,0,0,1};
  7823. class MagName
  7824. {
  7825. type="text";
  7826. source="PylonMagazineNameShort";
  7827. sourceindex=3;
  7828. sourceScale=1;
  7829. align="right";
  7830. scale=1;
  7831. pos[]=
  7832. {
  7833. {0.71714801,0.39591399},
  7834. 1
  7835. };
  7836. right[]=
  7837. {
  7838. {0.73374999,0.39591399},
  7839. 1
  7840. };
  7841. down[]=
  7842. {
  7843. {0.71714801,0.421305},
  7844. 1
  7845. };
  7846. };
  7847. };
  7848. };
  7849. };
  7850. class PylonSelected2
  7851. {
  7852. condition="PylonSelected2>0";
  7853. class NotEmpty
  7854. {
  7855. color[]={0.58999997,0.30000001,0,1};
  7856. condition="PylonAmmoRelative2>0";
  7857. class Static
  7858. {
  7859. class Lines
  7860. {
  7861. type="line";
  7862. width=4;
  7863. points[]=
  7864. {
  7865. {
  7866. {0.70347703,0.506266},
  7867. 1
  7868. },
  7869. {
  7870. {0.70347703,0.59318},
  7871. 1
  7872. },
  7873. {
  7874. {0.91246098,0.59318},
  7875. 1
  7876. },
  7877. {
  7878. {0.91246098,0.506266},
  7879. 1
  7880. },
  7881. {
  7882. {0.70347703,0.506266},
  7883. 1
  7884. },
  7885. {},
  7886. {
  7887. {0.66734397,0.57560199},
  7888. 1
  7889. },
  7890. {
  7891. {0.70249999,0.57560199},
  7892. 1
  7893. },
  7894. {
  7895. {0.70249999,0.523844},
  7896. 1
  7897. },
  7898. {
  7899. {0.66734397,0.523844},
  7900. 1
  7901. },
  7902. {
  7903. {0.66734397,0.57560199},
  7904. 1
  7905. }
  7906. };
  7907. };
  7908. };
  7909. class PolyBar
  7910. {
  7911. type="polygon";
  7912. points[]=
  7913. {
  7914. {
  7915. {
  7916. {0.66734397,0.57560199},
  7917. 1
  7918. },
  7919. {
  7920. {0.70249999,0.57560199},
  7921. 1
  7922. },
  7923. {
  7924. "PylonAmmo2",
  7925. {0.70249999,0.523844},
  7926. 1
  7927. },
  7928. {
  7929. "PylonAmmo2",
  7930. {0.66734397,0.523844},
  7931. 1
  7932. }
  7933. }
  7934. };
  7935. };
  7936. class WeapName
  7937. {
  7938. type="text";
  7939. source="PylonMagazineName";
  7940. sourceindex=2;
  7941. sourceScale=1;
  7942. align="right";
  7943. scale=1;
  7944. pos[]=
  7945. {
  7946. {0.71714801,0.51235902},
  7947. 1
  7948. };
  7949. right[]=
  7950. {
  7951. {0.753281,0.51235902},
  7952. 1
  7953. };
  7954. down[]=
  7955. {
  7956. {0.71714801,0.54751599},
  7957. 1
  7958. };
  7959. };
  7960. class MagName
  7961. {
  7962. type="text";
  7963. source="PylonMagazineNameShort";
  7964. sourceindex=2;
  7965. sourceScale=1;
  7966. align="right";
  7967. scale=1;
  7968. pos[]=
  7969. {
  7970. {0.71714801,0.55235898},
  7971. 1
  7972. };
  7973. right[]=
  7974. {
  7975. {0.753281,0.55235898},
  7976. 1
  7977. };
  7978. down[]=
  7979. {
  7980. {0.71714801,0.58751601},
  7981. 1
  7982. };
  7983. };
  7984. class MagCount
  7985. {
  7986. type="text";
  7987. source="PylonAmmo";
  7988. sourceindex=2;
  7989. sourceScale=1;
  7990. align="left";
  7991. scale=1;
  7992. pos[]=
  7993. {
  7994. {0.89714801,0.55235898},
  7995. 1
  7996. };
  7997. right[]=
  7998. {
  7999. {0.933281,0.55235898},
  8000. 1
  8001. };
  8002. down[]=
  8003. {
  8004. {0.89714801,0.58751601},
  8005. 1
  8006. };
  8007. };
  8008. };
  8009. class Empty
  8010. {
  8011. color[]={1,0,0,1};
  8012. condition="PylonAmmoRelative2<=0";
  8013. class Static
  8014. {
  8015. class Lines
  8016. {
  8017. type="line";
  8018. width=4;
  8019. points[]=
  8020. {
  8021. {
  8022. {0.66734397,0.57560199},
  8023. 1
  8024. },
  8025. {
  8026. {0.70249999,0.57560199},
  8027. 1
  8028. },
  8029. {
  8030. {0.70249999,0.523844},
  8031. 1
  8032. },
  8033. {
  8034. {0.66734397,0.523844},
  8035. 1
  8036. },
  8037. {
  8038. {0.66734397,0.57560199},
  8039. 1
  8040. }
  8041. };
  8042. };
  8043. class Poly
  8044. {
  8045. type="polygon";
  8046. points[]=
  8047. {
  8048. {
  8049. {
  8050. {0.70347703,0.506266},
  8051. 1
  8052. },
  8053. {
  8054. {0.70347703,0.59318},
  8055. 1
  8056. },
  8057. {
  8058. {0.91246098,0.59318},
  8059. 1
  8060. },
  8061. {
  8062. {0.91246098,0.506266},
  8063. 1
  8064. }
  8065. }
  8066. };
  8067. };
  8068. };
  8069. class black
  8070. {
  8071. color[]={1,0,0,1};
  8072. class MagName
  8073. {
  8074. type="text";
  8075. source="PylonMagazineNameShort";
  8076. sourceindex=2;
  8077. sourceScale=1;
  8078. align="right";
  8079. scale=1;
  8080. pos[]=
  8081. {
  8082. {0.71714801,0.51212502},
  8083. 1
  8084. };
  8085. right[]=
  8086. {
  8087. {0.73374999,0.51212502},
  8088. 1
  8089. };
  8090. down[]=
  8091. {
  8092. {0.71714801,0.537516},
  8093. 1
  8094. };
  8095. };
  8096. };
  8097. };
  8098. };
  8099. class Pylon2
  8100. {
  8101. condition="PylonSelected2<=0";
  8102. class NotEmpty
  8103. {
  8104. color[]={0,0.83999997,0,1};
  8105. condition="PylonAmmoRelative2>0";
  8106. class Static
  8107. {
  8108. class Lines
  8109. {
  8110. type="line";
  8111. width=4;
  8112. points[]=
  8113. {
  8114. {
  8115. {0.70347703,0.506266},
  8116. 1
  8117. },
  8118. {
  8119. {0.70347703,0.59318},
  8120. 1
  8121. },
  8122. {
  8123. {0.91246098,0.59318},
  8124. 1
  8125. },
  8126. {
  8127. {0.91246098,0.506266},
  8128. 1
  8129. },
  8130. {
  8131. {0.70347703,0.506266},
  8132. 1
  8133. },
  8134. {},
  8135. {
  8136. {0.66734397,0.57560199},
  8137. 1
  8138. },
  8139. {
  8140. {0.70249999,0.57560199},
  8141. 1
  8142. },
  8143. {
  8144. {0.70249999,0.523844},
  8145. 1
  8146. },
  8147. {
  8148. {0.66734397,0.523844},
  8149. 1
  8150. },
  8151. {
  8152. {0.66734397,0.57560199},
  8153. 1
  8154. }
  8155. };
  8156. };
  8157. };
  8158. class PolyBar
  8159. {
  8160. type="polygon";
  8161. points[]=
  8162. {
  8163. {
  8164. {
  8165. {0.66734397,0.57560199},
  8166. 1
  8167. },
  8168. {
  8169. {0.70249999,0.57560199},
  8170. 1
  8171. },
  8172. {
  8173. "PylonAmmo2",
  8174. {0.70249999,0.523844},
  8175. 1
  8176. },
  8177. {
  8178. "PylonAmmo2",
  8179. {0.66734397,0.523844},
  8180. 1
  8181. }
  8182. }
  8183. };
  8184. };
  8185. class WeapName
  8186. {
  8187. type="text";
  8188. source="PylonMagazineName";
  8189. sourceindex=2;
  8190. sourceScale=1;
  8191. align="right";
  8192. scale=1;
  8193. pos[]=
  8194. {
  8195. {0.71714801,0.51235902},
  8196. 1
  8197. };
  8198. right[]=
  8199. {
  8200. {0.753281,0.51235902},
  8201. 1
  8202. };
  8203. down[]=
  8204. {
  8205. {0.71714801,0.54751599},
  8206. 1
  8207. };
  8208. };
  8209. class MagName
  8210. {
  8211. type="text";
  8212. source="PylonMagazineNameShort";
  8213. sourceindex=2;
  8214. sourceScale=1;
  8215. align="right";
  8216. scale=1;
  8217. pos[]=
  8218. {
  8219. {0.71714801,0.55235898},
  8220. 1
  8221. };
  8222. right[]=
  8223. {
  8224. {0.753281,0.55235898},
  8225. 1
  8226. };
  8227. down[]=
  8228. {
  8229. {0.71714801,0.58751601},
  8230. 1
  8231. };
  8232. };
  8233. class MagCount
  8234. {
  8235. type="text";
  8236. source="PylonAmmo";
  8237. sourceindex=2;
  8238. sourceScale=1;
  8239. align="left";
  8240. scale=1;
  8241. pos[]=
  8242. {
  8243. {0.89714801,0.55235898},
  8244. 1
  8245. };
  8246. right[]=
  8247. {
  8248. {0.933281,0.55235898},
  8249. 1
  8250. };
  8251. down[]=
  8252. {
  8253. {0.89714801,0.58751601},
  8254. 1
  8255. };
  8256. };
  8257. };
  8258. class Empty
  8259. {
  8260. color[]={1,0,0,1};
  8261. condition="PylonAmmoRelative2<=0";
  8262. class Static
  8263. {
  8264. class Lines
  8265. {
  8266. type="line";
  8267. width=4;
  8268. points[]=
  8269. {
  8270. {
  8271. {0.66734397,0.57560199},
  8272. 1
  8273. },
  8274. {
  8275. {0.70249999,0.57560199},
  8276. 1
  8277. },
  8278. {
  8279. {0.70249999,0.523844},
  8280. 1
  8281. },
  8282. {
  8283. {0.66734397,0.523844},
  8284. 1
  8285. },
  8286. {
  8287. {0.66734397,0.57560199},
  8288. 1
  8289. }
  8290. };
  8291. };
  8292. class Poly
  8293. {
  8294. type="polygon";
  8295. points[]=
  8296. {
  8297. {
  8298. {
  8299. {0.70347703,0.506266},
  8300. 1
  8301. },
  8302. {
  8303. {0.70347703,0.59318},
  8304. 1
  8305. },
  8306. {
  8307. {0.91246098,0.59318},
  8308. 1
  8309. },
  8310. {
  8311. {0.91246098,0.506266},
  8312. 1
  8313. }
  8314. }
  8315. };
  8316. };
  8317. };
  8318. class black
  8319. {
  8320. color[]={1,0,0,1};
  8321. class MagName
  8322. {
  8323. type="text";
  8324. source="PylonMagazineNameShort";
  8325. sourceindex=2;
  8326. sourceScale=1;
  8327. align="right";
  8328. scale=1;
  8329. pos[]=
  8330. {
  8331. {0.71714801,0.51212502},
  8332. 1
  8333. };
  8334. right[]=
  8335. {
  8336. {0.73374999,0.51212502},
  8337. 1
  8338. };
  8339. down[]=
  8340. {
  8341. {0.71714801,0.537516},
  8342. 1
  8343. };
  8344. };
  8345. };
  8346. };
  8347. };
  8348. class PylonSelected1
  8349. {
  8350. condition="PylonSelected1>0";
  8351. class NotEmpty
  8352. {
  8353. color[]={0.58999997,0.30000001,0,1};
  8354. condition="PylonAmmoRelative1>0";
  8355. class Static
  8356. {
  8357. class Lines
  8358. {
  8359. type="line";
  8360. width=4;
  8361. points[]=
  8362. {
  8363. {
  8364. {0.70347703,0.62247699},
  8365. 1
  8366. },
  8367. {
  8368. {0.70347703,0.709391},
  8369. 1
  8370. },
  8371. {
  8372. {0.91246098,0.709391},
  8373. 1
  8374. },
  8375. {
  8376. {0.91246098,0.62247699},
  8377. 1
  8378. },
  8379. {
  8380. {0.70347703,0.62247699},
  8381. 1
  8382. },
  8383. {},
  8384. {
  8385. {0.66734397,0.69181299},
  8386. 1
  8387. },
  8388. {
  8389. {0.70249999,0.69181299},
  8390. 1
  8391. },
  8392. {
  8393. {0.70249999,0.640055},
  8394. 1
  8395. },
  8396. {
  8397. {0.66734397,0.640055},
  8398. 1
  8399. },
  8400. {
  8401. {0.66734397,0.69181299},
  8402. 1
  8403. }
  8404. };
  8405. };
  8406. };
  8407. class PolyBar
  8408. {
  8409. type="polygon";
  8410. points[]=
  8411. {
  8412. {
  8413. {
  8414. {0.66734397,0.69181299},
  8415. 1
  8416. },
  8417. {
  8418. {0.70249999,0.69181299},
  8419. 1
  8420. },
  8421. {
  8422. "PylonAmmo1",
  8423. {0.70249999,0.640055},
  8424. 1
  8425. },
  8426. {
  8427. "PylonAmmo1",
  8428. {0.66734397,0.640055},
  8429. 1
  8430. }
  8431. }
  8432. };
  8433. };
  8434. class WeapName
  8435. {
  8436. type="text";
  8437. source="PylonMagazineName";
  8438. sourceindex=1;
  8439. sourceScale=1;
  8440. align="right";
  8441. scale=1;
  8442. pos[]=
  8443. {
  8444. {0.71714801,0.62857002},
  8445. 1
  8446. };
  8447. right[]=
  8448. {
  8449. {0.753281,0.62857002},
  8450. 1
  8451. };
  8452. down[]=
  8453. {
  8454. {0.71714801,0.66372699},
  8455. 1
  8456. };
  8457. };
  8458. class MagName
  8459. {
  8460. type="text";
  8461. source="PylonMagazineNameShort";
  8462. sourceindex=1;
  8463. sourceScale=1;
  8464. align="right";
  8465. scale=1;
  8466. pos[]=
  8467. {
  8468. {0.71714801,0.66856998},
  8469. 1
  8470. };
  8471. right[]=
  8472. {
  8473. {0.753281,0.66856998},
  8474. 1
  8475. };
  8476. down[]=
  8477. {
  8478. {0.71714801,0.70372701},
  8479. 1
  8480. };
  8481. };
  8482. class MagCount
  8483. {
  8484. type="text";
  8485. source="PylonAmmo";
  8486. sourceindex=1;
  8487. sourceScale=1;
  8488. align="left";
  8489. scale=1;
  8490. pos[]=
  8491. {
  8492. {0.89714801,0.66856998},
  8493. 1
  8494. };
  8495. right[]=
  8496. {
  8497. {0.933281,0.66856998},
  8498. 1
  8499. };
  8500. down[]=
  8501. {
  8502. {0.89714801,0.70372701},
  8503. 1
  8504. };
  8505. };
  8506. };
  8507. class Empty
  8508. {
  8509. color[]={1,0,0,1};
  8510. condition="PylonAmmoRelative1<=0";
  8511. class Static
  8512. {
  8513. class Lines
  8514. {
  8515. type="line";
  8516. width=4;
  8517. points[]=
  8518. {
  8519. {
  8520. {0.66734397,0.69181299},
  8521. 1
  8522. },
  8523. {
  8524. {0.70249999,0.69181299},
  8525. 1
  8526. },
  8527. {
  8528. {0.70249999,0.640055},
  8529. 1
  8530. },
  8531. {
  8532. {0.66734397,0.640055},
  8533. 1
  8534. },
  8535. {
  8536. {0.66734397,0.69181299},
  8537. 1
  8538. }
  8539. };
  8540. };
  8541. class Poly
  8542. {
  8543. type="polygon";
  8544. points[]=
  8545. {
  8546. {
  8547. {
  8548. {0.70347703,0.62247699},
  8549. 1
  8550. },
  8551. {
  8552. {0.70347703,0.709391},
  8553. 1
  8554. },
  8555. {
  8556. {0.91246098,0.709391},
  8557. 1
  8558. },
  8559. {
  8560. {0.91246098,0.62247699},
  8561. 1
  8562. }
  8563. }
  8564. };
  8565. };
  8566. };
  8567. class black
  8568. {
  8569. color[]={1,0,0,1};
  8570. class MagName
  8571. {
  8572. type="text";
  8573. source="PylonMagazineNameShort";
  8574. sourceindex=1;
  8575. sourceScale=1;
  8576. align="right";
  8577. scale=1;
  8578. pos[]=
  8579. {
  8580. {0.71714801,0.62833601},
  8581. 1
  8582. };
  8583. right[]=
  8584. {
  8585. {0.73374999,0.62833601},
  8586. 1
  8587. };
  8588. down[]=
  8589. {
  8590. {0.71714801,0.65372699},
  8591. 1
  8592. };
  8593. };
  8594. };
  8595. };
  8596. };
  8597. class Pylon1
  8598. {
  8599. condition="PylonSelected1<=0";
  8600. class NotEmpty
  8601. {
  8602. color[]={0,0.83999997,0,1};
  8603. condition="PylonAmmoRelative1>0";
  8604. class Static
  8605. {
  8606. class Lines
  8607. {
  8608. type="line";
  8609. width=4;
  8610. points[]=
  8611. {
  8612. {
  8613. {0.70347703,0.62247699},
  8614. 1
  8615. },
  8616. {
  8617. {0.70347703,0.709391},
  8618. 1
  8619. },
  8620. {
  8621. {0.91246098,0.709391},
  8622. 1
  8623. },
  8624. {
  8625. {0.91246098,0.62247699},
  8626. 1
  8627. },
  8628. {
  8629. {0.70347703,0.62247699},
  8630. 1
  8631. },
  8632. {},
  8633. {
  8634. {0.66734397,0.69181299},
  8635. 1
  8636. },
  8637. {
  8638. {0.70249999,0.69181299},
  8639. 1
  8640. },
  8641. {
  8642. {0.70249999,0.640055},
  8643. 1
  8644. },
  8645. {
  8646. {0.66734397,0.640055},
  8647. 1
  8648. },
  8649. {
  8650. {0.66734397,0.69181299},
  8651. 1
  8652. }
  8653. };
  8654. };
  8655. };
  8656. class PolyBar
  8657. {
  8658. type="polygon";
  8659. points[]=
  8660. {
  8661. {
  8662. {
  8663. {0.66734397,0.69181299},
  8664. 1
  8665. },
  8666. {
  8667. {0.70249999,0.69181299},
  8668. 1
  8669. },
  8670. {
  8671. "PylonAmmo1",
  8672. {0.70249999,0.640055},
  8673. 1
  8674. },
  8675. {
  8676. "PylonAmmo1",
  8677. {0.66734397,0.640055},
  8678. 1
  8679. }
  8680. }
  8681. };
  8682. };
  8683. class WeapName
  8684. {
  8685. type="text";
  8686. source="PylonMagazineName";
  8687. sourceindex=1;
  8688. sourceScale=1;
  8689. align="right";
  8690. scale=1;
  8691. pos[]=
  8692. {
  8693. {0.71714801,0.62857002},
  8694. 1
  8695. };
  8696. right[]=
  8697. {
  8698. {0.753281,0.62857002},
  8699. 1
  8700. };
  8701. down[]=
  8702. {
  8703. {0.71714801,0.66372699},
  8704. 1
  8705. };
  8706. };
  8707. class MagName
  8708. {
  8709. type="text";
  8710. source="PylonMagazineNameShort";
  8711. sourceindex=1;
  8712. sourceScale=1;
  8713. align="right";
  8714. scale=1;
  8715. pos[]=
  8716. {
  8717. {0.71714801,0.66856998},
  8718. 1
  8719. };
  8720. right[]=
  8721. {
  8722. {0.753281,0.66856998},
  8723. 1
  8724. };
  8725. down[]=
  8726. {
  8727. {0.71714801,0.70372701},
  8728. 1
  8729. };
  8730. };
  8731. class MagCount
  8732. {
  8733. type="text";
  8734. source="PylonAmmo";
  8735. sourceindex=1;
  8736. sourceScale=1;
  8737. align="left";
  8738. scale=1;
  8739. pos[]=
  8740. {
  8741. {0.89714801,0.66856998},
  8742. 1
  8743. };
  8744. right[]=
  8745. {
  8746. {0.933281,0.66856998},
  8747. 1
  8748. };
  8749. down[]=
  8750. {
  8751. {0.89714801,0.70372701},
  8752. 1
  8753. };
  8754. };
  8755. };
  8756. class Empty
  8757. {
  8758. color[]={1,0,0,1};
  8759. condition="PylonAmmoRelative1<=0";
  8760. class Static
  8761. {
  8762. class Lines
  8763. {
  8764. type="line";
  8765. width=4;
  8766. points[]=
  8767. {
  8768. {
  8769. {0.66734397,0.69181299},
  8770. 1
  8771. },
  8772. {
  8773. {0.70249999,0.69181299},
  8774. 1
  8775. },
  8776. {
  8777. {0.70249999,0.640055},
  8778. 1
  8779. },
  8780. {
  8781. {0.66734397,0.640055},
  8782. 1
  8783. },
  8784. {
  8785. {0.66734397,0.69181299},
  8786. 1
  8787. }
  8788. };
  8789. };
  8790. class Poly
  8791. {
  8792. type="polygon";
  8793. points[]=
  8794. {
  8795. {
  8796. {
  8797. {0.70347703,0.62247699},
  8798. 1
  8799. },
  8800. {
  8801. {0.70347703,0.709391},
  8802. 1
  8803. },
  8804. {
  8805. {0.91246098,0.709391},
  8806. 1
  8807. },
  8808. {
  8809. {0.91246098,0.62247699},
  8810. 1
  8811. }
  8812. }
  8813. };
  8814. };
  8815. };
  8816. class black
  8817. {
  8818. color[]={1,0,0,1};
  8819. class MagName
  8820. {
  8821. type="text";
  8822. source="PylonMagazineNameShort";
  8823. sourceindex=1;
  8824. sourceScale=1;
  8825. align="right";
  8826. scale=1;
  8827. pos[]=
  8828. {
  8829. {0.71714801,0.62833601},
  8830. 1
  8831. };
  8832. right[]=
  8833. {
  8834. {0.73374999,0.62833601},
  8835. 1
  8836. };
  8837. down[]=
  8838. {
  8839. {0.71714801,0.65372699},
  8840. 1
  8841. };
  8842. };
  8843. };
  8844. };
  8845. };
  8846. class Gatling_Ammo
  8847. {
  8848. type="text";
  8849. source="ammo";
  8850. sourceIndex=0;
  8851. scale=1;
  8852. sourceScale=1;
  8853. align="right";
  8854. pos[]=
  8855. {
  8856. {0.435,0.86000001},
  8857. 1
  8858. };
  8859. right[]=
  8860. {
  8861. {0.47499999,0.86000001},
  8862. 1
  8863. };
  8864. down[]=
  8865. {
  8866. {0.435,0.89099997},
  8867. 1
  8868. };
  8869. };
  8870. class CM_Name
  8871. {
  8872. type="text";
  8873. source="CMWeapon";
  8874. scale=1;
  8875. sourceScale=1;
  8876. align="right";
  8877. pos[]=
  8878. {
  8879. {0.72500002,0.82999998},
  8880. 1
  8881. };
  8882. right[]=
  8883. {
  8884. {0.76499999,0.82999998},
  8885. 1
  8886. };
  8887. down[]=
  8888. {
  8889. {0.72500002,0.861},
  8890. 1
  8891. };
  8892. };
  8893. class CM_Ammo
  8894. {
  8895. type="text";
  8896. source="CMAmmo";
  8897. scale=1;
  8898. sourceScale=1;
  8899. align="right";
  8900. pos[]=
  8901. {
  8902. {0.72500002,0.86000001},
  8903. 1
  8904. };
  8905. right[]=
  8906. {
  8907. {0.76499999,0.86000001},
  8908. 1
  8909. };
  8910. down[]=
  8911. {
  8912. {0.72500002,0.89099997},
  8913. 1
  8914. };
  8915. };
  8916. };
  8917. };
  8918. };