config.cpp 256 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471
  1. ////////////////////////////////////////////////////////////////////
  2. //DeRap: cTab\config.bin
  3. //Produced from mikero's Dos Tools Dll version 7.46
  4. //https://bytex.market/products/item/weodpphdknnzm70o0h8q/Mikero%27s%20Dos%20Tools
  5. //'now' is Wed Jun 03 16:07:15 2020 : 'file' last modified on Wed May 27 22:01:53 2020
  6. ////////////////////////////////////////////////////////////////////
  7. #define _ARMA_
  8. class BIS_AddonInfo
  9. {
  10. author = "IceBadger";
  11. timepacked = "1549196987";
  12. };
  13. class CfgPatches
  14. {
  15. class cTab
  16. {
  17. units[] = {"Box_cTab_items"};
  18. weapons[] = {"ItemcTab","ItemAndroid","ItemcTabHCam"};
  19. requiredVersion = 1.32;
  20. requiredAddons[] = {"CBA_MAIN","A3Data"};
  21. versionDesc = "cTab";
  22. version = "2.2.2.1";
  23. versionStr = "2.2.2.1";
  24. versionAr[] = {2,2,2,1};
  25. };
  26. };
  27. class CfgSettings
  28. {
  29. class CBA
  30. {
  31. class Versioning
  32. {
  33. class cTab
  34. {
  35. main_addon = "cTab";
  36. class Dependencies
  37. {
  38. CBA[] = {"cba_main",{1,0,0},"true"};
  39. };
  40. };
  41. };
  42. };
  43. };
  44. class CfgMods
  45. {
  46. class cTab
  47. {
  48. dir = "@cTab";
  49. name = "cTab - Blue Force Tracking";
  50. picture = "\ClonecTab\img\cTab_BFT_ico.paa";
  51. hidePicture = "True";
  52. hideName = "True";
  53. actionName = "Website";
  54. action = "https://github.com/Riouken/cTab";
  55. overview = "Commander's Tablet / FBCB2 - Blue Force Tracking\nBattlefield tablet to access real time intel and blue force tracker.";
  56. tooltip = "Commander's Tablet / FBCB2 - Blue Force Tracking";
  57. };
  58. author = "76561197962969709";
  59. timepacked = "1433095721";
  60. };
  61. class CfgFunctions
  62. {
  63. class cTab
  64. {
  65. class Functions
  66. {
  67. file = "cTab\functions";
  68. class addNotification{};
  69. class addToPairs{};
  70. class addUserMarker{};
  71. class centerMapOnPlayerPosition{};
  72. class checkGear{};
  73. class close{};
  74. class createHelmetCam{};
  75. class createUavCam{};
  76. class ctrlMapCenter{};
  77. class currentTime{};
  78. class degreeToOctant{};
  79. class deleteHelmetCam{};
  80. class deleteUAVcam{};
  81. class deleteUserMarker{};
  82. class dirTo{};
  83. class distance2D{};
  84. class drawBftMarkers{};
  85. class drawHook{};
  86. class drawMarkers{};
  87. class drawUserMarkers{};
  88. class findUserMarker{};
  89. class getBackgroundPosition{};
  90. class getCopilot{};
  91. class getFromPairs{};
  92. class getInfMarkerIcon{};
  93. class getPlayerEncryptionKey{};
  94. class getPlayerSides{};
  95. class getSettings{};
  96. class getUserMarkerList{};
  97. class isDialog{};
  98. class lockUavCamTo{};
  99. class onIfKeyDown{};
  100. class onIfClose{};
  101. class onIfOpen{};
  102. class open{};
  103. class onPlayerInventoryChanged{};
  104. class processCuratorKey{};
  105. class processNotifications{};
  106. class remoteControlUav{};
  107. class setInterfacePosition{};
  108. class setSettings{};
  109. class setToPairs{};
  110. class toggleIfPosition{};
  111. class toggleMapTools{};
  112. class translateUserMarker{};
  113. class unitInEnabledVehicleSeat{};
  114. class updateLists{};
  115. class updateInterface{};
  116. class updateUserMarkerList{};
  117. class userMenuSelect{};
  118. };
  119. };
  120. };
  121. class cTab_settings
  122. {
  123. cTab_vehicleClass_has_FBCB2[] = {"MRAP_01_base_F","MRAP_02_base_F","MRAP_03_base_F","Wheeled_APC_F","Tank","Truck_01_base_F","Truck_03_base_F"};
  124. cTab_vehicleClass_has_TAD[] = {"Helicopter","Plane"};
  125. cTab_helmetClass_has_HCam[] = {"H_HelmetB_light","H_Helmet_Kerry","H_HelmetSpecB","H_HelmetO_ocamo","BWA3_OpsCore_Fleck_Camera","BWA3_OpsCore_Schwarz_Camera","BWA3_OpsCore_Tropen_Camera"};
  126. };
  127. class cTab_keys
  128. {
  129. class if_main
  130. {
  131. key = 35;
  132. ctrl = 0;
  133. shift = 0;
  134. alt = 0;
  135. };
  136. class if_secondary
  137. {
  138. key = 35;
  139. ctrl = 1;
  140. shift = 0;
  141. alt = 0;
  142. };
  143. class if_tertiary
  144. {
  145. key = 35;
  146. ctrl = 0;
  147. shift = 0;
  148. alt = 1;
  149. };
  150. class zoom_in
  151. {
  152. key = 201;
  153. ctrl = 1;
  154. shift = 1;
  155. alt = 0;
  156. };
  157. class zoom_out
  158. {
  159. key = 209;
  160. ctrl = 1;
  161. shift = 1;
  162. alt = 0;
  163. };
  164. };
  165. class Extended_PostInit_EventHandlers
  166. {
  167. class cTab
  168. {
  169. clientInit = "call compile preProcessFileLineNumbers '\ClonecTab\player_init.sqf'";
  170. serverInit = "call compile preProcessFileLineNumbers '\ClonecTab\server_init.sqf'";
  171. };
  172. };
  173. class cTab_RscText
  174. {
  175. type = 0;
  176. idc = -1;
  177. colorBackground[] = {0,0,0,0};
  178. colorText[] = {1,1,1,1};
  179. text = "";
  180. fixedWidth = 0;
  181. x = 0;
  182. y = 0;
  183. h = 0.037;
  184. w = 0.3;
  185. style = 0;
  186. shadow = 1;
  187. colorShadow[] = {0,0,0,0.5};
  188. font = "PuristaMedium";
  189. SizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  190. linespacing = 1;
  191. };
  192. class cTab_RscStructuredText
  193. {
  194. type = 13;
  195. idc = -1;
  196. style = 0;
  197. colorText[] = {1,1,1,1};
  198. class Attributes
  199. {
  200. font = "PuristaMedium";
  201. color = "#ffffff";
  202. align = "left";
  203. shadow = 1;
  204. };
  205. x = 0;
  206. y = 0;
  207. h = 0.035;
  208. w = 0.1;
  209. text = "";
  210. size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  211. shadow = 1;
  212. };
  213. class cTab_RscPicture
  214. {
  215. type = 0;
  216. idc = -1;
  217. style = 48;
  218. colorBackground[] = {0,0,0,0};
  219. colorText[] = {1,1,1,1};
  220. font = "TahomaB";
  221. sizeEx = 0;
  222. lineSpacing = 0;
  223. text = "";
  224. fixedWidth = 0;
  225. shadow = 0;
  226. x = 0;
  227. y = 0;
  228. w = 0.2;
  229. h = 0.15;
  230. };
  231. class cTab_RscEdit
  232. {
  233. type = 2;
  234. x = 0;
  235. y = 0;
  236. h = 0.04;
  237. w = 0.2;
  238. colorBackground[] = {0,0,0,1};
  239. colorText[] = {0.95,0.95,0.95,1};
  240. colorDisabled[] = {1,1,1,0.25};
  241. colorSelection[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",1};
  242. autocomplete = "";
  243. text = "";
  244. size = 0.2;
  245. style = "0x00 + 0x40";
  246. font = "PuristaMedium";
  247. shadow = 2;
  248. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  249. canModify = 1;
  250. };
  251. class cTab_RscCombo
  252. {
  253. type = 4;
  254. colorSelect[] = {0,0,0,1};
  255. colorText[] = {1,1,1,1};
  256. colorBackground[] = {0,0,0,1};
  257. colorScrollbar[] = {1,0,0,1};
  258. soundSelect[] = {"\A3\ui_f\data\sound\RscCombo\soundSelect",0.1,1};
  259. soundExpand[] = {"\A3\ui_f\data\sound\RscCombo\soundExpand",0.1,1};
  260. soundCollapse[] = {"\A3\ui_f\data\sound\RscCombo\soundCollapse",0.1,1};
  261. maxHistoryDelay = 1;
  262. class ScrollBar
  263. {
  264. color[] = {1,1,1,0.6};
  265. colorActive[] = {1,1,1,1};
  266. colorDisabled[] = {1,1,1,0.3};
  267. shadow = 0;
  268. thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
  269. arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
  270. arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
  271. border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
  272. };
  273. style = 16;
  274. x = 0;
  275. y = 0;
  276. w = 0.12;
  277. h = 0.035;
  278. shadow = 0;
  279. colorSelectBackground[] = {1,1,1,0.7};
  280. arrowEmpty = "\A3\ui_f\data\GUI\RscCommon\rsccombo\arrow_combo_ca.paa";
  281. arrowFull = "\A3\ui_f\data\GUI\RscCommon\rsccombo\arrow_combo_active_ca.paa";
  282. wholeHeight = 0.45;
  283. color[] = {1,1,1,1};
  284. colorActive[] = {1,0,0,1};
  285. colorDisabled[] = {1,1,1,0.25};
  286. font = "PuristaMedium";
  287. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  288. };
  289. class cTab_RscListBox
  290. {
  291. type = 5;
  292. w = 0.4;
  293. h = 0.4;
  294. rowHeight = 0;
  295. colorText[] = {1,1,1,1};
  296. colorDisabled[] = {1,1,1,0.25};
  297. colorScrollbar[] = {1,0,0,0};
  298. colorSelect[] = {0,0,0,1};
  299. colorSelect2[] = {0,0,0,1};
  300. colorSelectBackground[] = {0.95,0.95,0.95,1};
  301. colorSelectBackground2[] = {1,1,1,0.5};
  302. colorBackground[] = {0,0,0,0.3};
  303. colorPicture[] = {1,1,1,1};
  304. colorPictureDisabled[] = {1,1,1,0.25};
  305. colorPictureRight[] = {1,1,1,1};
  306. colorPictureRightDisabled[] = {1,1,1,0.25};
  307. colorPictureRightSelected[] = {1,1,1,1};
  308. colorPictureSelected[] = {1,1,1,1};
  309. soundSelect[] = {"\A3\ui_f\data\sound\RscListbox\soundSelect",0.09,1};
  310. arrowEmpty = "#(argb,8,8,3)color(1,1,1,1)";
  311. arrowFull = "#(argb,8,8,3)color(1,1,1,1)";
  312. class ScrollBar
  313. {
  314. color[] = {1,1,1,0.6};
  315. colorActive[] = {1,1,1,1};
  316. colorDisabled[] = {1,1,1,0.3};
  317. shadow = 0;
  318. thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
  319. arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
  320. arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
  321. border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
  322. };
  323. style = 16;
  324. font = "PuristaMedium";
  325. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  326. shadow = 0;
  327. colorShadow[] = {0,0,0,0.5};
  328. color[] = {1,1,1,1};
  329. period = 1.2;
  330. maxHistoryDelay = 1;
  331. autoScrollSpeed = -1;
  332. autoScrollDelay = 5;
  333. autoScrollRewind = 0;
  334. class listScrollBar
  335. {
  336. color[] = {1,1,1,0.6};
  337. colorActive[] = {1,1,1,1};
  338. colorDisabled[] = {1,1,1,0.3};
  339. shadow = 0;
  340. thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
  341. arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
  342. arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
  343. border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
  344. };
  345. };
  346. class cTab_RscButton
  347. {
  348. type = 1;
  349. text = "";
  350. colorText[] = {1,1,1,1};
  351. colorDisabled[] = {0.4,0.4,0.4,1};
  352. colorBackground[] = {0.118,0.118,0.118,0.7};
  353. colorBackgroundDisabled[] = {0.95,0.95,0.95,1};
  354. colorBackgroundActive[] = {0.118,0.118,0.118,1};
  355. colorFocused[] = {0.118,0.118,0.118,1};
  356. colorShadow[] = {0,0,0,1};
  357. colorBorder[] = {0,0,0,1};
  358. soundEnter[] = {"\A3\ui_f\data\sound\RscButton\soundEnter",0.09,1};
  359. soundPush[] = {"\A3\ui_f\data\sound\RscButton\soundPush",0.09,1};
  360. soundClick[] = {"\A3\ui_f\data\sound\RscButton\soundClick",0.09,1};
  361. soundEscape[] = {"\A3\ui_f\data\sound\RscButton\soundEscape",0.09,1};
  362. style = 2;
  363. x = 0;
  364. y = 0;
  365. w = 0.095589;
  366. h = 0.039216;
  367. shadow = 2;
  368. font = "PuristaMedium";
  369. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  370. offsetX = 0.003;
  371. offsetY = 0.003;
  372. offsetPressedX = 0.002;
  373. offsetPressedY = 0.002;
  374. borderSize = 0;
  375. };
  376. class cTab_ActiveText
  377. {
  378. type = 11;
  379. style = 0;
  380. text = "";
  381. color[] = {1,1,1,1};
  382. colorActive[] = {1,1,1,1};
  383. colorText[] = {1,1,1,1};
  384. colorDisabled[] = {0.4,0.4,0.4,1};
  385. colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",0.7};
  386. colorBackgroundDisabled[] = {0.95,0.95,0.95,1};
  387. colorBackgroundActive[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",1};
  388. colorFocused[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",1};
  389. colorShadow[] = {0,0,0,1};
  390. colorBorder[] = {0,0,0,1};
  391. soundEnter[] = {"\A3\ui_f\data\sound\RscButton\soundEnter",0.09,1};
  392. soundPush[] = {"\A3\ui_f\data\sound\RscButton\soundPush",0.09,1};
  393. soundClick[] = {"\A3\ui_f\data\sound\RscButton\soundClick",0.09,1};
  394. soundEscape[] = {"\A3\ui_f\data\sound\RscButton\soundEscape",0.09,1};
  395. x = 0;
  396. y = 0;
  397. w = 0.095589;
  398. h = 0.039216;
  399. shadow = 2;
  400. font = "PuristaMedium";
  401. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  402. offsetX = 0.003;
  403. offsetY = 0.003;
  404. offsetPressedX = 0.002;
  405. offsetPressedY = 0.002;
  406. borderSize = 0;
  407. };
  408. class cTab_HTML
  409. {
  410. style = 0;
  411. default = 0;
  412. blinkingPeriod = 0;
  413. colorBackground[] = {0.2,0.2,0.2,1};
  414. colorText[] = {1,1,1,1};
  415. colorBold[] = {1,1,1,1};
  416. colorLink[] = {1,1,1,1};
  417. colorLinkActive[] = {1,0.5,0,1};
  418. colorPicture[] = {1,1,1,1};
  419. colorPictureBorder[] = {0,0,0,0};
  420. colorPictureLink[] = {1,1,1,1};
  421. colorPictureSelected[] = {1,1,1,1};
  422. prevPage = "\A3\ui_f\data\gui\rsccommon\rschtml\arrow_left_ca.paa";
  423. nextPage = "\A3\ui_f\data\gui\rsccommon\rschtml\arrow_right_ca.paa";
  424. };
  425. class cTab_RscButtonInv
  426. {
  427. type = 1;
  428. text = "";
  429. colorText[] = {0,0,0,0};
  430. colorDisabled[] = {0.4,0.4,0.4,0};
  431. colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",0};
  432. colorBackgroundDisabled[] = {0.95,0.95,0.95,0};
  433. colorBackgroundActive[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",0};
  434. colorFocused[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",0};
  435. colorShadow[] = {0,0,0,0};
  436. colorBorder[] = {0,0,0,0};
  437. soundEnter[] = {"\A3\ui_f\data\sound\RscButton\soundEnter",0.09,1};
  438. soundPush[] = {"\A3\ui_f\data\sound\RscButton\soundPush",0.09,1};
  439. soundClick[] = {"\A3\ui_f\data\sound\RscButton\soundClick",0.09,1};
  440. soundEscape[] = {"\A3\ui_f\data\sound\RscButton\soundEscape",0.09,1};
  441. style = 2;
  442. x = 0;
  443. y = 0;
  444. w = 0.095589;
  445. h = 0.039216;
  446. shadow = 2;
  447. font = "PuristaMedium";
  448. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  449. offsetX = 0.003;
  450. offsetY = 0.003;
  451. offsetPressedX = 0.002;
  452. offsetPressedY = 0.002;
  453. borderSize = 0;
  454. };
  455. class cTab_RscShortcutButton
  456. {
  457. type = 16;
  458. x = 0.1;
  459. y = 0.1;
  460. class HitZone
  461. {
  462. left = 0;
  463. top = 0;
  464. right = 0;
  465. bottom = 0;
  466. };
  467. class ShortcutPos
  468. {
  469. left = 0;
  470. top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)) / 2";
  471. w = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1) * (3/4)";
  472. h = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  473. };
  474. class TextPos
  475. {
  476. left = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1) * (3/4)";
  477. top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)) / 2";
  478. right = 0.005;
  479. bottom = 0;
  480. };
  481. shortcuts[] = {};
  482. textureNoShortcut = "#(argb,8,8,3)color(0,0,0,0)";
  483. color[] = {1,1,1,1};
  484. color2[] = {0.95,0.95,0.95,1};
  485. colorDisabled[] = {1,1,1,0.25};
  486. colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",1};
  487. colorBackground2[] = {1,1,1,1};
  488. soundEnter[] = {"\A3\ui_f\data\sound\RscButton\soundEnter",0.09,1};
  489. soundPush[] = {"\A3\ui_f\data\sound\RscButton\soundPush",0.09,1};
  490. soundClick[] = {"\A3\ui_f\data\sound\RscButton\soundClick",0.09,1};
  491. soundEscape[] = {"\A3\ui_f\data\sound\RscButton\soundEscape",0.09,1};
  492. class Attributes
  493. {
  494. font = "PuristaMedium";
  495. color = "#E5E5E5";
  496. align = "left";
  497. shadow = "true";
  498. };
  499. idc = -1;
  500. style = 0;
  501. default = 0;
  502. shadow = 1;
  503. w = 0.183825;
  504. h = "((((safezoneW / safezoneH) min 1.2) / 1.2) / 20)";
  505. animTextureDefault = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\normal_ca.paa";
  506. animTextureNormal = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\normal_ca.paa";
  507. animTextureDisabled = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\normal_ca.paa";
  508. animTextureOver = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\over_ca.paa";
  509. animTextureFocused = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\focus_ca.paa";
  510. animTexturePressed = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\down_ca.paa";
  511. periodFocus = 1.2;
  512. periodOver = 0.8;
  513. period = 0.4;
  514. font = "PuristaMedium";
  515. size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  516. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  517. text = "";
  518. action = "";
  519. class AttributesImage
  520. {
  521. font = "PuristaMedium";
  522. color = "#E5E5E5";
  523. align = "left";
  524. };
  525. };
  526. class cTab_RscShortcutButtonMain
  527. {
  528. idc = -1;
  529. style = 0;
  530. default = 0;
  531. w = 0.313726;
  532. h = 0.104575;
  533. color[] = {1,1,1,1};
  534. colorDisabled[] = {1,1,1,0.25};
  535. class HitZone
  536. {
  537. left = 0;
  538. top = 0;
  539. right = 0;
  540. bottom = 0;
  541. };
  542. class ShortcutPos
  543. {
  544. left = 0.0145;
  545. top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)) / 2";
  546. w = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2) * (3/4)";
  547. h = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)";
  548. };
  549. class TextPos
  550. {
  551. left = "(((safezoneW / safezoneH) min 1.2) / 32) * 1.5";
  552. top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20)*2 - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)) / 2";
  553. right = 0.005;
  554. bottom = 0;
  555. };
  556. animTextureNormal = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\normal_ca.paa";
  557. animTextureDisabled = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\disabled_ca.paa";
  558. animTextureOver = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\over_ca.paa";
  559. animTextureFocused = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\focus_ca.paa";
  560. animTexturePressed = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\down_ca.paa";
  561. animTextureDefault = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\normal_ca.paa";
  562. period = 0.5;
  563. font = "PuristaMedium";
  564. size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)";
  565. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)";
  566. text = "";
  567. action = "";
  568. class Attributes
  569. {
  570. font = "PuristaMedium";
  571. color = "#E5E5E5";
  572. align = "left";
  573. shadow = "false";
  574. };
  575. class AttributesImage
  576. {
  577. font = "PuristaMedium";
  578. color = "#E5E5E5";
  579. align = "false";
  580. };
  581. };
  582. class cTab_RscFrame
  583. {
  584. type = 0;
  585. idc = -1;
  586. style = 64;
  587. shadow = 2;
  588. colorBackground[] = {0,0,0,0};
  589. colorText[] = {1,1,1,1};
  590. font = "PuristaMedium";
  591. sizeEx = 0.02;
  592. text = "";
  593. };
  594. class cTab_RscSlider
  595. {
  596. type = 3;
  597. style = 1024;
  598. w = 0.3;
  599. color[] = {1,1,1,0.8};
  600. colorActive[] = {1,1,1,1};
  601. shadow = 0;
  602. h = 0.025;
  603. };
  604. class cTab_IGUIBack
  605. {
  606. type = 0;
  607. idc = 124;
  608. style = 128;
  609. text = "";
  610. colorText[] = {0,0,0,0};
  611. font = "PuristaMedium";
  612. sizeEx = 0;
  613. shadow = 0;
  614. x = 0.1;
  615. y = 0.1;
  616. w = 0.1;
  617. h = 0.1;
  618. colorbackground[] = {"(profilenamespace getvariable ['IGUI_BCG_RGB_R',0])","(profilenamespace getvariable ['IGUI_BCG_RGB_G',1])","(profilenamespace getvariable ['IGUI_BCG_RGB_B',1])","(profilenamespace getvariable ['IGUI_BCG_RGB_A',0.8])"};
  619. };
  620. class cTab_RscCheckbox
  621. {
  622. idc = -1;
  623. type = 7;
  624. style = 0;
  625. x = "LINE_X(XVAL)";
  626. y = "LINE_Y";
  627. w = "LINE_W(WVAL)";
  628. h = 0.029412;
  629. colorText[] = {1,0,0,1};
  630. color[] = {0,0,0,0};
  631. colorBackground[] = {0,0,1,1};
  632. colorTextSelect[] = {0,0.8,0,1};
  633. colorSelectedBg[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])",1};
  634. colorSelect[] = {0,0,0,1};
  635. colorTextDisable[] = {0.4,0.4,0.4,1};
  636. colorDisable[] = {0.4,0.4,0.4,1};
  637. font = "PuristaMedium";
  638. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
  639. rows = 1;
  640. columns = 1;
  641. strings[] = {"UNCHECKED"};
  642. checked_strings[] = {"CHECKED"};
  643. };
  644. class cTab_RscButtonMenu
  645. {
  646. idc = -1;
  647. type = 16;
  648. style = "0x02 + 0xC0";
  649. default = 0;
  650. shadow = 0;
  651. x = 0;
  652. y = 0;
  653. w = 0.095589;
  654. h = 0.039216;
  655. animTextureNormal = "#(argb,8,8,3)color(1,1,1,1)";
  656. animTextureDisabled = "#(argb,8,8,3)color(1,1,1,1)";
  657. animTextureOver = "#(argb,8,8,3)color(1,1,1,0.5)";
  658. animTextureFocused = "#(argb,8,8,3)color(1,1,1,1)";
  659. animTexturePressed = "#(argb,8,8,3)color(1,1,1,1)";
  660. animTextureDefault = "#(argb,8,8,3)color(1,1,1,1)";
  661. textureNoShortcut = "#(argb,8,8,3)color(0,0,0,0)";
  662. colorBackground[] = {0,0,0,0.8};
  663. colorBackground2[] = {1,1,1,0.5};
  664. color[] = {1,1,1,1};
  665. color2[] = {1,1,1,1};
  666. colorText[] = {1,1,1,1};
  667. colorDisabled[] = {1,1,1,0.25};
  668. class HitZone
  669. {
  670. left = 0.004;
  671. top = 0.029;
  672. right = 0.004;
  673. bottom = 0.029;
  674. };
  675. period = 1.2;
  676. periodFocus = 1.2;
  677. periodOver = 1.2;
  678. size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  679. sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  680. class TextPos
  681. {
  682. left = "0.25 * (((safezoneW / safezoneH) min 1.2) / 40)";
  683. top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)) / 2";
  684. right = 0.005;
  685. bottom = 0;
  686. };
  687. class Attributes
  688. {
  689. font = "PuristaLight";
  690. color = "#E5E5E5";
  691. align = "left";
  692. shadow = "false";
  693. };
  694. class ShortcutPos
  695. {
  696. left = "(6.25 * (((safezoneW / safezoneH) min 1.2) / 40)) - 0.0225 - 0.005";
  697. top = 0.005;
  698. w = 0.0225;
  699. h = 0.03;
  700. };
  701. soundEnter[] = {"\A3\ui_f\data\sound\RscButtonMenu\soundEnter",0.09,1};
  702. soundPush[] = {"\A3\ui_f\data\sound\RscButtonMenu\soundPush",0.09,1};
  703. soundClick[] = {"\A3\ui_f\data\sound\RscButtonMenu\soundClick",0.09,1};
  704. soundEscape[] = {"\A3\ui_f\data\sound\RscButtonMenu\soundEscape",0.09,1};
  705. };
  706. class cTab_RscButtonMenuOK
  707. {
  708. idc = 1;
  709. shortcuts[] = {"0x00050000 + 0",28,57,156};
  710. default = 1;
  711. text = "OK";
  712. soundPush[] = {"\A3\ui_f\data\sound\RscButtonMenuOK\soundPush",0.09,1};
  713. };
  714. class cTab_RscButtonMenuCancel
  715. {
  716. idc = 2;
  717. shortcuts[] = {"0x00050000 + 1"};
  718. text = "Cancel";
  719. };
  720. class cTab_RscControlsGroup
  721. {
  722. class VScrollbar
  723. {
  724. color[] = {1,1,1,1};
  725. width = 0.021;
  726. autoScrollSpeed = -1;
  727. autoScrollDelay = 5;
  728. autoScrollRewind = 0;
  729. shadow = 0;
  730. };
  731. class HScrollbar
  732. {
  733. color[] = {1,1,1,1};
  734. height = 0.028;
  735. shadow = 0;
  736. };
  737. class ScrollBar
  738. {
  739. color[] = {1,1,1,0.6};
  740. colorActive[] = {1,1,1,1};
  741. colorDisabled[] = {1,1,1,0.3};
  742. shadow = 0;
  743. thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
  744. arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
  745. arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
  746. border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
  747. };
  748. class Controls{};
  749. type = 15;
  750. idc = -1;
  751. x = 0;
  752. y = 0;
  753. w = 1;
  754. h = 1;
  755. shadow = 0;
  756. style = 16;
  757. };
  758. class cTab_RscMapControl
  759. {
  760. idc = -1;
  761. type = 101;
  762. style = 48;
  763. x = 0.1;
  764. y = 0.1;
  765. w = 0.8;
  766. h = 0.6;
  767. moveOnEdges = 1;
  768. shadow = 0;
  769. ptsPerSquareSea = 5;
  770. ptsPerSquareTxt = 3;
  771. ptsPerSquareCLn = 10;
  772. ptsPerSquareExp = 10;
  773. ptsPerSquareCost = 10;
  774. ptsPerSquareFor = 9;
  775. ptsPerSquareForEdge = 9;
  776. ptsPerSquareRoad = 6;
  777. ptsPerSquareObj = 9;
  778. showCountourInterval = 0;
  779. scaleMin = 0.001;
  780. scaleMax = 1;
  781. scaleDefault = 0.16;
  782. maxSatelliteAlpha = 0.85;
  783. alphaFadeStartScale = 0.35;
  784. alphaFadeEndScale = 0.4;
  785. colorBackground[] = {0.969,0.957,0.949,1};
  786. colorSea[] = {0.467,0.631,0.851,0.5};
  787. colorForest[] = {0.4,1,0.4,0.3};
  788. colorForestBorder[] = {0,0,0,0};
  789. colorRocks[] = {0,0,0,0.3};
  790. colorRocksBorder[] = {0,0,0,0};
  791. colorLevels[] = {0,0,0,1};
  792. colorMainCountlines[] = {1,0,0,1};
  793. colorCountlines[] = {1,0,0,0.5};
  794. colorMainCountlinesWater[] = {0.491,0.577,0.702,0.6};
  795. colorCountlinesWater[] = {0.491,0.577,0.702,0.3};
  796. colorPowerLines[] = {0.1,0.1,0.1,1};
  797. colorRailWay[] = {0.8,0.2,0,1};
  798. colorNames[] = {0,0,0,1};
  799. colorInactive[] = {1,1,1,0.5};
  800. colorOutside[] = {0.5,0.5,0.5,1};
  801. colorTracks[] = {0.84,0.76,0.65,1};
  802. colorTracksFill[] = {0.84,0.76,0.65,1};
  803. colorRoads[] = {1,0.8,0,1};
  804. colorRoadsFill[] = {1,0.8,0,1};
  805. colorMainRoads[] = {1,0.6,0.4,1};
  806. colorMainRoadsFill[] = {1,0.6,0.4,1};
  807. colorGrid[] = {0.1,0.1,0.1,0.6};
  808. colorGridMap[] = {0.1,0.1,0.1,0.6};
  809. fontLabel = "PuristaMedium";
  810. sizeExLabel = "( ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
  811. fontGrid = "TahomaB";
  812. sizeExGrid = 0.02;
  813. fontUnits = "TahomaB";
  814. sizeExUnits = "( ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
  815. fontNames = "PuristaMedium";
  816. sizeExNames = "( ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8) * 2";
  817. fontInfo = "PuristaMedium";
  818. sizeExInfo = "( ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
  819. fontLevel = "TahomaB";
  820. sizeExLevel = 0.02;
  821. colorText[] = {1,1,1,1};
  822. font = "PuristaMedium";
  823. text = "#(argb,8,8,3)color(1,1,1,1)";
  824. SizeEx = "( ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
  825. widthRailWay = 1;
  826. class LineMarker
  827. {
  828. lineWidthThin = 0.008;
  829. lineWidthThick = 0.014;
  830. lineLengthMin = 5;
  831. lineDistanceMin = 3e-05;
  832. textureComboBoxColor = "#(argb,8,8,3)color(1,1,1,1)";
  833. };
  834. class Legend
  835. {
  836. x = "SafeZoneX + ( ((safezoneW / safezoneH) min 1.2) / 40)";
  837. y = "SafeZoneY + safezoneH - 4.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
  838. w = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
  839. h = "3.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
  840. font = "PuristaMedium";
  841. sizeEx = "( ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
  842. colorBackground[] = {1,1,1,0.5};
  843. color[] = {0,0,0,1};
  844. };
  845. class Task
  846. {
  847. icon = "\A3\ui_f\data\map\mapcontrol\taskIcon_CA.paa";
  848. iconCreated = "\A3\ui_f\data\map\mapcontrol\taskIconCreated_CA.paa";
  849. iconCanceled = "\A3\ui_f\data\map\mapcontrol\taskIconCanceled_CA.paa";
  850. iconDone = "\A3\ui_f\data\map\mapcontrol\taskIconDone_CA.paa";
  851. iconFailed = "\A3\ui_f\data\map\mapcontrol\taskIconFailed_CA.paa";
  852. color[] = {"(profilenamespace getvariable ['IGUI_TEXT_RGB_R',0])","(profilenamespace getvariable ['IGUI_TEXT_RGB_G',1])","(profilenamespace getvariable ['IGUI_TEXT_RGB_B',1])","(profilenamespace getvariable ['IGUI_TEXT_RGB_A',0.8])"};
  853. colorCreated[] = {1,1,1,1};
  854. colorCanceled[] = {0.7,0.7,0.7,1};
  855. colorDone[] = {0.7,1,0.3,1};
  856. colorFailed[] = {1,0.3,0.2,1};
  857. size = 27;
  858. importance = 1;
  859. coefMin = 1;
  860. coefMax = 1;
  861. };
  862. class Waypoint
  863. {
  864. icon = "\A3\ui_f\data\map\mapcontrol\waypoint_ca.paa";
  865. color[] = {0,0,0,1};
  866. size = 27;
  867. importance = 1;
  868. coefMin = 1;
  869. coefMax = 1;
  870. };
  871. class WaypointCompleted
  872. {
  873. icon = "\A3\ui_f\data\map\mapcontrol\waypointCompleted_ca.paa";
  874. color[] = {0,0,0,1};
  875. size = 27;
  876. importance = 1;
  877. coefMin = 1;
  878. coefMax = 1;
  879. };
  880. class CustomMark
  881. {
  882. icon = "\A3\ui_f\data\map\mapcontrol\custommark_ca.paa";
  883. size = 24;
  884. importance = 1;
  885. coefMin = 1;
  886. coefMax = 1;
  887. color[] = {0,0,0,1};
  888. };
  889. class Command
  890. {
  891. icon = "\A3\ui_f\data\map\mapcontrol\waypoint_ca.paa";
  892. size = 18;
  893. importance = 1;
  894. coefMin = 1;
  895. coefMax = 1;
  896. color[] = {1,1,1,1};
  897. };
  898. class Bush
  899. {
  900. icon = "\A3\ui_f\data\map\mapcontrol\bush_ca.paa";
  901. color[] = {0.45,0.64,0.33,0.4};
  902. size = "14/2";
  903. importance = "0.2 * 14 * 0.05 * 0.05";
  904. coefMin = 0.25;
  905. coefMax = 4;
  906. };
  907. class Rock
  908. {
  909. icon = "\A3\ui_f\data\map\mapcontrol\rock_ca.paa";
  910. color[] = {0.1,0.1,0.1,0.8};
  911. size = 12;
  912. importance = "0.5 * 12 * 0.05";
  913. coefMin = 0.25;
  914. coefMax = 4;
  915. };
  916. class SmallTree
  917. {
  918. icon = "\A3\ui_f\data\map\mapcontrol\bush_ca.paa";
  919. color[] = {0.45,0.64,0.33,0.4};
  920. size = 12;
  921. importance = "0.6 * 12 * 0.05";
  922. coefMin = 0.25;
  923. coefMax = 4;
  924. };
  925. class Tree
  926. {
  927. icon = "\A3\ui_f\data\map\mapcontrol\bush_ca.paa";
  928. color[] = {0.45,0.64,0.33,0.4};
  929. size = 12;
  930. importance = "0.9 * 16 * 0.05";
  931. coefMin = 0.25;
  932. coefMax = 4;
  933. };
  934. class busstop
  935. {
  936. icon = "\A3\ui_f\data\map\mapcontrol\busstop_CA.paa";
  937. size = 24;
  938. importance = 1;
  939. coefMin = 0.85;
  940. coefMax = 1;
  941. color[] = {1,1,1,1};
  942. };
  943. class fuelstation
  944. {
  945. icon = "\A3\ui_f\data\map\mapcontrol\fuelstation_CA.paa";
  946. size = 24;
  947. importance = 1;
  948. coefMin = 0.85;
  949. coefMax = 1;
  950. color[] = {1,1,1,1};
  951. };
  952. class hospital
  953. {
  954. icon = "\A3\ui_f\data\map\mapcontrol\hospital_CA.paa";
  955. size = 24;
  956. importance = 1;
  957. coefMin = 0.85;
  958. coefMax = 1;
  959. color[] = {1,1,1,1};
  960. };
  961. class church
  962. {
  963. icon = "\A3\ui_f\data\map\mapcontrol\church_CA.paa";
  964. size = 24;
  965. importance = 1;
  966. coefMin = 0.85;
  967. coefMax = 1;
  968. color[] = {1,1,1,1};
  969. };
  970. class lighthouse
  971. {
  972. icon = "\A3\ui_f\data\map\mapcontrol\lighthouse_CA.paa";
  973. size = 24;
  974. importance = 1;
  975. coefMin = 0.85;
  976. coefMax = 1;
  977. color[] = {1,1,1,1};
  978. };
  979. class power
  980. {
  981. icon = "\A3\ui_f\data\map\mapcontrol\power_CA.paa";
  982. size = 24;
  983. importance = 1;
  984. coefMin = 0.85;
  985. coefMax = 1;
  986. color[] = {1,1,1,1};
  987. };
  988. class powersolar
  989. {
  990. icon = "\A3\ui_f\data\map\mapcontrol\powersolar_CA.paa";
  991. size = 24;
  992. importance = 1;
  993. coefMin = 0.85;
  994. coefMax = 1;
  995. color[] = {1,1,1,1};
  996. };
  997. class powerwave
  998. {
  999. icon = "\A3\ui_f\data\map\mapcontrol\powerwave_CA.paa";
  1000. size = 24;
  1001. importance = 1;
  1002. coefMin = 0.85;
  1003. coefMax = 1;
  1004. color[] = {1,1,1,1};
  1005. };
  1006. class powerwind
  1007. {
  1008. icon = "\A3\ui_f\data\map\mapcontrol\powerwind_CA.paa";
  1009. size = 24;
  1010. importance = 1;
  1011. coefMin = 0.85;
  1012. coefMax = 1;
  1013. color[] = {1,1,1,1};
  1014. };
  1015. class quay
  1016. {
  1017. icon = "\A3\ui_f\data\map\mapcontrol\quay_CA.paa";
  1018. size = 24;
  1019. importance = 1;
  1020. coefMin = 0.85;
  1021. coefMax = 1;
  1022. color[] = {1,1,1,1};
  1023. };
  1024. class shipwreck
  1025. {
  1026. icon = "\A3\ui_f\data\map\mapcontrol\shipwreck_CA.paa";
  1027. size = 24;
  1028. importance = 1;
  1029. coefMin = 0.85;
  1030. coefMax = 1;
  1031. color[] = {1,1,1,1};
  1032. };
  1033. class transmitter
  1034. {
  1035. icon = "\A3\ui_f\data\map\mapcontrol\transmitter_CA.paa";
  1036. size = 24;
  1037. importance = 1;
  1038. coefMin = 0.85;
  1039. coefMax = 1;
  1040. color[] = {1,1,1,1};
  1041. };
  1042. class watertower
  1043. {
  1044. icon = "\A3\ui_f\data\map\mapcontrol\watertower_CA.paa";
  1045. size = 24;
  1046. importance = 1;
  1047. coefMin = 0.85;
  1048. coefMax = 1;
  1049. color[] = {1,1,1,1};
  1050. };
  1051. class Cross
  1052. {
  1053. icon = "\A3\ui_f\data\map\mapcontrol\Cross_CA.paa";
  1054. size = 24;
  1055. importance = 1;
  1056. coefMin = 0.85;
  1057. coefMax = 1;
  1058. color[] = {0,0,0,1};
  1059. };
  1060. class Chapel
  1061. {
  1062. icon = "\A3\ui_f\data\map\mapcontrol\Chapel_CA.paa";
  1063. size = 24;
  1064. importance = 1;
  1065. coefMin = 0.85;
  1066. coefMax = 1;
  1067. color[] = {0,0,0,1};
  1068. };
  1069. class Bunker
  1070. {
  1071. icon = "\A3\ui_f\data\map\mapcontrol\bunker_ca.paa";
  1072. size = 14;
  1073. importance = "1.5 * 14 * 0.05";
  1074. coefMin = 0.25;
  1075. coefMax = 4;
  1076. color[] = {0,0,0,1};
  1077. };
  1078. class Fortress
  1079. {
  1080. icon = "\A3\ui_f\data\map\mapcontrol\bunker_ca.paa";
  1081. size = 16;
  1082. importance = "2 * 16 * 0.05";
  1083. coefMin = 0.25;
  1084. coefMax = 4;
  1085. color[] = {0,0,0,1};
  1086. };
  1087. class Fountain
  1088. {
  1089. icon = "\A3\ui_f\data\map\mapcontrol\fountain_ca.paa";
  1090. size = 11;
  1091. importance = "1 * 12 * 0.05";
  1092. coefMin = 0.25;
  1093. coefMax = 4;
  1094. color[] = {0,0,0,1};
  1095. };
  1096. class Ruin
  1097. {
  1098. icon = "\A3\ui_f\data\map\mapcontrol\ruin_ca.paa";
  1099. size = 16;
  1100. importance = "1.2 * 16 * 0.05";
  1101. coefMin = 1;
  1102. coefMax = 4;
  1103. color[] = {0,0,0,1};
  1104. };
  1105. class Stack
  1106. {
  1107. icon = "\A3\ui_f\data\map\mapcontrol\stack_ca.paa";
  1108. size = 20;
  1109. importance = "2 * 16 * 0.05";
  1110. coefMin = 0.9;
  1111. coefMax = 4;
  1112. color[] = {0,0,0,1};
  1113. };
  1114. class Tourism
  1115. {
  1116. icon = "\A3\ui_f\data\map\mapcontrol\tourism_ca.paa";
  1117. size = 16;
  1118. importance = "1 * 16 * 0.05";
  1119. coefMin = 0.7;
  1120. coefMax = 4;
  1121. color[] = {0,0,0,1};
  1122. };
  1123. class ViewTower
  1124. {
  1125. icon = "\A3\ui_f\data\map\mapcontrol\viewtower_ca.paa";
  1126. size = 16;
  1127. importance = "2.5 * 16 * 0.05";
  1128. coefMin = 0.5;
  1129. coefMax = 4;
  1130. color[] = {0,0,0,1};
  1131. };
  1132. class ActiveMarker
  1133. {
  1134. size = 24;
  1135. importance = 1;
  1136. coefMin = 1;
  1137. coefMax = 1;
  1138. color[] = {0,0,0,1};
  1139. };
  1140. };
  1141. class cTab_MenuItem: cTab_ActiveText
  1142. {
  1143. colorActive[] = {"255/255","165/255","0/255",1};
  1144. };
  1145. class cTab_MenuExit: cTab_MenuItem
  1146. {
  1147. color[] = {1,1,1,0.75};
  1148. };
  1149. class cTab_RscText_Tablet: cTab_RscText
  1150. {
  1151. style = 2;
  1152. w = "(((((1341)) - (10) * 8) / 7)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1153. h = "(((42) - (10))) / 2048 * (safezoneH * 1.2)";
  1154. font = "EtelkaMonospacePro";
  1155. colorText[] = {1,1,1,1};
  1156. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1157. colorBackground[] = {0,0,0,0};
  1158. shadow = 0;
  1159. };
  1160. class cTab_RscListbox_Tablet: cTab_RscListBox
  1161. {
  1162. sizeEx = "((27) * 1.2) / 2048 * (safezoneH * 1.2)";
  1163. };
  1164. class cTab_RscEdit_Tablet: cTab_RscEdit
  1165. {
  1166. sizeEx = "((27) * 1.2) / 2048 * (safezoneH * 1.2)";
  1167. };
  1168. class cTab_RscButton_Tablet: cTab_RscButton
  1169. {
  1170. font = "EtelkaMonospacePro";
  1171. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1172. };
  1173. class cTab_Tablet_background: cTab_RscPicture
  1174. {
  1175. idc = 1200;
  1176. text = "";
  1177. x = "(safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1178. y = "(safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1179. w = "( (safezoneH * 1.2) * 3/4)";
  1180. h = "(safezoneH * 1.2)";
  1181. };
  1182. class cTab_tablet_header: cTab_RscPicture
  1183. {
  1184. idc = 1;
  1185. text = "#(argb,8,8,3)color(0,0,0,1)";
  1186. x = "((257)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1187. y = "((491)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1188. w = "((1341)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1189. h = "((42)) / 2048 * (safezoneH * 1.2)";
  1190. };
  1191. class cTab_Tablet_OSD_battery: cTab_RscPicture
  1192. {
  1193. idc = 2;
  1194. text = "\ClonecTab\img\icon_battery_ca.paa";
  1195. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (1 - 1))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1196. y = "((491) + ((42) - (35)) / 2) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1197. w = "((35)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1198. h = "((35)) / 2048 * (safezoneH * 1.2)";
  1199. colorText[] = {1,1,1,1};
  1200. };
  1201. class cTab_Tablet_OSD_time: cTab_RscText_Tablet
  1202. {
  1203. idc = 2613;
  1204. style = 2;
  1205. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (4 - 1))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1206. y = "((491) + ((42) - (27)) / 2) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1207. };
  1208. class cTab_Tablet_OSD_signalStrength: cTab_Tablet_OSD_battery
  1209. {
  1210. idc = 3;
  1211. text = "\ClonecTab\img\icon_signalStrength_ca.paa";
  1212. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (7 - 1)) + ((((1341)) - (10) * 8) / 7) - (35) * 2) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1213. colorText[] = {1,1,1,1};
  1214. };
  1215. class cTab_Tablet_OSD_satellite: cTab_Tablet_OSD_battery
  1216. {
  1217. idc = 4;
  1218. text = "\a3\ui_f\data\map\Diary\signal_ca.paa";
  1219. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (7 - 1)) + ((((1341)) - (10) * 8) / 7) - (35)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1220. colorText[] = {1,1,1,1};
  1221. };
  1222. class cTab_Tablet_OSD_dirDegree: cTab_Tablet_OSD_time
  1223. {
  1224. idc = 2615;
  1225. style = 0;
  1226. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (2 - 1))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1227. };
  1228. class cTab_Tablet_OSD_grid: cTab_Tablet_OSD_dirDegree
  1229. {
  1230. idc = 2612;
  1231. style = 1;
  1232. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (6 - 1))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1233. };
  1234. class cTab_Tablet_OSD_dirOctant: cTab_Tablet_OSD_dirDegree
  1235. {
  1236. idc = 2616;
  1237. style = 1;
  1238. x = "((((10) + ((257))) + ((10) + ((((1341)) - (10) * 8) / 7)) * (1 - 1))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1239. };
  1240. class cTab_Tablet_window_back_TL: cTab_RscPicture
  1241. {
  1242. text = "\ClonecTab\img\window_2.jpg";
  1243. x = "((((257)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1244. y = "((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1245. w = "(((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1246. h = "(((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 2048 * (safezoneH * 1.2)";
  1247. };
  1248. class cTab_Tablet_window_back_BL: cTab_Tablet_window_back_TL
  1249. {
  1250. y = "((((491) + (42)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3 * 2)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1251. };
  1252. class cTab_Tablet_window_back_TR: cTab_Tablet_window_back_TL
  1253. {
  1254. x = "((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1255. };
  1256. class cTab_Tablet_window_back_BR: cTab_Tablet_window_back_TR
  1257. {
  1258. y = "((((491) + (42)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3 * 2)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1259. };
  1260. class cTab_Tablet_btnF1: cTab_RscButtonInv
  1261. {
  1262. x = "(506) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1263. y = "(1545) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1264. w = "(52) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1265. h = "(52) / 2048 * (safezoneH * 1.2)";
  1266. };
  1267. class cTab_Tablet_btnF2: cTab_Tablet_btnF1
  1268. {
  1269. x = "(569) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1270. };
  1271. class cTab_Tablet_btnF3: cTab_Tablet_btnF1
  1272. {
  1273. x = "(639) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1274. };
  1275. class cTab_Tablet_btnF4: cTab_Tablet_btnF1
  1276. {
  1277. x = "(703) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1278. };
  1279. class cTab_Tablet_btnF5: cTab_Tablet_btnF1
  1280. {
  1281. x = "(768) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1282. };
  1283. class cTab_Tablet_btnF6: cTab_Tablet_btnF1
  1284. {
  1285. x = "(833) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1286. };
  1287. class cTab_Tablet_btnFn: cTab_Tablet_btnF1
  1288. {
  1289. x = "(970) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1290. };
  1291. class cTab_Tablet_btnPower: cTab_Tablet_btnFn
  1292. {
  1293. x = "(1034) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1294. };
  1295. class cTab_Tablet_btnBrtDn: cTab_Tablet_btnFn
  1296. {
  1297. x = "(1100) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1298. };
  1299. class cTab_Tablet_btnBrtUp: cTab_Tablet_btnFn
  1300. {
  1301. x = "(1163) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1302. };
  1303. class cTab_Tablet_btnTrackpad: cTab_Tablet_btnFn
  1304. {
  1305. x = "(1262) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1306. y = "(1550) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1307. w = "(48) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1308. h = "(43) / 2048 * (safezoneH * 1.2)";
  1309. };
  1310. class cTab_Tablet_btnMouse: cTab_Tablet_btnFn
  1311. {
  1312. x = "(1401) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1313. w = "(91) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1314. };
  1315. class cTab_Tablet_btnHome: cTab_Tablet_btnMouse
  1316. {
  1317. x = "(897) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1318. y = "(1534) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1319. w = "(61) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1320. h = "(49) / 2048 * (safezoneH * 1.2)";
  1321. };
  1322. class cTab_Tablet_notificationLight
  1323. {
  1324. x = "(1353) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1325. y = "(1557) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1326. w = "(28) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1327. h = "(28) / 2048 * (safezoneH * 1.2)";
  1328. };
  1329. class cTab_Tablet_OSD_hookGrid: cTab_RscText_Tablet
  1330. {
  1331. idc = 2617;
  1332. style = 2;
  1333. x = "(((-(10) + ((257)) + ((1341))) - ((((1341)) - (10) * 8) / 7))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1334. y = "((-(0) + (491) + (993)) - (10) - ((42) - (10)) * 4) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1335. colorText[] = {1,1,1,0.5};
  1336. colorBackground[] = {0,0,0,0.25};
  1337. };
  1338. class cTab_Tablet_OSD_hookElevation: cTab_Tablet_OSD_hookGrid
  1339. {
  1340. idc = 2620;
  1341. y = "((-(0) + (491) + (993)) - (10) - ((42) - (10)) * 3) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1342. };
  1343. class cTab_Tablet_OSD_hookDst: cTab_Tablet_OSD_hookGrid
  1344. {
  1345. idc = 2619;
  1346. y = "((-(0) + (491) + (993)) - (10) - ((42) - (10)) * 2) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1347. };
  1348. class cTab_Tablet_OSD_hookDir: cTab_Tablet_OSD_hookGrid
  1349. {
  1350. idc = 2618;
  1351. y = "((-(0) + (491) + (993)) - (10) - ((42) - (10))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1352. };
  1353. class cTab_Tablet_loadingtxt: cTab_RscText_Tablet
  1354. {
  1355. idc = 1000;
  1356. style = 2;
  1357. text = "Loading";
  1358. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1359. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1360. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1361. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1362. colorBackground[] = {0.2,0.431,0.647,1};
  1363. };
  1364. class cTab_Tablet_movingHandle_T: cTab_RscText_Tablet
  1365. {
  1366. idc = 5;
  1367. moving = 1;
  1368. colorBackground[] = {0,0,0,0};
  1369. x = "(0) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1370. y = "(0) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1371. w = "(2048 ) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1372. h = "((491)) / 2048 * (safezoneH * 1.2)";
  1373. };
  1374. class cTab_Tablet_movingHandle_B: cTab_Tablet_movingHandle_T
  1375. {
  1376. idc = 6;
  1377. y = "((491) + (993)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1378. h = "(2048 - ((491) + (993))) / 2048 * (safezoneH * 1.2)";
  1379. };
  1380. class cTab_Tablet_movingHandle_L: cTab_Tablet_movingHandle_T
  1381. {
  1382. idc = 7;
  1383. y = "((491)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1384. w = "((257)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1385. h = "((993)) / 2048 * (safezoneH * 1.2)";
  1386. };
  1387. class cTab_Tablet_movingHandle_R: cTab_Tablet_movingHandle_L
  1388. {
  1389. idc = 8;
  1390. x = "((257) + (1341)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1391. w = "(2048 - ((257) + (1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1392. };
  1393. class cTab_Tablet_brightness: cTab_RscText_Tablet
  1394. {
  1395. idc = 1005;
  1396. x = "((257)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1397. y = "((491)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1398. w = "((1341)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1399. h = "((993)) / 2048 * (safezoneH * 1.2)";
  1400. colorBackground[] = {0,0,0,0};
  1401. };
  1402. class cTab_Tablet_RscMapControl: cTab_RscMapControl
  1403. {
  1404. text = "#(argb,8,8,3)color(1,1,1,1)";
  1405. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1406. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1407. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1408. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1409. maxSatelliteAlpha = 10000;
  1410. alphaFadeStartScale = 10;
  1411. alphaFadeEndScale = 10;
  1412. ptsPerSquareSea = "8 / (0.86 / (safezoneH * 1.2))";
  1413. ptsPerSquareTxt = "8 / (0.86 / (safezoneH * 1.2))";
  1414. ptsPerSquareCLn = "8 / (0.86 / (safezoneH * 1.2))";
  1415. ptsPerSquareExp = "8 / (0.86 / (safezoneH * 1.2))";
  1416. ptsPerSquareCost = "8 / (0.86 / (safezoneH * 1.2))";
  1417. ptsPerSquareFor = "3 / (0.86 / (safezoneH * 1.2))";
  1418. ptsPerSquareForEdge = "100 / (0.86 / (safezoneH * 1.2))";
  1419. ptsPerSquareRoad = "1.5 / (0.86 / (safezoneH * 1.2))";
  1420. ptsPerSquareObj = "4 / (0.86 / (safezoneH * 1.2))";
  1421. widthRailWay = 1;
  1422. };
  1423. class cTab_Tablet_notification: cTab_RscText_Tablet
  1424. {
  1425. idc = 1620;
  1426. x = "(((257)) + (((1341)) * 0.5) / 2) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1427. y = "(((491) + (42)) + ((993) - (42) - (0)) - 2 * (27)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1428. w = "(((1341)) * 0.5) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1429. colorBackground[] = {0,0,0,1};
  1430. };
  1431. class cTab_Tablet_dlg
  1432. {
  1433. idd = 1775154;
  1434. movingEnable = "true";
  1435. onLoad = "_this call cTab_fnc_onIfOpen;";
  1436. onUnload = "[] call cTab_fnc_onIfclose;";
  1437. onKeyDown = "_this call cTab_fnc_onIfKeyDown;";
  1438. objects[] = {};
  1439. class controlsBackground
  1440. {
  1441. class windowsBG: cTab_RscPicture
  1442. {
  1443. idc = 1210;
  1444. text = "\ClonecTab\img\window_background.paa";
  1445. x = "((257)) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1446. y = "((491)) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1447. w = "((1341)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1448. h = "((993)) / 2048 * (safezoneH * 1.2)";
  1449. };
  1450. class windowsBar: cTab_RscPicture
  1451. {
  1452. idc = 1211;
  1453. text = "\ClonecTab\img\Desktop_bar.jpg";
  1454. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1455. y = "(((491) + (993) - (((1341)) / (1024) * (28)))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1456. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1457. h = "((((1341)) / (1024) * (28))) / 2048 * (safezoneH * 1.2)";
  1458. };
  1459. class MiniMapBG: cTab_Tablet_window_back_BL
  1460. {
  1461. idc = 1218;
  1462. };
  1463. class cTabUavMap: cTab_Tablet_RscMapControl
  1464. {
  1465. idc = 1774;
  1466. x = "(((((257)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3) + ((9) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1467. y = "(((((491) + (42)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3 * 2) + ((30) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1468. w = "(((276) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1469. h = "(((232) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * (safezoneH * 1.2)";
  1470. onDraw = "nop = _this call cTabOnDrawUAV;";
  1471. onMouseButtonDblClick = "";
  1472. };
  1473. class cTabHcamMap: cTabUavMap
  1474. {
  1475. idc = 1220;
  1476. onDraw = "nop = _this call cTabOnDrawHCam;";
  1477. };
  1478. class screen: cTab_Tablet_RscMapControl
  1479. {
  1480. idc = 1201;
  1481. onDraw = "nop = _this call cTabOnDrawbft;";
  1482. onMouseButtonDblClick = "_ok = [3300,_this] execVM '\ClonecTab\shared\cTab_markerMenu_load.sqf';";
  1483. onMouseMoving = "cTabCursorOnMap = _this select 3;cTabMapCursorPos = _this select 0 ctrlMapScreenToWorld [_this select 1,_this select 2];";
  1484. };
  1485. class screenTopo: screen
  1486. {
  1487. idc = 1202;
  1488. maxSatelliteAlpha = 0;
  1489. };
  1490. };
  1491. class controls
  1492. {
  1493. class header: cTab_tablet_header{};
  1494. class battery: cTab_Tablet_OSD_battery{};
  1495. class time: cTab_Tablet_OSD_time{};
  1496. class signalStrength: cTab_Tablet_OSD_signalStrength{};
  1497. class satellite: cTab_Tablet_OSD_satellite{};
  1498. class dirDegree: cTab_Tablet_OSD_dirDegree{};
  1499. class grid: cTab_Tablet_OSD_grid{};
  1500. class dirOctant: cTab_Tablet_OSD_dirOctant{};
  1501. class hookGrid: cTab_Tablet_OSD_hookGrid{};
  1502. class hookElevation: cTab_Tablet_OSD_hookElevation{};
  1503. class hookDst: cTab_Tablet_OSD_hookDst{};
  1504. class hookDir: cTab_Tablet_OSD_hookDir{};
  1505. class Desktop: cTab_RscControlsGroup
  1506. {
  1507. idc = 4610;
  1508. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1509. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1510. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1511. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1512. class VScrollbar{};
  1513. class HScrollbar{};
  1514. class Scrollbar{};
  1515. class controls
  1516. {
  1517. class actBFTtxt: cTab_ActiveText
  1518. {
  1519. style = 48;
  1520. idc = 1001;
  1521. text = "\ClonecTab\img\cTab_BFT_ico.paa";
  1522. x = "(((((257)) + (25)) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1523. y = "(((((491) + (42)) + (25)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1524. w = "((100)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1525. h = "((100)) / 2048 * (safezoneH * 1.2)";
  1526. action = "['cTab_Tablet_dlg',[['mode','BFT']]] call cTab_fnc_setSettings;";
  1527. toolTip = "FBCB2 - Blue Force Tracker";
  1528. };
  1529. class actUAVtxt: actBFTtxt
  1530. {
  1531. idc = 1002;
  1532. text = "\ClonecTab\img\cTab_UAV_ico.paa";
  1533. y = "(((((491) + (42)) + (25) * 2 + (100)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1534. action = "['cTab_Tablet_dlg',[['mode','UAV']]] call cTab_fnc_setSettings;";
  1535. toolTip = "UAV Video Feeds";
  1536. };
  1537. class actVIDtxt: actBFTtxt
  1538. {
  1539. idc = 1003;
  1540. text = "\ClonecTab\img\cTab_HMC_ico.paa";
  1541. y = "(((((491) + (42)) + (25) * 3 + (100) * 2) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1542. action = "['cTab_Tablet_dlg',[['mode','HCAM']]] call cTab_fnc_setSettings;";
  1543. toolTip = "Live Helmet Cam Video Feeds";
  1544. };
  1545. class actMSGtxt: actBFTtxt
  1546. {
  1547. idc = 1004;
  1548. text = "\ClonecTab\img\Mail_Main_Icon_ico.paa";
  1549. y = "(((((491) + (42)) + (25) * 4 + (100) * 3) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1550. action = "['cTab_Tablet_dlg',[['mode','MESSAGE']]] call cTab_fnc_setSettings;";
  1551. toolTip = "Text Messaging System";
  1552. };
  1553. };
  1554. };
  1555. class UAV: cTab_RscControlsGroup
  1556. {
  1557. idc = 4630;
  1558. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1559. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1560. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1561. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1562. class VScrollbar{};
  1563. class HScrollbar{};
  1564. class Scrollbar{};
  1565. class controls
  1566. {
  1567. class UAVListBG: cTab_Tablet_window_back_TL
  1568. {
  1569. idc = 9;
  1570. x = "((((((257)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3)) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1571. y = "((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1572. };
  1573. class UAVVidBG1: cTab_Tablet_window_back_TR
  1574. {
  1575. idc = 10;
  1576. x = "((((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2)) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1577. y = "((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1578. };
  1579. class UAVVidBG2: cTab_Tablet_window_back_BR
  1580. {
  1581. idc = 11;
  1582. x = "((((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2)) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1583. y = "((((((491) + (42)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3 * 2)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1584. };
  1585. class cTabUAVlist: cTab_RscListbox_Tablet
  1586. {
  1587. idc = 1776;
  1588. x = "(((((((257)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3) + ((9) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1589. y = "(((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3) + ((30) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1590. w = "(((276) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1591. h = "(((232) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * (safezoneH * 1.2)";
  1592. onLBSelChanged = "if (!cTabIfOpenStart && (_this select 1 != -1)) then {['cTab_Tablet_dlg',[['uavCam',(_this select 0) lbData (_this select 1)]]] call cTab_fnc_setSettings;};";
  1593. };
  1594. class cTabUAVdisplay: cTab_RscPicture
  1595. {
  1596. idc = 1773;
  1597. text = "#(argb,512,512,1)r2t(rendertarget8,1.1896551724)";
  1598. x = "(((((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2) + ((9) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1599. y = "(((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3) + ((30) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1600. w = "(((276) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1601. h = "(((232) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * (safezoneH * 1.2)";
  1602. };
  1603. class cTabUAV2nddisplay: cTab_RscPicture
  1604. {
  1605. idc = 1775;
  1606. text = "#(argb,512,512,1)r2t(rendertarget9,1.1896551724)";
  1607. x = "(((((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2) + ((9) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1608. y = "(((((((491) + (42)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3 * 2) + ((30) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1609. w = "(((276) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1610. h = "(((232) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * (safezoneH * 1.2)";
  1611. };
  1612. };
  1613. };
  1614. class HCAM: cTab_RscControlsGroup
  1615. {
  1616. idc = 4640;
  1617. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1618. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1619. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1620. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1621. class VScrollbar{};
  1622. class HScrollbar{};
  1623. class Scrollbar{};
  1624. class controls
  1625. {
  1626. class HcamListBG: cTab_Tablet_window_back_TL
  1627. {
  1628. idc = 12;
  1629. x = "((((((257)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3)) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1630. y = "((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1631. };
  1632. class HcamVidBG: cTab_Tablet_window_back_TR
  1633. {
  1634. idc = 13;
  1635. x = "((((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2)) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1636. y = "((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3)) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1637. };
  1638. class cTabHcamList: cTab_RscListbox_Tablet
  1639. {
  1640. idc = 1230;
  1641. x = "(((((((257)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3) + ((9) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1642. y = "(((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3) + ((30) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1643. w = "(((276) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1644. h = "(((232) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * (safezoneH * 1.2)";
  1645. onLBSelChanged = "if (!cTabIfOpenStart && (_this select 1 != -1)) then {['cTab_Tablet_dlg',[['hCam',(_this select 0) lbData (_this select 1)]]] call cTab_fnc_setSettings;};";
  1646. };
  1647. class cTabHcamDisplay: cTab_RscPicture
  1648. {
  1649. idc = 1240;
  1650. text = "#(argb,512,512,1)r2t(rendertarget12,1.1896551724)";
  1651. x = "(((((((257)) + ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) + (((1341)) - 2 * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 3 * 2) + ((9) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1652. y = "(((((((491) + (42)) + (((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - 2 * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)) / 3) + ((30) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1653. w = "(((276) / (293) * ((293) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49)))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1654. h = "(((232) / (272) * ((((993) - (42) - (0)) - (((1341)) / (1024) * (28))) * 0.49))) / 2048 * (safezoneH * 1.2)";
  1655. };
  1656. };
  1657. };
  1658. class MESSAGE: cTab_RscControlsGroup
  1659. {
  1660. idc = 4650;
  1661. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1662. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1663. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1664. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1665. class VScrollbar{};
  1666. class HScrollbar{};
  1667. class Scrollbar{};
  1668. class controls
  1669. {
  1670. class msgframe: cTab_RscFrame
  1671. {
  1672. idc = 14;
  1673. text = "Read Message";
  1674. x = "((((((257)) + (20))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1675. y = "((((((491) + (42)) + (10))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1676. w = "((((1341)) - (20) * 2)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1677. h = "(((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2)) / 2048 * (safezoneH * 1.2)";
  1678. };
  1679. class msgListbox: cTab_RscListbox_Tablet
  1680. {
  1681. idc = 15000;
  1682. style = 32;
  1683. x = "(((((((257)) + (20)) + (10))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1684. y = "(((((((491) + (42)) + (10)) + (20))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1685. w = "((((((1341)) - (20) * 2) - (10) * 3) / 3)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1686. h = "((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) - (10) - (20))) / 2048 * (safezoneH * 1.2)";
  1687. onLBSelChanged = "_this call cTab_msg_get_mailTxt;";
  1688. };
  1689. class msgTxt: cTab_RscEdit_Tablet
  1690. {
  1691. idc = 18510;
  1692. htmlControl = "true";
  1693. style = 16;
  1694. lineSpacing = 0.2;
  1695. text = "No Message Selected";
  1696. x = "((((((((257)) + (20)) + (10)) + (((((1341)) - (20) * 2) - (10) * 3) / 3) + (10))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1697. y = "((((((((491) + (42)) + (10)) + (20)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1698. w = "(((((((1341)) - (20) * 2) - (10) * 3) / 3) * 2)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1699. h = "(((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) - (10) - (20)) - (10) - (50))) / 2048 * (safezoneH * 1.2)";
  1700. canModify = 0;
  1701. };
  1702. class composeFrame: cTab_RscFrame
  1703. {
  1704. idc = 15;
  1705. text = "Compose Message";
  1706. x = "(((((((257)) + (20)))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1707. y = "(((((((491) + (42)) + (10)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) + (10))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1708. w = "(((((1341)) - (20) * 2))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1709. h = "((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2))) / 2048 * (safezoneH * 1.2)";
  1710. };
  1711. class playerlistbox: cTab_RscListbox_Tablet
  1712. {
  1713. idc = 15010;
  1714. style = 32;
  1715. x = "((((((((257)) + (20)) + (10)))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1716. y = "((((((((491) + (42)) + (10)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) + (10)) + (20))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1717. w = "(((((((1341)) - (20) * 2) - (10) * 3) / 3))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1718. h = "(((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) - (10) - (20)))) / 2048 * (safezoneH * 1.2)";
  1719. };
  1720. class deletebtn: cTab_RscButton_Tablet
  1721. {
  1722. idc = 16120;
  1723. text = "Delete";
  1724. tooltip = "Delete Selected Message(s)";
  1725. x = "(((((((((257)) + (20))) + ((((1341)) - (20) * 2)) - (10) - (150)))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1726. y = "(((((((((491) + (42)) + (10)) + (20))) + ((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) - (10) - (20)) - (10) - (50)) + (10))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1727. w = "((150)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1728. h = "((50)) / 2048 * (safezoneH * 1.2)";
  1729. action = "['cTab_Tablet_dlg'] call cTab_fnc_onMsgBtnDelete;";
  1730. };
  1731. class sendbtn: cTab_RscButton_Tablet
  1732. {
  1733. idc = 16130;
  1734. text = "Send";
  1735. x = "((((((((257)) + (20))) + ((((1341)) - (20) * 2)) - (10) - (150))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1736. y = "((((((((((491) + (42)) + (10)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) + (10)) + (20))) + (((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) - (10) - (20)) - (10) - (50))) + (10))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1737. w = "((150)) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1738. h = "((50)) / 2048 * (safezoneH * 1.2)";
  1739. action = "call cTab_msg_Send;";
  1740. };
  1741. class edittxtbox: cTab_RscEdit_Tablet
  1742. {
  1743. idc = 14000;
  1744. htmlControl = "true";
  1745. style = 16;
  1746. lineSpacing = 0.2;
  1747. text = "";
  1748. x = "(((((((((257)) + (20)) + (10)) + (((((1341)) - (20) * 2) - (10) * 3) / 3) + (10)))) - ((257))) / 2048 * ( (safezoneH * 1.2) * 3/4))";
  1749. y = "(((((((((491) + (42)) + (10)) + ((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) + (10)) + (20)))) - ((491) + (42))) / 2048 * (safezoneH * 1.2))";
  1750. w = "((((((((1341)) - (20) * 2) - (10) * 3) / 3) * 2))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1751. h = "((((((((993) - (42) - (0)) - (((1341)) / (1024) * (28)) - (10) * 3) / 2) - (10) - (20)) - (10) - (50)))) / 2048 * (safezoneH * 1.2)";
  1752. };
  1753. };
  1754. };
  1755. class cTabHcamFull: cTab_RscPicture
  1756. {
  1757. idc = 1245;
  1758. text = "#(argb,512,512,1)r2t(rendertarget13,1.3096153846)";
  1759. x = "(((257))) / 2048 * ( (safezoneH * 1.2) * 3/4) + (safezoneX + (safezoneW - ( (safezoneH * 1.2) * 3/4)) / 2 + ( ( (safezoneH * 1.2) * 3/4) * 96.5 / 2048))";
  1760. y = "(((491) + (42))) / 2048 * (safezoneH * 1.2) + (safezoneY + (safezoneH - (safezoneH * 1.2)) / 2)";
  1761. w = "(((1341))) / 2048 * ( (safezoneH * 1.2) * 3/4)";
  1762. h = "(((993) - (42) - (0))) / 2048 * (safezoneH * 1.2)";
  1763. };
  1764. class notification: cTab_Tablet_notification{};
  1765. class loadingtxt: cTab_Tablet_loadingtxt{};
  1766. class brightness: cTab_Tablet_brightness{};
  1767. class MainSubmenu: cTab_RscControlsGroup
  1768. {
  1769. idc = 3300;
  1770. x = "safeZoneXAbs + safeZoneWAbs";
  1771. y = "safeZoneY + safeZoneH";
  1772. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1773. h = "(5 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1774. class controls
  1775. {
  1776. class mainbg: cTab_IGUIBack
  1777. {
  1778. idc = 2200;
  1779. x = 0;
  1780. y = 0;
  1781. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1782. h = "(5 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1783. };
  1784. class op4btn: cTab_MenuItem
  1785. {
  1786. idc = 2000;
  1787. text = "Enemy SALUTE";
  1788. x = 0;
  1789. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  1790. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1791. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1792. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1793. action = "[11] call cTab_fnc_userMenuSelect;";
  1794. };
  1795. class medbtn: cTab_MenuItem
  1796. {
  1797. idc = 2001;
  1798. text = "Medical";
  1799. x = 0;
  1800. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  1801. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1802. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1803. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1804. action = "[21] call cTab_fnc_userMenuSelect;";
  1805. };
  1806. class genbtn: cTab_MenuItem
  1807. {
  1808. idc = 2002;
  1809. text = "General";
  1810. x = 0;
  1811. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  1812. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1813. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1814. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1815. action = "[31] call cTab_fnc_userMenuSelect;";
  1816. };
  1817. class lockUavCam: cTab_MenuItem
  1818. {
  1819. idc = -1;
  1820. text = "Lock UAV Cam";
  1821. toolTip = "Lock UAV Cam to this position, a UAV has to be previously selected";
  1822. x = 0;
  1823. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (4 - 1)";
  1824. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1825. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1826. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1827. action = "[2] call cTab_fnc_userMenuSelect;";
  1828. };
  1829. class exit: cTab_MenuExit
  1830. {
  1831. idc = -1;
  1832. text = "Exit";
  1833. x = 0;
  1834. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (5 - 1)";
  1835. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1836. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1837. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1838. action = "[0] call cTab_fnc_userMenuSelect;";
  1839. };
  1840. };
  1841. };
  1842. class EnemySub1: cTab_RscControlsGroup
  1843. {
  1844. idc = 3301;
  1845. x = "safeZoneXAbs + safeZoneWAbs";
  1846. y = "safeZoneY + safeZoneH";
  1847. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1848. h = "(8 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1849. class controls
  1850. {
  1851. class IGUIBack_2201: cTab_IGUIBack
  1852. {
  1853. idc = 2202;
  1854. x = 0;
  1855. y = 0;
  1856. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1857. h = "(8 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1858. };
  1859. class infbtn: cTab_MenuItem
  1860. {
  1861. idc = 2003;
  1862. text = "Infantry";
  1863. x = 0;
  1864. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  1865. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1866. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1867. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1868. action = "cTabUserSelIcon set [1,0];[12] call cTab_fnc_userMenuSelect;";
  1869. };
  1870. class mecinfbtn: cTab_MenuItem
  1871. {
  1872. idc = 2004;
  1873. text = "Mechanized Inf";
  1874. toolTip = "Equipped with APCs/IFVs";
  1875. x = 0;
  1876. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  1877. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1878. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1879. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1880. action = "cTabUserSelIcon set [1,1];[12] call cTab_fnc_userMenuSelect;";
  1881. };
  1882. class motrinfbtn: cTab_MenuItem
  1883. {
  1884. idc = 2032;
  1885. text = "Motorized Inf";
  1886. toolTip = "Equipped with un-protected vehicles";
  1887. x = 0;
  1888. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  1889. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1890. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1891. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1892. action = "cTabUserSelIcon set [1,2];[12] call cTab_fnc_userMenuSelect;";
  1893. };
  1894. class amrbtn: cTab_MenuItem
  1895. {
  1896. idc = 2005;
  1897. text = "Armor";
  1898. x = 0;
  1899. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (4 - 1)";
  1900. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1901. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1902. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1903. action = "cTabUserSelIcon set [1,3];[12] call cTab_fnc_userMenuSelect;";
  1904. };
  1905. class helibtn: cTab_MenuItem
  1906. {
  1907. idc = 2006;
  1908. text = "Helicopter";
  1909. x = 0;
  1910. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (5 - 1)";
  1911. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1912. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1913. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1914. action = "cTabUserSelIcon set [1,4];[12] call cTab_fnc_userMenuSelect;";
  1915. };
  1916. class plnbtn: cTab_MenuItem
  1917. {
  1918. idc = 2007;
  1919. text = "Plane";
  1920. x = 0;
  1921. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (6 - 1)";
  1922. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1923. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1924. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1925. action = "cTabUserSelIcon set [1,5];[12] call cTab_fnc_userMenuSelect;";
  1926. };
  1927. class uknbtn: cTab_MenuItem
  1928. {
  1929. idc = 2008;
  1930. text = "Unknown";
  1931. x = 0;
  1932. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (7 - 1)";
  1933. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1934. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1935. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1936. action = "cTabUserSelIcon set [1,6];[12] call cTab_fnc_userMenuSelect;";
  1937. };
  1938. class exit: cTab_MenuExit
  1939. {
  1940. idc = -1;
  1941. text = "Exit";
  1942. x = 0;
  1943. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (8 - 1)";
  1944. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1945. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1946. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1947. action = "[0] call cTab_fnc_userMenuSelect;";
  1948. };
  1949. };
  1950. };
  1951. class EnemySub2: cTab_RscControlsGroup
  1952. {
  1953. idc = 3303;
  1954. x = "safeZoneXAbs + safeZoneWAbs";
  1955. y = "safeZoneY + safeZoneH";
  1956. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1957. h = "(6 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1958. class controls
  1959. {
  1960. class IGUIBack_2202: cTab_IGUIBack
  1961. {
  1962. idc = 2202;
  1963. x = 0;
  1964. y = 0;
  1965. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1966. h = "(6 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1967. };
  1968. class ftbtn: cTab_MenuItem
  1969. {
  1970. idc = 2009;
  1971. text = "Singular";
  1972. x = 0;
  1973. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  1974. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1975. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1976. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1977. action = "[14] call cTab_fnc_userMenuSelect;";
  1978. };
  1979. class patbtn: cTab_MenuItem
  1980. {
  1981. idc = 2010;
  1982. text = "Patrol";
  1983. x = 0;
  1984. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  1985. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1986. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1987. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1988. action = "cTabUserSelIcon set [2,1];[13] call cTab_fnc_userMenuSelect;";
  1989. };
  1990. class sqdbtn: cTab_MenuItem
  1991. {
  1992. idc = 2011;
  1993. text = "Squad";
  1994. x = 0;
  1995. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  1996. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  1997. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  1998. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  1999. action = "cTabUserSelIcon set [2,2];[13] call cTab_fnc_userMenuSelect;";
  2000. };
  2001. class sctbtn: cTab_MenuItem
  2002. {
  2003. idc = 2012;
  2004. text = "Section";
  2005. x = 0;
  2006. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (4 - 1)";
  2007. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2008. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2009. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2010. action = "cTabUserSelIcon set [2,3];[13] call cTab_fnc_userMenuSelect;";
  2011. };
  2012. class pltnbtn: cTab_MenuItem
  2013. {
  2014. idc = 2013;
  2015. text = "Platoon";
  2016. x = 0;
  2017. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (5 - 1)";
  2018. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2019. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2020. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2021. action = "cTabUserSelIcon set [2,4];[13] call cTab_fnc_userMenuSelect;";
  2022. };
  2023. class exit: cTab_MenuExit
  2024. {
  2025. idc = -1;
  2026. text = "Exit";
  2027. x = 0;
  2028. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (6 - 1)";
  2029. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2030. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2031. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2032. action = "[0] call cTab_fnc_userMenuSelect;";
  2033. };
  2034. };
  2035. };
  2036. class EnemySub3: cTab_RscControlsGroup
  2037. {
  2038. idc = 3304;
  2039. x = "safeZoneXAbs + safeZoneWAbs";
  2040. y = "safeZoneY + safeZoneH";
  2041. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2042. h = "(10 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2043. class controls
  2044. {
  2045. class IGUIBack_2203: cTab_IGUIBack
  2046. {
  2047. idc = 2203;
  2048. x = 0;
  2049. y = 0;
  2050. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2051. h = "(10 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2052. };
  2053. class stnbtn: cTab_MenuItem
  2054. {
  2055. idc = 2029;
  2056. text = "Stationary";
  2057. x = 0;
  2058. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  2059. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2060. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2061. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2062. action = "[1] call cTab_fnc_userMenuSelect;";
  2063. };
  2064. class nthbtn: cTab_MenuItem
  2065. {
  2066. idc = 2015;
  2067. text = "N";
  2068. x = 0;
  2069. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  2070. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2071. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2072. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2073. action = "cTabUserSelIcon set [3,1];[1] call cTab_fnc_userMenuSelect;";
  2074. };
  2075. class nebtn: cTab_MenuItem
  2076. {
  2077. idc = 2016;
  2078. text = "NE";
  2079. x = 0;
  2080. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  2081. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2082. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2083. action = "cTabUserSelIcon set [3,2];[1] call cTab_fnc_userMenuSelect;";
  2084. };
  2085. class ebtn: cTab_MenuItem
  2086. {
  2087. idc = 2017;
  2088. text = "E";
  2089. x = 0;
  2090. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (4 - 1)";
  2091. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2092. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2093. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2094. action = "cTabUserSelIcon set [3,3];[1] call cTab_fnc_userMenuSelect;";
  2095. };
  2096. class sebtn: cTab_MenuItem
  2097. {
  2098. idc = 2018;
  2099. text = "SE";
  2100. x = 0;
  2101. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (5 - 1)";
  2102. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2103. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2104. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2105. action = "cTabUserSelIcon set [3,4];[1] call cTab_fnc_userMenuSelect;";
  2106. };
  2107. class sbtn: cTab_MenuItem
  2108. {
  2109. idc = 2019;
  2110. text = "S";
  2111. x = 0;
  2112. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (6 - 1)";
  2113. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2114. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2115. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2116. action = "cTabUserSelIcon set [3,5];[1] call cTab_fnc_userMenuSelect;";
  2117. };
  2118. class swbtn: cTab_MenuItem
  2119. {
  2120. idc = 2020;
  2121. text = "SW";
  2122. x = 0;
  2123. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (7 - 1)";
  2124. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2125. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2126. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2127. action = "cTabUserSelIcon set [3,6];[1] call cTab_fnc_userMenuSelect;";
  2128. };
  2129. class wbtn: cTab_MenuItem
  2130. {
  2131. idc = 2021;
  2132. text = "W";
  2133. x = 0;
  2134. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (8 - 1)";
  2135. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2136. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2137. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2138. action = "cTabUserSelIcon set [3,7];[1] call cTab_fnc_userMenuSelect;";
  2139. };
  2140. class RscText_1022: cTab_MenuItem
  2141. {
  2142. idc = 2022;
  2143. text = "NW";
  2144. x = 0;
  2145. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (9 - 1)";
  2146. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2147. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2148. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2149. action = "cTabUserSelIcon set [3,8];[1] call cTab_fnc_userMenuSelect;";
  2150. };
  2151. class exit: cTab_MenuExit
  2152. {
  2153. idc = -1;
  2154. text = "Exit";
  2155. x = 0;
  2156. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (10 - 1)";
  2157. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2158. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2159. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2160. action = "[0] call cTab_fnc_userMenuSelect;";
  2161. };
  2162. };
  2163. };
  2164. class EnemySub4: cTab_RscControlsGroup
  2165. {
  2166. idc = 3307;
  2167. x = "safeZoneXAbs + safeZoneWAbs";
  2168. y = "safeZoneY + safeZoneH";
  2169. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2170. h = "(8 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2171. class controls
  2172. {
  2173. class IGUIBack_2202: cTab_IGUIBack
  2174. {
  2175. idc = 2202;
  2176. x = 0;
  2177. y = 0;
  2178. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2179. h = "(8 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2180. };
  2181. class rifle_btn: cTab_MenuItem
  2182. {
  2183. idc = -1;
  2184. text = "Rifle";
  2185. x = 0;
  2186. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  2187. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2188. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2189. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2190. action = "cTabUserSelIcon set [1,7];[13] call cTab_fnc_userMenuSelect;";
  2191. };
  2192. class lmg_btn: cTab_MenuItem
  2193. {
  2194. idc = -1;
  2195. text = "MG";
  2196. x = 0;
  2197. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  2198. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2199. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2200. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2201. action = "cTabUserSelIcon set [1,8];[13] call cTab_fnc_userMenuSelect;";
  2202. };
  2203. class at_btn: cTab_MenuItem
  2204. {
  2205. idc = -1;
  2206. text = "AT";
  2207. x = 0;
  2208. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  2209. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2210. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2211. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2212. action = "cTabUserSelIcon set [1,9];[13] call cTab_fnc_userMenuSelect;";
  2213. };
  2214. class mmg_btn: cTab_MenuItem
  2215. {
  2216. idc = -1;
  2217. text = "Static MG";
  2218. x = 0;
  2219. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (4 - 1)";
  2220. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2221. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2222. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2223. action = "cTabUserSelIcon set [1,10];[13] call cTab_fnc_userMenuSelect;";
  2224. };
  2225. class mat_btn: cTab_MenuItem
  2226. {
  2227. idc = -1;
  2228. text = "Static AT";
  2229. x = 0;
  2230. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (5 - 1)";
  2231. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2232. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2233. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2234. action = "cTabUserSelIcon set [1,11];[13] call cTab_fnc_userMenuSelect;";
  2235. };
  2236. class aa_btn: cTab_MenuItem
  2237. {
  2238. idc = -1;
  2239. text = "Static AA";
  2240. x = 0;
  2241. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (6 - 1)";
  2242. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2243. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2244. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2245. action = "cTabUserSelIcon set [1,13];[13] call cTab_fnc_userMenuSelect;";
  2246. };
  2247. class mmortar_btn: cTab_MenuItem
  2248. {
  2249. idc = -1;
  2250. text = "Mortar";
  2251. x = 0;
  2252. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (7 - 1)";
  2253. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2254. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2255. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2256. action = "cTabUserSelIcon set [1,12];[13] call cTab_fnc_userMenuSelect;";
  2257. };
  2258. class exit: cTab_MenuExit
  2259. {
  2260. idc = -1;
  2261. text = "Exit";
  2262. x = 0;
  2263. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (8 - 1)";
  2264. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2265. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2266. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2267. action = "[0] call cTab_fnc_userMenuSelect;";
  2268. };
  2269. };
  2270. };
  2271. class CasulSub1: cTab_RscControlsGroup
  2272. {
  2273. idc = 3305;
  2274. x = "safeZoneXAbs + safeZoneWAbs";
  2275. y = "safeZoneY + safeZoneH";
  2276. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2277. h = "(5 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2278. class controls
  2279. {
  2280. class IGUIBack_2204: cTab_IGUIBack
  2281. {
  2282. idc = 2204;
  2283. x = 0;
  2284. y = 0;
  2285. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2286. h = "(5 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2287. };
  2288. class casltybtn: cTab_MenuItem
  2289. {
  2290. idc = 2024;
  2291. text = "Casualty";
  2292. x = 0;
  2293. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  2294. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2295. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2296. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2297. action = "cTabUserSelIcon set [1,20];[1] call cTab_fnc_userMenuSelect;";
  2298. };
  2299. class ccpbtn: cTab_MenuItem
  2300. {
  2301. idc = 2025;
  2302. text = "CCP";
  2303. toolTip = "Casualty Collection Point";
  2304. x = 0;
  2305. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  2306. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2307. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2308. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2309. action = "cTabUserSelIcon set [1,21];[1] call cTab_fnc_userMenuSelect;";
  2310. };
  2311. class basbtn: cTab_MenuItem
  2312. {
  2313. idc = 2026;
  2314. text = "BAS";
  2315. toolTip = "Battalion Aid Station";
  2316. x = 0;
  2317. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  2318. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2319. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2320. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2321. action = "cTabUserSelIcon set [1,22];[1] call cTab_fnc_userMenuSelect;";
  2322. };
  2323. class mcibtn: cTab_MenuItem
  2324. {
  2325. idc = 2031;
  2326. text = "MCI";
  2327. toolTip = "Mass Casualty Incident";
  2328. x = 0;
  2329. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (4 - 1)";
  2330. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2331. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2332. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2333. action = "cTabUserSelIcon set [1,23];[1] call cTab_fnc_userMenuSelect;";
  2334. };
  2335. class exit: cTab_MenuExit
  2336. {
  2337. idc = -1;
  2338. text = "Exit";
  2339. x = 0;
  2340. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (5 - 1)";
  2341. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2342. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2343. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2344. action = "[0] call cTab_fnc_userMenuSelect;";
  2345. };
  2346. };
  2347. };
  2348. class GenSub1: cTab_RscControlsGroup
  2349. {
  2350. idc = 3306;
  2351. x = "safeZoneXAbs + safeZoneWAbs";
  2352. y = "safeZoneY + safeZoneH";
  2353. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2354. h = "(3 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2355. class controls
  2356. {
  2357. class IGUIBack_2205: cTab_IGUIBack
  2358. {
  2359. idc = 2205;
  2360. x = 0;
  2361. y = 0;
  2362. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2363. h = "(3 + 0.5) * ((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2364. };
  2365. class hqbtn: cTab_MenuItem
  2366. {
  2367. idc = 2027;
  2368. text = "HQ";
  2369. toolTip = "Headquaters";
  2370. x = 0;
  2371. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (1 - 1)";
  2372. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2373. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2374. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2375. action = "cTabUserSelIcon set [1,30];[1] call cTab_fnc_userMenuSelect;";
  2376. };
  2377. class lzbtn: cTab_MenuItem
  2378. {
  2379. idc = 2028;
  2380. text = "LZ";
  2381. toolTip = "Landing Zone";
  2382. x = 0;
  2383. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (2 - 1)";
  2384. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2385. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2386. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2387. action = "cTabUserSelIcon set [1,31];[1] call cTab_fnc_userMenuSelect;";
  2388. };
  2389. class exit: cTab_MenuExit
  2390. {
  2391. idc = -1;
  2392. text = "Exit";
  2393. x = 0;
  2394. y = "((27)) / 2048 * (safezoneH * 1.2) / 0.8 * (3 - 1)";
  2395. w = "(12 + 1.5) * ((27)) / 2048 * (safezoneH * 1.2) * 3/4 * 0.5";
  2396. h = "((27)) / 2048 * (safezoneH * 1.2) / 0.8";
  2397. sizeEx = "((27)) / 2048 * (safezoneH * 1.2)";
  2398. action = "[0] call cTab_fnc_userMenuSelect;";
  2399. };
  2400. };
  2401. };
  2402. class background: cTab_Tablet_background{};
  2403. class movingHandle_T: cTab_Tablet_movingHandle_T{};
  2404. class movingHandle_B: cTab_Tablet_movingHandle_B{};
  2405. class movingHandle_L: cTab_Tablet_movingHandle_L{};
  2406. class movingHandle_R: cTab_Tablet_movingHandle_R{};
  2407. class btnF1: cTab_Tablet_btnF1
  2408. {
  2409. idc = 1600;
  2410. tooltip = "Blue Force Tracker - Quick Key";
  2411. action = "['cTab_Tablet_dlg',[['mode','BFT']]] call cTab_fnc_setSettings;";
  2412. };
  2413. class btnF2: cTab_Tablet_btnF2
  2414. {
  2415. idc = 1601;
  2416. tooltip = "UAV Intel Live Feed - Quick Key";
  2417. action = "['cTab_Tablet_dlg',[['mode','UAV']]] call cTab_fnc_setSettings;";
  2418. };
  2419. class btnF3: cTab_Tablet_btnF3
  2420. {
  2421. idc = 1602;
  2422. tooltip = "Helmet Cam Live Feed - Quick Key";
  2423. action = "['cTab_Tablet_dlg',[['mode','HCAM']]] call cTab_fnc_setSettings;";
  2424. };
  2425. class btnF4: cTab_Tablet_btnF4
  2426. {
  2427. idc = 1603;
  2428. tooltip = "Text Message Application - Quick Key";
  2429. action = "['cTab_Tablet_dlg',[['mode','MESSAGE']]] call cTab_fnc_setSettings;";
  2430. };
  2431. class btnF5: cTab_Tablet_btnF5
  2432. {
  2433. idc = 1604;
  2434. tooltip = "Toggle Map Tools (F5)";
  2435. action = "['cTab_Tablet_dlg'] call cTab_fnc_toggleMapTools;";
  2436. };
  2437. class btnF6: cTab_Tablet_btnF6
  2438. {
  2439. idc = 1605;
  2440. tooltip = "Toggle Map Textures (F6)";
  2441. action = "['cTab_Tablet_dlg'] call cTab_fnc_mapType_toggle;";
  2442. };
  2443. class btnF7: cTab_Tablet_btnTrackpad
  2444. {
  2445. idc = 16;
  2446. action = "['cTab_Tablet_dlg'] call cTab_fnc_centerMapOnPlayerPosition;";
  2447. tooltip = "Center Map On Current Position (F7)";
  2448. };
  2449. class btnMain: cTab_Tablet_btnHome
  2450. {
  2451. idc = 1606;
  2452. tooltip = "Main Menu";
  2453. action = "['cTab_Tablet_dlg',[['mode','DESKTOP']]] call cTab_fnc_setSettings;";
  2454. };
  2455. class btnFN: cTab_Tablet_btnFn
  2456. {
  2457. idc = 1607;
  2458. action = "['cTab_Tablet_dlg'] call cTab_fnc_iconText_toggle;";
  2459. tooltip = "Toggle Text on/off";
  2460. };
  2461. class btnOFF: cTab_Tablet_btnPower
  2462. {
  2463. idc = 1608;
  2464. action = "closeDialog 0;";
  2465. tooltip = "Close Interface";
  2466. };
  2467. class btnUP: cTab_Tablet_btnBrtUp
  2468. {
  2469. idc = 1609;
  2470. action = "call cTab_fnc_txt_size_inc;";
  2471. tooltip = "Increase Font";
  2472. };
  2473. class btnDWN: cTab_Tablet_btnBrtDn
  2474. {
  2475. idc = 1610;
  2476. action = "call cTab_fnc_txt_size_dec;";
  2477. tooltip = "Decrease Font";
  2478. };
  2479. class btnACT: cTab_Tablet_btnMouse
  2480. {
  2481. idc = 1611;
  2482. action = "_null = [] call cTab_Tablet_btnACT;";
  2483. tooltip = "";
  2484. };
  2485. };
  2486. };
  2487. class MainSubmenu: cTab_RscControlsGroup
  2488. {
  2489. idc = 3300;
  2490. x = "safeZoneXAbs + safeZoneWAbs";
  2491. y = "safeZoneY + safeZoneH";
  2492. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2493. h = "(4 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2494. class controls
  2495. {
  2496. class mainbg: cTab_IGUIBack
  2497. {
  2498. idc = 2200;
  2499. x = 0;
  2500. y = 0;
  2501. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2502. h = "(4 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2503. };
  2504. class op4btn: cTab_MenuItem
  2505. {
  2506. idc = 2000;
  2507. text = "Enemy SALUTE";
  2508. x = 0;
  2509. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  2510. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2511. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2512. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2513. action = "[11] call cTab_fnc_userMenuSelect;";
  2514. };
  2515. class medbtn: cTab_MenuItem
  2516. {
  2517. idc = 2001;
  2518. text = "Medical";
  2519. x = 0;
  2520. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  2521. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2522. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2523. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2524. action = "[21] call cTab_fnc_userMenuSelect;";
  2525. };
  2526. class genbtn: cTab_MenuItem
  2527. {
  2528. idc = 2002;
  2529. text = "General";
  2530. x = 0;
  2531. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  2532. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2533. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2534. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2535. action = "[31] call cTab_fnc_userMenuSelect;";
  2536. };
  2537. class exit: cTab_MenuExit
  2538. {
  2539. idc = -1;
  2540. text = "Exit";
  2541. x = 0;
  2542. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (4 - 1)";
  2543. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2544. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2545. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2546. action = "[0] call cTab_fnc_userMenuSelect;";
  2547. };
  2548. };
  2549. };
  2550. class EnemySub1: cTab_RscControlsGroup
  2551. {
  2552. idc = 3301;
  2553. x = "safeZoneXAbs + safeZoneWAbs";
  2554. y = "safeZoneY + safeZoneH";
  2555. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2556. h = "(8 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2557. class controls
  2558. {
  2559. class IGUIBack_2201: cTab_IGUIBack
  2560. {
  2561. idc = 2202;
  2562. x = 0;
  2563. y = 0;
  2564. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2565. h = "(8 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2566. };
  2567. class infbtn: cTab_MenuItem
  2568. {
  2569. idc = 2003;
  2570. text = "Infantry";
  2571. x = 0;
  2572. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  2573. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2574. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2575. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2576. action = "cTabUserSelIcon set [1,0];[12] call cTab_fnc_userMenuSelect;";
  2577. };
  2578. class mecinfbtn: cTab_MenuItem
  2579. {
  2580. idc = 2004;
  2581. text = "Mechanized Inf";
  2582. toolTip = "Equipped with APCs/IFVs";
  2583. x = 0;
  2584. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  2585. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2586. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2587. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2588. action = "cTabUserSelIcon set [1,1];[12] call cTab_fnc_userMenuSelect;";
  2589. };
  2590. class motrinfbtn: cTab_MenuItem
  2591. {
  2592. idc = 2032;
  2593. text = "Motorized Inf";
  2594. toolTip = "Equipped with un-protected vehicles";
  2595. x = 0;
  2596. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  2597. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2598. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2599. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2600. action = "cTabUserSelIcon set [1,2];[12] call cTab_fnc_userMenuSelect;";
  2601. };
  2602. class amrbtn: cTab_MenuItem
  2603. {
  2604. idc = 2005;
  2605. text = "Armor";
  2606. x = 0;
  2607. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (4 - 1)";
  2608. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2609. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2610. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2611. action = "cTabUserSelIcon set [1,3];[12] call cTab_fnc_userMenuSelect;";
  2612. };
  2613. class helibtn: cTab_MenuItem
  2614. {
  2615. idc = 2006;
  2616. text = "Helicopter";
  2617. x = 0;
  2618. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (5 - 1)";
  2619. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2620. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2621. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2622. action = "cTabUserSelIcon set [1,4];[12] call cTab_fnc_userMenuSelect;";
  2623. };
  2624. class plnbtn: cTab_MenuItem
  2625. {
  2626. idc = 2007;
  2627. text = "Plane";
  2628. x = 0;
  2629. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (6 - 1)";
  2630. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2631. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2632. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2633. action = "cTabUserSelIcon set [1,5];[12] call cTab_fnc_userMenuSelect;";
  2634. };
  2635. class uknbtn: cTab_MenuItem
  2636. {
  2637. idc = 2008;
  2638. text = "Unknown";
  2639. x = 0;
  2640. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (7 - 1)";
  2641. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2642. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2643. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2644. action = "cTabUserSelIcon set [1,6];[12] call cTab_fnc_userMenuSelect;";
  2645. };
  2646. class exit: cTab_MenuExit
  2647. {
  2648. idc = -1;
  2649. text = "Exit";
  2650. x = 0;
  2651. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (8 - 1)";
  2652. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2653. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2654. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2655. action = "[0] call cTab_fnc_userMenuSelect;";
  2656. };
  2657. };
  2658. };
  2659. class EnemySub2: cTab_RscControlsGroup
  2660. {
  2661. idc = 3303;
  2662. x = "safeZoneXAbs + safeZoneWAbs";
  2663. y = "safeZoneY + safeZoneH";
  2664. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2665. h = "(6 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2666. class controls
  2667. {
  2668. class IGUIBack_2202: cTab_IGUIBack
  2669. {
  2670. idc = 2202;
  2671. x = 0;
  2672. y = 0;
  2673. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2674. h = "(6 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2675. };
  2676. class ftbtn: cTab_MenuItem
  2677. {
  2678. idc = 2009;
  2679. text = "Singular";
  2680. x = 0;
  2681. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  2682. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2683. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2684. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2685. action = "[14] call cTab_fnc_userMenuSelect;";
  2686. };
  2687. class patbtn: cTab_MenuItem
  2688. {
  2689. idc = 2010;
  2690. text = "Patrol";
  2691. x = 0;
  2692. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  2693. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2694. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2695. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2696. action = "cTabUserSelIcon set [2,1];[13] call cTab_fnc_userMenuSelect;";
  2697. };
  2698. class sqdbtn: cTab_MenuItem
  2699. {
  2700. idc = 2011;
  2701. text = "Squad";
  2702. x = 0;
  2703. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  2704. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2705. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2706. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2707. action = "cTabUserSelIcon set [2,2];[13] call cTab_fnc_userMenuSelect;";
  2708. };
  2709. class sctbtn: cTab_MenuItem
  2710. {
  2711. idc = 2012;
  2712. text = "Section";
  2713. x = 0;
  2714. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (4 - 1)";
  2715. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2716. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2717. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2718. action = "cTabUserSelIcon set [2,3];[13] call cTab_fnc_userMenuSelect;";
  2719. };
  2720. class pltnbtn: cTab_MenuItem
  2721. {
  2722. idc = 2013;
  2723. text = "Platoon";
  2724. x = 0;
  2725. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (5 - 1)";
  2726. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2727. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2728. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2729. action = "cTabUserSelIcon set [2,4];[13] call cTab_fnc_userMenuSelect;";
  2730. };
  2731. class exit: cTab_MenuExit
  2732. {
  2733. idc = -1;
  2734. text = "Exit";
  2735. x = 0;
  2736. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (6 - 1)";
  2737. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2738. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2739. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2740. action = "[0] call cTab_fnc_userMenuSelect;";
  2741. };
  2742. };
  2743. };
  2744. class EnemySub3: cTab_RscControlsGroup
  2745. {
  2746. idc = 3304;
  2747. x = "safeZoneXAbs + safeZoneWAbs";
  2748. y = "safeZoneY + safeZoneH";
  2749. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2750. h = "(10 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2751. class controls
  2752. {
  2753. class IGUIBack_2203: cTab_IGUIBack
  2754. {
  2755. idc = 2203;
  2756. x = 0;
  2757. y = 0;
  2758. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2759. h = "(10 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2760. };
  2761. class stnbtn: cTab_MenuItem
  2762. {
  2763. idc = 2029;
  2764. text = "Stationary";
  2765. x = 0;
  2766. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  2767. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2768. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2769. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2770. action = "[1] call cTab_fnc_userMenuSelect;";
  2771. };
  2772. class nthbtn: cTab_MenuItem
  2773. {
  2774. idc = 2015;
  2775. text = "N";
  2776. x = 0;
  2777. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  2778. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2779. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2780. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2781. action = "cTabUserSelIcon set [3,1];[1] call cTab_fnc_userMenuSelect;";
  2782. };
  2783. class nebtn: cTab_MenuItem
  2784. {
  2785. idc = 2016;
  2786. text = "NE";
  2787. x = 0;
  2788. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  2789. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2790. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2791. action = "cTabUserSelIcon set [3,2];[1] call cTab_fnc_userMenuSelect;";
  2792. };
  2793. class ebtn: cTab_MenuItem
  2794. {
  2795. idc = 2017;
  2796. text = "E";
  2797. x = 0;
  2798. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (4 - 1)";
  2799. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2800. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2801. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2802. action = "cTabUserSelIcon set [3,3];[1] call cTab_fnc_userMenuSelect;";
  2803. };
  2804. class sebtn: cTab_MenuItem
  2805. {
  2806. idc = 2018;
  2807. text = "SE";
  2808. x = 0;
  2809. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (5 - 1)";
  2810. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2811. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2812. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2813. action = "cTabUserSelIcon set [3,4];[1] call cTab_fnc_userMenuSelect;";
  2814. };
  2815. class sbtn: cTab_MenuItem
  2816. {
  2817. idc = 2019;
  2818. text = "S";
  2819. x = 0;
  2820. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (6 - 1)";
  2821. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2822. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2823. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2824. action = "cTabUserSelIcon set [3,5];[1] call cTab_fnc_userMenuSelect;";
  2825. };
  2826. class swbtn: cTab_MenuItem
  2827. {
  2828. idc = 2020;
  2829. text = "SW";
  2830. x = 0;
  2831. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (7 - 1)";
  2832. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2833. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2834. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2835. action = "cTabUserSelIcon set [3,6];[1] call cTab_fnc_userMenuSelect;";
  2836. };
  2837. class wbtn: cTab_MenuItem
  2838. {
  2839. idc = 2021;
  2840. text = "W";
  2841. x = 0;
  2842. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (8 - 1)";
  2843. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2844. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2845. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2846. action = "cTabUserSelIcon set [3,7];[1] call cTab_fnc_userMenuSelect;";
  2847. };
  2848. class RscText_1022: cTab_MenuItem
  2849. {
  2850. idc = 2022;
  2851. text = "NW";
  2852. x = 0;
  2853. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (9 - 1)";
  2854. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2855. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2856. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2857. action = "cTabUserSelIcon set [3,8];[1] call cTab_fnc_userMenuSelect;";
  2858. };
  2859. class exit: cTab_MenuExit
  2860. {
  2861. idc = -1;
  2862. text = "Exit";
  2863. x = 0;
  2864. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (10 - 1)";
  2865. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2866. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2867. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2868. action = "[0] call cTab_fnc_userMenuSelect;";
  2869. };
  2870. };
  2871. };
  2872. class EnemySub4: cTab_RscControlsGroup
  2873. {
  2874. idc = 3307;
  2875. x = "safeZoneXAbs + safeZoneWAbs";
  2876. y = "safeZoneY + safeZoneH";
  2877. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2878. h = "(8 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2879. class controls
  2880. {
  2881. class IGUIBack_2202: cTab_IGUIBack
  2882. {
  2883. idc = 2202;
  2884. x = 0;
  2885. y = 0;
  2886. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2887. h = "(8 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2888. };
  2889. class rifle_btn: cTab_MenuItem
  2890. {
  2891. idc = -1;
  2892. text = "Rifle";
  2893. x = 0;
  2894. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  2895. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2896. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2897. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2898. action = "cTabUserSelIcon set [1,7];[13] call cTab_fnc_userMenuSelect;";
  2899. };
  2900. class lmg_btn: cTab_MenuItem
  2901. {
  2902. idc = -1;
  2903. text = "MG";
  2904. x = 0;
  2905. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  2906. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2907. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2908. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2909. action = "cTabUserSelIcon set [1,8];[13] call cTab_fnc_userMenuSelect;";
  2910. };
  2911. class at_btn: cTab_MenuItem
  2912. {
  2913. idc = -1;
  2914. text = "AT";
  2915. x = 0;
  2916. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  2917. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2918. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2919. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2920. action = "cTabUserSelIcon set [1,9];[13] call cTab_fnc_userMenuSelect;";
  2921. };
  2922. class mmg_btn: cTab_MenuItem
  2923. {
  2924. idc = -1;
  2925. text = "Static MG";
  2926. x = 0;
  2927. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (4 - 1)";
  2928. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2929. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2930. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2931. action = "cTabUserSelIcon set [1,10];[13] call cTab_fnc_userMenuSelect;";
  2932. };
  2933. class mat_btn: cTab_MenuItem
  2934. {
  2935. idc = -1;
  2936. text = "Static AT";
  2937. x = 0;
  2938. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (5 - 1)";
  2939. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2940. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2941. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2942. action = "cTabUserSelIcon set [1,11];[13] call cTab_fnc_userMenuSelect;";
  2943. };
  2944. class aa_btn: cTab_MenuItem
  2945. {
  2946. idc = -1;
  2947. text = "Static AA";
  2948. x = 0;
  2949. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (6 - 1)";
  2950. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2951. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2952. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2953. action = "cTabUserSelIcon set [1,13];[13] call cTab_fnc_userMenuSelect;";
  2954. };
  2955. class mmortar_btn: cTab_MenuItem
  2956. {
  2957. idc = -1;
  2958. text = "Mortar";
  2959. x = 0;
  2960. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (7 - 1)";
  2961. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2962. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2963. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2964. action = "cTabUserSelIcon set [1,12];[13] call cTab_fnc_userMenuSelect;";
  2965. };
  2966. class exit: cTab_MenuExit
  2967. {
  2968. idc = -1;
  2969. text = "Exit";
  2970. x = 0;
  2971. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (8 - 1)";
  2972. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2973. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2974. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  2975. action = "[0] call cTab_fnc_userMenuSelect;";
  2976. };
  2977. };
  2978. };
  2979. class CasulSub1: cTab_RscControlsGroup
  2980. {
  2981. idc = 3305;
  2982. x = "safeZoneXAbs + safeZoneWAbs";
  2983. y = "safeZoneY + safeZoneH";
  2984. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2985. h = "(5 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2986. class controls
  2987. {
  2988. class IGUIBack_2204: cTab_IGUIBack
  2989. {
  2990. idc = 2204;
  2991. x = 0;
  2992. y = 0;
  2993. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  2994. h = "(5 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  2995. };
  2996. class casltybtn: cTab_MenuItem
  2997. {
  2998. idc = 2024;
  2999. text = "Casualty";
  3000. x = 0;
  3001. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  3002. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3003. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3004. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3005. action = "cTabUserSelIcon set [1,20];[1] call cTab_fnc_userMenuSelect;";
  3006. };
  3007. class ccpbtn: cTab_MenuItem
  3008. {
  3009. idc = 2025;
  3010. text = "CCP";
  3011. toolTip = "Casualty Collection Point";
  3012. x = 0;
  3013. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  3014. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3015. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3016. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3017. action = "cTabUserSelIcon set [1,21];[1] call cTab_fnc_userMenuSelect;";
  3018. };
  3019. class basbtn: cTab_MenuItem
  3020. {
  3021. idc = 2026;
  3022. text = "BAS";
  3023. toolTip = "Battalion Aid Station";
  3024. x = 0;
  3025. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  3026. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3027. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3028. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3029. action = "cTabUserSelIcon set [1,22];[1] call cTab_fnc_userMenuSelect;";
  3030. };
  3031. class mcibtn: cTab_MenuItem
  3032. {
  3033. idc = 2031;
  3034. text = "MCI";
  3035. toolTip = "Mass Casualty Incident";
  3036. x = 0;
  3037. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (4 - 1)";
  3038. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3039. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3040. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3041. action = "cTabUserSelIcon set [1,23];[1] call cTab_fnc_userMenuSelect;";
  3042. };
  3043. class exit: cTab_MenuExit
  3044. {
  3045. idc = -1;
  3046. text = "Exit";
  3047. x = 0;
  3048. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (5 - 1)";
  3049. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3050. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3051. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3052. action = "[0] call cTab_fnc_userMenuSelect;";
  3053. };
  3054. };
  3055. };
  3056. class GenSub1: cTab_RscControlsGroup
  3057. {
  3058. idc = 3306;
  3059. x = "safeZoneXAbs + safeZoneWAbs";
  3060. y = "safeZoneY + safeZoneH";
  3061. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3062. h = "(3 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3063. class controls
  3064. {
  3065. class IGUIBack_2205: cTab_IGUIBack
  3066. {
  3067. idc = 2205;
  3068. x = 0;
  3069. y = 0;
  3070. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3071. h = "(3 + 0.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3072. };
  3073. class hqbtn: cTab_MenuItem
  3074. {
  3075. idc = 2027;
  3076. text = "HQ";
  3077. toolTip = "Headquaters";
  3078. x = 0;
  3079. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (1 - 1)";
  3080. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3081. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3082. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3083. action = "cTabUserSelIcon set [1,30];[1] call cTab_fnc_userMenuSelect;";
  3084. };
  3085. class lzbtn: cTab_MenuItem
  3086. {
  3087. idc = 2028;
  3088. text = "LZ";
  3089. toolTip = "Landing Zone";
  3090. x = 0;
  3091. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (2 - 1)";
  3092. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3093. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3094. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3095. action = "cTabUserSelIcon set [1,31];[1] call cTab_fnc_userMenuSelect;";
  3096. };
  3097. class exit: cTab_MenuExit
  3098. {
  3099. idc = -1;
  3100. text = "Exit";
  3101. x = 0;
  3102. y = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8 * (3 - 1)";
  3103. w = "(12 + 1.5) * (27) / 2048 * ( (safezoneW * 0.8) * 4/3) * 3/4 * 0.5";
  3104. h = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3) / 0.8";
  3105. sizeEx = "(27) / 2048 * ( (safezoneW * 0.8) * 4/3)";
  3106. action = "[0] call cTab_fnc_userMenuSelect;";
  3107. };
  3108. };
  3109. };
  3110. class cTab_RscText_FBCB2: cTab_RscText
  3111. {
  3112. style = 2;
  3113. w = "(((((810)) - (15) * 6) / 5)) / 2048 * (safezoneW)";
  3114. h = "(((44) - (15))) / 2048 * ( (safezoneW) * 4/3)";
  3115. font = "EtelkaMonospacePro";
  3116. colorText[] = {1,1,1,1};
  3117. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3118. colorBackground[] = {0,0,0,0};
  3119. shadow = 0;
  3120. };
  3121. class cTab_FBCB2_background: cTab_RscPicture
  3122. {
  3123. idc = 1200;
  3124. text = "\ClonecTab\img\FBCB2.paa";
  3125. x = "(safezoneX + (safezoneW - (safezoneW)) / 2)";
  3126. y = "(safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3127. w = "(safezoneW)";
  3128. h = "( (safezoneW) * 4/3)";
  3129. };
  3130. class cTab_FBCB2_header: cTab_RscPicture
  3131. {
  3132. idc = 1;
  3133. text = "#(argb,8,8,3)color(0,0,0,1)";
  3134. x = "((685)) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3135. y = "((608)) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3136. w = "((810)) / 2048 * (safezoneW)";
  3137. h = "((44)) / 2048 * ( (safezoneW) * 4/3)";
  3138. };
  3139. class cTab_FBCB2_on_screen_battery: cTab_RscPicture
  3140. {
  3141. idc = 2;
  3142. text = "\ClonecTab\img\icon_battery_ca.paa";
  3143. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (1 - 1))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3144. y = "((608) + ((44) - (28.5)) / 2) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3145. w = "((28.5)) / 2048 * (safezoneW)";
  3146. h = "((28.5)) / 2048 * ( (safezoneW) * 4/3)";
  3147. colorText[] = {1,1,1,1};
  3148. };
  3149. class cTab_FBCB2_on_screen_time: cTab_RscText_FBCB2
  3150. {
  3151. idc = 2613;
  3152. style = 2;
  3153. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (3 - 1))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3154. y = "((608) + ((44) - (24)) / 2) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3155. };
  3156. class cTab_FBCB2_on_screen_signalStrength: cTab_FBCB2_on_screen_battery
  3157. {
  3158. idc = 3;
  3159. text = "\ClonecTab\img\icon_signalStrength_ca.paa";
  3160. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (5 - 1)) + ((((810)) - (15) * 6) / 5) - (28.5) * 2) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3161. colorText[] = {1,1,1,1};
  3162. };
  3163. class cTab_FBCB2_on_screen_satellite: cTab_FBCB2_on_screen_battery
  3164. {
  3165. idc = 4;
  3166. text = "\a3\ui_f\data\map\Diary\signal_ca.paa";
  3167. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (5 - 1)) + ((((810)) - (15) * 6) / 5) - (28.5)) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3168. colorText[] = {1,1,1,1};
  3169. };
  3170. class cTab_FBCB2_on_screen_dirDegree: cTab_FBCB2_on_screen_time
  3171. {
  3172. idc = 2615;
  3173. style = 0;
  3174. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (2 - 1))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3175. };
  3176. class cTab_FBCB2_on_screen_grid: cTab_FBCB2_on_screen_dirDegree
  3177. {
  3178. idc = 2612;
  3179. style = 1;
  3180. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (4 - 1))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3181. };
  3182. class cTab_FBCB2_on_screen_dirOctant: cTab_FBCB2_on_screen_dirDegree
  3183. {
  3184. idc = 2616;
  3185. style = 1;
  3186. x = "((((15) + ((685))) + ((15) + ((((810)) - (15) * 6) / 5)) * (1 - 1))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3187. };
  3188. class cTab_FBCB2_btnF1: cTab_RscButtonInv
  3189. {
  3190. x = "(762) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3191. y = "(1452) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3192. w = "(70) / 2048 * (safezoneW)";
  3193. h = "(40) / 2048 * ( (safezoneW) * 4/3)";
  3194. };
  3195. class cTab_FBCB2_btnF2: cTab_FBCB2_btnF1
  3196. {
  3197. x = "(846) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3198. };
  3199. class cTab_FBCB2_btnF3: cTab_FBCB2_btnF1
  3200. {
  3201. x = "(929) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3202. };
  3203. class cTab_FBCB2_btnF4: cTab_FBCB2_btnF1
  3204. {
  3205. x = "(1013) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3206. };
  3207. class cTab_FBCB2_btnF5: cTab_FBCB2_btnF1
  3208. {
  3209. x = "(1097) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3210. };
  3211. class cTab_FBCB2_btnF6: cTab_FBCB2_btnF1
  3212. {
  3213. x = "(1180) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3214. };
  3215. class cTab_FBCB2_btnF7: cTab_FBCB2_btnF1
  3216. {
  3217. x = "(1264) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3218. };
  3219. class cTab_FBCB2_btnF8: cTab_FBCB2_btnF1
  3220. {
  3221. x = "(1349) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3222. };
  3223. class cTab_FBCB2_btnPWR: cTab_RscButtonInv
  3224. {
  3225. x = "(592) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3226. y = "(603) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3227. w = "(40) / 2048 * (safezoneW)";
  3228. h = "(70) / 2048 * ( (safezoneW) * 4/3)";
  3229. };
  3230. class cTab_FBCB2_btnBRTplus: cTab_FBCB2_btnPWR
  3231. {
  3232. y = "(680) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3233. };
  3234. class cTab_FBCB2_btnBRTminus: cTab_FBCB2_btnPWR
  3235. {
  3236. y = "(759) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3237. };
  3238. class cTab_FBCB2_btnBLKOUT: cTab_FBCB2_btnPWR
  3239. {
  3240. y = "(839) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3241. };
  3242. class cTab_FBCB2_btnESC: cTab_FBCB2_btnPWR
  3243. {
  3244. y = "(918) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3245. };
  3246. class cTab_FBCB2_btnRight: cTab_FBCB2_btnPWR
  3247. {
  3248. y = "(998) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3249. };
  3250. class cTab_FBCB2_btnUp: cTab_FBCB2_btnPWR
  3251. {
  3252. y = "(1079) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3253. };
  3254. class cTab_FBCB2_btnDown: cTab_FBCB2_btnPWR
  3255. {
  3256. y = "(1161) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3257. };
  3258. class cTab_FBCB2_btnENT: cTab_FBCB2_btnPWR
  3259. {
  3260. y = "(1241) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3261. };
  3262. class cTab_FBCB2_btnFCN: cTab_FBCB2_btnPWR
  3263. {
  3264. y = "(1322) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3265. };
  3266. class cTab_FBCB2_on_screen_hookGrid: cTab_RscText_FBCB2
  3267. {
  3268. idc = 2617;
  3269. style = 2;
  3270. x = "(((-(15) + ((685)) + ((810))) - ((((810)) - (15) * 6) / 5))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3271. y = "((-(0) + (608) + (810)) - (15) - ((44) - (15)) * 4) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3272. colorText[] = {1,1,1,0.5};
  3273. colorBackground[] = {0,0,0,0.25};
  3274. };
  3275. class cTab_FBCB2_on_screen_hookElevation: cTab_FBCB2_on_screen_hookGrid
  3276. {
  3277. idc = 2620;
  3278. y = "((-(0) + (608) + (810)) - (15) - ((44) - (15)) * 3) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3279. };
  3280. class cTab_FBCB2_on_screen_hookDst: cTab_FBCB2_on_screen_hookGrid
  3281. {
  3282. idc = 2619;
  3283. y = "((-(0) + (608) + (810)) - (15) - ((44) - (15)) * 2) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3284. };
  3285. class cTab_FBCB2_on_screen_hookDir: cTab_FBCB2_on_screen_hookGrid
  3286. {
  3287. idc = 2618;
  3288. y = "((-(0) + (608) + (810)) - (15) - ((44) - (15))) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3289. };
  3290. class cTab_FBCB2_loadingtxt: cTab_RscText_FBCB2
  3291. {
  3292. idc = 1000;
  3293. style = 2;
  3294. text = "Loading";
  3295. x = "(((685))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3296. y = "(((608) + (44))) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3297. w = "(((810))) / 2048 * (safezoneW)";
  3298. h = "(((810) - (44) - (0))) / 2048 * ( (safezoneW) * 4/3)";
  3299. colorBackground[] = {0,0,0,1};
  3300. };
  3301. class cTab_FBCB2_notification: cTab_RscText_FBCB2
  3302. {
  3303. idc = 1620;
  3304. x = "(((685)) + (((810)) * 0.2) / 2) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3305. y = "(((608) + (44)) + ((810) - (44) - (0)) - 2 * (24)) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3306. w = "(((810)) * 0.8) / 2048 * (safezoneW)";
  3307. colorBackground[] = {0,0,0,1};
  3308. };
  3309. class cTab_FBCB2_dlg
  3310. {
  3311. idd = 1775144;
  3312. movingEnable = "true";
  3313. onLoad = "_this call cTab_fnc_onIfOpen;";
  3314. onUnload = "[] call cTab_fnc_onIfclose;";
  3315. onKeyDown = "_this call cTab_fnc_onIfKeyDown;";
  3316. objects[] = {};
  3317. class controlsBackground
  3318. {
  3319. class background: cTab_FBCB2_background
  3320. {
  3321. moving = 1;
  3322. };
  3323. class screen: cTab_RscMapControl
  3324. {
  3325. idc = 1201;
  3326. text = "#(argb,8,8,3)color(1,1,1,1)";
  3327. x = "(((685))) / 2048 * (safezoneW) + (safezoneX + (safezoneW - (safezoneW)) / 2)";
  3328. y = "(((608) + (44))) / 2048 * ( (safezoneW) * 4/3) + (safezoneY + (safezoneH - ( (safezoneW) * 4/3)) / 2)";
  3329. w = "(((810))) / 2048 * (safezoneW)";
  3330. h = "(((810) - (44) - (0))) / 2048 * ( (safezoneW) * 4/3)";
  3331. onDraw = "nop = _this call cTabOnDrawbftVeh;";
  3332. onMouseButtonDblClick = "_ok = [3300,_this] execVM '\ClonecTab\shared\cTab_markerMenu_load.sqf';";
  3333. onMouseMoving = "cTabCursorOnMap = _this select 3;cTabMapCursorPos = _this select 0 ctrlMapScreenToWorld [_this select 1,_this select 2];";
  3334. maxSatelliteAlpha = 10000;
  3335. alphaFadeStartScale = 10;
  3336. alphaFadeEndScale = 10;
  3337. ptsPerSquareSea = "8 / (0.86 / ( (safezoneW) * 4/3))";
  3338. ptsPerSquareTxt = "8 / (0.86 / ( (safezoneW) * 4/3))";
  3339. ptsPerSquareCLn = "8 / (0.86 / ( (safezoneW) * 4/3))";
  3340. ptsPerSquareExp = "8 / (0.86 / ( (safezoneW) * 4/3))";
  3341. ptsPerSquareCost = "8 / (0.86 / ( (safezoneW) * 4/3))";
  3342. ptsPerSquareFor = "3 / (0.86 / ( (safezoneW) * 4/3))";
  3343. ptsPerSquareForEdge = "100 / (0.86 / ( (safezoneW) * 4/3))";
  3344. ptsPerSquareRoad = "1.5 / (0.86 / ( (safezoneW) * 4/3))";
  3345. ptsPerSquareObj = "4 / (0.86 / ( (safezoneW) * 4/3))";
  3346. widthRailWay = 1;
  3347. };
  3348. class screenTopo: screen
  3349. {
  3350. idc = 1202;
  3351. maxSatelliteAlpha = 0;
  3352. };
  3353. };
  3354. class controls
  3355. {
  3356. class header: cTab_FBCB2_header{};
  3357. class battery: cTab_FBCB2_on_screen_battery{};
  3358. class time: cTab_FBCB2_on_screen_time{};
  3359. class signalStrength: cTab_FBCB2_on_screen_signalStrength{};
  3360. class satellite: cTab_FBCB2_on_screen_satellite{};
  3361. class dirDegree: cTab_FBCB2_on_screen_dirDegree{};
  3362. class grid: cTab_FBCB2_on_screen_grid{};
  3363. class dirOctant: cTab_FBCB2_on_screen_dirOctant{};
  3364. class pwrbtn: cTab_FBCB2_btnPWR
  3365. {
  3366. idc = 1608;
  3367. action = "closeDialog 0;";
  3368. tooltip = "Close Interface";
  3369. };
  3370. class btnbrtpls: cTab_FBCB2_btnBRTplus
  3371. {
  3372. idc = 1609;
  3373. action = "call cTab_fnc_txt_size_inc;";
  3374. tooltip = "Increase Font";
  3375. };
  3376. class btnbrtmns: cTab_FBCB2_btnBRTminus
  3377. {
  3378. idc = 1610;
  3379. action = "call cTab_fnc_txt_size_dec;";
  3380. tooltip = "Decrease Font";
  3381. };
  3382. class btnfunction: cTab_FBCB2_btnFCN
  3383. {
  3384. idc = 1607;
  3385. action = "['cTab_FBCB2_dlg'] call cTab_fnc_iconText_toggle;";
  3386. tooltip = "Toggle Text on/off";
  3387. };
  3388. class btnF5: cTab_FBCB2_btnF5
  3389. {
  3390. idc = 1604;
  3391. tooltip = "Toggle Map Tools (F5)";
  3392. action = "['cTab_FBCB2_dlg'] call cTab_fnc_toggleMapTools;";
  3393. };
  3394. class btnF6: cTab_FBCB2_btnF6
  3395. {
  3396. idc = 1605;
  3397. tooltip = "Toggle Map Textures";
  3398. action = "['cTab_FBCB2_dlg'] call cTab_fnc_mapType_toggle;";
  3399. };
  3400. class btnF7: cTab_FBCB2_btnF7
  3401. {
  3402. idc = 5;
  3403. action = "['cTab_FBCB2_dlg'] call cTab_fnc_centerMapOnPlayerPosition;";
  3404. tooltip = "Center Map On Current Position (F7)";
  3405. };
  3406. class hookGrid: cTab_FBCB2_on_screen_hookGrid{};
  3407. class hookElevation: cTab_FBCB2_on_screen_hookElevation{};
  3408. class hookDst: cTab_FBCB2_on_screen_hookDst{};
  3409. class hookDir: cTab_FBCB2_on_screen_hookDir{};
  3410. class MainSubmenu: cTab_RscControlsGroup
  3411. {
  3412. idc = 3300;
  3413. x = "safeZoneXAbs + safeZoneWAbs";
  3414. y = "safeZoneY + safeZoneH";
  3415. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3416. h = "(4 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3417. class controls
  3418. {
  3419. class mainbg: cTab_IGUIBack
  3420. {
  3421. idc = 2200;
  3422. x = 0;
  3423. y = 0;
  3424. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3425. h = "(4 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3426. };
  3427. class op4btn: cTab_MenuItem
  3428. {
  3429. idc = 2000;
  3430. text = "Enemy SALUTE";
  3431. x = 0;
  3432. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  3433. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3434. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3435. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3436. action = "[11] call cTab_fnc_userMenuSelect;";
  3437. };
  3438. class medbtn: cTab_MenuItem
  3439. {
  3440. idc = 2001;
  3441. text = "Medical";
  3442. x = 0;
  3443. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  3444. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3445. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3446. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3447. action = "[21] call cTab_fnc_userMenuSelect;";
  3448. };
  3449. class genbtn: cTab_MenuItem
  3450. {
  3451. idc = 2002;
  3452. text = "General";
  3453. x = 0;
  3454. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  3455. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3456. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3457. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3458. action = "[31] call cTab_fnc_userMenuSelect;";
  3459. };
  3460. class exit: cTab_MenuExit
  3461. {
  3462. idc = -1;
  3463. text = "Exit";
  3464. x = 0;
  3465. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (4 - 1)";
  3466. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3467. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3468. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3469. action = "[0] call cTab_fnc_userMenuSelect;";
  3470. };
  3471. };
  3472. };
  3473. class EnemySub1: cTab_RscControlsGroup
  3474. {
  3475. idc = 3301;
  3476. x = "safeZoneXAbs + safeZoneWAbs";
  3477. y = "safeZoneY + safeZoneH";
  3478. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3479. h = "(8 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3480. class controls
  3481. {
  3482. class IGUIBack_2201: cTab_IGUIBack
  3483. {
  3484. idc = 2202;
  3485. x = 0;
  3486. y = 0;
  3487. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3488. h = "(8 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3489. };
  3490. class infbtn: cTab_MenuItem
  3491. {
  3492. idc = 2003;
  3493. text = "Infantry";
  3494. x = 0;
  3495. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  3496. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3497. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3498. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3499. action = "cTabUserSelIcon set [1,0];[12] call cTab_fnc_userMenuSelect;";
  3500. };
  3501. class mecinfbtn: cTab_MenuItem
  3502. {
  3503. idc = 2004;
  3504. text = "Mechanized Inf";
  3505. toolTip = "Equipped with APCs/IFVs";
  3506. x = 0;
  3507. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  3508. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3509. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3510. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3511. action = "cTabUserSelIcon set [1,1];[12] call cTab_fnc_userMenuSelect;";
  3512. };
  3513. class motrinfbtn: cTab_MenuItem
  3514. {
  3515. idc = 2032;
  3516. text = "Motorized Inf";
  3517. toolTip = "Equipped with un-protected vehicles";
  3518. x = 0;
  3519. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  3520. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3521. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3522. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3523. action = "cTabUserSelIcon set [1,2];[12] call cTab_fnc_userMenuSelect;";
  3524. };
  3525. class amrbtn: cTab_MenuItem
  3526. {
  3527. idc = 2005;
  3528. text = "Armor";
  3529. x = 0;
  3530. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (4 - 1)";
  3531. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3532. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3533. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3534. action = "cTabUserSelIcon set [1,3];[12] call cTab_fnc_userMenuSelect;";
  3535. };
  3536. class helibtn: cTab_MenuItem
  3537. {
  3538. idc = 2006;
  3539. text = "Helicopter";
  3540. x = 0;
  3541. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (5 - 1)";
  3542. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3543. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3544. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3545. action = "cTabUserSelIcon set [1,4];[12] call cTab_fnc_userMenuSelect;";
  3546. };
  3547. class plnbtn: cTab_MenuItem
  3548. {
  3549. idc = 2007;
  3550. text = "Plane";
  3551. x = 0;
  3552. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (6 - 1)";
  3553. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3554. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3555. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3556. action = "cTabUserSelIcon set [1,5];[12] call cTab_fnc_userMenuSelect;";
  3557. };
  3558. class uknbtn: cTab_MenuItem
  3559. {
  3560. idc = 2008;
  3561. text = "Unknown";
  3562. x = 0;
  3563. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (7 - 1)";
  3564. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3565. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3566. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3567. action = "cTabUserSelIcon set [1,6];[12] call cTab_fnc_userMenuSelect;";
  3568. };
  3569. class exit: cTab_MenuExit
  3570. {
  3571. idc = -1;
  3572. text = "Exit";
  3573. x = 0;
  3574. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (8 - 1)";
  3575. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3576. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3577. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3578. action = "[0] call cTab_fnc_userMenuSelect;";
  3579. };
  3580. };
  3581. };
  3582. class EnemySub2: cTab_RscControlsGroup
  3583. {
  3584. idc = 3303;
  3585. x = "safeZoneXAbs + safeZoneWAbs";
  3586. y = "safeZoneY + safeZoneH";
  3587. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3588. h = "(6 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3589. class controls
  3590. {
  3591. class IGUIBack_2202: cTab_IGUIBack
  3592. {
  3593. idc = 2202;
  3594. x = 0;
  3595. y = 0;
  3596. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3597. h = "(6 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3598. };
  3599. class ftbtn: cTab_MenuItem
  3600. {
  3601. idc = 2009;
  3602. text = "Singular";
  3603. x = 0;
  3604. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  3605. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3606. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3607. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3608. action = "[14] call cTab_fnc_userMenuSelect;";
  3609. };
  3610. class patbtn: cTab_MenuItem
  3611. {
  3612. idc = 2010;
  3613. text = "Patrol";
  3614. x = 0;
  3615. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  3616. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3617. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3618. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3619. action = "cTabUserSelIcon set [2,1];[13] call cTab_fnc_userMenuSelect;";
  3620. };
  3621. class sqdbtn: cTab_MenuItem
  3622. {
  3623. idc = 2011;
  3624. text = "Squad";
  3625. x = 0;
  3626. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  3627. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3628. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3629. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3630. action = "cTabUserSelIcon set [2,2];[13] call cTab_fnc_userMenuSelect;";
  3631. };
  3632. class sctbtn: cTab_MenuItem
  3633. {
  3634. idc = 2012;
  3635. text = "Section";
  3636. x = 0;
  3637. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (4 - 1)";
  3638. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3639. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3640. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3641. action = "cTabUserSelIcon set [2,3];[13] call cTab_fnc_userMenuSelect;";
  3642. };
  3643. class pltnbtn: cTab_MenuItem
  3644. {
  3645. idc = 2013;
  3646. text = "Platoon";
  3647. x = 0;
  3648. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (5 - 1)";
  3649. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3650. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3651. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3652. action = "cTabUserSelIcon set [2,4];[13] call cTab_fnc_userMenuSelect;";
  3653. };
  3654. class exit: cTab_MenuExit
  3655. {
  3656. idc = -1;
  3657. text = "Exit";
  3658. x = 0;
  3659. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (6 - 1)";
  3660. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3661. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3662. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3663. action = "[0] call cTab_fnc_userMenuSelect;";
  3664. };
  3665. };
  3666. };
  3667. class EnemySub3: cTab_RscControlsGroup
  3668. {
  3669. idc = 3304;
  3670. x = "safeZoneXAbs + safeZoneWAbs";
  3671. y = "safeZoneY + safeZoneH";
  3672. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3673. h = "(10 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3674. class controls
  3675. {
  3676. class IGUIBack_2203: cTab_IGUIBack
  3677. {
  3678. idc = 2203;
  3679. x = 0;
  3680. y = 0;
  3681. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3682. h = "(10 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3683. };
  3684. class stnbtn: cTab_MenuItem
  3685. {
  3686. idc = 2029;
  3687. text = "Stationary";
  3688. x = 0;
  3689. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  3690. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3691. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3692. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3693. action = "[1] call cTab_fnc_userMenuSelect;";
  3694. };
  3695. class nthbtn: cTab_MenuItem
  3696. {
  3697. idc = 2015;
  3698. text = "N";
  3699. x = 0;
  3700. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  3701. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3702. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3703. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3704. action = "cTabUserSelIcon set [3,1];[1] call cTab_fnc_userMenuSelect;";
  3705. };
  3706. class nebtn: cTab_MenuItem
  3707. {
  3708. idc = 2016;
  3709. text = "NE";
  3710. x = 0;
  3711. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  3712. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3713. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3714. action = "cTabUserSelIcon set [3,2];[1] call cTab_fnc_userMenuSelect;";
  3715. };
  3716. class ebtn: cTab_MenuItem
  3717. {
  3718. idc = 2017;
  3719. text = "E";
  3720. x = 0;
  3721. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (4 - 1)";
  3722. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3723. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3724. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3725. action = "cTabUserSelIcon set [3,3];[1] call cTab_fnc_userMenuSelect;";
  3726. };
  3727. class sebtn: cTab_MenuItem
  3728. {
  3729. idc = 2018;
  3730. text = "SE";
  3731. x = 0;
  3732. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (5 - 1)";
  3733. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3734. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3735. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3736. action = "cTabUserSelIcon set [3,4];[1] call cTab_fnc_userMenuSelect;";
  3737. };
  3738. class sbtn: cTab_MenuItem
  3739. {
  3740. idc = 2019;
  3741. text = "S";
  3742. x = 0;
  3743. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (6 - 1)";
  3744. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3745. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3746. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3747. action = "cTabUserSelIcon set [3,5];[1] call cTab_fnc_userMenuSelect;";
  3748. };
  3749. class swbtn: cTab_MenuItem
  3750. {
  3751. idc = 2020;
  3752. text = "SW";
  3753. x = 0;
  3754. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (7 - 1)";
  3755. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3756. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3757. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3758. action = "cTabUserSelIcon set [3,6];[1] call cTab_fnc_userMenuSelect;";
  3759. };
  3760. class wbtn: cTab_MenuItem
  3761. {
  3762. idc = 2021;
  3763. text = "W";
  3764. x = 0;
  3765. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (8 - 1)";
  3766. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3767. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3768. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3769. action = "cTabUserSelIcon set [3,7];[1] call cTab_fnc_userMenuSelect;";
  3770. };
  3771. class RscText_1022: cTab_MenuItem
  3772. {
  3773. idc = 2022;
  3774. text = "NW";
  3775. x = 0;
  3776. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (9 - 1)";
  3777. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3778. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3779. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3780. action = "cTabUserSelIcon set [3,8];[1] call cTab_fnc_userMenuSelect;";
  3781. };
  3782. class exit: cTab_MenuExit
  3783. {
  3784. idc = -1;
  3785. text = "Exit";
  3786. x = 0;
  3787. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (10 - 1)";
  3788. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3789. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3790. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3791. action = "[0] call cTab_fnc_userMenuSelect;";
  3792. };
  3793. };
  3794. };
  3795. class EnemySub4: cTab_RscControlsGroup
  3796. {
  3797. idc = 3307;
  3798. x = "safeZoneXAbs + safeZoneWAbs";
  3799. y = "safeZoneY + safeZoneH";
  3800. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3801. h = "(8 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3802. class controls
  3803. {
  3804. class IGUIBack_2202: cTab_IGUIBack
  3805. {
  3806. idc = 2202;
  3807. x = 0;
  3808. y = 0;
  3809. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3810. h = "(8 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3811. };
  3812. class rifle_btn: cTab_MenuItem
  3813. {
  3814. idc = -1;
  3815. text = "Rifle";
  3816. x = 0;
  3817. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  3818. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3819. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3820. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3821. action = "cTabUserSelIcon set [1,7];[13] call cTab_fnc_userMenuSelect;";
  3822. };
  3823. class lmg_btn: cTab_MenuItem
  3824. {
  3825. idc = -1;
  3826. text = "MG";
  3827. x = 0;
  3828. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  3829. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3830. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3831. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3832. action = "cTabUserSelIcon set [1,8];[13] call cTab_fnc_userMenuSelect;";
  3833. };
  3834. class at_btn: cTab_MenuItem
  3835. {
  3836. idc = -1;
  3837. text = "AT";
  3838. x = 0;
  3839. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  3840. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3841. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3842. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3843. action = "cTabUserSelIcon set [1,9];[13] call cTab_fnc_userMenuSelect;";
  3844. };
  3845. class mmg_btn: cTab_MenuItem
  3846. {
  3847. idc = -1;
  3848. text = "Static MG";
  3849. x = 0;
  3850. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (4 - 1)";
  3851. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3852. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3853. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3854. action = "cTabUserSelIcon set [1,10];[13] call cTab_fnc_userMenuSelect;";
  3855. };
  3856. class mat_btn: cTab_MenuItem
  3857. {
  3858. idc = -1;
  3859. text = "Static AT";
  3860. x = 0;
  3861. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (5 - 1)";
  3862. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3863. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3864. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3865. action = "cTabUserSelIcon set [1,11];[13] call cTab_fnc_userMenuSelect;";
  3866. };
  3867. class aa_btn: cTab_MenuItem
  3868. {
  3869. idc = -1;
  3870. text = "Static AA";
  3871. x = 0;
  3872. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (6 - 1)";
  3873. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3874. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3875. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3876. action = "cTabUserSelIcon set [1,13];[13] call cTab_fnc_userMenuSelect;";
  3877. };
  3878. class mmortar_btn: cTab_MenuItem
  3879. {
  3880. idc = -1;
  3881. text = "Mortar";
  3882. x = 0;
  3883. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (7 - 1)";
  3884. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3885. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3886. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3887. action = "cTabUserSelIcon set [1,12];[13] call cTab_fnc_userMenuSelect;";
  3888. };
  3889. class exit: cTab_MenuExit
  3890. {
  3891. idc = -1;
  3892. text = "Exit";
  3893. x = 0;
  3894. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (8 - 1)";
  3895. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3896. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3897. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3898. action = "[0] call cTab_fnc_userMenuSelect;";
  3899. };
  3900. };
  3901. };
  3902. class CasulSub1: cTab_RscControlsGroup
  3903. {
  3904. idc = 3305;
  3905. x = "safeZoneXAbs + safeZoneWAbs";
  3906. y = "safeZoneY + safeZoneH";
  3907. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3908. h = "(5 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3909. class controls
  3910. {
  3911. class IGUIBack_2204: cTab_IGUIBack
  3912. {
  3913. idc = 2204;
  3914. x = 0;
  3915. y = 0;
  3916. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3917. h = "(5 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3918. };
  3919. class casltybtn: cTab_MenuItem
  3920. {
  3921. idc = 2024;
  3922. text = "Casualty";
  3923. x = 0;
  3924. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  3925. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3926. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3927. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3928. action = "cTabUserSelIcon set [1,20];[1] call cTab_fnc_userMenuSelect;";
  3929. };
  3930. class ccpbtn: cTab_MenuItem
  3931. {
  3932. idc = 2025;
  3933. text = "CCP";
  3934. toolTip = "Casualty Collection Point";
  3935. x = 0;
  3936. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  3937. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3938. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3939. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3940. action = "cTabUserSelIcon set [1,21];[1] call cTab_fnc_userMenuSelect;";
  3941. };
  3942. class basbtn: cTab_MenuItem
  3943. {
  3944. idc = 2026;
  3945. text = "BAS";
  3946. toolTip = "Battalion Aid Station";
  3947. x = 0;
  3948. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  3949. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3950. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3951. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3952. action = "cTabUserSelIcon set [1,22];[1] call cTab_fnc_userMenuSelect;";
  3953. };
  3954. class mcibtn: cTab_MenuItem
  3955. {
  3956. idc = 2031;
  3957. text = "MCI";
  3958. toolTip = "Mass Casualty Incident";
  3959. x = 0;
  3960. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (4 - 1)";
  3961. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3962. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3963. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3964. action = "cTabUserSelIcon set [1,23];[1] call cTab_fnc_userMenuSelect;";
  3965. };
  3966. class exit: cTab_MenuExit
  3967. {
  3968. idc = -1;
  3969. text = "Exit";
  3970. x = 0;
  3971. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (5 - 1)";
  3972. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3973. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3974. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  3975. action = "[0] call cTab_fnc_userMenuSelect;";
  3976. };
  3977. };
  3978. };
  3979. class GenSub1: cTab_RscControlsGroup
  3980. {
  3981. idc = 3306;
  3982. x = "safeZoneXAbs + safeZoneWAbs";
  3983. y = "safeZoneY + safeZoneH";
  3984. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3985. h = "(3 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3986. class controls
  3987. {
  3988. class IGUIBack_2205: cTab_IGUIBack
  3989. {
  3990. idc = 2205;
  3991. x = 0;
  3992. y = 0;
  3993. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  3994. h = "(3 + 0.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  3995. };
  3996. class hqbtn: cTab_MenuItem
  3997. {
  3998. idc = 2027;
  3999. text = "HQ";
  4000. toolTip = "Headquaters";
  4001. x = 0;
  4002. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (1 - 1)";
  4003. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  4004. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  4005. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  4006. action = "cTabUserSelIcon set [1,30];[1] call cTab_fnc_userMenuSelect;";
  4007. };
  4008. class lzbtn: cTab_MenuItem
  4009. {
  4010. idc = 2028;
  4011. text = "LZ";
  4012. toolTip = "Landing Zone";
  4013. x = 0;
  4014. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (2 - 1)";
  4015. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  4016. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  4017. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  4018. action = "cTabUserSelIcon set [1,31];[1] call cTab_fnc_userMenuSelect;";
  4019. };
  4020. class exit: cTab_MenuExit
  4021. {
  4022. idc = -1;
  4023. text = "Exit";
  4024. x = 0;
  4025. y = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8 * (3 - 1)";
  4026. w = "(12 + 1.5) * ((24)) / 2048 * ( (safezoneW) * 4/3) * 3/4 * 0.5";
  4027. h = "((24)) / 2048 * ( (safezoneW) * 4/3) / 0.8";
  4028. sizeEx = "((24)) / 2048 * ( (safezoneW) * 4/3)";
  4029. action = "[0] call cTab_fnc_userMenuSelect;";
  4030. };
  4031. };
  4032. };
  4033. class notification: cTab_FBCB2_notification{};
  4034. class loadingtxt: cTab_FBCB2_loadingtxt{};
  4035. };
  4036. };
  4037. class cTab_RscButton_TAD_OSB: cTab_RscButtonInv
  4038. {
  4039. w = "((134) / 2048 * (safezoneH * 0.8 * 3/4))";
  4040. h = "((134) / 2048 * (safezoneH * 0.8))";
  4041. };
  4042. class cTab_RscButton_TAD_OSB01: cTab_RscButton_TAD_OSB
  4043. {
  4044. x = "((577) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4045. y = "((146) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4046. };
  4047. class cTab_RscButton_TAD_OSB02: cTab_RscButton_TAD_OSB01
  4048. {
  4049. x = "((767) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4050. };
  4051. class cTab_RscButton_TAD_OSB03: cTab_RscButton_TAD_OSB01
  4052. {
  4053. x = "((957) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4054. };
  4055. class cTab_RscButton_TAD_OSB04: cTab_RscButton_TAD_OSB01
  4056. {
  4057. x = "((1147) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4058. };
  4059. class cTab_RscButton_TAD_OSB05: cTab_RscButton_TAD_OSB01
  4060. {
  4061. x = "((1337) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4062. };
  4063. class cTab_RscButton_TAD_OSB06: cTab_RscButton_TAD_OSB
  4064. {
  4065. x = "((1782) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4066. y = "((563) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4067. };
  4068. class cTab_RscButton_TAD_OSB07: cTab_RscButton_TAD_OSB06
  4069. {
  4070. y = "((760) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4071. };
  4072. class cTab_RscButton_TAD_OSB08: cTab_RscButton_TAD_OSB06
  4073. {
  4074. y = "((957) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4075. };
  4076. class cTab_RscButton_TAD_OSB09: cTab_RscButton_TAD_OSB06
  4077. {
  4078. y = "((1155) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4079. };
  4080. class cTab_RscButton_TAD_OSB10: cTab_RscButton_TAD_OSB06
  4081. {
  4082. y = "((1352) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4083. };
  4084. class cTab_RscButton_TAD_OSB11: cTab_RscButton_TAD_OSB
  4085. {
  4086. x = "((1337) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4087. y = "((1811) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4088. };
  4089. class cTab_RscButton_TAD_OSB12: cTab_RscButton_TAD_OSB11
  4090. {
  4091. x = "((1147) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4092. };
  4093. class cTab_RscButton_TAD_OSB13: cTab_RscButton_TAD_OSB11
  4094. {
  4095. x = "((957) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4096. };
  4097. class cTab_RscButton_TAD_OSB14: cTab_RscButton_TAD_OSB11
  4098. {
  4099. x = "((767) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4100. };
  4101. class cTab_RscButton_TAD_OSB15: cTab_RscButton_TAD_OSB11
  4102. {
  4103. x = "((577) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4104. };
  4105. class cTab_RscButton_TAD_OSB16: cTab_RscButton_TAD_OSB
  4106. {
  4107. x = "((132) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4108. y = "((1352) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4109. };
  4110. class cTab_RscButton_TAD_OSB17: cTab_RscButton_TAD_OSB16
  4111. {
  4112. y = "((1155) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4113. };
  4114. class cTab_RscButton_TAD_OSB18: cTab_RscButton_TAD_OSB16
  4115. {
  4116. y = "((957) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4117. };
  4118. class cTab_RscButton_TAD_OSB19: cTab_RscButton_TAD_OSB16
  4119. {
  4120. y = "((760) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4121. };
  4122. class cTab_RscButton_TAD_OSB20: cTab_RscButton_TAD_OSB16
  4123. {
  4124. y = "((563) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4125. };
  4126. class cTab_RscButton_TAD_ADJ_INC: cTab_RscButtonInv
  4127. {
  4128. x = "((124) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4129. y = "((257) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4130. w = "((142) / 2048 * (safezoneH * 0.8 * 3/4))";
  4131. h = "((119) / 2048 * (safezoneH * 0.8))";
  4132. };
  4133. class cTab_RscButton_TAD_ADJ_DEC: cTab_RscButton_TAD_ADJ_INC
  4134. {
  4135. y = "((376) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4136. };
  4137. class cTab_RscButton_TAD_DSP_INC: cTab_RscButton_TAD_ADJ_INC
  4138. {
  4139. x = "((1782) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4140. };
  4141. class cTab_RscButton_TAD_DSP_DEC: cTab_RscButton_TAD_DSP_INC
  4142. {
  4143. y = "((376) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4144. };
  4145. class cTab_RscButton_TAD_CON_INC: cTab_RscButton_TAD_ADJ_INC
  4146. {
  4147. y = "((1539) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4148. };
  4149. class cTab_RscButton_TAD_CON_DEC: cTab_RscButton_TAD_CON_INC
  4150. {
  4151. y = "((1658) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4152. };
  4153. class cTab_RscButton_TAD_BRT_INC: cTab_RscButton_TAD_CON_INC
  4154. {
  4155. x = "((1782) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4156. };
  4157. class cTab_RscButton_TAD_BRT_DEC: cTab_RscButton_TAD_BRT_INC
  4158. {
  4159. y = "((1658) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4160. };
  4161. class cTab_RscButton_TAD_SYM_INC: cTab_RscButtonInv
  4162. {
  4163. x = "((1663) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4164. y = "((1811) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4165. w = "((119) / 2048 * (safezoneH * 0.8 * 3/4))";
  4166. h = "((142) / 2048 * (safezoneH * 0.8))";
  4167. };
  4168. class cTab_RscButton_TAD_SYM_DEC: cTab_RscButton_TAD_SYM_INC
  4169. {
  4170. x = "((1544) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4171. };
  4172. class cTab_RscButton_TAD_DNO: cTab_RscButtonInv
  4173. {
  4174. x = "((234) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4175. y = "((1894) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4176. w = "((142) / 2048 * (safezoneH * 0.8 * 3/4))";
  4177. h = "((142) / 2048 * (safezoneH * 0.8))";
  4178. };
  4179. class cTab_RscText_TAD: cTab_RscText
  4180. {
  4181. style = 2;
  4182. w = "(((26)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4183. h = "(((53)) / 2048 * (safezoneH * 0.8))";
  4184. font = "EtelkaMonospacePro";
  4185. colorText[] = {"57/255","255/255","20/255",1};
  4186. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4187. colorBackground[] = {0,0,0,1};
  4188. shadow = 0;
  4189. };
  4190. class cTab_TAD_upDownArrow: cTab_RscPicture
  4191. {
  4192. w = "(((26)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4193. h = "(((32)) / 2048 * (safezoneH * 0.8))";
  4194. colorText[] = {"57/255","255/255","20/255",1};
  4195. colorBackground[] = {0,0,0,1};
  4196. text = "\a3\ui_f\data\IGUI\Cfg\Actions\autohover_ca.paa";
  4197. };
  4198. class cTab_TAD_RscMapControl: cTab_RscMapControl
  4199. {
  4200. text = "#(argb,8,8,3)color(1,1,1,1)";
  4201. x = "(((359)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4202. y = "(((371)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4203. w = "(((1330)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4204. h = "(((1345)) / 2048 * (safezoneH * 0.8))";
  4205. scaleMax = 1000;
  4206. scaleDefault = "(missionNamespace getVariable 'cTabMapScale') * 0.86 / (safezoneH * 0.8)";
  4207. maxSatelliteAlpha = 10000;
  4208. alphaFadeStartScale = 10;
  4209. alphaFadeEndScale = 10;
  4210. ptsPerSquareSea = "8 / (0.86 / (safezoneH * 0.8))";
  4211. ptsPerSquareTxt = "8 / (0.86 / (safezoneH * 0.8))";
  4212. ptsPerSquareCLn = "8 / (0.86 / (safezoneH * 0.8))";
  4213. ptsPerSquareExp = "8 / (0.86 / (safezoneH * 0.8))";
  4214. ptsPerSquareCost = "8 / (0.86 / (safezoneH * 0.8))";
  4215. ptsPerSquareFor = "3 / (0.86 / (safezoneH * 0.8))";
  4216. ptsPerSquareForEdge = "100 / (0.86 / (safezoneH * 0.8))";
  4217. ptsPerSquareRoad = "1.5 / (0.86 / (safezoneH * 0.8))";
  4218. ptsPerSquareObj = "4 / (0.86 / (safezoneH * 0.8))";
  4219. widthRailWay = 1;
  4220. };
  4221. class cTab_TAD_RscMapControl_BLACK: cTab_TAD_RscMapControl
  4222. {
  4223. font = "TahomaB";
  4224. sizeEx = 0;
  4225. maxSatelliteAlpha = 0;
  4226. colorBackground[] = {0,0,0,0};
  4227. colorLevels[] = {0,0,0,0};
  4228. colorSea[] = {0,0,0,0};
  4229. colorForest[] = {0,0,0,0};
  4230. colorRocks[] = {0,0,0,0};
  4231. colorCountlines[] = {0,0,0,0};
  4232. colorMainCountlines[] = {0,0,0,0};
  4233. colorCountlinesWater[] = {0,0,0,0};
  4234. colorMainCountlinesWater[] = {0,0,0,0};
  4235. colorPowerLines[] = {0,0,0,0};
  4236. colorRailWay[] = {0,0,0,0};
  4237. colorForestBorder[] = {0,0,0,0};
  4238. colorRocksBorder[] = {0,0,0,0};
  4239. colorNames[] = {0,0,0,0};
  4240. colorInactive[] = {0,0,0,0};
  4241. colorOutside[] = {0,0,0,0};
  4242. colorText[] = {0,0,0,0};
  4243. colorGrid[] = {0,0,0,0};
  4244. colorGridMap[] = {0,0,0,0};
  4245. colorTracks[] = {0,0,0,0};
  4246. colorTracksFill[] = {0,0,0,0};
  4247. colorRoads[] = {0,0,0,0};
  4248. colorRoadsFill[] = {0,0,0,0};
  4249. colorMainRoads[] = {0,0,0,0};
  4250. colorMainRoadsFill[] = {0,0,0,0};
  4251. ShowCountourInterval = 0;
  4252. shadow = 0;
  4253. text = "";
  4254. alphaFadeStartScale = 0;
  4255. alphaFadeEndScale = 0;
  4256. fontLabel = "TahomaB";
  4257. sizeExLabel = 0;
  4258. fontGrid = "TahomaB";
  4259. sizeExGrid = 0;
  4260. fontUnits = "TahomaB";
  4261. sizeExUnits = 0;
  4262. fontNames = "TahomaB";
  4263. sizeExNames = 0;
  4264. fontInfo = "TahomaB";
  4265. sizeExInfo = 0;
  4266. fontLevel = "TahomaB";
  4267. sizeExLevel = 0;
  4268. stickX[] = {0,{"Gamma",0,0}};
  4269. stickY[] = {0,{"Gamma",0,0}};
  4270. ptsPerSquareSea = 10000;
  4271. ptsPerSquareTxt = 10000;
  4272. ptsPerSquareCLn = 10000;
  4273. ptsPerSquareExp = 10000;
  4274. ptsPerSquareCost = 10000;
  4275. ptsPerSquareFor = 10000;
  4276. ptsPerSquareForEdge = 10000;
  4277. ptsPerSquareRoad = 10000;
  4278. ptsPerSquareObj = 10000;
  4279. widthRailWay = 1;
  4280. class Task
  4281. {
  4282. icon = "";
  4283. color[] = {0,0,0,0};
  4284. iconCreated = "";
  4285. colorCreated[] = {0,0,0,0};
  4286. iconCanceled = "";
  4287. colorCanceled[] = {0,0,0,0};
  4288. iconDone = "";
  4289. colorDone[] = {0,0,0,0};
  4290. iconFailed = "";
  4291. colorFailed[] = {0,0,0,0};
  4292. size = 0;
  4293. importance = 0;
  4294. coefMin = 0;
  4295. coefMax = 0;
  4296. };
  4297. class CustomMark
  4298. {
  4299. icon = "";
  4300. color[] = {0,0,0,0};
  4301. size = 0;
  4302. importance = 0;
  4303. coefMin = 0;
  4304. coefMax = 0;
  4305. };
  4306. class Bunker
  4307. {
  4308. icon = "";
  4309. color[] = {0,0,0,0};
  4310. size = 0;
  4311. importance = 0;
  4312. coefMin = 0;
  4313. coefMax = 0;
  4314. };
  4315. class Bush
  4316. {
  4317. icon = "";
  4318. color[] = {0,0,0,0};
  4319. size = 0;
  4320. importance = 0;
  4321. coefMin = 0;
  4322. coefMax = 0;
  4323. };
  4324. class BusStop
  4325. {
  4326. icon = "";
  4327. color[] = {0,0,0,0};
  4328. size = 0;
  4329. importance = 0;
  4330. coefMin = 0;
  4331. coefMax = 0;
  4332. };
  4333. class Command
  4334. {
  4335. icon = "";
  4336. color[] = {0,0,0,0};
  4337. size = 0;
  4338. importance = 0;
  4339. coefMin = 0;
  4340. coefMax = 0;
  4341. };
  4342. class Cross
  4343. {
  4344. icon = "";
  4345. color[] = {0,0,0,0};
  4346. size = 0;
  4347. importance = 0;
  4348. coefMin = 0;
  4349. coefMax = 0;
  4350. };
  4351. class Fortress
  4352. {
  4353. icon = "";
  4354. color[] = {0,0,0,0};
  4355. size = 0;
  4356. importance = 0;
  4357. coefMin = 0;
  4358. coefMax = 0;
  4359. };
  4360. class Fuelstation
  4361. {
  4362. icon = "";
  4363. color[] = {0,0,0,0};
  4364. size = 0;
  4365. importance = 0;
  4366. coefMin = 0;
  4367. coefMax = 0;
  4368. };
  4369. class Fountain
  4370. {
  4371. icon = "";
  4372. color[] = {0,0,0,0};
  4373. size = 0;
  4374. importance = 0;
  4375. coefMin = 0;
  4376. coefMax = 0;
  4377. };
  4378. class Hospital
  4379. {
  4380. icon = "";
  4381. color[] = {0,0,0,0};
  4382. size = 0;
  4383. importance = 0;
  4384. coefMin = 0;
  4385. coefMax = 0;
  4386. };
  4387. class Chapel
  4388. {
  4389. icon = "";
  4390. color[] = {0,0,0,0};
  4391. size = 0;
  4392. importance = 0;
  4393. coefMin = 0;
  4394. coefMax = 0;
  4395. };
  4396. class Church
  4397. {
  4398. icon = "";
  4399. color[] = {0,0,0,0};
  4400. size = 0;
  4401. importance = 0;
  4402. coefMin = 0;
  4403. coefMax = 0;
  4404. };
  4405. class Lighthouse
  4406. {
  4407. icon = "";
  4408. color[] = {0,0,0,0};
  4409. size = 0;
  4410. importance = 0;
  4411. coefMin = 0;
  4412. coefMax = 0;
  4413. };
  4414. class Quay
  4415. {
  4416. icon = "";
  4417. color[] = {0,0,0,0};
  4418. size = 0;
  4419. importance = 0;
  4420. coefMin = 0;
  4421. coefMax = 0;
  4422. };
  4423. class Rock
  4424. {
  4425. icon = "";
  4426. color[] = {0,0,0,0};
  4427. size = 0;
  4428. importance = 0;
  4429. coefMin = 0;
  4430. coefMax = 0;
  4431. };
  4432. class Ruin
  4433. {
  4434. icon = "";
  4435. color[] = {0,0,0,0};
  4436. size = 0;
  4437. importance = 0;
  4438. coefMin = 0;
  4439. coefMax = 0;
  4440. };
  4441. class SmallTree
  4442. {
  4443. icon = "";
  4444. color[] = {0,0,0,0};
  4445. size = 0;
  4446. importance = 0;
  4447. coefMin = 0;
  4448. coefMax = 0;
  4449. };
  4450. class Stack
  4451. {
  4452. icon = "";
  4453. color[] = {0,0,0,0};
  4454. size = 0;
  4455. importance = 0;
  4456. coefMin = 0;
  4457. coefMax = 0;
  4458. };
  4459. class Tree
  4460. {
  4461. icon = "";
  4462. color[] = {0,0,0,0};
  4463. size = 0;
  4464. importance = 0;
  4465. coefMin = 0;
  4466. coefMax = 0;
  4467. };
  4468. class Tourism
  4469. {
  4470. icon = "";
  4471. color[] = {0,0,0,0};
  4472. size = 0;
  4473. importance = 0;
  4474. coefMin = 0;
  4475. coefMax = 0;
  4476. };
  4477. class Transmitter
  4478. {
  4479. icon = "";
  4480. color[] = {0,0,0,0};
  4481. size = 0;
  4482. importance = 0;
  4483. coefMin = 0;
  4484. coefMax = 0;
  4485. };
  4486. class ViewTower
  4487. {
  4488. icon = "";
  4489. color[] = {0,0,0,0};
  4490. size = 0;
  4491. importance = 0;
  4492. coefMin = 0;
  4493. coefMax = 0;
  4494. };
  4495. class Watertower
  4496. {
  4497. icon = "";
  4498. color[] = {0,0,0,0};
  4499. size = 0;
  4500. importance = 0;
  4501. coefMin = 0;
  4502. coefMax = 0;
  4503. };
  4504. class Waypoint
  4505. {
  4506. icon = "";
  4507. color[] = {0,0,0,0};
  4508. size = 0;
  4509. importance = 0;
  4510. coefMin = 0;
  4511. coefMax = 0;
  4512. };
  4513. class WaypointCompleted
  4514. {
  4515. icon = "";
  4516. color[] = {0,0,0,0};
  4517. size = 0;
  4518. importance = 0;
  4519. coefMin = 0;
  4520. coefMax = 0;
  4521. };
  4522. class ActiveMarker
  4523. {
  4524. icon = "";
  4525. color[] = {0,0,0,0};
  4526. size = 0;
  4527. importance = 0;
  4528. coefMin = 0;
  4529. coefMax = 0;
  4530. };
  4531. class PowerSolar
  4532. {
  4533. icon = "";
  4534. color[] = {0,0,0,0};
  4535. size = 0;
  4536. importance = 0;
  4537. coefMin = 0;
  4538. coefMax = 0;
  4539. };
  4540. class PowerWave
  4541. {
  4542. icon = "";
  4543. color[] = {0,0,0,0};
  4544. size = 0;
  4545. importance = 0;
  4546. coefMin = 0;
  4547. coefMax = 0;
  4548. };
  4549. class PowerWind
  4550. {
  4551. icon = "";
  4552. color[] = {0,0,0,0};
  4553. size = 0;
  4554. importance = 0;
  4555. coefMin = 0;
  4556. coefMax = 0;
  4557. };
  4558. class Shipwreck
  4559. {
  4560. icon = "";
  4561. color[] = {0,0,0,0};
  4562. size = 0;
  4563. importance = 0;
  4564. coefMin = 0;
  4565. coefMax = 0;
  4566. };
  4567. };
  4568. class cTab_TAD_Map_Background: cTab_RscText
  4569. {
  4570. idc = 1;
  4571. x = "(((359)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4572. y = "(((371)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4573. w = "(((1330)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4574. h = "(((1345)) / 2048 * (safezoneH * 0.8))";
  4575. colorBackground[] = {0,0,0,1};
  4576. };
  4577. class cTab_TAD_background: cTab_RscPicture
  4578. {
  4579. idc = 1200;
  4580. text = "";
  4581. x = "(safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  4582. y = "(safezoneY + 0.1 * safezoneH)";
  4583. w = "(safezoneH * 0.8 * 3/4)";
  4584. h = "(safezoneH * 0.8)";
  4585. };
  4586. class cTab_TAD_OSD_hookGrid: cTab_RscText_TAD
  4587. {
  4588. idc = 2617;
  4589. style = 2;
  4590. x = "((((1384)) - (26) * 4) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4591. y = "(((1398) - (53) * 0.5 + (53) * 1) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4592. w = "(((26) * 6) / 2048 * (safezoneH * 0.8 * 3/4))";
  4593. };
  4594. class cTab_TAD_OSD_hookElevation: cTab_TAD_OSD_hookGrid
  4595. {
  4596. idc = 2620;
  4597. x = "((((1384)) - (26) * 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4598. y = "(((1398) - (53) * 0.5 + (53) * 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4599. w = "(((28) * 4) / 2048 * (safezoneH * 0.8 * 3/4))";
  4600. };
  4601. class cTab_TAD_OSD_hookDir: cTab_TAD_OSD_hookGrid
  4602. {
  4603. idc = 2618;
  4604. x = "((((1384)) - (26) * 6) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4605. y = "(((1398) - (53) * 0.5 + (53) * 0) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4606. w = "(((30) * 8) / 2048 * (safezoneH * 0.8 * 3/4))";
  4607. };
  4608. class cTab_TAD_OSD_hookToggleIconBackground: cTab_RscText_TAD
  4609. {
  4610. idc = 2;
  4611. x = "((((24) + (359)) + (36) - (26)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4612. y = "((((1023)) - (53) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4613. };
  4614. class cTab_TAD_OSD_hookToggleIcon: cTab_TAD_upDownArrow
  4615. {
  4616. idc = 3;
  4617. x = "((((24) + (359)) + (36) - (26)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4618. y = "((((1023)) - (32) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4619. };
  4620. class cTab_TAD_OSD_hookToggleText1: cTab_RscText_TAD
  4621. {
  4622. idc = 2621;
  4623. x = "((((24) + (359)) + (36)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4624. y = "((((1023)) - (53)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4625. w = "(((26) * 4) / 2048 * (safezoneH * 0.8 * 3/4))";
  4626. };
  4627. class cTab_TAD_OSD_hookToggleText2: cTab_TAD_OSD_hookToggleText1
  4628. {
  4629. idc = 2622;
  4630. y = "((((1023))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4631. };
  4632. class cTab_TAD_OSD_currentDirection: cTab_RscText_TAD
  4633. {
  4634. idc = 2615;
  4635. x = "((((844)) - (26) * 4 / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4636. y = "(((-(24) + (371) + (1345)) - (53) * 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4637. w = "(((26) * 4) / 2048 * (safezoneH * 0.8 * 3/4))";
  4638. };
  4639. class cTab_TAD_OSD_currentElevation: cTab_TAD_OSD_currentDirection
  4640. {
  4641. idc = 2623;
  4642. x = "((((1202)) - (26) * 5 / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4643. w = "(((26) * 5) / 2048 * (safezoneH * 0.8 * 3/4))";
  4644. };
  4645. class cTab_TAD_OSD_centerMapText: cTab_RscText_TAD
  4646. {
  4647. idc = 4;
  4648. x = "((((24) + (359)) + (36)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4649. y = "((((836)) - (53) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4650. w = "(((26) * 3) / 2048 * (safezoneH * 0.8 * 3/4))";
  4651. text = "CTR";
  4652. };
  4653. class cTab_TAD_loadingtxt: cTab_RscText_TAD
  4654. {
  4655. idc = 1000;
  4656. style = 2;
  4657. text = "Loading";
  4658. x = "(((359)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4659. y = "(((371)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4660. w = "(((1330)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4661. h = "(((1345)) / 2048 * (safezoneH * 0.8))";
  4662. };
  4663. class cTab_TAD_OSD_cursor: cTab_RscPicture
  4664. {
  4665. idc = 5;
  4666. text = "\a3\ui_f\data\IGUI\Cfg\WeaponCursors\cursoraimon_gs.paa";
  4667. x = "(((359) + (1330) / 2 - 128 / 33 * (48) / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4668. y = "(((371) + (1345) / 2 - 128 / 33 * (48) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4669. w = "((128 / 33 * (48)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4670. h = "((128 / 33 * (48)) / 2048 * (safezoneH * 0.8))";
  4671. colorText[] = {"57/255","255/255","20/255",1};
  4672. };
  4673. class cTab_TAD_OSD_navModeOrScale: cTab_RscText_TAD
  4674. {
  4675. idc = 2614;
  4676. x = "(((-(24) + (359) + (1330)) - (38) * 4) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4677. y = "((((24) + (371))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4678. w = "(((38) * 4) / 2048 * (safezoneH * 0.8 * 3/4))";
  4679. h = "(((82)) / 2048 * (safezoneH * 0.8))";
  4680. sizeEx = "(((66)) / 2048 * (safezoneH * 0.8))";
  4681. };
  4682. class cTab_TAD_OSD_modeTAD: cTab_RscText_TAD
  4683. {
  4684. idc = 6;
  4685. x = "((((661)) - (26) * 3 / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4686. y = "(((-(24) + (371) + (1345)) - (53)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4687. w = "(((26) * 3) / 2048 * (safezoneH * 0.8 * 3/4))";
  4688. colorText[] = {0,0,0,1};
  4689. colorBackground[] = {"57/255","255/255","20/255",1};
  4690. text = "TAD";
  4691. };
  4692. class cTab_TAD_OSD_txtToggleIconBg: cTab_RscText_TAD
  4693. {
  4694. idc = 7;
  4695. x = "(((-(24) + (359) + (1330)) - (36)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4696. y = "(((1398) - (53) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4697. };
  4698. class cTab_TAD_OSD_txtToggleIcon: cTab_TAD_upDownArrow
  4699. {
  4700. idc = 8;
  4701. x = "(((-(24) + (359) + (1330)) - (36)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4702. y = "(((1398) - (32) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4703. };
  4704. class cTab_TAD_OSD_txtToggleText1: cTab_RscText_TAD
  4705. {
  4706. idc = 9;
  4707. x = "(((-(24) + (359) + (1330)) - (36) - (26) * 3) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4708. y = "(((1398) - (53)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4709. w = "(((26) * 3) / 2048 * (safezoneH * 0.8 * 3/4))";
  4710. text = "TXT";
  4711. };
  4712. class cTab_TAD_OSD_txtToggleText2: cTab_RscText_TAD
  4713. {
  4714. idc = 2610;
  4715. x = "(((-(24) + (359) + (1330)) - (36) - (26) * 3) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4716. y = "(((1398)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4717. w = "(((26) * 3) / 2048 * (safezoneH * 0.8 * 3/4))";
  4718. };
  4719. class cTab_TAD_OSD_time: cTab_RscText_TAD
  4720. {
  4721. idc = 2613;
  4722. x = "((((24) + (359))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4723. y = "(((-(24) + (371) + (1345)) - (53)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4724. w = "(((26) * 5) / 2048 * (safezoneH * 0.8 * 3/4))";
  4725. };
  4726. class cTab_TAD_OSD_currentGrid: cTab_RscText_TAD
  4727. {
  4728. idc = 2612;
  4729. x = "((((1023)) - (26) * 6 / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4730. y = "(((-(24) + (371) + (1345)) - (53) * 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4731. w = "(((26) * 6) / 2048 * (safezoneH * 0.8 * 3/4))";
  4732. };
  4733. class cTab_TAD_OSD_mapToggleIconBg: cTab_RscText_TAD
  4734. {
  4735. idc = 10;
  4736. x = "((((24) + (359)) + (36) - (26)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4737. y = "((((647)) - (53) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4738. };
  4739. class cTab_TAD_OSD_mapToggleIcon: cTab_TAD_upDownArrow
  4740. {
  4741. idc = 11;
  4742. x = "((((24) + (359)) + (36) - (26)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4743. y = "((((647)) - (32) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4744. };
  4745. class cTab_TAD_OSD_mapToggleText1: cTab_RscText_TAD
  4746. {
  4747. idc = 12;
  4748. x = "((((24) + (359)) + (36)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4749. y = "((((647)) - (53)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4750. w = "(((26) * 3) / 2048 * (safezoneH * 0.8 * 3/4))";
  4751. text = "MAP";
  4752. };
  4753. class cTab_TAD_OSD_mapToggleText2: cTab_RscText_TAD
  4754. {
  4755. idc = 2611;
  4756. x = "((((24) + (359)) + (36)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4757. y = "((((647))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4758. w = "(((26) * 4) / 2048 * (safezoneH * 0.8 * 3/4))";
  4759. };
  4760. class cTab_TAD_movingHandle_T: cTab_RscText_TAD
  4761. {
  4762. idc = 13;
  4763. moving = 1;
  4764. colorBackground[] = {0,0,0,0};
  4765. x = "((0) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4766. y = "((0) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4767. w = "((2048 ) / 2048 * (safezoneH * 0.8 * 3/4))";
  4768. h = "(((371)) / 2048 * (safezoneH * 0.8))";
  4769. };
  4770. class cTab_TAD_movingHandle_B: cTab_TAD_movingHandle_T
  4771. {
  4772. idc = 14;
  4773. y = "(((371) + (1345)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4774. h = "((2048 - ((371) + (1345))) / 2048 * (safezoneH * 0.8))";
  4775. };
  4776. class cTab_TAD_movingHandle_L: cTab_TAD_movingHandle_T
  4777. {
  4778. idc = 15;
  4779. y = "(((371)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4780. w = "(((359)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4781. h = "(((1345)) / 2048 * (safezoneH * 0.8))";
  4782. };
  4783. class cTab_TAD_movingHandle_R: cTab_TAD_movingHandle_L
  4784. {
  4785. idc = 16;
  4786. x = "(((359) + (1330)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4787. w = "((2048 - ((359) + (1330))) / 2048 * (safezoneH * 0.8 * 3/4))";
  4788. };
  4789. class cTab_TAD_brightness: cTab_RscText_TAD
  4790. {
  4791. idc = 1005;
  4792. x = "(((359)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4793. y = "(((371)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4794. w = "(((1330)) / 2048 * (safezoneH * 0.8 * 3/4))";
  4795. h = "(((1345)) / 2048 * (safezoneH * 0.8))";
  4796. colorBackground[] = {0,0,0,0};
  4797. };
  4798. class cTab_TAD_notification: cTab_RscText_TAD
  4799. {
  4800. idc = 1620;
  4801. x = "(((359) + ((1330) * 0.2) / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2))";
  4802. y = "(((-(24) + (371) + (1345)) - (53) * 3) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH))";
  4803. w = "(((1330) * 0.8) / 2048 * (safezoneH * 0.8 * 3/4))";
  4804. colorText[] = {0,0,"128/255",1};
  4805. colorBackground[] = {1,1,1,1};
  4806. };
  4807. class cTab_TAD_dlg
  4808. {
  4809. idd = 1755424;
  4810. movingEnable = "true";
  4811. onLoad = "_this call cTab_fnc_onIfOpen;";
  4812. onUnload = "[] call cTab_fnc_onIfclose;";
  4813. onKeyDown = "_this call cTab_fnc_onIfKeyDown;";
  4814. objects[] = {};
  4815. class controlsBackground
  4816. {
  4817. class mapBackground: cTab_TAD_Map_Background{};
  4818. class screen: cTab_TAD_RscMapControl
  4819. {
  4820. idc = 1201;
  4821. onDraw = "nop = _this call cTabOnDrawbftTADdialog;";
  4822. onMouseButtonDblClick = "_ok = [3300,_this] execVM '\ClonecTab\shared\cTab_markerMenu_load.sqf';";
  4823. onMouseMoving = "cTabCursorOnMap = _this select 3;cTabMapCursorPos = _this select 0 ctrlMapScreenToWorld [_this select 1,_this select 2];";
  4824. };
  4825. class screenTopo: screen
  4826. {
  4827. idc = 1202;
  4828. maxSatelliteAlpha = 0;
  4829. };
  4830. class screenBlack: cTab_TAD_RscMapControl_BLACK
  4831. {
  4832. idc = 1203;
  4833. onDraw = "nop = _this call cTabOnDrawbftTADdialog;";
  4834. onMouseButtonDblClick = "_ok = [3300,_this] execVM '\ClonecTab\shared\cTab_markerMenu_load.sqf';";
  4835. onMouseMoving = "cTabCursorOnMap = _this select 3;cTabMapCursorPos = _this select 0 ctrlMapScreenToWorld [_this select 1,_this select 2];";
  4836. };
  4837. };
  4838. class controls
  4839. {
  4840. class navMode: cTab_TAD_OSD_navModeOrScale
  4841. {
  4842. text = "EXT1";
  4843. };
  4844. class modeTAD: cTab_TAD_OSD_modeTAD{};
  4845. class txtToggleIconBg: cTab_TAD_OSD_txtToggleIconBg{};
  4846. class txtToggleIcon: cTab_TAD_OSD_txtToggleIcon{};
  4847. class txtToggleText1: cTab_TAD_OSD_txtToggleText1{};
  4848. class txtToggleText2: cTab_TAD_OSD_txtToggleText2{};
  4849. class time: cTab_TAD_OSD_time{};
  4850. class currentGrid: cTab_TAD_OSD_currentGrid{};
  4851. class mapToggleIconBg: cTab_TAD_OSD_mapToggleIconBg{};
  4852. class mapToggleIcon: cTab_TAD_OSD_mapToggleIcon{};
  4853. class mapToggleText1: cTab_TAD_OSD_mapToggleText1{};
  4854. class mapToggleText2: cTab_TAD_OSD_mapToggleText2{};
  4855. class hookGrid: cTab_TAD_OSD_hookGrid{};
  4856. class hookElevation: cTab_TAD_OSD_hookElevation{};
  4857. class hookDir: cTab_TAD_OSD_hookDir{};
  4858. class hookToggleIconBackground: cTab_TAD_OSD_hookToggleIconBackground{};
  4859. class hookToggleIcon: cTab_TAD_OSD_hookToggleIcon{};
  4860. class hookToggleText1: cTab_TAD_OSD_hookToggleText1{};
  4861. class hookToggleText2: cTab_TAD_OSD_hookToggleText2{};
  4862. class on_screen_currentDirection: cTab_TAD_OSD_currentDirection{};
  4863. class on_screen_currentElevation: cTab_TAD_OSD_currentElevation{};
  4864. class on_screen_centerMapText: cTab_TAD_OSD_centerMapText{};
  4865. class notification: cTab_TAD_notification{};
  4866. class loadingtxt: cTab_TAD_loadingtxt{};
  4867. class brightness: cTab_TAD_brightness{};
  4868. class MainSubmenu: cTab_RscControlsGroup
  4869. {
  4870. idc = 3300;
  4871. x = "safeZoneXAbs + safeZoneWAbs";
  4872. y = "safeZoneY + safeZoneH";
  4873. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4874. h = "(4 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4875. class controls
  4876. {
  4877. class mainbg: cTab_IGUIBack
  4878. {
  4879. idc = 2200;
  4880. x = 0;
  4881. y = 0;
  4882. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4883. h = "(4 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4884. };
  4885. class op4btn: cTab_MenuItem
  4886. {
  4887. idc = 2000;
  4888. text = "Enemy SALUTE";
  4889. x = 0;
  4890. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  4891. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4892. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4893. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4894. action = "[11] call cTab_fnc_userMenuSelect;";
  4895. };
  4896. class medbtn: cTab_MenuItem
  4897. {
  4898. idc = 2001;
  4899. text = "Medical";
  4900. x = 0;
  4901. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  4902. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4903. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4904. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4905. action = "[21] call cTab_fnc_userMenuSelect;";
  4906. };
  4907. class genbtn: cTab_MenuItem
  4908. {
  4909. idc = 2002;
  4910. text = "General";
  4911. x = 0;
  4912. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  4913. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4914. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4915. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4916. action = "[31] call cTab_fnc_userMenuSelect;";
  4917. };
  4918. class exit: cTab_MenuExit
  4919. {
  4920. idc = -1;
  4921. text = "Exit";
  4922. x = 0;
  4923. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (4 - 1)";
  4924. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4925. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4926. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4927. action = "[0] call cTab_fnc_userMenuSelect;";
  4928. };
  4929. };
  4930. };
  4931. class EnemySub1: cTab_RscControlsGroup
  4932. {
  4933. idc = 3301;
  4934. x = "safeZoneXAbs + safeZoneWAbs";
  4935. y = "safeZoneY + safeZoneH";
  4936. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4937. h = "(8 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4938. class controls
  4939. {
  4940. class IGUIBack_2201: cTab_IGUIBack
  4941. {
  4942. idc = 2202;
  4943. x = 0;
  4944. y = 0;
  4945. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4946. h = "(8 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4947. };
  4948. class infbtn: cTab_MenuItem
  4949. {
  4950. idc = 2003;
  4951. text = "Infantry";
  4952. x = 0;
  4953. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  4954. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4955. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4956. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4957. action = "cTabUserSelIcon set [1,0];[12] call cTab_fnc_userMenuSelect;";
  4958. };
  4959. class mecinfbtn: cTab_MenuItem
  4960. {
  4961. idc = 2004;
  4962. text = "Mechanized Inf";
  4963. toolTip = "Equipped with APCs/IFVs";
  4964. x = 0;
  4965. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  4966. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4967. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4968. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4969. action = "cTabUserSelIcon set [1,1];[12] call cTab_fnc_userMenuSelect;";
  4970. };
  4971. class motrinfbtn: cTab_MenuItem
  4972. {
  4973. idc = 2032;
  4974. text = "Motorized Inf";
  4975. toolTip = "Equipped with un-protected vehicles";
  4976. x = 0;
  4977. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  4978. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4979. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4980. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4981. action = "cTabUserSelIcon set [1,2];[12] call cTab_fnc_userMenuSelect;";
  4982. };
  4983. class amrbtn: cTab_MenuItem
  4984. {
  4985. idc = 2005;
  4986. text = "Armor";
  4987. x = 0;
  4988. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (4 - 1)";
  4989. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  4990. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  4991. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  4992. action = "cTabUserSelIcon set [1,3];[12] call cTab_fnc_userMenuSelect;";
  4993. };
  4994. class helibtn: cTab_MenuItem
  4995. {
  4996. idc = 2006;
  4997. text = "Helicopter";
  4998. x = 0;
  4999. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (5 - 1)";
  5000. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5001. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5002. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5003. action = "cTabUserSelIcon set [1,4];[12] call cTab_fnc_userMenuSelect;";
  5004. };
  5005. class plnbtn: cTab_MenuItem
  5006. {
  5007. idc = 2007;
  5008. text = "Plane";
  5009. x = 0;
  5010. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (6 - 1)";
  5011. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5012. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5013. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5014. action = "cTabUserSelIcon set [1,5];[12] call cTab_fnc_userMenuSelect;";
  5015. };
  5016. class uknbtn: cTab_MenuItem
  5017. {
  5018. idc = 2008;
  5019. text = "Unknown";
  5020. x = 0;
  5021. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (7 - 1)";
  5022. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5023. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5024. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5025. action = "cTabUserSelIcon set [1,6];[12] call cTab_fnc_userMenuSelect;";
  5026. };
  5027. class exit: cTab_MenuExit
  5028. {
  5029. idc = -1;
  5030. text = "Exit";
  5031. x = 0;
  5032. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (8 - 1)";
  5033. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5034. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5035. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5036. action = "[0] call cTab_fnc_userMenuSelect;";
  5037. };
  5038. };
  5039. };
  5040. class EnemySub2: cTab_RscControlsGroup
  5041. {
  5042. idc = 3303;
  5043. x = "safeZoneXAbs + safeZoneWAbs";
  5044. y = "safeZoneY + safeZoneH";
  5045. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5046. h = "(6 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5047. class controls
  5048. {
  5049. class IGUIBack_2202: cTab_IGUIBack
  5050. {
  5051. idc = 2202;
  5052. x = 0;
  5053. y = 0;
  5054. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5055. h = "(6 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5056. };
  5057. class ftbtn: cTab_MenuItem
  5058. {
  5059. idc = 2009;
  5060. text = "Singular";
  5061. x = 0;
  5062. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  5063. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5064. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5065. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5066. action = "[14] call cTab_fnc_userMenuSelect;";
  5067. };
  5068. class patbtn: cTab_MenuItem
  5069. {
  5070. idc = 2010;
  5071. text = "Patrol";
  5072. x = 0;
  5073. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  5074. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5075. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5076. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5077. action = "cTabUserSelIcon set [2,1];[13] call cTab_fnc_userMenuSelect;";
  5078. };
  5079. class sqdbtn: cTab_MenuItem
  5080. {
  5081. idc = 2011;
  5082. text = "Squad";
  5083. x = 0;
  5084. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  5085. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5086. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5087. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5088. action = "cTabUserSelIcon set [2,2];[13] call cTab_fnc_userMenuSelect;";
  5089. };
  5090. class sctbtn: cTab_MenuItem
  5091. {
  5092. idc = 2012;
  5093. text = "Section";
  5094. x = 0;
  5095. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (4 - 1)";
  5096. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5097. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5098. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5099. action = "cTabUserSelIcon set [2,3];[13] call cTab_fnc_userMenuSelect;";
  5100. };
  5101. class pltnbtn: cTab_MenuItem
  5102. {
  5103. idc = 2013;
  5104. text = "Platoon";
  5105. x = 0;
  5106. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (5 - 1)";
  5107. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5108. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5109. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5110. action = "cTabUserSelIcon set [2,4];[13] call cTab_fnc_userMenuSelect;";
  5111. };
  5112. class exit: cTab_MenuExit
  5113. {
  5114. idc = -1;
  5115. text = "Exit";
  5116. x = 0;
  5117. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (6 - 1)";
  5118. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5119. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5120. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5121. action = "[0] call cTab_fnc_userMenuSelect;";
  5122. };
  5123. };
  5124. };
  5125. class EnemySub3: cTab_RscControlsGroup
  5126. {
  5127. idc = 3304;
  5128. x = "safeZoneXAbs + safeZoneWAbs";
  5129. y = "safeZoneY + safeZoneH";
  5130. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5131. h = "(10 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5132. class controls
  5133. {
  5134. class IGUIBack_2203: cTab_IGUIBack
  5135. {
  5136. idc = 2203;
  5137. x = 0;
  5138. y = 0;
  5139. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5140. h = "(10 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5141. };
  5142. class stnbtn: cTab_MenuItem
  5143. {
  5144. idc = 2029;
  5145. text = "Stationary";
  5146. x = 0;
  5147. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  5148. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5149. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5150. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5151. action = "[1] call cTab_fnc_userMenuSelect;";
  5152. };
  5153. class nthbtn: cTab_MenuItem
  5154. {
  5155. idc = 2015;
  5156. text = "N";
  5157. x = 0;
  5158. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  5159. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5160. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5161. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5162. action = "cTabUserSelIcon set [3,1];[1] call cTab_fnc_userMenuSelect;";
  5163. };
  5164. class nebtn: cTab_MenuItem
  5165. {
  5166. idc = 2016;
  5167. text = "NE";
  5168. x = 0;
  5169. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  5170. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5171. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5172. action = "cTabUserSelIcon set [3,2];[1] call cTab_fnc_userMenuSelect;";
  5173. };
  5174. class ebtn: cTab_MenuItem
  5175. {
  5176. idc = 2017;
  5177. text = "E";
  5178. x = 0;
  5179. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (4 - 1)";
  5180. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5181. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5182. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5183. action = "cTabUserSelIcon set [3,3];[1] call cTab_fnc_userMenuSelect;";
  5184. };
  5185. class sebtn: cTab_MenuItem
  5186. {
  5187. idc = 2018;
  5188. text = "SE";
  5189. x = 0;
  5190. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (5 - 1)";
  5191. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5192. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5193. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5194. action = "cTabUserSelIcon set [3,4];[1] call cTab_fnc_userMenuSelect;";
  5195. };
  5196. class sbtn: cTab_MenuItem
  5197. {
  5198. idc = 2019;
  5199. text = "S";
  5200. x = 0;
  5201. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (6 - 1)";
  5202. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5203. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5204. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5205. action = "cTabUserSelIcon set [3,5];[1] call cTab_fnc_userMenuSelect;";
  5206. };
  5207. class swbtn: cTab_MenuItem
  5208. {
  5209. idc = 2020;
  5210. text = "SW";
  5211. x = 0;
  5212. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (7 - 1)";
  5213. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5214. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5215. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5216. action = "cTabUserSelIcon set [3,6];[1] call cTab_fnc_userMenuSelect;";
  5217. };
  5218. class wbtn: cTab_MenuItem
  5219. {
  5220. idc = 2021;
  5221. text = "W";
  5222. x = 0;
  5223. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (8 - 1)";
  5224. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5225. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5226. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5227. action = "cTabUserSelIcon set [3,7];[1] call cTab_fnc_userMenuSelect;";
  5228. };
  5229. class RscText_1022: cTab_MenuItem
  5230. {
  5231. idc = 2022;
  5232. text = "NW";
  5233. x = 0;
  5234. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (9 - 1)";
  5235. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5236. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5237. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5238. action = "cTabUserSelIcon set [3,8];[1] call cTab_fnc_userMenuSelect;";
  5239. };
  5240. class exit: cTab_MenuExit
  5241. {
  5242. idc = -1;
  5243. text = "Exit";
  5244. x = 0;
  5245. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (10 - 1)";
  5246. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5247. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5248. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5249. action = "[0] call cTab_fnc_userMenuSelect;";
  5250. };
  5251. };
  5252. };
  5253. class EnemySub4: cTab_RscControlsGroup
  5254. {
  5255. idc = 3307;
  5256. x = "safeZoneXAbs + safeZoneWAbs";
  5257. y = "safeZoneY + safeZoneH";
  5258. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5259. h = "(8 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5260. class controls
  5261. {
  5262. class IGUIBack_2202: cTab_IGUIBack
  5263. {
  5264. idc = 2202;
  5265. x = 0;
  5266. y = 0;
  5267. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5268. h = "(8 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5269. };
  5270. class rifle_btn: cTab_MenuItem
  5271. {
  5272. idc = -1;
  5273. text = "Rifle";
  5274. x = 0;
  5275. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  5276. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5277. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5278. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5279. action = "cTabUserSelIcon set [1,7];[13] call cTab_fnc_userMenuSelect;";
  5280. };
  5281. class lmg_btn: cTab_MenuItem
  5282. {
  5283. idc = -1;
  5284. text = "MG";
  5285. x = 0;
  5286. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  5287. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5288. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5289. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5290. action = "cTabUserSelIcon set [1,8];[13] call cTab_fnc_userMenuSelect;";
  5291. };
  5292. class at_btn: cTab_MenuItem
  5293. {
  5294. idc = -1;
  5295. text = "AT";
  5296. x = 0;
  5297. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  5298. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5299. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5300. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5301. action = "cTabUserSelIcon set [1,9];[13] call cTab_fnc_userMenuSelect;";
  5302. };
  5303. class mmg_btn: cTab_MenuItem
  5304. {
  5305. idc = -1;
  5306. text = "Static MG";
  5307. x = 0;
  5308. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (4 - 1)";
  5309. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5310. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5311. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5312. action = "cTabUserSelIcon set [1,10];[13] call cTab_fnc_userMenuSelect;";
  5313. };
  5314. class mat_btn: cTab_MenuItem
  5315. {
  5316. idc = -1;
  5317. text = "Static AT";
  5318. x = 0;
  5319. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (5 - 1)";
  5320. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5321. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5322. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5323. action = "cTabUserSelIcon set [1,11];[13] call cTab_fnc_userMenuSelect;";
  5324. };
  5325. class aa_btn: cTab_MenuItem
  5326. {
  5327. idc = -1;
  5328. text = "Static AA";
  5329. x = 0;
  5330. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (6 - 1)";
  5331. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5332. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5333. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5334. action = "cTabUserSelIcon set [1,13];[13] call cTab_fnc_userMenuSelect;";
  5335. };
  5336. class mmortar_btn: cTab_MenuItem
  5337. {
  5338. idc = -1;
  5339. text = "Mortar";
  5340. x = 0;
  5341. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (7 - 1)";
  5342. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5343. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5344. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5345. action = "cTabUserSelIcon set [1,12];[13] call cTab_fnc_userMenuSelect;";
  5346. };
  5347. class exit: cTab_MenuExit
  5348. {
  5349. idc = -1;
  5350. text = "Exit";
  5351. x = 0;
  5352. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (8 - 1)";
  5353. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5354. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5355. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5356. action = "[0] call cTab_fnc_userMenuSelect;";
  5357. };
  5358. };
  5359. };
  5360. class CasulSub1: cTab_RscControlsGroup
  5361. {
  5362. idc = 3305;
  5363. x = "safeZoneXAbs + safeZoneWAbs";
  5364. y = "safeZoneY + safeZoneH";
  5365. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5366. h = "(5 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5367. class controls
  5368. {
  5369. class IGUIBack_2204: cTab_IGUIBack
  5370. {
  5371. idc = 2204;
  5372. x = 0;
  5373. y = 0;
  5374. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5375. h = "(5 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5376. };
  5377. class casltybtn: cTab_MenuItem
  5378. {
  5379. idc = 2024;
  5380. text = "Casualty";
  5381. x = 0;
  5382. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  5383. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5384. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5385. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5386. action = "cTabUserSelIcon set [1,20];[1] call cTab_fnc_userMenuSelect;";
  5387. };
  5388. class ccpbtn: cTab_MenuItem
  5389. {
  5390. idc = 2025;
  5391. text = "CCP";
  5392. toolTip = "Casualty Collection Point";
  5393. x = 0;
  5394. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  5395. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5396. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5397. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5398. action = "cTabUserSelIcon set [1,21];[1] call cTab_fnc_userMenuSelect;";
  5399. };
  5400. class basbtn: cTab_MenuItem
  5401. {
  5402. idc = 2026;
  5403. text = "BAS";
  5404. toolTip = "Battalion Aid Station";
  5405. x = 0;
  5406. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  5407. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5408. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5409. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5410. action = "cTabUserSelIcon set [1,22];[1] call cTab_fnc_userMenuSelect;";
  5411. };
  5412. class mcibtn: cTab_MenuItem
  5413. {
  5414. idc = 2031;
  5415. text = "MCI";
  5416. toolTip = "Mass Casualty Incident";
  5417. x = 0;
  5418. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (4 - 1)";
  5419. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5420. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5421. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5422. action = "cTabUserSelIcon set [1,23];[1] call cTab_fnc_userMenuSelect;";
  5423. };
  5424. class exit: cTab_MenuExit
  5425. {
  5426. idc = -1;
  5427. text = "Exit";
  5428. x = 0;
  5429. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (5 - 1)";
  5430. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5431. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5432. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5433. action = "[0] call cTab_fnc_userMenuSelect;";
  5434. };
  5435. };
  5436. };
  5437. class GenSub1: cTab_RscControlsGroup
  5438. {
  5439. idc = 3306;
  5440. x = "safeZoneXAbs + safeZoneWAbs";
  5441. y = "safeZoneY + safeZoneH";
  5442. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5443. h = "(3 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5444. class controls
  5445. {
  5446. class IGUIBack_2205: cTab_IGUIBack
  5447. {
  5448. idc = 2205;
  5449. x = 0;
  5450. y = 0;
  5451. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5452. h = "(3 + 0.5) * (((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5453. };
  5454. class hqbtn: cTab_MenuItem
  5455. {
  5456. idc = 2027;
  5457. text = "HQ";
  5458. toolTip = "Headquaters";
  5459. x = 0;
  5460. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (1 - 1)";
  5461. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5462. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5463. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5464. action = "cTabUserSelIcon set [1,30];[1] call cTab_fnc_userMenuSelect;";
  5465. };
  5466. class lzbtn: cTab_MenuItem
  5467. {
  5468. idc = 2028;
  5469. text = "LZ";
  5470. toolTip = "Landing Zone";
  5471. x = 0;
  5472. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (2 - 1)";
  5473. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5474. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5475. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5476. action = "cTabUserSelIcon set [1,31];[1] call cTab_fnc_userMenuSelect;";
  5477. };
  5478. class exit: cTab_MenuExit
  5479. {
  5480. idc = -1;
  5481. text = "Exit";
  5482. x = 0;
  5483. y = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8 * (3 - 1)";
  5484. w = "(12 + 1.5) * (((42)) / 2048 * (safezoneH * 0.8)) * 3/4 * 0.5";
  5485. h = "(((42)) / 2048 * (safezoneH * 0.8)) / 0.8";
  5486. sizeEx = "(((42)) / 2048 * (safezoneH * 0.8))";
  5487. action = "[0] call cTab_fnc_userMenuSelect;";
  5488. };
  5489. };
  5490. };
  5491. class background: cTab_TAD_background{};
  5492. class movingHandle_T: cTab_TAD_movingHandle_T{};
  5493. class movingHandle_B: cTab_TAD_movingHandle_B{};
  5494. class movingHandle_L: cTab_TAD_movingHandle_L{};
  5495. class movingHandle_R: cTab_TAD_movingHandle_R{};
  5496. class pwrbtn: cTab_RscButton_TAD_DNO
  5497. {
  5498. idc = 1606;
  5499. onMouseButtonUp = "if (_this select 1 == 0) then {['cTab_TAD_dlg'] call cTab_fnc_toggleNightMode} else {if (_this select 1 == 1) then {[] call cTab_fnc_close};}";
  5500. tooltip = "left-click: Toggle DAY / NIGHT mode; right-click: Close interface";
  5501. };
  5502. class btnSymInc: cTab_RscButton_TAD_SYM_INC
  5503. {
  5504. idc = 1609;
  5505. action = "call cTab_fnc_txt_size_inc;";
  5506. tooltip = "Increase Font";
  5507. };
  5508. class btnSymDec: cTab_RscButton_TAD_SYM_DEC
  5509. {
  5510. idc = 1610;
  5511. action = "call cTab_fnc_txt_size_dec;";
  5512. tooltip = "Decrease Font";
  5513. };
  5514. class btnBrtInc: cTab_RscButton_TAD_BRT_INC
  5515. {
  5516. idc = 17;
  5517. action = "['cTab_TAD_dlg'] call cTab_fnc_incBrightness;";
  5518. tooltip = "Increase Brightness";
  5519. };
  5520. class btnBrtDec: cTab_RscButton_TAD_BRT_DEC
  5521. {
  5522. idc = 18;
  5523. action = "['cTab_TAD_dlg'] call cTab_fnc_decBrightness;";
  5524. tooltip = "Decrease Brightness";
  5525. };
  5526. class btnfunction: cTab_RscButton_TAD_OSB10
  5527. {
  5528. idc = 1607;
  5529. action = "['cTab_TAD_dlg'] call cTab_fnc_iconText_toggle;";
  5530. tooltip = "Toggle Text on/off";
  5531. };
  5532. class btnMapType: cTab_RscButton_TAD_OSB20
  5533. {
  5534. idc = 19;
  5535. action = "['cTab_TAD_dlg'] call cTab_fnc_mapType_toggle;";
  5536. tooltip = "Toggle Map Type (F6)";
  5537. };
  5538. class btnMapTools: cTab_RscButton_TAD_OSB18
  5539. {
  5540. idc = 20;
  5541. action = "['cTab_TAD_dlg'] call cTab_fnc_toggleMapTools;";
  5542. tooltip = "Toggle Map Tools (F5)";
  5543. };
  5544. class btnF7: cTab_RscButton_TAD_OSB19
  5545. {
  5546. idc = 21;
  5547. action = "['cTab_TAD_dlg'] call cTab_fnc_centerMapOnPlayerPosition;";
  5548. tooltip = "Center Map On Current Position (F7)";
  5549. };
  5550. };
  5551. };
  5552. class cTab_microDAGR_header: cTab_RscPicture
  5553. {
  5554. idc = 1;
  5555. text = "#(argb,8,8,3)color(0,0,0,1)";
  5556. x = "((573)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5557. y = "((317)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5558. w = "((942)) / 2048 * (safezoneH * 0.8 * 3/4)";
  5559. h = "((94)) / 2048 * (safezoneH * 0.8)";
  5560. };
  5561. class cTab_microDAGR_footer: cTab_microDAGR_header
  5562. {
  5563. idc = 2;
  5564. y = "((317) + (1296) - ((94))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5565. h = "(((94))) / 2048 * (safezoneH * 0.8)";
  5566. };
  5567. class cTab_RscButton_microDAGR_LeftUp: cTab_RscButtonInv
  5568. {
  5569. x = "(373) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5570. y = "(400) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5571. w = "(26) / 2048 * (safezoneH * 0.8 * 3/4)";
  5572. h = "(171) / 2048 * (safezoneH * 0.8)";
  5573. };
  5574. class cTab_RscButton_microDAGR_LeftDown: cTab_RscButton_microDAGR_LeftUp
  5575. {
  5576. y = "(571) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5577. };
  5578. class cTab_RscButton_microDAGR_LeftBtn: cTab_RscButtonInv
  5579. {
  5580. x = "(368) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5581. y = "(829) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5582. w = "(31) / 2048 * (safezoneH * 0.8 * 3/4)";
  5583. h = "(184) / 2048 * (safezoneH * 0.8)";
  5584. };
  5585. class cTab_RscButton_microDAGR_RightUp: cTab_RscButton_microDAGR_LeftUp
  5586. {
  5587. x = "(1689) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5588. };
  5589. class cTab_RscButton_microDAGR_RightDown: cTab_RscButton_microDAGR_LeftDown
  5590. {
  5591. x = "(1689) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5592. };
  5593. class cTab_RscButton_microDAGR_RightBtn: cTab_RscButton_microDAGR_LeftBtn
  5594. {
  5595. x = "(1689) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5596. };
  5597. class cTab_RscText_microDAGR: cTab_RscText
  5598. {
  5599. style = 2;
  5600. w = "((((942) - (24) * 4) / 3)) / 2048 * (safezoneH * 0.8 * 3/4)";
  5601. h = "(((94) - (24))) / 2048 * (safezoneH * 0.8)";
  5602. font = "EtelkaMonospacePro";
  5603. colorText[] = {1,1,1,1};
  5604. sizeEx = "((60)) / 2048 * (safezoneH * 0.8)";
  5605. colorBackground[] = {0,0,0,0};
  5606. shadow = 0;
  5607. };
  5608. class cTab_microDAGR_RscMapControl: cTab_RscMapControl
  5609. {
  5610. idc = 1201;
  5611. text = "#(argb,8,8,3)color(1,1,1,1)";
  5612. x = "(((573))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5613. y = "(((317) + (94))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5614. w = "(((942))) / 2048 * (safezoneH * 0.8 * 3/4)";
  5615. h = "(((1296) - (94) - ((94)))) / 2048 * (safezoneH * 0.8)";
  5616. scaleMax = 1000;
  5617. maxSatelliteAlpha = 10000;
  5618. alphaFadeStartScale = 10;
  5619. alphaFadeEndScale = 10;
  5620. ptsPerSquareSea = "8 / (0.86 / (safezoneH * 0.8))";
  5621. ptsPerSquareTxt = "8 / (0.86 / (safezoneH * 0.8))";
  5622. ptsPerSquareCLn = "8 / (0.86 / (safezoneH * 0.8))";
  5623. ptsPerSquareExp = "8 / (0.86 / (safezoneH * 0.8))";
  5624. ptsPerSquareCost = "8 / (0.86 / (safezoneH * 0.8))";
  5625. ptsPerSquareFor = "3 / (0.86 / (safezoneH * 0.8))";
  5626. ptsPerSquareForEdge = "100 / (0.86 / (safezoneH * 0.8))";
  5627. ptsPerSquareRoad = "1.5 / (0.86 / (safezoneH * 0.8))";
  5628. ptsPerSquareObj = "4 / (0.86 / (safezoneH * 0.8))";
  5629. widthRailWay = 1;
  5630. };
  5631. class cTab_microDAGR_background: cTab_RscPicture
  5632. {
  5633. idc = 1200;
  5634. text = "";
  5635. x = "(safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5636. y = "(safezoneY + 0.1 * safezoneH)";
  5637. w = "(safezoneH * 0.8 * 3/4)";
  5638. h = "(safezoneH * 0.8)";
  5639. };
  5640. class cTab_microDAGR_cursor: cTab_RscPicture
  5641. {
  5642. idc = 3;
  5643. text = "\a3\ui_f\data\IGUI\Cfg\WeaponCursors\cursoraimon_gs.paa";
  5644. x = "((573) + (942) / 2 - 128 / 33 * (38) / 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5645. y = "((317) + (1296) / 2 - 128 / 33 * (38) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5646. w = "(128 / 33 * (38)) / 2048 * (safezoneH * 0.8 * 3/4)";
  5647. h = "(128 / 33 * (38)) / 2048 * (safezoneH * 0.8)";
  5648. colorText[] = {"57/255","255/255","20/255",1};
  5649. };
  5650. class cTab_microDAGR_btnF7: cTab_RscButton_microDAGR_LeftBtn
  5651. {
  5652. idc = 4;
  5653. tooltip = "Center Map On Current Position (F7)";
  5654. };
  5655. class cTab_microDAGR_btnbrtpls: cTab_RscButton_microDAGR_RightUp
  5656. {
  5657. idc = 1609;
  5658. action = "call cTab_fnc_txt_size_inc;";
  5659. tooltip = "Increase Font";
  5660. };
  5661. class cTab_microDAGR_btnbrtmns: cTab_RscButton_microDAGR_RightDown
  5662. {
  5663. idc = 1610;
  5664. action = "call cTab_fnc_txt_size_dec;";
  5665. tooltip = "Decrease Font";
  5666. };
  5667. class cTab_microDAGR_btnfunction: cTab_RscButton_microDAGR_RightBtn
  5668. {
  5669. idc = 1607;
  5670. tooltip = "Toggle Text on/off";
  5671. };
  5672. class cTab_microDAGR_btnMapType: cTab_RscButton_microDAGR_LeftUp
  5673. {
  5674. idc = 5;
  5675. tooltip = "Toggle Map Type (F6)";
  5676. };
  5677. class cTab_microDAGR_btnMapTools: cTab_RscButton_microDAGR_LeftDown
  5678. {
  5679. idc = 6;
  5680. tooltip = "Toggle Map Tools (F5)";
  5681. };
  5682. class cTab_microDAGR_on_screen_battery: cTab_RscPicture
  5683. {
  5684. idc = 7;
  5685. text = "\ClonecTab\img\icon_battery_ca.paa";
  5686. x = "((((24) + (573)))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5687. y = "(((24) + (317)) + (((94) - (24)) - (50)) / 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5688. w = "((50)) / 2048 * (safezoneH * 0.8 * 3/4)";
  5689. h = "((50)) / 2048 * (safezoneH * 0.8)";
  5690. colorText[] = {1,1,1,1};
  5691. };
  5692. class cTab_microDAGR_on_screen_time: cTab_RscText_microDAGR
  5693. {
  5694. idc = 2613;
  5695. style = 2;
  5696. x = "((((24) + (573)) + (24) + (((942) - (24) * 4) / 3))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5697. y = "(((24) + (317))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5698. };
  5699. class cTab_microDAGR_on_screen_signalStrength: cTab_microDAGR_on_screen_battery
  5700. {
  5701. idc = 8;
  5702. text = "\ClonecTab\img\icon_signalStrength_ca.paa";
  5703. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3)) + (((942) - (24) * 4) / 3) - (50) * 2) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5704. colorText[] = {1,1,1,1};
  5705. };
  5706. class cTab_microDAGR_on_screen_satellite: cTab_microDAGR_on_screen_battery
  5707. {
  5708. idc = 9;
  5709. text = "\a3\ui_f\data\map\Diary\signal_ca.paa";
  5710. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3)) + (((942) - (24) * 4) / 3) - (50)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5711. colorText[] = {1,1,1,1};
  5712. };
  5713. class cTab_microDAGR_on_screen_dirDegree: cTab_RscText_microDAGR
  5714. {
  5715. idc = 2615;
  5716. style = 0;
  5717. y = "((-((94)) + (317) + (1296))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5718. x = "((((24) + (573)))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5719. };
  5720. class cTab_microDAGR_on_screen_grid: cTab_microDAGR_on_screen_dirDegree
  5721. {
  5722. idc = 2612;
  5723. style = 2;
  5724. x = "((((24) + (573)) + (24) + (((942) - (24) * 4) / 3))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5725. };
  5726. class cTab_microDAGR_on_screen_dirOctant: cTab_microDAGR_on_screen_dirDegree
  5727. {
  5728. idc = 2616;
  5729. style = 1;
  5730. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5731. };
  5732. class cTab_microDAGR_on_screen_hookGrid: cTab_RscText_microDAGR
  5733. {
  5734. idc = 2617;
  5735. style = 2;
  5736. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5737. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24)) * 4) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5738. colorText[] = {1,1,1,0.5};
  5739. colorBackground[] = {0,0,0,0.25};
  5740. };
  5741. class cTab_microDAGR_on_screen_hookElevation: cTab_microDAGR_on_screen_hookGrid
  5742. {
  5743. idc = 2620;
  5744. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24)) * 3) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5745. };
  5746. class cTab_microDAGR_on_screen_hookDst: cTab_microDAGR_on_screen_hookGrid
  5747. {
  5748. idc = 2619;
  5749. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24)) * 2) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5750. };
  5751. class cTab_microDAGR_on_screen_hookDir: cTab_microDAGR_on_screen_hookGrid
  5752. {
  5753. idc = 2618;
  5754. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5755. };
  5756. class cTab_microDAGR_loadingtxt: cTab_RscText_microDAGR
  5757. {
  5758. idc = 1000;
  5759. style = 2;
  5760. text = "Loading";
  5761. x = "(((573))) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5762. y = "(((317) + (94))) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5763. w = "(((942))) / 2048 * (safezoneH * 0.8 * 3/4)";
  5764. h = "(((1296) - (94) - ((94)))) / 2048 * (safezoneH * 0.8)";
  5765. colorBackground[] = {0,0,0,0};
  5766. };
  5767. class cTab_microDAGR_movingHandle_T: cTab_RscText_microDAGR
  5768. {
  5769. idc = 10;
  5770. moving = 1;
  5771. colorBackground[] = {0,0,0,0};
  5772. x = "(0) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5773. y = "(0) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5774. w = "(2048 ) / 2048 * (safezoneH * 0.8 * 3/4)";
  5775. h = "((317)) / 2048 * (safezoneH * 0.8)";
  5776. };
  5777. class cTab_microDAGR_movingHandle_B: cTab_microDAGR_movingHandle_T
  5778. {
  5779. idc = 11;
  5780. y = "((317) + (1296)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5781. h = "(2048 - ((317) + (1296))) / 2048 * (safezoneH * 0.8)";
  5782. };
  5783. class cTab_microDAGR_movingHandle_L: cTab_microDAGR_movingHandle_T
  5784. {
  5785. idc = 12;
  5786. y = "((317)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5787. w = "((573)) / 2048 * (safezoneH * 0.8 * 3/4)";
  5788. h = "((1296)) / 2048 * (safezoneH * 0.8)";
  5789. };
  5790. class cTab_microDAGR_movingHandle_R: cTab_microDAGR_movingHandle_L
  5791. {
  5792. idc = 13;
  5793. x = "((573) + (942)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5794. w = "(2048 - ((573) + (942))) / 2048 * (safezoneH * 0.8 * 3/4)";
  5795. };
  5796. class cTab_microDAGR_brightness: cTab_RscText_microDAGR
  5797. {
  5798. idc = 1005;
  5799. x = "((573)) / 2048 * (safezoneH * 0.8 * 3/4) + (safezoneX + (safezoneW - safezoneH * 0.8 * 3/4) / 2)";
  5800. y = "((317)) / 2048 * (safezoneH * 0.8) + (safezoneY + 0.1 * safezoneH)";
  5801. w = "((942)) / 2048 * (safezoneH * 0.8 * 3/4)";
  5802. h = "((1296)) / 2048 * (safezoneH * 0.8)";
  5803. colorBackground[] = {0,0,0,0};
  5804. };
  5805. class cTab_microDAGR_dlg
  5806. {
  5807. idd = 1776134;
  5808. movingEnable = "true";
  5809. onLoad = "_this call cTab_fnc_onIfOpen;";
  5810. onUnload = "[] call cTab_fnc_onIfclose;";
  5811. onKeyDown = "_this call cTab_fnc_onIfKeyDown;";
  5812. objects[] = {};
  5813. class controlsBackground
  5814. {
  5815. class screen: cTab_microDAGR_RscMapControl
  5816. {
  5817. onDraw = "nop = _this call cTabOnDrawbftmicroDAGRdlg;";
  5818. onMouseMoving = "cTabMapCursorPos = _this select 0 ctrlMapScreenToWorld [_this select 1,_this select 2];";
  5819. scaleDefault = "(missionNamespace getVariable 'cTabMapScale') * 0.86 / (safezoneH * 0.8)";
  5820. };
  5821. class screenTopo: screen
  5822. {
  5823. idc = 1202;
  5824. maxSatelliteAlpha = 0;
  5825. };
  5826. };
  5827. class controls
  5828. {
  5829. class header: cTab_microDAGR_header{};
  5830. class footer: cTab_microDAGR_footer{};
  5831. class battery: cTab_microDAGR_on_screen_battery{};
  5832. class time: cTab_microDAGR_on_screen_time{};
  5833. class signalStrength: cTab_microDAGR_on_screen_signalStrength{};
  5834. class satellite: cTab_microDAGR_on_screen_satellite{};
  5835. class dirDegree: cTab_microDAGR_on_screen_dirDegree{};
  5836. class grid: cTab_microDAGR_on_screen_grid{};
  5837. class dirOctant: cTab_microDAGR_on_screen_dirOctant{};
  5838. class btnbrtpls: cTab_microDAGR_btnbrtpls{};
  5839. class btnbrtmns: cTab_microDAGR_btnbrtmns{};
  5840. class hookGrid: cTab_microDAGR_on_screen_hookGrid{};
  5841. class hookElevation: cTab_microDAGR_on_screen_hookElevation{};
  5842. class hookDst: cTab_microDAGR_on_screen_hookDst{};
  5843. class hookDir: cTab_microDAGR_on_screen_hookDir{};
  5844. class loadingtxt: cTab_microDAGR_loadingtxt{};
  5845. class brightness: cTab_microDAGR_brightness{};
  5846. class background: cTab_microDAGR_background{};
  5847. class movingHandle_T: cTab_microDAGR_movingHandle_T{};
  5848. class movingHandle_B: cTab_microDAGR_movingHandle_B{};
  5849. class movingHandle_L: cTab_microDAGR_movingHandle_L{};
  5850. class movingHandle_R: cTab_microDAGR_movingHandle_R{};
  5851. class btnMapType: cTab_microDAGR_btnMapType
  5852. {
  5853. action = "['cTab_microDAGR_dlg'] call cTab_fnc_mapType_toggle;";
  5854. };
  5855. class btnMapTools: cTab_microDAGR_btnMapTools
  5856. {
  5857. action = "['cTab_microDAGR_dlg'] call cTab_fnc_toggleMapTools;";
  5858. };
  5859. class btnF7: cTab_microDAGR_btnF7
  5860. {
  5861. action = "['cTab_microDAGR_dlg'] call cTab_fnc_centerMapOnPlayerPosition;";
  5862. };
  5863. class btnfunction: cTab_microDAGR_btnfunction
  5864. {
  5865. action = "['cTab_microDAGR_dlg'] call cTab_fnc_iconText_toggle;";
  5866. };
  5867. };
  5868. };
  5869. class CfgWeapons
  5870. {
  5871. class ItemCore;
  5872. class InventoryItem_Base_F;
  5873. class ItemcTab: ItemCore
  5874. {
  5875. descriptionshort = "DK10 Rugged Tablet PC";
  5876. descriptionuse = "<t color='#9cf953'>Use: </t>Show Commander's Tablet";
  5877. displayname = "Rugged Tablet";
  5878. picture = "\ClonecTab\img\icon_dk10.paa";
  5879. model = "\ClonecTab\data\itemDK10.p3d";
  5880. scope = 2;
  5881. simulation = "ItemGPS";
  5882. class ItemInfo
  5883. {
  5884. mass = 56;
  5885. };
  5886. author = "Gundy-Riouken-Raspu";
  5887. };
  5888. class ItemAndroid: ItemcTab
  5889. {
  5890. descriptionshort = "GD300 Rugged Wearable Computer";
  5891. descriptionuse = "<t color='#9cf953'>Use: </t>Show Android Based BFT";
  5892. displayname = "GD300 Android";
  5893. picture = "\ClonecTab\img\icon_Android.paa";
  5894. model = "\ClonecTab\data\itemAndroid.p3d";
  5895. class ItemInfo
  5896. {
  5897. mass = 5;
  5898. };
  5899. author = "Gundy-Riouken-Raspu";
  5900. };
  5901. class ItemMicroDAGR: ItemcTab
  5902. {
  5903. descriptionshort = "HNV-2930 Micro Defense Advanced GPS Receiver";
  5904. descriptionuse = "<t color='#9cf953'>Use: </t>Show Android Based BFT";
  5905. displayname = "MicroDAGR";
  5906. picture = "\ClonecTab\img\icon_MicroDAGR.paa";
  5907. model = "\ClonecTab\data\itemMicroDAGR.p3d";
  5908. class ItemInfo
  5909. {
  5910. mass = 6;
  5911. };
  5912. author = "Gundy-Riouken-Raspu";
  5913. };
  5914. class ItemcTabHCam: ItemCore
  5915. {
  5916. descriptionshort = "HD Helmet Mounted Camera";
  5917. descriptionuse = "<t color='#9cf953'>Use: </t>Used to record and stream video";
  5918. displayname = "Helmet Camera";
  5919. picture = "\ClonecTab\img\cTab_helmetCam_ico.paa";
  5920. scope = 2;
  5921. simulation = "ItemMineDetector";
  5922. detectRange = -1;
  5923. type = 0;
  5924. class ItemInfo: InventoryItem_Base_F
  5925. {
  5926. mass = 4;
  5927. };
  5928. author = "Gundy-Riouken-Raspu";
  5929. };
  5930. };
  5931. class CfgNotifications
  5932. {
  5933. class cTabUavNotAval
  5934. {
  5935. title = "cTab";
  5936. iconPicture = "\ClonecTab\img\15th_rugged_tab_ico.paa";
  5937. iconText = "";
  5938. color[] = {1,1,1,1};
  5939. description = "%1";
  5940. duration = 5;
  5941. priority = 7;
  5942. difficulty[] = {};
  5943. };
  5944. class cTabNewMsg
  5945. {
  5946. title = "cTab";
  5947. iconPicture = "\ClonecTab\img\icoUnopenedmail.paa";
  5948. iconText = "";
  5949. color[] = {1,1,1,1};
  5950. description = "%1";
  5951. duration = 4;
  5952. priority = 7;
  5953. difficulty[] = {};
  5954. };
  5955. class cTabMsgSent
  5956. {
  5957. title = "cTab";
  5958. iconPicture = "\ClonecTab\img\icoUnopenedmail.paa";
  5959. iconText = "";
  5960. color[] = {1,1,1,1};
  5961. description = "Your message has been sent.";
  5962. duration = 4;
  5963. priority = 7;
  5964. difficulty[] = {};
  5965. };
  5966. };
  5967. class RscTitles
  5968. {
  5969. titles[] = {};
  5970. class cTab_mapSize_dsp
  5971. {
  5972. idd = 13673;
  5973. onLoad = "uiNamespace setVariable ['cTab_mapSize_dsp',_this select 0]";
  5974. fadein = 0;
  5975. fadeout = 0;
  5976. duration = 1e+11;
  5977. controlsBackground[] = {};
  5978. objects[] = {};
  5979. class controls
  5980. {
  5981. class mapSize: cTab_RscMapControl
  5982. {
  5983. idc = 1110;
  5984. type = 100;
  5985. x = "safeZoneXAbs + safeZoneWAbs";
  5986. y = "safeZoneY + safeZoneH";
  5987. w = 0.01;
  5988. h = 10;
  5989. scaleMin = 0.001;
  5990. scaleDefault = 0.001;
  5991. maxSatelliteAlpha = 0;
  5992. ptsPerSquareSea = 10000;
  5993. ptsPerSquareTxt = 10000;
  5994. ptsPerSquareCLn = 10000;
  5995. ptsPerSquareExp = 10000;
  5996. ptsPerSquareCost = 10000;
  5997. ptsPerSquareFor = 10000;
  5998. ptsPerSquareForEdge = 10000;
  5999. ptsPerSquareRoad = 10000;
  6000. ptsPerSquareObj = 10000;
  6001. widthRailWay = 1;
  6002. };
  6003. };
  6004. };
  6005. class cTab_Mail_ico_disp
  6006. {
  6007. idd = 13672;
  6008. name = "__cTabMailico";
  6009. onLoad = "uiNamespace setVariable ['cTab_Mail_ico_disp', _this select 0]";
  6010. fadein = 0;
  6011. fadeout = 0;
  6012. duration = 1e+11;
  6013. controlsBackground[] = {};
  6014. objects[] = {};
  6015. class controls
  6016. {
  6017. class trin_image
  6018. {
  6019. idc = 1110;
  6020. type = 0;
  6021. style = 48;
  6022. colorBackground[] = {};
  6023. colorText[] = {};
  6024. font = "puristaLight";
  6025. sizeEx = 0.053;
  6026. x = "(safezoneX + safezoneW * (1 - 0.00675) - ( (0.048) * 3/4))";
  6027. y = "(safezoneY + safezoneH * 0.25)";
  6028. w = "( (0.048) * 3/4)";
  6029. h = "(0.048)";
  6030. text = "\ClonecTab\img\icon_mail_ca.paa";
  6031. };
  6032. };
  6033. };
  6034. class cTab_RscButton_TAD_OSB: cTab_RscButtonInv
  6035. {
  6036. w = "((134) / 2048 * ( (0.86) * 3/4))";
  6037. h = "((134) / 2048 * ( (0.86)))";
  6038. };
  6039. class cTab_RscButton_TAD_OSB01: cTab_RscButton_TAD_OSB
  6040. {
  6041. x = "((577) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6042. y = "((146) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6043. };
  6044. class cTab_RscButton_TAD_OSB02: cTab_RscButton_TAD_OSB01
  6045. {
  6046. x = "((767) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6047. };
  6048. class cTab_RscButton_TAD_OSB03: cTab_RscButton_TAD_OSB01
  6049. {
  6050. x = "((957) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6051. };
  6052. class cTab_RscButton_TAD_OSB04: cTab_RscButton_TAD_OSB01
  6053. {
  6054. x = "((1147) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6055. };
  6056. class cTab_RscButton_TAD_OSB05: cTab_RscButton_TAD_OSB01
  6057. {
  6058. x = "((1337) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6059. };
  6060. class cTab_RscButton_TAD_OSB06: cTab_RscButton_TAD_OSB
  6061. {
  6062. x = "((1782) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6063. y = "((563) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6064. };
  6065. class cTab_RscButton_TAD_OSB07: cTab_RscButton_TAD_OSB06
  6066. {
  6067. y = "((760) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6068. };
  6069. class cTab_RscButton_TAD_OSB08: cTab_RscButton_TAD_OSB06
  6070. {
  6071. y = "((957) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6072. };
  6073. class cTab_RscButton_TAD_OSB09: cTab_RscButton_TAD_OSB06
  6074. {
  6075. y = "((1155) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6076. };
  6077. class cTab_RscButton_TAD_OSB10: cTab_RscButton_TAD_OSB06
  6078. {
  6079. y = "((1352) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6080. };
  6081. class cTab_RscButton_TAD_OSB11: cTab_RscButton_TAD_OSB
  6082. {
  6083. x = "((1337) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6084. y = "((1811) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6085. };
  6086. class cTab_RscButton_TAD_OSB12: cTab_RscButton_TAD_OSB11
  6087. {
  6088. x = "((1147) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6089. };
  6090. class cTab_RscButton_TAD_OSB13: cTab_RscButton_TAD_OSB11
  6091. {
  6092. x = "((957) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6093. };
  6094. class cTab_RscButton_TAD_OSB14: cTab_RscButton_TAD_OSB11
  6095. {
  6096. x = "((767) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6097. };
  6098. class cTab_RscButton_TAD_OSB15: cTab_RscButton_TAD_OSB11
  6099. {
  6100. x = "((577) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6101. };
  6102. class cTab_RscButton_TAD_OSB16: cTab_RscButton_TAD_OSB
  6103. {
  6104. x = "((132) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6105. y = "((1352) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6106. };
  6107. class cTab_RscButton_TAD_OSB17: cTab_RscButton_TAD_OSB16
  6108. {
  6109. y = "((1155) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6110. };
  6111. class cTab_RscButton_TAD_OSB18: cTab_RscButton_TAD_OSB16
  6112. {
  6113. y = "((957) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6114. };
  6115. class cTab_RscButton_TAD_OSB19: cTab_RscButton_TAD_OSB16
  6116. {
  6117. y = "((760) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6118. };
  6119. class cTab_RscButton_TAD_OSB20: cTab_RscButton_TAD_OSB16
  6120. {
  6121. y = "((563) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6122. };
  6123. class cTab_RscButton_TAD_ADJ_INC: cTab_RscButtonInv
  6124. {
  6125. x = "((124) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6126. y = "((257) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6127. w = "((142) / 2048 * ( (0.86) * 3/4))";
  6128. h = "((119) / 2048 * ( (0.86)))";
  6129. };
  6130. class cTab_RscButton_TAD_ADJ_DEC: cTab_RscButton_TAD_ADJ_INC
  6131. {
  6132. y = "((376) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6133. };
  6134. class cTab_RscButton_TAD_DSP_INC: cTab_RscButton_TAD_ADJ_INC
  6135. {
  6136. x = "((1782) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6137. };
  6138. class cTab_RscButton_TAD_DSP_DEC: cTab_RscButton_TAD_DSP_INC
  6139. {
  6140. y = "((376) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6141. };
  6142. class cTab_RscButton_TAD_CON_INC: cTab_RscButton_TAD_ADJ_INC
  6143. {
  6144. y = "((1539) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6145. };
  6146. class cTab_RscButton_TAD_CON_DEC: cTab_RscButton_TAD_CON_INC
  6147. {
  6148. y = "((1658) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6149. };
  6150. class cTab_RscButton_TAD_BRT_INC: cTab_RscButton_TAD_CON_INC
  6151. {
  6152. x = "((1782) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6153. };
  6154. class cTab_RscButton_TAD_BRT_DEC: cTab_RscButton_TAD_BRT_INC
  6155. {
  6156. y = "((1658) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6157. };
  6158. class cTab_RscButton_TAD_SYM_INC: cTab_RscButtonInv
  6159. {
  6160. x = "((1663) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6161. y = "((1811) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6162. w = "((119) / 2048 * ( (0.86) * 3/4))";
  6163. h = "((142) / 2048 * ( (0.86)))";
  6164. };
  6165. class cTab_RscButton_TAD_SYM_DEC: cTab_RscButton_TAD_SYM_INC
  6166. {
  6167. x = "((1544) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6168. };
  6169. class cTab_RscButton_TAD_DNO: cTab_RscButtonInv
  6170. {
  6171. x = "((234) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6172. y = "((1894) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6173. w = "((142) / 2048 * ( (0.86) * 3/4))";
  6174. h = "((142) / 2048 * ( (0.86)))";
  6175. };
  6176. class cTab_RscText_TAD: cTab_RscText
  6177. {
  6178. style = 2;
  6179. w = "(((26)) / 2048 * ( (0.86) * 3/4))";
  6180. h = "(((53)) / 2048 * ( (0.86)))";
  6181. font = "EtelkaMonospacePro";
  6182. colorText[] = {"57/255","255/255","20/255",1};
  6183. sizeEx = "(((42)) / 2048 * ( (0.86)))";
  6184. colorBackground[] = {0,0,0,1};
  6185. shadow = 0;
  6186. };
  6187. class cTab_TAD_upDownArrow: cTab_RscPicture
  6188. {
  6189. w = "(((26)) / 2048 * ( (0.86) * 3/4))";
  6190. h = "(((32)) / 2048 * ( (0.86)))";
  6191. colorText[] = {"57/255","255/255","20/255",1};
  6192. colorBackground[] = {0,0,0,1};
  6193. text = "\a3\ui_f\data\IGUI\Cfg\Actions\autohover_ca.paa";
  6194. };
  6195. class cTab_TAD_RscMapControl: cTab_RscMapControl
  6196. {
  6197. text = "#(argb,8,8,3)color(1,1,1,1)";
  6198. x = "(((359)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6199. y = "(((371)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6200. w = "(((1330)) / 2048 * ( (0.86) * 3/4))";
  6201. h = "(((1345)) / 2048 * ( (0.86)))";
  6202. scaleMax = 1000;
  6203. scaleDefault = "(missionNamespace getVariable 'cTabMapScale') * 0.86 / (safezoneH * 0.8)";
  6204. maxSatelliteAlpha = 10000;
  6205. alphaFadeStartScale = 10;
  6206. alphaFadeEndScale = 10;
  6207. ptsPerSquareSea = "8 / (1)";
  6208. ptsPerSquareTxt = "8 / (1)";
  6209. ptsPerSquareCLn = "8 / (1)";
  6210. ptsPerSquareExp = "8 / (1)";
  6211. ptsPerSquareCost = "8 / (1)";
  6212. ptsPerSquareFor = "3 / (1)";
  6213. ptsPerSquareForEdge = "100 / (1)";
  6214. ptsPerSquareRoad = "1.5 / (1)";
  6215. ptsPerSquareObj = "4 / (1)";
  6216. widthRailWay = 1;
  6217. };
  6218. class cTab_TAD_RscMapControl_BLACK: cTab_TAD_RscMapControl
  6219. {
  6220. font = "TahomaB";
  6221. sizeEx = 0;
  6222. maxSatelliteAlpha = 0;
  6223. colorBackground[] = {0,0,0,0};
  6224. colorLevels[] = {0,0,0,0};
  6225. colorSea[] = {0,0,0,0};
  6226. colorForest[] = {0,0,0,0};
  6227. colorRocks[] = {0,0,0,0};
  6228. colorCountlines[] = {0,0,0,0};
  6229. colorMainCountlines[] = {0,0,0,0};
  6230. colorCountlinesWater[] = {0,0,0,0};
  6231. colorMainCountlinesWater[] = {0,0,0,0};
  6232. colorPowerLines[] = {0,0,0,0};
  6233. colorRailWay[] = {0,0,0,0};
  6234. colorForestBorder[] = {0,0,0,0};
  6235. colorRocksBorder[] = {0,0,0,0};
  6236. colorNames[] = {0,0,0,0};
  6237. colorInactive[] = {0,0,0,0};
  6238. colorOutside[] = {0,0,0,0};
  6239. colorText[] = {0,0,0,0};
  6240. colorGrid[] = {0,0,0,0};
  6241. colorGridMap[] = {0,0,0,0};
  6242. colorTracks[] = {0,0,0,0};
  6243. colorTracksFill[] = {0,0,0,0};
  6244. colorRoads[] = {0,0,0,0};
  6245. colorRoadsFill[] = {0,0,0,0};
  6246. colorMainRoads[] = {0,0,0,0};
  6247. colorMainRoadsFill[] = {0,0,0,0};
  6248. ShowCountourInterval = 0;
  6249. shadow = 0;
  6250. text = "";
  6251. alphaFadeStartScale = 0;
  6252. alphaFadeEndScale = 0;
  6253. fontLabel = "TahomaB";
  6254. sizeExLabel = 0;
  6255. fontGrid = "TahomaB";
  6256. sizeExGrid = 0;
  6257. fontUnits = "TahomaB";
  6258. sizeExUnits = 0;
  6259. fontNames = "TahomaB";
  6260. sizeExNames = 0;
  6261. fontInfo = "TahomaB";
  6262. sizeExInfo = 0;
  6263. fontLevel = "TahomaB";
  6264. sizeExLevel = 0;
  6265. stickX[] = {0,{"Gamma",0,0}};
  6266. stickY[] = {0,{"Gamma",0,0}};
  6267. ptsPerSquareSea = 10000;
  6268. ptsPerSquareTxt = 10000;
  6269. ptsPerSquareCLn = 10000;
  6270. ptsPerSquareExp = 10000;
  6271. ptsPerSquareCost = 10000;
  6272. ptsPerSquareFor = 10000;
  6273. ptsPerSquareForEdge = 10000;
  6274. ptsPerSquareRoad = 10000;
  6275. ptsPerSquareObj = 10000;
  6276. widthRailWay = 1;
  6277. class Task
  6278. {
  6279. icon = "";
  6280. color[] = {0,0,0,0};
  6281. iconCreated = "";
  6282. colorCreated[] = {0,0,0,0};
  6283. iconCanceled = "";
  6284. colorCanceled[] = {0,0,0,0};
  6285. iconDone = "";
  6286. colorDone[] = {0,0,0,0};
  6287. iconFailed = "";
  6288. colorFailed[] = {0,0,0,0};
  6289. size = 0;
  6290. importance = 0;
  6291. coefMin = 0;
  6292. coefMax = 0;
  6293. };
  6294. class CustomMark
  6295. {
  6296. icon = "";
  6297. color[] = {0,0,0,0};
  6298. size = 0;
  6299. importance = 0;
  6300. coefMin = 0;
  6301. coefMax = 0;
  6302. };
  6303. class Bunker
  6304. {
  6305. icon = "";
  6306. color[] = {0,0,0,0};
  6307. size = 0;
  6308. importance = 0;
  6309. coefMin = 0;
  6310. coefMax = 0;
  6311. };
  6312. class Bush
  6313. {
  6314. icon = "";
  6315. color[] = {0,0,0,0};
  6316. size = 0;
  6317. importance = 0;
  6318. coefMin = 0;
  6319. coefMax = 0;
  6320. };
  6321. class BusStop
  6322. {
  6323. icon = "";
  6324. color[] = {0,0,0,0};
  6325. size = 0;
  6326. importance = 0;
  6327. coefMin = 0;
  6328. coefMax = 0;
  6329. };
  6330. class Command
  6331. {
  6332. icon = "";
  6333. color[] = {0,0,0,0};
  6334. size = 0;
  6335. importance = 0;
  6336. coefMin = 0;
  6337. coefMax = 0;
  6338. };
  6339. class Cross
  6340. {
  6341. icon = "";
  6342. color[] = {0,0,0,0};
  6343. size = 0;
  6344. importance = 0;
  6345. coefMin = 0;
  6346. coefMax = 0;
  6347. };
  6348. class Fortress
  6349. {
  6350. icon = "";
  6351. color[] = {0,0,0,0};
  6352. size = 0;
  6353. importance = 0;
  6354. coefMin = 0;
  6355. coefMax = 0;
  6356. };
  6357. class Fuelstation
  6358. {
  6359. icon = "";
  6360. color[] = {0,0,0,0};
  6361. size = 0;
  6362. importance = 0;
  6363. coefMin = 0;
  6364. coefMax = 0;
  6365. };
  6366. class Fountain
  6367. {
  6368. icon = "";
  6369. color[] = {0,0,0,0};
  6370. size = 0;
  6371. importance = 0;
  6372. coefMin = 0;
  6373. coefMax = 0;
  6374. };
  6375. class Hospital
  6376. {
  6377. icon = "";
  6378. color[] = {0,0,0,0};
  6379. size = 0;
  6380. importance = 0;
  6381. coefMin = 0;
  6382. coefMax = 0;
  6383. };
  6384. class Chapel
  6385. {
  6386. icon = "";
  6387. color[] = {0,0,0,0};
  6388. size = 0;
  6389. importance = 0;
  6390. coefMin = 0;
  6391. coefMax = 0;
  6392. };
  6393. class Church
  6394. {
  6395. icon = "";
  6396. color[] = {0,0,0,0};
  6397. size = 0;
  6398. importance = 0;
  6399. coefMin = 0;
  6400. coefMax = 0;
  6401. };
  6402. class Lighthouse
  6403. {
  6404. icon = "";
  6405. color[] = {0,0,0,0};
  6406. size = 0;
  6407. importance = 0;
  6408. coefMin = 0;
  6409. coefMax = 0;
  6410. };
  6411. class Quay
  6412. {
  6413. icon = "";
  6414. color[] = {0,0,0,0};
  6415. size = 0;
  6416. importance = 0;
  6417. coefMin = 0;
  6418. coefMax = 0;
  6419. };
  6420. class Rock
  6421. {
  6422. icon = "";
  6423. color[] = {0,0,0,0};
  6424. size = 0;
  6425. importance = 0;
  6426. coefMin = 0;
  6427. coefMax = 0;
  6428. };
  6429. class Ruin
  6430. {
  6431. icon = "";
  6432. color[] = {0,0,0,0};
  6433. size = 0;
  6434. importance = 0;
  6435. coefMin = 0;
  6436. coefMax = 0;
  6437. };
  6438. class SmallTree
  6439. {
  6440. icon = "";
  6441. color[] = {0,0,0,0};
  6442. size = 0;
  6443. importance = 0;
  6444. coefMin = 0;
  6445. coefMax = 0;
  6446. };
  6447. class Stack
  6448. {
  6449. icon = "";
  6450. color[] = {0,0,0,0};
  6451. size = 0;
  6452. importance = 0;
  6453. coefMin = 0;
  6454. coefMax = 0;
  6455. };
  6456. class Tree
  6457. {
  6458. icon = "";
  6459. color[] = {0,0,0,0};
  6460. size = 0;
  6461. importance = 0;
  6462. coefMin = 0;
  6463. coefMax = 0;
  6464. };
  6465. class Tourism
  6466. {
  6467. icon = "";
  6468. color[] = {0,0,0,0};
  6469. size = 0;
  6470. importance = 0;
  6471. coefMin = 0;
  6472. coefMax = 0;
  6473. };
  6474. class Transmitter
  6475. {
  6476. icon = "";
  6477. color[] = {0,0,0,0};
  6478. size = 0;
  6479. importance = 0;
  6480. coefMin = 0;
  6481. coefMax = 0;
  6482. };
  6483. class ViewTower
  6484. {
  6485. icon = "";
  6486. color[] = {0,0,0,0};
  6487. size = 0;
  6488. importance = 0;
  6489. coefMin = 0;
  6490. coefMax = 0;
  6491. };
  6492. class Watertower
  6493. {
  6494. icon = "";
  6495. color[] = {0,0,0,0};
  6496. size = 0;
  6497. importance = 0;
  6498. coefMin = 0;
  6499. coefMax = 0;
  6500. };
  6501. class Waypoint
  6502. {
  6503. icon = "";
  6504. color[] = {0,0,0,0};
  6505. size = 0;
  6506. importance = 0;
  6507. coefMin = 0;
  6508. coefMax = 0;
  6509. };
  6510. class WaypointCompleted
  6511. {
  6512. icon = "";
  6513. color[] = {0,0,0,0};
  6514. size = 0;
  6515. importance = 0;
  6516. coefMin = 0;
  6517. coefMax = 0;
  6518. };
  6519. class ActiveMarker
  6520. {
  6521. icon = "";
  6522. color[] = {0,0,0,0};
  6523. size = 0;
  6524. importance = 0;
  6525. coefMin = 0;
  6526. coefMax = 0;
  6527. };
  6528. class PowerSolar
  6529. {
  6530. icon = "";
  6531. color[] = {0,0,0,0};
  6532. size = 0;
  6533. importance = 0;
  6534. coefMin = 0;
  6535. coefMax = 0;
  6536. };
  6537. class PowerWave
  6538. {
  6539. icon = "";
  6540. color[] = {0,0,0,0};
  6541. size = 0;
  6542. importance = 0;
  6543. coefMin = 0;
  6544. coefMax = 0;
  6545. };
  6546. class PowerWind
  6547. {
  6548. icon = "";
  6549. color[] = {0,0,0,0};
  6550. size = 0;
  6551. importance = 0;
  6552. coefMin = 0;
  6553. coefMax = 0;
  6554. };
  6555. class Shipwreck
  6556. {
  6557. icon = "";
  6558. color[] = {0,0,0,0};
  6559. size = 0;
  6560. importance = 0;
  6561. coefMin = 0;
  6562. coefMax = 0;
  6563. };
  6564. };
  6565. class cTab_TAD_Map_Background: cTab_RscText
  6566. {
  6567. idc = 1;
  6568. x = "(((359)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6569. y = "(((371)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6570. w = "(((1330)) / 2048 * ( (0.86) * 3/4))";
  6571. h = "(((1345)) / 2048 * ( (0.86)))";
  6572. colorBackground[] = {0,0,0,1};
  6573. };
  6574. class cTab_TAD_background: cTab_RscPicture
  6575. {
  6576. idc = 1200;
  6577. text = "";
  6578. x = "(safeZoneX + (0.05) * 3/4)";
  6579. y = "(safeZoneY + safeZoneH - (0.86) - (0.2))";
  6580. w = "( (0.86) * 3/4)";
  6581. h = "( (0.86))";
  6582. };
  6583. class cTab_TAD_OSD_hookGrid: cTab_RscText_TAD
  6584. {
  6585. idc = 2617;
  6586. style = 2;
  6587. x = "((((1384)) - (26) * 4) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6588. y = "(((1398) - (53) * 0.5 + (53) * 1) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6589. w = "(((26) * 6) / 2048 * ( (0.86) * 3/4))";
  6590. };
  6591. class cTab_TAD_OSD_hookElevation: cTab_TAD_OSD_hookGrid
  6592. {
  6593. idc = 2620;
  6594. x = "((((1384)) - (26) * 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6595. y = "(((1398) - (53) * 0.5 + (53) * 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6596. w = "(((26) * 4) / 2048 * ( (0.86) * 3/4))";
  6597. };
  6598. class cTab_TAD_OSD_hookDir: cTab_TAD_OSD_hookGrid
  6599. {
  6600. idc = 2618;
  6601. x = "((((1384)) - (26) * 6) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6602. y = "(((1398) - (53) * 0.5 + (53) * 0) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6603. w = "(((26) * 8) / 2048 * ( (0.86) * 3/4))";
  6604. };
  6605. class cTab_TAD_OSD_hookToggleIconBackground: cTab_RscText_TAD
  6606. {
  6607. idc = 2;
  6608. x = "((((24) + (359)) + (36) - (26)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6609. y = "((((1023)) - (53) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6610. };
  6611. class cTab_TAD_OSD_hookToggleIcon: cTab_TAD_upDownArrow
  6612. {
  6613. idc = 3;
  6614. x = "((((24) + (359)) + (36) - (26)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6615. y = "((((1023)) - (32) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6616. };
  6617. class cTab_TAD_OSD_hookToggleText1: cTab_RscText_TAD
  6618. {
  6619. idc = 2621;
  6620. x = "((((24) + (359)) + (36)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6621. y = "((((1023)) - (53)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6622. w = "(((26) * 4) / 2048 * ( (0.86) * 3/4))";
  6623. };
  6624. class cTab_TAD_OSD_hookToggleText2: cTab_TAD_OSD_hookToggleText1
  6625. {
  6626. idc = 2622;
  6627. y = "((((1023))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6628. };
  6629. class cTab_TAD_OSD_currentDirection: cTab_RscText_TAD
  6630. {
  6631. idc = 2615;
  6632. x = "((((844)) - (26) * 4 / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6633. y = "(((-(24) + (371) + (1345)) - (53) * 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6634. w = "(((26) * 4) / 2048 * ( (0.86) * 3/4))";
  6635. };
  6636. class cTab_TAD_OSD_currentElevation: cTab_TAD_OSD_currentDirection
  6637. {
  6638. idc = 2623;
  6639. x = "((((1202)) - (26) * 5 / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6640. w = "(((26) * 5) / 2048 * ( (0.86) * 3/4))";
  6641. };
  6642. class cTab_TAD_OSD_centerMapText: cTab_RscText_TAD
  6643. {
  6644. idc = 4;
  6645. x = "((((24) + (359)) + (36)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6646. y = "((((836)) - (53) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6647. w = "(((26) * 3) / 2048 * ( (0.86) * 3/4))";
  6648. text = "CTR";
  6649. };
  6650. class cTab_TAD_loadingtxt: cTab_RscText_TAD
  6651. {
  6652. idc = 1000;
  6653. style = 2;
  6654. text = "Loading";
  6655. x = "(((359)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6656. y = "(((371)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6657. w = "(((1330)) / 2048 * ( (0.86) * 3/4))";
  6658. h = "(((1345)) / 2048 * ( (0.86)))";
  6659. };
  6660. class cTab_TAD_OSD_cursor: cTab_RscPicture
  6661. {
  6662. idc = 5;
  6663. text = "\a3\ui_f\data\IGUI\Cfg\WeaponCursors\cursoraimon_gs.paa";
  6664. x = "(((359) + (1330) / 2 - 128 / 33 * (48) / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6665. y = "(((371) + (1345) / 2 - 128 / 33 * (48) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6666. w = "((128 / 33 * (48)) / 2048 * ( (0.86) * 3/4))";
  6667. h = "((128 / 33 * (48)) / 2048 * ( (0.86)))";
  6668. colorText[] = {"57/255","255/255","20/255",1};
  6669. };
  6670. class cTab_TAD_OSD_navModeOrScale: cTab_RscText_TAD
  6671. {
  6672. idc = 2614;
  6673. x = "(((-(24) + (359) + (1330)) - (38) * 4) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6674. y = "((((24) + (371))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6675. w = "(((38) * 4) / 2048 * ( (0.86) * 3/4))";
  6676. h = "(((82)) / 2048 * ( (0.86)))";
  6677. sizeEx = "(((66)) / 2048 * ( (0.86)))";
  6678. };
  6679. class cTab_TAD_OSD_modeTAD: cTab_RscText_TAD
  6680. {
  6681. idc = 6;
  6682. x = "((((661)) - (26) * 3 / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6683. y = "(((-(24) + (371) + (1345)) - (53)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6684. w = "(((26) * 3) / 2048 * ( (0.86) * 3/4))";
  6685. colorText[] = {0,0,0,1};
  6686. colorBackground[] = {"57/255","255/255","20/255",1};
  6687. text = "TAD";
  6688. };
  6689. class cTab_TAD_OSD_txtToggleIconBg: cTab_RscText_TAD
  6690. {
  6691. idc = 7;
  6692. x = "(((-(24) + (359) + (1330)) - (36)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6693. y = "(((1398) - (53) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6694. };
  6695. class cTab_TAD_OSD_txtToggleIcon: cTab_TAD_upDownArrow
  6696. {
  6697. idc = 8;
  6698. x = "(((-(24) + (359) + (1330)) - (36)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6699. y = "(((1398) - (32) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6700. };
  6701. class cTab_TAD_OSD_txtToggleText1: cTab_RscText_TAD
  6702. {
  6703. idc = 9;
  6704. x = "(((-(24) + (359) + (1330)) - (36) - (26) * 3) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6705. y = "(((1398) - (53)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6706. w = "(((26) * 3) / 2048 * ( (0.86) * 3/4))";
  6707. text = "TXT";
  6708. };
  6709. class cTab_TAD_OSD_txtToggleText2: cTab_RscText_TAD
  6710. {
  6711. idc = 2610;
  6712. x = "(((-(24) + (359) + (1330)) - (36) - (26) * 3) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6713. y = "(((1398)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6714. w = "(((26) * 3) / 2048 * ( (0.86) * 3/4))";
  6715. };
  6716. class cTab_TAD_OSD_time: cTab_RscText_TAD
  6717. {
  6718. idc = 2613;
  6719. x = "((((24) + (359))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6720. y = "(((-(24) + (371) + (1345)) - (53)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6721. w = "(((26) * 5) / 2048 * ( (0.86) * 3/4))";
  6722. };
  6723. class cTab_TAD_OSD_currentGrid: cTab_RscText_TAD
  6724. {
  6725. idc = 2612;
  6726. x = "((((1023)) - (26) * 6 / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6727. y = "(((-(24) + (371) + (1345)) - (53) * 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6728. w = "(((26) * 6) / 2048 * ( (0.86) * 3/4))";
  6729. };
  6730. class cTab_TAD_OSD_mapToggleIconBg: cTab_RscText_TAD
  6731. {
  6732. idc = 10;
  6733. x = "((((24) + (359)) + (36) - (26)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6734. y = "((((647)) - (53) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6735. };
  6736. class cTab_TAD_OSD_mapToggleIcon: cTab_TAD_upDownArrow
  6737. {
  6738. idc = 11;
  6739. x = "((((24) + (359)) + (36) - (26)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6740. y = "((((647)) - (32) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6741. };
  6742. class cTab_TAD_OSD_mapToggleText1: cTab_RscText_TAD
  6743. {
  6744. idc = 12;
  6745. x = "((((24) + (359)) + (36)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6746. y = "((((647)) - (53)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6747. w = "(((26) * 3) / 2048 * ( (0.86) * 3/4))";
  6748. text = "MAP";
  6749. };
  6750. class cTab_TAD_OSD_mapToggleText2: cTab_RscText_TAD
  6751. {
  6752. idc = 2611;
  6753. x = "((((24) + (359)) + (36)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6754. y = "((((647))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6755. w = "(((26) * 4) / 2048 * ( (0.86) * 3/4))";
  6756. };
  6757. class cTab_TAD_movingHandle_T: cTab_RscText_TAD
  6758. {
  6759. idc = 13;
  6760. moving = 1;
  6761. colorBackground[] = {0,0,0,0};
  6762. x = "((0) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6763. y = "((0) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6764. w = "((2048 ) / 2048 * ( (0.86) * 3/4))";
  6765. h = "(((371)) / 2048 * ( (0.86)))";
  6766. };
  6767. class cTab_TAD_movingHandle_B: cTab_TAD_movingHandle_T
  6768. {
  6769. idc = 14;
  6770. y = "(((371) + (1345)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6771. h = "((2048 - ((371) + (1345))) / 2048 * ( (0.86)))";
  6772. };
  6773. class cTab_TAD_movingHandle_L: cTab_TAD_movingHandle_T
  6774. {
  6775. idc = 15;
  6776. y = "(((371)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6777. w = "(((359)) / 2048 * ( (0.86) * 3/4))";
  6778. h = "(((1345)) / 2048 * ( (0.86)))";
  6779. };
  6780. class cTab_TAD_movingHandle_R: cTab_TAD_movingHandle_L
  6781. {
  6782. idc = 16;
  6783. x = "(((359) + (1330)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6784. w = "((2048 - ((359) + (1330))) / 2048 * ( (0.86) * 3/4))";
  6785. };
  6786. class cTab_TAD_brightness: cTab_RscText_TAD
  6787. {
  6788. idc = 1005;
  6789. x = "(((359)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6790. y = "(((371)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6791. w = "(((1330)) / 2048 * ( (0.86) * 3/4))";
  6792. h = "(((1345)) / 2048 * ( (0.86)))";
  6793. colorBackground[] = {0,0,0,0};
  6794. };
  6795. class cTab_TAD_notification: cTab_RscText_TAD
  6796. {
  6797. idc = 1620;
  6798. x = "(((359) + ((1330) * 0.2) / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6799. y = "(((-(24) + (371) + (1345)) - (53) * 3) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2)))";
  6800. w = "(((1330) * 0.8) / 2048 * ( (0.86) * 3/4))";
  6801. colorText[] = {0,0,"128/255",1};
  6802. colorBackground[] = {1,1,1,1};
  6803. };
  6804. class cTab_TAD_dsp
  6805. {
  6806. idd = 1775134;
  6807. movingEnable = "true";
  6808. duration = 1e+11;
  6809. fadeIn = 0;
  6810. fadeOut = 0;
  6811. onLoad = "_this call cTab_fnc_onIfOpen;";
  6812. class controlsBackground
  6813. {
  6814. class mapBackground: cTab_TAD_Map_Background{};
  6815. class screen: cTab_TAD_RscMapControl
  6816. {
  6817. idc = 1201;
  6818. onDraw = "nop = _this call cTabOnDrawbftTAD;";
  6819. scaleDefault = "missionNamespace getVariable 'cTabMapScale'";
  6820. colorGrid[] = {0.1,0.1,0.1,0};
  6821. colorGridMap[] = {0.1,0.1,0.1,0};
  6822. };
  6823. class screenTopo: screen
  6824. {
  6825. idc = 1202;
  6826. maxSatelliteAlpha = 0;
  6827. };
  6828. class screenBlack: cTab_TAD_RscMapControl_BLACK
  6829. {
  6830. idc = 1203;
  6831. onDraw = "nop = _this call cTabOnDrawbftTAD;";
  6832. scaleDefault = "missionNamespace getVariable 'cTabMapScale'";
  6833. colorGrid[] = {0.1,0.1,0.1,0};
  6834. colorGridMap[] = {0.1,0.1,0.1,0};
  6835. };
  6836. };
  6837. class controls
  6838. {
  6839. class navModeOrScale: cTab_TAD_OSD_navModeOrScale
  6840. {
  6841. x = "(((-(24) + (359) + (1330)) - (38) * 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (0.05) * 3/4))";
  6842. w = "(((38) * 2) / 2048 * ( (0.86) * 3/4))";
  6843. };
  6844. class modeTAD: cTab_TAD_OSD_modeTAD{};
  6845. class txtToggleIconBg: cTab_TAD_OSD_txtToggleIconBg{};
  6846. class txtToggleIcon: cTab_TAD_OSD_txtToggleIcon{};
  6847. class txtToggleText1: cTab_TAD_OSD_txtToggleText1{};
  6848. class txtToggleText2: cTab_TAD_OSD_txtToggleText2{};
  6849. class time: cTab_TAD_OSD_time{};
  6850. class currentGrid: cTab_TAD_OSD_currentGrid{};
  6851. class mapToggleIconBg: cTab_TAD_OSD_mapToggleIconBg{};
  6852. class mapToggleIcon: cTab_TAD_OSD_mapToggleIcon{};
  6853. class mapToggleText1: cTab_TAD_OSD_mapToggleText1{};
  6854. class mapToggleText2: cTab_TAD_OSD_mapToggleText2{};
  6855. class hookToggleIconBackground: cTab_TAD_OSD_hookToggleIconBackground{};
  6856. class hookToggleIcon: cTab_TAD_OSD_hookToggleIcon{};
  6857. class hookToggleText1: cTab_TAD_OSD_hookToggleText1{};
  6858. class hookToggleText2: cTab_TAD_OSD_hookToggleText2{};
  6859. class on_screen_currentDirection: cTab_TAD_OSD_currentDirection{};
  6860. class on_screen_currentElevation: cTab_TAD_OSD_currentElevation{};
  6861. class on_screen_centerMapText: cTab_TAD_OSD_centerMapText{};
  6862. class notification: cTab_TAD_notification{};
  6863. class loadingtxt: cTab_TAD_loadingtxt{};
  6864. class brightness: cTab_TAD_brightness{};
  6865. class background: cTab_TAD_background{};
  6866. };
  6867. };
  6868. class cTab_microDAGR_header: cTab_RscPicture
  6869. {
  6870. idc = 1;
  6871. text = "#(argb,8,8,3)color(0,0,0,1)";
  6872. x = "((573)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6873. y = "((317)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6874. w = "((942)) / 2048 * ( (0.86) * 3/4)";
  6875. h = "((94)) / 2048 * ( (0.86))";
  6876. };
  6877. class cTab_microDAGR_footer: cTab_microDAGR_header
  6878. {
  6879. idc = 2;
  6880. y = "((317) + (1296) - ((94))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6881. h = "(((94))) / 2048 * ( (0.86))";
  6882. };
  6883. class cTab_RscButton_microDAGR_LeftUp: cTab_RscButtonInv
  6884. {
  6885. x = "(373) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6886. y = "(400) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6887. w = "(26) / 2048 * ( (0.86) * 3/4)";
  6888. h = "(171) / 2048 * ( (0.86))";
  6889. };
  6890. class cTab_RscButton_microDAGR_LeftDown: cTab_RscButton_microDAGR_LeftUp
  6891. {
  6892. y = "(571) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6893. };
  6894. class cTab_RscButton_microDAGR_LeftBtn: cTab_RscButtonInv
  6895. {
  6896. x = "(368) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6897. y = "(829) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6898. w = "(31) / 2048 * ( (0.86) * 3/4)";
  6899. h = "(184) / 2048 * ( (0.86))";
  6900. };
  6901. class cTab_RscButton_microDAGR_RightUp: cTab_RscButton_microDAGR_LeftUp
  6902. {
  6903. x = "(1689) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6904. };
  6905. class cTab_RscButton_microDAGR_RightDown: cTab_RscButton_microDAGR_LeftDown
  6906. {
  6907. x = "(1689) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6908. };
  6909. class cTab_RscButton_microDAGR_RightBtn: cTab_RscButton_microDAGR_LeftBtn
  6910. {
  6911. x = "(1689) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6912. };
  6913. class cTab_RscText_microDAGR: cTab_RscText
  6914. {
  6915. style = 2;
  6916. w = "((((942) - (24) * 4) / 3)) / 2048 * ( (0.86) * 3/4)";
  6917. h = "(((94) - (24))) / 2048 * ( (0.86))";
  6918. font = "EtelkaMonospacePro";
  6919. colorText[] = {1,1,1,1};
  6920. sizeEx = "((60)) / 2048 * ( (0.86))";
  6921. colorBackground[] = {0,0,0,0};
  6922. shadow = 0;
  6923. };
  6924. class cTab_microDAGR_RscMapControl: cTab_RscMapControl
  6925. {
  6926. idc = 1201;
  6927. text = "#(argb,8,8,3)color(1,1,1,1)";
  6928. x = "(((573))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6929. y = "(((317) + (94))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6930. w = "(((942))) / 2048 * ( (0.86) * 3/4)";
  6931. h = "(((1296) - (94) - ((94)))) / 2048 * ( (0.86))";
  6932. scaleMax = 1000;
  6933. maxSatelliteAlpha = 10000;
  6934. alphaFadeStartScale = 10;
  6935. alphaFadeEndScale = 10;
  6936. ptsPerSquareSea = "8 / (1)";
  6937. ptsPerSquareTxt = "8 / (1)";
  6938. ptsPerSquareCLn = "8 / (1)";
  6939. ptsPerSquareExp = "8 / (1)";
  6940. ptsPerSquareCost = "8 / (1)";
  6941. ptsPerSquareFor = "3 / (1)";
  6942. ptsPerSquareForEdge = "100 / (1)";
  6943. ptsPerSquareRoad = "1.5 / (1)";
  6944. ptsPerSquareObj = "4 / (1)";
  6945. widthRailWay = 1;
  6946. };
  6947. class cTab_microDAGR_background: cTab_RscPicture
  6948. {
  6949. idc = 1200;
  6950. text = "";
  6951. x = "(safeZoneX + (-0.05) * 3/4)";
  6952. y = "(safeZoneY + safeZoneH - (0.86) - (0.2))";
  6953. w = "( (0.86) * 3/4)";
  6954. h = "( (0.86))";
  6955. };
  6956. class cTab_microDAGR_cursor: cTab_RscPicture
  6957. {
  6958. idc = 3;
  6959. text = "\a3\ui_f\data\IGUI\Cfg\WeaponCursors\cursoraimon_gs.paa";
  6960. x = "((573) + (942) / 2 - 128 / 33 * (38) / 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  6961. y = "((317) + (1296) / 2 - 128 / 33 * (38) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  6962. w = "(128 / 33 * (38)) / 2048 * ( (0.86) * 3/4)";
  6963. h = "(128 / 33 * (38)) / 2048 * ( (0.86))";
  6964. colorText[] = {"57/255","255/255","20/255",1};
  6965. };
  6966. class cTab_microDAGR_btnF7: cTab_RscButton_microDAGR_LeftBtn
  6967. {
  6968. idc = 4;
  6969. tooltip = "Center Map On Current Position (F7)";
  6970. };
  6971. class cTab_microDAGR_btnbrtpls: cTab_RscButton_microDAGR_RightUp
  6972. {
  6973. idc = 1609;
  6974. action = "call cTab_fnc_txt_size_inc;";
  6975. tooltip = "Increase Font";
  6976. };
  6977. class cTab_microDAGR_btnbrtmns: cTab_RscButton_microDAGR_RightDown
  6978. {
  6979. idc = 1610;
  6980. action = "call cTab_fnc_txt_size_dec;";
  6981. tooltip = "Decrease Font";
  6982. };
  6983. class cTab_microDAGR_btnfunction: cTab_RscButton_microDAGR_RightBtn
  6984. {
  6985. idc = 1607;
  6986. tooltip = "Toggle Text on/off";
  6987. };
  6988. class cTab_microDAGR_btnMapType: cTab_RscButton_microDAGR_LeftUp
  6989. {
  6990. idc = 5;
  6991. tooltip = "Toggle Map Type (F6)";
  6992. };
  6993. class cTab_microDAGR_btnMapTools: cTab_RscButton_microDAGR_LeftDown
  6994. {
  6995. idc = 6;
  6996. tooltip = "Toggle Map Tools (F5)";
  6997. };
  6998. class cTab_microDAGR_on_screen_battery: cTab_RscPicture
  6999. {
  7000. idc = 7;
  7001. text = "\ClonecTab\img\icon_battery_ca.paa";
  7002. x = "((((24) + (573)))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7003. y = "(((24) + (317)) + (((94) - (24)) - (50)) / 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7004. w = "((50)) / 2048 * ( (0.86) * 3/4)";
  7005. h = "((50)) / 2048 * ( (0.86))";
  7006. colorText[] = {1,1,1,1};
  7007. };
  7008. class cTab_microDAGR_on_screen_time: cTab_RscText_microDAGR
  7009. {
  7010. idc = 2613;
  7011. style = 2;
  7012. x = "((((24) + (573)) + (24) + (((942) - (24) * 4) / 3))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7013. y = "(((24) + (317))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7014. };
  7015. class cTab_microDAGR_on_screen_signalStrength: cTab_microDAGR_on_screen_battery
  7016. {
  7017. idc = 8;
  7018. text = "\ClonecTab\img\icon_signalStrength_ca.paa";
  7019. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3)) + (((942) - (24) * 4) / 3) - (50) * 2) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7020. colorText[] = {1,1,1,1};
  7021. };
  7022. class cTab_microDAGR_on_screen_satellite: cTab_microDAGR_on_screen_battery
  7023. {
  7024. idc = 9;
  7025. text = "\a3\ui_f\data\map\Diary\signal_ca.paa";
  7026. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3)) + (((942) - (24) * 4) / 3) - (50)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7027. colorText[] = {1,1,1,1};
  7028. };
  7029. class cTab_microDAGR_on_screen_dirDegree: cTab_RscText_microDAGR
  7030. {
  7031. idc = 2615;
  7032. style = 0;
  7033. y = "((-((94)) + (317) + (1296))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7034. x = "((((24) + (573)))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7035. };
  7036. class cTab_microDAGR_on_screen_grid: cTab_microDAGR_on_screen_dirDegree
  7037. {
  7038. idc = 2612;
  7039. style = 2;
  7040. x = "((((24) + (573)) + (24) + (((942) - (24) * 4) / 3))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7041. };
  7042. class cTab_microDAGR_on_screen_dirOctant: cTab_microDAGR_on_screen_dirDegree
  7043. {
  7044. idc = 2616;
  7045. style = 1;
  7046. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7047. };
  7048. class cTab_microDAGR_on_screen_hookGrid: cTab_RscText_microDAGR
  7049. {
  7050. idc = 2617;
  7051. style = 2;
  7052. x = "(((-(24) + (573) + (942)) - (((942) - (24) * 4) / 3))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7053. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24)) * 4) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7054. colorText[] = {1,1,1,0.5};
  7055. colorBackground[] = {0,0,0,0.25};
  7056. };
  7057. class cTab_microDAGR_on_screen_hookElevation: cTab_microDAGR_on_screen_hookGrid
  7058. {
  7059. idc = 2620;
  7060. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24)) * 3) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7061. };
  7062. class cTab_microDAGR_on_screen_hookDst: cTab_microDAGR_on_screen_hookGrid
  7063. {
  7064. idc = 2619;
  7065. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24)) * 2) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7066. };
  7067. class cTab_microDAGR_on_screen_hookDir: cTab_microDAGR_on_screen_hookGrid
  7068. {
  7069. idc = 2618;
  7070. y = "((-((94)) + (317) + (1296)) - (24) - ((94) - (24))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7071. };
  7072. class cTab_microDAGR_loadingtxt: cTab_RscText_microDAGR
  7073. {
  7074. idc = 1000;
  7075. style = 2;
  7076. text = "Loading";
  7077. x = "(((573))) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7078. y = "(((317) + (94))) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7079. w = "(((942))) / 2048 * ( (0.86) * 3/4)";
  7080. h = "(((1296) - (94) - ((94)))) / 2048 * ( (0.86))";
  7081. colorBackground[] = {0,0,0,0};
  7082. };
  7083. class cTab_microDAGR_movingHandle_T: cTab_RscText_microDAGR
  7084. {
  7085. idc = 10;
  7086. moving = 1;
  7087. colorBackground[] = {0,0,0,0};
  7088. x = "(0) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7089. y = "(0) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7090. w = "(2048 ) / 2048 * ( (0.86) * 3/4)";
  7091. h = "((317)) / 2048 * ( (0.86))";
  7092. };
  7093. class cTab_microDAGR_movingHandle_B: cTab_microDAGR_movingHandle_T
  7094. {
  7095. idc = 11;
  7096. y = "((317) + (1296)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7097. h = "(2048 - ((317) + (1296))) / 2048 * ( (0.86))";
  7098. };
  7099. class cTab_microDAGR_movingHandle_L: cTab_microDAGR_movingHandle_T
  7100. {
  7101. idc = 12;
  7102. y = "((317)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7103. w = "((573)) / 2048 * ( (0.86) * 3/4)";
  7104. h = "((1296)) / 2048 * ( (0.86))";
  7105. };
  7106. class cTab_microDAGR_movingHandle_R: cTab_microDAGR_movingHandle_L
  7107. {
  7108. idc = 13;
  7109. x = "((573) + (942)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7110. w = "(2048 - ((573) + (942))) / 2048 * ( (0.86) * 3/4)";
  7111. };
  7112. class cTab_microDAGR_brightness: cTab_RscText_microDAGR
  7113. {
  7114. idc = 1005;
  7115. x = "((573)) / 2048 * ( (0.86) * 3/4) + (safeZoneX + (-0.05) * 3/4)";
  7116. y = "((317)) / 2048 * ( (0.86)) + (safeZoneY + safeZoneH - (0.86) - (0.2))";
  7117. w = "((942)) / 2048 * ( (0.86) * 3/4)";
  7118. h = "((1296)) / 2048 * ( (0.86))";
  7119. colorBackground[] = {0,0,0,0};
  7120. };
  7121. class cTab_microDAGR_dsp
  7122. {
  7123. idd = 1776135;
  7124. movingEnable = "true";
  7125. duration = 1e+11;
  7126. fadeIn = 0;
  7127. fadeOut = 0;
  7128. onLoad = "_this call cTab_fnc_onIfOpen;";
  7129. class controlsBackground
  7130. {
  7131. class screen: cTab_microDAGR_RscMapControl
  7132. {
  7133. onDraw = "nop = _this call cTabOnDrawbftmicroDAGRdsp;";
  7134. scaleDefault = "missionNamespace getVariable 'cTabMapScale'";
  7135. };
  7136. class screenTopo: screen
  7137. {
  7138. idc = 1202;
  7139. maxSatelliteAlpha = 0;
  7140. };
  7141. };
  7142. class controls
  7143. {
  7144. class header: cTab_microDAGR_header{};
  7145. class footer: cTab_microDAGR_footer{};
  7146. class battery: cTab_microDAGR_on_screen_battery{};
  7147. class time: cTab_microDAGR_on_screen_time{};
  7148. class signalStrength: cTab_microDAGR_on_screen_signalStrength{};
  7149. class satellite: cTab_microDAGR_on_screen_satellite{};
  7150. class dirDegree: cTab_microDAGR_on_screen_dirDegree{};
  7151. class grid: cTab_microDAGR_on_screen_grid{};
  7152. class dirOctant: cTab_microDAGR_on_screen_dirOctant{};
  7153. class loadingtxt: cTab_microDAGR_loadingtxt{};
  7154. class brightness: cTab_microDAGR_brightness{};
  7155. class background: cTab_microDAGR_background{};
  7156. };
  7157. };
  7158. class cTab_RscText_Android: cTab_RscText
  7159. {
  7160. style = 2;
  7161. w = "((((1067) - (20) * 6) / 5)) / 2048 * (0.86)";
  7162. h = "(((60) - (20))) / 2048 * ( (0.86) * 4/3)";
  7163. font = "EtelkaMonospacePro";
  7164. colorText[] = {1,1,1,1};
  7165. sizeEx = "((38)) / 2048 * ( (0.86) * 4/3)";
  7166. colorBackground[] = {0,0,0,0};
  7167. shadow = 0;
  7168. };
  7169. class cTab_android_RscMapControl: cTab_RscMapControl
  7170. {
  7171. idc = 1201;
  7172. text = "#(argb,8,8,3)color(1,1,1,1)";
  7173. x = "(((452))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7174. y = "(((713) + (60))) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7175. w = "(((1067))) / 2048 * (0.86)";
  7176. h = "(((622) - (60) - (0))) / 2048 * ( (0.86) * 4/3)";
  7177. scaleMax = 1000;
  7178. scaleDefault = "(missionNamespace getVariable 'cTabMapScale') * 0.86 / safezoneH";
  7179. maxSatelliteAlpha = 10000;
  7180. alphaFadeStartScale = 10;
  7181. alphaFadeEndScale = 10;
  7182. ptsPerSquareSea = "8 / (1)";
  7183. ptsPerSquareTxt = "8 / (1)";
  7184. ptsPerSquareCLn = "8 / (1)";
  7185. ptsPerSquareExp = "8 / (1)";
  7186. ptsPerSquareCost = "8 / (1)";
  7187. ptsPerSquareFor = "3 / (1)";
  7188. ptsPerSquareForEdge = "100 / (1)";
  7189. ptsPerSquareRoad = "1.5 / (1)";
  7190. ptsPerSquareObj = "4 / (1)";
  7191. widthRailWay = 1;
  7192. };
  7193. class cTab_android_background: cTab_RscPicture
  7194. {
  7195. idc = 1200;
  7196. text = "";
  7197. x = "(safezoneX - (0.86) * 0.17)";
  7198. y = "(safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7199. w = "(0.86)";
  7200. h = "( (0.86) * 4/3)";
  7201. };
  7202. class cTab_android_btnBack: cTab_RscButtonInv
  7203. {
  7204. x = "(1609) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7205. y = "(806) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7206. w = "(102) / 2048 * (0.86)";
  7207. h = "(102) / 2048 * ( (0.86) * 4/3)";
  7208. };
  7209. class cTab_android_btnMenu: cTab_android_btnBack
  7210. {
  7211. y = "(1140) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7212. };
  7213. class cTab_android_btnHome: cTab_android_btnBack
  7214. {
  7215. x = "(1613) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7216. y = "(972) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7217. };
  7218. class cTab_android_btnPower: cTab_RscButtonInv
  7219. {
  7220. x = "(1583) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7221. y = "(1407) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7222. w = "(107) / 2048 * (0.86)";
  7223. h = "(48) / 2048 * ( (0.86) * 4/3)";
  7224. };
  7225. class cTab_android_notificationLight
  7226. {
  7227. x = "(1793) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7228. y = "(768) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7229. w = "(61) / 2048 * (0.86)";
  7230. h = "(61) / 2048 * ( (0.86) * 4/3)";
  7231. };
  7232. class cTab_android_header: cTab_RscPicture
  7233. {
  7234. idc = 1;
  7235. text = "#(argb,8,8,3)color(0,0,0,1)";
  7236. x = "((452)) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7237. y = "((713)) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7238. w = "((1067)) / 2048 * (0.86)";
  7239. h = "((60)) / 2048 * ( (0.86) * 4/3)";
  7240. };
  7241. class cTab_android_on_screen_battery: cTab_RscPicture
  7242. {
  7243. idc = 2;
  7244. text = "\ClonecTab\img\icon_battery_ca.paa";
  7245. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (1 - 1))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7246. y = "((713) + ((60) - (42)) / 2) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7247. w = "((42)) / 2048 * (0.86)";
  7248. h = "((42)) / 2048 * ( (0.86) * 4/3)";
  7249. colorText[] = {1,1,1,1};
  7250. };
  7251. class cTab_android_on_screen_time: cTab_RscText_Android
  7252. {
  7253. idc = 2613;
  7254. style = 2;
  7255. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (3 - 1))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7256. y = "((713) + ((60) - (38)) / 2) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7257. };
  7258. class cTab_android_on_screen_signalStrength: cTab_android_on_screen_battery
  7259. {
  7260. idc = 3;
  7261. text = "\ClonecTab\img\icon_signalStrength_ca.paa";
  7262. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (5 - 1)) + (((1067) - (20) * 6) / 5) - (42) * 2) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7263. colorText[] = {1,1,1,1};
  7264. };
  7265. class cTab_android_on_screen_satellite: cTab_android_on_screen_battery
  7266. {
  7267. idc = 4;
  7268. text = "\a3\ui_f\data\map\Diary\signal_ca.paa";
  7269. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (5 - 1)) + (((1067) - (20) * 6) / 5) - (42)) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7270. colorText[] = {1,1,1,1};
  7271. };
  7272. class cTab_android_on_screen_dirDegree: cTab_android_on_screen_time
  7273. {
  7274. idc = 2615;
  7275. style = 0;
  7276. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (2 - 1))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7277. };
  7278. class cTab_android_on_screen_grid: cTab_android_on_screen_dirDegree
  7279. {
  7280. idc = 2612;
  7281. style = 1;
  7282. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (4 - 1))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7283. };
  7284. class cTab_android_on_screen_dirOctant: cTab_android_on_screen_dirDegree
  7285. {
  7286. idc = 2616;
  7287. style = 1;
  7288. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (1 - 1))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7289. };
  7290. class cTab_android_on_screen_hookGrid: cTab_RscText_Android
  7291. {
  7292. idc = 2617;
  7293. style = 2;
  7294. x = "((((20) + (452)) + ((20) + (((1067) - (20) * 6) / 5)) * (1 - 1))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7295. y = "((-(0) + (713) + (622)) - (20) - ((60) - (20)) * 4) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7296. colorText[] = {1,1,1,0.5};
  7297. colorBackground[] = {0,0,0,0.25};
  7298. };
  7299. class cTab_android_on_screen_hookElevation: cTab_android_on_screen_hookGrid
  7300. {
  7301. idc = 2620;
  7302. y = "((-(0) + (713) + (622)) - (20) - ((60) - (20)) * 3) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7303. };
  7304. class cTab_android_on_screen_hookDst: cTab_android_on_screen_hookGrid
  7305. {
  7306. idc = 2619;
  7307. y = "((-(0) + (713) + (622)) - (20) - ((60) - (20)) * 2) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7308. };
  7309. class cTab_android_on_screen_hookDir: cTab_android_on_screen_hookGrid
  7310. {
  7311. idc = 2618;
  7312. y = "((-(0) + (713) + (622)) - (20) - ((60) - (20))) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7313. };
  7314. class cTab_android_loadingtxt: cTab_RscText_Android
  7315. {
  7316. idc = 1000;
  7317. style = 2;
  7318. text = "Loading";
  7319. x = "(((452))) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7320. y = "(((713) + (60))) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7321. w = "(((1067))) / 2048 * (0.86)";
  7322. h = "(((622) - (60) - (0))) / 2048 * ( (0.86) * 4/3)";
  7323. colorBackground[] = {0.2,0.431,0.647,1};
  7324. };
  7325. class cTab_android_windowsBG: cTab_RscPicture
  7326. {
  7327. idc = 1210;
  7328. text = "#(argb,8,8,3)color(0.2,0.431,0.647,1)";
  7329. x = "((452)) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7330. y = "((713)) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7331. w = "((1067)) / 2048 * (0.86)";
  7332. h = "((622)) / 2048 * ( (0.86) * 4/3)";
  7333. };
  7334. class cTab_android_movingHandle_T: cTab_RscText_Android
  7335. {
  7336. idc = 5;
  7337. moving = 1;
  7338. colorBackground[] = {0,0,0,0};
  7339. x = "(0) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7340. y = "(0) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7341. w = "(2048 ) / 2048 * (0.86)";
  7342. h = "((713)) / 2048 * ( (0.86) * 4/3)";
  7343. };
  7344. class cTab_android_movingHandle_B: cTab_android_movingHandle_T
  7345. {
  7346. idc = 6;
  7347. y = "((713) + (622)) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7348. h = "(2048 - ((713) + (622))) / 2048 * ( (0.86) * 4/3)";
  7349. };
  7350. class cTab_android_movingHandle_L: cTab_android_movingHandle_T
  7351. {
  7352. idc = 7;
  7353. y = "((713)) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7354. w = "((452)) / 2048 * (0.86)";
  7355. h = "((622)) / 2048 * ( (0.86) * 4/3)";
  7356. };
  7357. class cTab_android_movingHandle_R: cTab_android_movingHandle_L
  7358. {
  7359. idc = 8;
  7360. x = "((452) + (1067)) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7361. w = "(2048 - ((452) + (1067))) / 2048 * (0.86)";
  7362. };
  7363. class cTab_android_brightness: cTab_RscText_Android
  7364. {
  7365. idc = 1005;
  7366. x = "((452)) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7367. y = "((713)) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7368. w = "((1067)) / 2048 * (0.86)";
  7369. h = "((622)) / 2048 * ( (0.86) * 4/3)";
  7370. colorBackground[] = {0,0,0,0};
  7371. };
  7372. class cTab_android_notification: cTab_RscText_Android
  7373. {
  7374. idc = 1620;
  7375. x = "(((452)) + (((1067)) * 0.2) / 2) / 2048 * (0.86) + (safezoneX - (0.86) * 0.17)";
  7376. y = "(((713) + (60)) + ((622) - (60) - (0)) - 2 * (38)) / 2048 * ( (0.86) * 4/3) + (safezoneY + safezoneH * 0.88 - ( (0.86) * 4/3) * 0.72)";
  7377. w = "(((1067)) * 0.8) / 2048 * (0.86)";
  7378. colorBackground[] = {0,0,0,1};
  7379. };
  7380. class cTab_Android_dsp
  7381. {
  7382. idd = 177383;
  7383. duration = 1e+11;
  7384. fadeIn = 0;
  7385. fadeOut = 0;
  7386. onLoad = "_this call cTab_fnc_onIfOpen;";
  7387. objects[] = {};
  7388. class controlsBackground
  7389. {
  7390. class windowsBG: cTab_android_windowsBG{};
  7391. class screen: cTab_android_RscMapControl
  7392. {
  7393. onDraw = "nop = _this call cTabOnDrawbftAndroidDsp;";
  7394. };
  7395. class screenTopo: screen
  7396. {
  7397. idc = 1202;
  7398. maxSatelliteAlpha = 0;
  7399. };
  7400. };
  7401. class controls
  7402. {
  7403. class header: cTab_android_header{};
  7404. class battery: cTab_android_on_screen_battery{};
  7405. class time: cTab_android_on_screen_time{};
  7406. class signalStrength: cTab_android_on_screen_signalStrength{};
  7407. class satellite: cTab_android_on_screen_satellite{};
  7408. class dirDegree: cTab_android_on_screen_dirDegree{};
  7409. class grid: cTab_android_on_screen_grid{};
  7410. class dirOctant: cTab_android_on_screen_dirOctant{};
  7411. class notification: cTab_android_notification{};
  7412. class loadingtxt: cTab_android_loadingtxt{};
  7413. class brightness: cTab_android_brightness{};
  7414. class background: cTab_android_background{};
  7415. };
  7416. };
  7417. };
  7418. class CfgVehicles
  7419. {
  7420. class Box_NATO_WpsSpecial_F;
  7421. class Box_cTab_items: Box_NATO_WpsSpecial_F
  7422. {
  7423. displayname = "[cTab] Computer Gear";
  7424. icon = "iconCrateLarge";
  7425. model = "\A3\weapons_F\AmmoBoxes\WpnsBox_large_F";
  7426. scope = 2;
  7427. transportmaxmagazines = 64;
  7428. transportmaxweapons = 12;
  7429. class TransportItems
  7430. {
  7431. class _xx_ItemcTab
  7432. {
  7433. count = 5;
  7434. name = "ItemcTab";
  7435. };
  7436. class _xx_ItemAndroid
  7437. {
  7438. count = 15;
  7439. name = "ItemAndroid";
  7440. };
  7441. class _xx_ItemMicroDAGR
  7442. {
  7443. count = 25;
  7444. name = "ItemMicroDAGR";
  7445. };
  7446. class _xx_ItemcTabHCam
  7447. {
  7448. count = 25;
  7449. name = "ItemcTabHCam";
  7450. };
  7451. };
  7452. class TransportMagazines{};
  7453. class TransportWeapons{};
  7454. };
  7455. };
  7456. class CfgSounds
  7457. {
  7458. sounds[] = {};
  7459. class cTab_phoneVibrate
  7460. {
  7461. sound[] = {"\ClonecTab\sounds\phoneVibrate.wss",1,1};
  7462. titles[] = {};
  7463. };
  7464. class cTab_mailSent
  7465. {
  7466. sound[] = {"\ClonecTab\sounds\mailSent.wss",1,1};
  7467. titles[] = {};
  7468. };
  7469. };