Shuvit game master repo. http://shuvit.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

controller2.py 173KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350
  1. #shuvit.org
  2. # control script
  3. import bge
  4. import GameLogic
  5. import ctypes
  6. import math
  7. from sys import platform
  8. from mathutils import Vector
  9. def main():
  10. #scale = .3
  11. #action layers
  12. #0-14 rolling
  13. #fliplay = 500
  14. #grindlay = 700
  15. # os = 'Windows'
  16. #
  17. # if platform != "win32":
  18. # os = 'Linux'
  19. # def onWindows():
  20. # return os == 'Windows'
  21. scene = bge.logic.getCurrentScene()
  22. try:
  23. GameLogic.DictObjects
  24. init=1
  25. except:
  26. init=0
  27. # if init:
  28. # cont.GameLogic.getCurrentController()
  29. # own = cont.getOwner()
  30. # name = own.getName()
  31. # if not GameLogic.DictObjects.has_key(name):
  32. # GameLogic.DictObjects[name]=cont
  33. # own.init=0
  34. #reduction = 400000
  35. #axisTh = 0.03
  36. #initialize quadrant variables
  37. q1on = 0
  38. q2on = 0
  39. q3on = 0
  40. q4on = 0
  41. q5on = 0
  42. q6on = 0
  43. q7on = 0
  44. q8on = 0
  45. lq1on = 0
  46. lq2on = 0
  47. lq3on = 0
  48. lq4on = 0
  49. lq5on = 0
  50. lq6on = 0
  51. lq7on = 0
  52. lq8on = 0
  53. #number of frames / length of the location timers
  54. countdown = 20
  55. cont = GameLogic.getCurrentController()
  56. char = bge.constraints.getCharacter
  57. own = cont.owner
  58. dict = bge.logic.globalDict #Get the global dictionary
  59. #dict['trick_string'] = ''
  60. #last frame stuff
  61. lGRAB_ON = own["lGRAB_ON"]
  62. lastgrab = own["lastGrab"]
  63. lastpump = own["lastPump"]
  64. lf_ground = own["lF_ground"]
  65. lastopos = own["last_Opos"]
  66. lastnopos = own["last_nOpos"]
  67. LAST_STANCE = own["last_stance"]
  68. LAST_GROUND = own["last_ground"]
  69. lastStop = own["lastStop"]
  70. LAST_LEFT = own["LAST_LEFT"]
  71. last_trick_string = dict.get('last_trick_sting')
  72. lasta = own["lasta"]
  73. lastx = own["lastx"]
  74. lastaf = own["lastaf"]
  75. lastxf = own["lastxf"]
  76. lgf = own['last_grind_frame']
  77. frame = own['framenum']
  78. frames_since_grinding = frame - lgf
  79. ground_since = own["framenum"] - own['lF_air_frame']
  80. gsf = frame - own['grind_start_frame']
  81. own['last_footplant'] = own['footplant_on']
  82. lastaBut_ground = own['lastaBut_ground']
  83. lastxBut_ground = own['lastxBut_ground']
  84. aBut_ground = own['aBut_ground']
  85. xBut_ground = own['xBut_ground']
  86. own['last_manual_v2'] = own['manual_v2']
  87. lRequest = own['requestAction']
  88. lAs = own['actionState']
  89. #current frame stuff
  90. GRAB_ON = own["GRAB_ON"]
  91. pumpon = own["Pump"]
  92. vib_countdown = own["vib_Countdown"]
  93. grindold = own['grindOld']
  94. #grindHit = own["LAST_GRIND"]
  95. LAST_GRIND = own["LAST_GRIND"]
  96. #grindTouch = cont.sensors['grindCol']
  97. grindTouch = cont.sensors['grindCol_bottom']
  98. touched = grindTouch.triggered
  99. leftgrabon = own["Leftgrabon"]
  100. rightgrabon = own["Rightgrabon"]
  101. linvel = own.getLinearVelocity
  102. zvel = own.worldLinearVelocity.z
  103. own["Zvel"] = zvel
  104. r_ground = cont.sensors["r_Ground"]
  105. trigger = r_ground.triggered
  106. STANCE = own["stance"]
  107. motion = cont.actuators['MotionPump']
  108. linVelocity = own.getLinearVelocity(True)
  109. countdown = own['countdown']
  110. jump_timer = own['jump_timer']
  111. pos = own.localPosition
  112. rot = own.getAxisVect( [0.0, 0.0, 1.0])
  113. gray = cont.sensors["gRay"]
  114. #airconst = cont.actuators["airConst"]
  115. pop = cont.actuators["pop"]
  116. grindHit = own["grindHit"]
  117. grindCement = cont.actuators["grind_cement"]
  118. grindRail = cont.actuators["grind_rail"]
  119. grindSound = own["grindSound"]
  120. skater = scene.objects["Char4"]
  121. deck = scene.objects["deck"]
  122. trucks = scene.objects["trucks"]
  123. wheel1 = scene.objects["rollen.000"]
  124. wheel2 = scene.objects["rollen.001"]
  125. wheel3 = scene.objects["rollen.002"]
  126. wheel4 = scene.objects["rollen.003"]
  127. turnsens = .04
  128. turnsens2 = .06 #air_turn_boost
  129. grindDar = own["grindDar_hit"]
  130. grindEmpty = scene.objects["grindEmpty"]
  131. grindDar2 = grindEmpty.sensors["grindDar2"]
  132. #invertCol = cont.sensors["invertCol"]
  133. cam = scene.objects["Camera.003"]
  134. freecam = scene.objects["freecam"]
  135. followcam = scene.objects["followcam"]
  136. coping_on = own["coping"]
  137. invert_on = own['invert_on']
  138. grab_type = own['grab_type']
  139. c_ground = cont.sensors['c_ground']
  140. #
  141. control_bottom = scene.objects['control_bottom']
  142. invertTouch = control_bottom.sensors['grindCol_bottom']
  143. wallride = own["wallride"]
  144. wallride_col = cont.sensors['wallride']
  145. wallrideL = cont.sensors['wallrideL']
  146. wallrideR = cont.sensors['wallrideR']
  147. wallrideconstL = cont.actuators['wallrideconstL']
  148. wallrideconstR = cont.actuators['wallrideconstR']
  149. if r_ground.triggered: own['wallride_off'] = 0
  150. own['pop_sound'] = 0
  151. own['land_sound'] = 0
  152. own['revert_sound'] = 0
  153. #own['fall'] = 0
  154. #joystick location timers
  155. q1oncd = own["Q1oncd"]
  156. q2oncd = own["Q2oncd"]
  157. q3oncd = own["Q3oncd"]
  158. q4oncd = own["Q4oncd"]
  159. q5oncd = own["Q5oncd"]
  160. q6oncd = own["Q6oncd"]
  161. q7oncd = own["Q7oncd"]
  162. q8oncd = own["Q8oncd"]
  163. q1oncdl = own["Q1oncdl"]
  164. q2oncdl = own["Q2oncdl"]
  165. q3oncdl = own["Q3oncdl"]
  166. q4oncdl = own["Q4oncdl"]
  167. q5oncdl = own["Q5oncdl"]
  168. q6oncdl = own["Q6oncdl"]
  169. q7oncdl = own["Q7oncdl"]
  170. q8oncdl = own["Q8oncdl"]
  171. fliplay = 4
  172. #setable
  173. MAX_VEL = dict['MAX_VEL']
  174. SPEEDUP = dict['SPEEDUP']
  175. SPEEDPUMP = dict['SPEEDPUMP']
  176. SPEEDPUMPFAST = dict['SPEEDPUMPFAST']
  177. PUMP_SPEED_SENS = dict['PUMP_SPEED_SENS']
  178. PUMP_SENS = dict['PUMP_SENS']
  179. ACCEL = dict['ACCEL']
  180. CRUISE = dict['CRUISE']
  181. COUNTDOWN = dict['COUNTDOWN'] #pump and speed stuff
  182. JUMPHEIGHT = dict['JUMPHEIGHT'] #775#750
  183. JUMPSTRENGTH = 0
  184. own['flip_manual_stance'] = 0
  185. LAND_LAYER = 100
  186. LAND_END = 20
  187. lLR = dict['lLR']
  188. lUD = dict['lUD']
  189. rLR = dict['rLR']
  190. rUD = dict['rUD']
  191. lTrig = dict['lTrig']
  192. rTrig = dict['rTrig']
  193. aBut = dict['aBut']
  194. bBut = dict['bBut']
  195. xBut = dict['xBut']
  196. yBut = dict['yBut']
  197. lBump = dict['lBump']
  198. rBump = dict['rBump']
  199. bkBut = dict['bkBut']
  200. stBut = dict['stBut']
  201. xbBut = dict['xbBut']
  202. ltsBut = dict['ltsBut']
  203. rtsBut = dict['rtsBut']
  204. ldPad = dict['ldPad']
  205. rdPad = dict['rdPad']
  206. udPad = dict['udPad']
  207. ddPad = dict['ddPad']
  208. #fliptricks after manuals
  209. if (frame - own['last_manual_frame']) < 25:
  210. flip_start_lay = 8
  211. flipspeed = .4
  212. own['flipspeed'] = .4
  213. own['flip_start_lay'] = 8
  214. #print("chopping flip start")
  215. else:
  216. flip_start_lay = 1
  217. own['flip_start_lay'] = 1
  218. flipspeed = .6
  219. own['flipspeed'] = .6
  220. def printplaying():
  221. splaying_layers = "S: "
  222. playing_layers = "D: "
  223. tplaying_layers = "T: "
  224. for x in range(9900):
  225. if skater.isPlayingAction(x):
  226. #if trucks.isPlayingAction(x):
  227. #if skater.isPlayingAction(x):
  228. splaying_layers += str(x)
  229. splaying_layers += " "
  230. if deck.isPlayingAction(x):
  231. #if trucks.isPlayingAction(x):
  232. #if skater.isPlayingAction(x):
  233. playing_layers += str(x)
  234. playing_layers += " "
  235. if trucks.isPlayingAction(x):
  236. #if trucks.isPlayingAction(x):
  237. #if skater.isPlayingAction(x):
  238. tplaying_layers += str(x)
  239. tplaying_layers += " "
  240. print(splaying_layers, playing_layers, tplaying_layers)
  241. if aBut == True and lasta == False and r_ground.triggered:
  242. aBut_ground = True
  243. own['aBut_ground'] = True
  244. #else:
  245. if aBut == False:
  246. aBut_ground = False
  247. own['aBut_ground'] = False
  248. if xBut == True and lastx == False and r_ground.triggered:
  249. xBut_ground = True
  250. own['xBut_ground'] = True
  251. #else:
  252. if xBut == False:
  253. xBut_ground = False
  254. own['xBut_ground'] = False
  255. def killact(layer):
  256. if skater.isPlayingAction(layer):
  257. skater.stopAction(layer)
  258. if deck.isPlayingAction(layer):
  259. deck.stopAction(layer)
  260. if trucks.isPlayingAction(layer):
  261. trucks.stopAction(layer)
  262. def killall():
  263. for x in range(9000):
  264. skater.stopAction(x)
  265. deck.stopAction(x)
  266. trucks.stopAction(x)
  267. def reset_rtimers_done():
  268. pass
  269. #print('rtimer reset:', q1oncd, q2oncd, q3oncd, q4oncd, q5oncd, q6oncd, q7oncd, q8oncd)
  270. def reset_rtimers():
  271. own["Q1oncd"] = 0
  272. own["Q2oncd"] = 0
  273. own["Q3oncd"] = 0
  274. own["Q4oncd"] = 0
  275. own["Q5oncd"] = 0
  276. own["Q6oncd"] = 0
  277. own["Q7oncd"] = 0
  278. own["Q8oncd"] = 0
  279. q1oncd = 0
  280. q2oncd = 0
  281. q3oncd = 0
  282. q4oncd = 0
  283. q5oncd = 0
  284. q6oncd = 0
  285. q7oncd = 0
  286. q8oncd = 0
  287. reset_rtimers_done()
  288. def check_fall():
  289. playing_frame = 20
  290. if skater.isPlayingAction(fliplay):
  291. playing_frame = skater.getActionFrame(fliplay)
  292. if r_ground.triggered == True and skater.isPlayingAction(fliplay) and own['jump_timer'] < 40 and playing_frame < 14 and playing_frame > 3:
  293. own['fall'] = 1
  294. own['last_fall_frame'] = frame
  295. if STANCE == 0:
  296. own['requestAction'] = 'reg_air-walk_air'
  297. if STANCE == 1:
  298. own['requestAction'] = 'fak_air-walk_air'
  299. check_fall()
  300. def check_landing():
  301. lf_ground = own["lF_ground"]
  302. STANCE = own["stance"]
  303. playing_action_frame = skater.getActionFrame(LAND_LAYER)
  304. if lf_ground == False and r_ground.triggered == True:
  305. own['no_grind'] = False
  306. own['jump_from_trans'] = 0
  307. nearestObject = None
  308. minDist = None
  309. detectedObjects = grindDar2.hitObjectList
  310. if grindDar == 0:
  311. lastheight = own["air_height"]
  312. pos = own.worldPosition.z
  313. dist = lastheight - pos
  314. dist = dist * 2
  315. if dist > 1:
  316. dist = 1
  317. own.actuators["land"].volume = dist
  318. sact = own.actuators["land"]
  319. sact.stopSound()
  320. cont.activate(own.actuators["land"])
  321. own['land_sound'] = 1
  322. if grindDar == 1:
  323. pass
  324. own["vib_Countdown"] = 14
  325. cont.activate(own.actuators["Vibration"])
  326. if own['manual_v2'] == 0 and grindDar == 0:
  327. if STANCE == 0:
  328. own['requestAction'] = 'reg_land'
  329. elif STANCE == 1:
  330. own['requestAction'] = 'fak_land'
  331. lf_ground = r_ground.triggered
  332. own["lF_ground"] = lf_ground
  333. vib_countdown = own["vib_Countdown"]
  334. if vib_countdown > 0:
  335. vib_countdown = vib_countdown - 1
  336. own["vib_Countdown"] = vib_countdown
  337. if vib_countdown == 1:
  338. stopAnims()
  339. stance()
  340. #air anim
  341. if r_ground.triggered == False:
  342. if STANCE == 0:
  343. own['requestAction'] = 'reg_air'
  344. if STANCE == 1:
  345. own['requestAction'] = 'fak_air'
  346. else:
  347. if STANCE == 0:
  348. own['requestAction'] = 'reg_roll'
  349. if STANCE == 1:
  350. own['requestAction'] = 'fak_roll'
  351. #check manual_v2
  352. if (rUD > dict['man_sens_l'] and rUD < dict['man_sens_r']) or (rUD < -dict['man_sens_l'] and rUD > -dict['man_sens_r']):
  353. #if (rUD > .04 and rUD < .07):
  354. #print("zoned")
  355. timer = own['manual_v2_timer']
  356. timer = timer + 1
  357. if timer > 20:
  358. own['manual_v2'] = 1
  359. own['manual_v2_timer'] = timer
  360. if rUD < .04 and rUD > -.04:
  361. own['manual_v2_timer'] = 0
  362. own['manual_v2'] = 0
  363. own['manual_v2_type'] = None
  364. if own['manual_v2'] == 1:
  365. if own['last_manual_v2'] == 0:
  366. if STANCE == 0:
  367. if rUD > .04 and rUD < .07:
  368. #print("reg manual")
  369. own['manual_v2_type'] = 'reg manual'
  370. if rUD < -.04 and rUD > -.07:
  371. own['manual_v2_type'] = 'reg nose manual'
  372. if STANCE == 1:
  373. if rUD > .04 and rUD < .07:
  374. own['manual_v2_type'] = 'fak manual'
  375. if lRequest == 'reg_air_tail to manual':
  376. #print('chaaaaange init')
  377. own['manual_v2_type'] = 'fak nose manual'
  378. if rUD < -.04 and rUD > -.07:
  379. own['manual_v2_type'] = 'fak nose manual'
  380. else:
  381. #print("flip stance")
  382. if own['jump_stance'] == 0:
  383. #print('flipstance 0')
  384. if own['manual_v2_type'] == 'fak manual':
  385. own['manual_v2_type'] = 'reg nose manual'
  386. if own['manual_v2_type'] == 'fak nose manual':
  387. own['manual_v2_type'] = 'reg manual'
  388. if lAs == 'fak_air_tail to manual' and own['manual_v2_type'] == 'reg manual':
  389. #print('---requesting reg nose manual')
  390. own['manual_v2_type'] = 'reg nose manual'
  391. if lAs == 'fak_air_nose to nmanual' and own['manual_v2_type'] == 'reg nose manual':
  392. #print('---requesting reg nose manual')
  393. own['manual_v2_type'] = 'reg manual'
  394. if own['jump_stance'] == 1:
  395. #print('flipstance 1')
  396. if own['manual_v2_type'] == 'reg manual':
  397. own['manual_v2_type'] = 'fak nose manual'
  398. if own['manual_v2_type'] == 'reg nose manual':
  399. #print("asdfasdfasdfsdfasdfasdf")
  400. own['manual_v2_type'] = 'fak manual'
  401. if lAs == 'reg_air_tail to manual' and own['manual_v2_type'] == 'fak manual':
  402. #print('---requesting fak nose manual')
  403. own['manual_v2_type'] = 'fak nose manual'
  404. if lAs == 'reg_air_nose to nmanual' and own['manual_v2_type'] == 'fak nose manual':
  405. #print('---requesting fak nose manual')
  406. own['manual_v2_type'] = 'fak manual'
  407. if STANCE == 0 and (own['manual_v2_type'] == 'fak manual' or own['actionState'] == 'fak-reg_nmanual'):
  408. own['manual_v2_type'] = 'reg nose manual'
  409. if STANCE == 1 and (own['manual_v2_type'] == 'reg manual' or own['actionState'] == 'reg-fak_nmanual'):
  410. own['manual_v2_type'] = 'fak nose manual'
  411. if STANCE == 0 and (own['manual_v2_type'] == 'fak nose manual' or own['actionState'] == 'fak-reg_manual'):
  412. own['manual_v2_type'] = 'reg manual'
  413. if STANCE == 1 and (own['manual_v2_type'] == 'reg nose manual' or own['actionState'] == 'reg-fak_manual'):
  414. own['manual_v2_type'] = 'fak manual'
  415. #check manual
  416. ####
  417. #reg
  418. if rUD > dict['man_sens_l'] and rUD < dict['man_sens_r'] and STANCE == 0 and rLR < .035 and rLR > -.035:
  419. timer = own["reg_manual_timer"]
  420. timer = timer + 1
  421. own["reg_manual_timer"] = timer
  422. if timer > 20 and rUD < .04:
  423. own["reg_manual"] = 0
  424. if rUD <= dict['man_sens_l'] and (STANCE == 1 or STANCE == 0) and rUD >= -.04:
  425. own["reg_manual_timer"] = 0
  426. own["reg_manual"] = 0
  427. #####
  428. if own["reg_manual_timer"] > 10 and own["fak_manual"] == 0 and own['reg_nmanual'] == 0:
  429. own["reg_manual"] = 1
  430. ######
  431. if own["reg_manual_timer"] == 0:
  432. own["reg_manual"] = 0
  433. ####
  434. #fak
  435. if rUD > dict['man_sens_l'] and rUD < dict['man_sens_r'] and STANCE == 1 and rLR < .035 and rLR > -.035:
  436. timer = own["fak_manual_timer"]
  437. timer = timer + 1
  438. own["fak_manual_timer"] = timer
  439. if timer > 20:
  440. own["fak_manual"] = 0
  441. if rUD <= dict['man_sens_l'] and (STANCE == 1 or STANCE == 0) and rUD >= -.04:
  442. own["fak_manual_timer"] = 0
  443. own["fak_manual"] = 0
  444. if own["fak_manual_timer"] > 10 and own["reg_manual"] == 0:
  445. own["fak_manual"] = 1
  446. if own["fak_manual_timer"] == 0:
  447. own["fak_manual"] = 0
  448. #####
  449. #reg nmanual
  450. if rUD < -dict['man_sens_l'] and rUD > -dict['man_sens_r'] and STANCE == 0 and rLR < .035 and rLR > -.035:
  451. timer = own["reg_nmanual_timer"]
  452. timer = timer + 1
  453. own["reg_nmanual_timer"] = timer
  454. if timer > 20:
  455. own["reg_nmanual"] = 0
  456. if rUD >= -dict['man_sens_l'] and (STANCE == 1 or STANCE == 0) and rUD <= .04:
  457. own["reg_nmanual_timer"] = 0
  458. own["reg_nmanual"] = 0
  459. if own["reg_nmanual_timer"] > 10 and own["fak_nmanual"] == 0 and own['reg_manual'] == 0 and own['fak_manual'] == 0:
  460. if own['last_fak_manual'] == False and own['last_reg_manual'] == False and own['last_fak_manual'] == False:
  461. own["reg_nmanual"] = 1
  462. if own["reg_nmanual_timer"] == 0:
  463. own["reg_nmanual"] = 0
  464. #####
  465. #fak nmanual
  466. #print (rUD)
  467. if rUD < -dict['man_sens_l'] and rUD > -dict['man_sens_r'] and STANCE == 1 and rLR < .035 and rLR > -.035:
  468. timer = own["fak_nmanual_timer"]
  469. timer = timer + 1
  470. own["fak_nmanual_timer"] = timer
  471. if timer > 20:
  472. own["fak_nmanual"] = 0
  473. if rUD >= -dict['man_sens_l'] and (STANCE == 1 or STANCE == 0) and rUD <= .04:
  474. own["fak_nmanual_timer"] = 0
  475. own["fak_nmanual"] = 0
  476. if own["fak_nmanual_timer"] > 10 and own["reg_nmanual"] == 0 and own['fak_manual'] == 0 and own ['reg_manual'] == 0:
  477. own["fak_nmanual"] = 1
  478. if own["fak_nmanual_timer"] == 0 and own['reg_manual'] == 0:
  479. own["fak_nmanual"] = 0
  480. if own['last_fak_nmanual'] == 1 and own['fak_nmanual'] == 0:
  481. pass
  482. def reg_stance_left_off():
  483. LAST_LEFT = own["LAST_LEFT"]
  484. own["LAST_LEFT"] = 0
  485. def reg_stance_right_off():
  486. LAST_RIGHT = own["LAST_RIGHT"]
  487. own["LAST_RIGHT"] = 0
  488. def reg_stance_on(inc):
  489. playing = deck.isPlayingAction(40)
  490. if own["revert_timer"] < 1 and own['manual_v2'] == 0 and playing == 0:
  491. own['requestAction'] = 'reg_roll'
  492. def reg_manual_on():
  493. own['requestAction'] = 'reg_manual'
  494. def fak_manual_on():
  495. own['requestAction'] = 'fak_manual'
  496. def reg_nmanual_on():
  497. own['requestAction'] = 'reg_nmanual'
  498. def fak_nmanual_on():
  499. own['requestAction'] = 'fak_nmanual'
  500. if own['l_actionState'] == 'reg_manual_revert_ccw':
  501. own['manual_v2_type'] = 'fak nose manual'
  502. fak_nmanual_on()
  503. if own['l_actionState'] == 'reg_manual_revert_cw':
  504. own['manual_v2_type'] = 'fak nose manual'
  505. fak_nmanual_on()
  506. ###########
  507. def reg_stanceinc_on():
  508. pass
  509. def reg_stanceinc_off():
  510. pass
  511. def reg_stance_left_on():
  512. if own['manual_v2'] == 0 and own["revert_timer"] < 1 and own['gt_cd2'] < 1 and ground_since > 30:
  513. if own["Pump"] == 1:
  514. own['requestAction'] = 'reg_pump_left'
  515. else:
  516. own['requestAction'] = 'reg_turnLeft'
  517. LAST_LEFT = own["LAST_LEFT"]
  518. playing_action_frame = skater.getActionFrame(LAND_LAYER)
  519. if LAST_LEFT == 0 or (playing_action_frame > (LAND_END - 2) and playing_action_frame < (LAND_END - 1)):
  520. LAST_LEFT = 1
  521. own["LAST_LEFT"] = 1
  522. def reg_stance_right_on():
  523. if own['manual_v2'] == 0 and own["revert_timer"] < 1 and own['gt_cd2'] < 1 and ground_since > 30:
  524. if own["Pump"] == 1:
  525. own['requestAction'] = 'reg_pump_right'
  526. else:
  527. own['requestAction'] = 'reg_turnRight'
  528. LAST_RIGHT = own["LAST_RIGHT"]
  529. playing_action_frame = skater.getActionFrame(LAND_LAYER)
  530. if LAST_RIGHT == 0 or (playing_action_frame > (LAND_END - 2) and playing_action_frame < (LAND_END - 1)):
  531. LAST_RIGHT = 1
  532. own["LAST_RIGHT"] = 1
  533. def fak_stance_on(inc):
  534. playing = deck.isPlayingAction(40)
  535. if own['manual_v2'] == 0 and own["revert_timer"] < 1 and playing == 0 and own['gt_cd2'] < 1:
  536. own['requestAction'] = 'fak_roll'
  537. def fak_stance_left_on():
  538. if own['manual_v2'] == 0 and own["revert_timer"] < 1 and own['gt_cd2'] < 1 and ground_since > 30:
  539. if own["Pump"] == 1:
  540. own['requestAction'] = 'fak_pump_left'
  541. else:
  542. own['requestAction'] = 'fak_turnLeft'
  543. LAST_LEFT_FAK = own["LAST_LEFT_FAK"]
  544. playing_action_frame = skater.getActionFrame(LAND_LAYER)
  545. if LAST_LEFT_FAK == 0 or (playing_action_frame > (LAND_END - 2) and playing_action_frame < (LAND_END - 1)):
  546. LAST_LEFT_FAK = 1
  547. own["LAST_LEFT_FAK"] = 1
  548. def fak_stance_left_off():
  549. LAST_LEFT_FAK = own["LAST_LEFT_FAK"]
  550. own["LAST_LEFT_FAK"] = 0
  551. def fak_stance_right_on():
  552. if own['manual_v2'] == 0 and own["revert_timer"] < 1 and own['gt_cd2'] < 1 and ground_since > 30:
  553. if own["Pump"] == 1:
  554. own['requestAction'] = 'fak_pump_right'
  555. else:
  556. own['requestAction'] = 'fak_turnRight'
  557. LAST_RIGHT_FAK = own["LAST_RIGHT_FAK"]
  558. own["LAST_RIGHT_FAK"] = 1
  559. def fak_stance_right_off():
  560. LAST_RIGHT_FAK = own["LAST_RIGHT_FAK"]
  561. own["LAST_RIGHT_FAK"] = 0
  562. def reg_air_on():
  563. playing = deck.isPlayingAction(fliplay)
  564. if playing == False:
  565. own['requestAction'] = 'reg_air'
  566. def reg_air_off():
  567. pass
  568. def fak_air_on():
  569. flipping = skater.isPlayingAction(fliplay)
  570. if flipping == False:
  571. own['requestAction'] = 'fak_air'
  572. def fak_air_off():
  573. pass
  574. def stance():
  575. rotation = .96
  576. turnsens = 0.06
  577. if rot.z < .9: inc = 1
  578. else: inc = 0
  579. flipping = False
  580. #ground
  581. ground_since = own["framenum"] - own['lF_air_frame']
  582. inc = 0
  583. if rot.z < .98:
  584. inc = 1
  585. if r_ground.triggered == True and grindHit == False and flipping == False and own["wallride"] == None and own['revert_timer'] < 2:
  586. if STANCE == 0:
  587. reg_manual = own['reg_manual']
  588. fak_manual = own["fak_manual"]
  589. reg_nmanual = own['reg_nmanual']
  590. fak_nmanual = own["fak_nmanual"]
  591. if LAST_STANCE != STANCE or LAST_GROUND != r_ground.triggered:
  592. reg_air_off()
  593. fak_air_off()
  594. if reg_manual == 0 and fak_manual == 0:
  595. last_manual = own['last_reg_manual']
  596. reg_stance_on(inc)
  597. if own['manual_v2_type'] == 'reg manual':
  598. reg_manual_on()
  599. elif own['manual_v2_type'] == 'reg nose manual':
  600. reg_nmanual_on()
  601. elif own['manual_v2_type'] == 'fak manual':
  602. fak_manual_on()
  603. elif own['manual_v2_type'] == 'fak nose manual':
  604. fak_nmanual_on()
  605. if STANCE == 1:
  606. reg_manual = own['reg_manual']
  607. fak_manual = own["fak_manual"]
  608. reg_nmanual = own['reg_nmanual']
  609. fak_nmanual = own["fak_nmanual"]
  610. if LAST_STANCE != STANCE or LAST_GROUND != r_ground.triggered:
  611. reg_air_off()
  612. fak_air_off
  613. if fak_manual == 0:
  614. last_manual = own['last_fak_manual']
  615. fak_stance_on(inc)
  616. if own['manual_v2_type'] == 'fak manual':
  617. fak_manual_on()
  618. elif own['manual_v2_type'] == 'fak nose manual':
  619. fak_nmanual_on()
  620. elif own['manual_v2_type'] == 'reg manual':
  621. reg_manual_on()
  622. elif own['manual_v2_type'] == 'reg nose manual':
  623. reg_nmanual_on()
  624. #if own["Pump"] == False:
  625. if (lLR < -turnsens or dict['kb_la'] == 2) and STANCE == 0:
  626. reg_stance_left_on()
  627. if lLR > -turnsens or LAST_GRIND != grindHit or dict['kb_la'] == 0:
  628. reg_stance_left_off()
  629. if (lLR > turnsens or dict['kb_ra'] == 2) and STANCE == 0:
  630. reg_stance_right_on()
  631. if lLR < turnsens or LAST_GRIND != grindHit or dict['kb_ra'] == 0:
  632. reg_stance_right_off()
  633. if (lLR < -turnsens or dict['kb_la'] == 2) and STANCE == 1:
  634. fak_stance_left_on()
  635. if lLR > -turnsens or LAST_GRIND != grindHit or dict['kb_la'] == 0:
  636. fak_stance_left_off()
  637. if (lLR > turnsens or dict['kb_ra'] == 2) and STANCE == 1:
  638. fak_stance_right_on()
  639. if lLR < turnsens or LAST_GRIND != grindHit or dict['kb_ra'] == 0:
  640. fak_stance_right_off()
  641. #air
  642. playing = deck.isPlayingAction(fliplay)
  643. if r_ground.triggered == False and playing == False and flipping == False:
  644. if STANCE == 0:
  645. if LAST_STANCE != STANCE or LAST_GROUND != r_ground.triggered:
  646. fak_air_off()
  647. reg_stance_left_off()
  648. reg_stance_right_off()
  649. fak_stance_left_off()
  650. fak_stance_right_off()
  651. reg_air_on()
  652. if STANCE == 1:
  653. if LAST_STANCE != STANCE or LAST_GROUND != r_ground.triggered:
  654. reg_air_off()
  655. reg_stance_left_off()
  656. reg_stance_right_off()
  657. fak_stance_left_off()
  658. fak_stance_right_off()
  659. fak_air_on()
  660. ###################
  661. #trick definitions#
  662. ###################
  663. def jump():
  664. #print("jump funct")
  665. jump_timer = own['jump_timer']
  666. cont.deactivate(wallrideconstL)
  667. cont.deactivate(wallrideconstR)
  668. own['last_jump_frame'] = frame
  669. own['no_grind_timer'] = 0
  670. if JUMPSTRENGTH != 0:
  671. height = JUMPSTRENGTH * JUMPHEIGHT
  672. else:
  673. height = JUMPHEIGHT
  674. #if jump_timer == 0:
  675. if jump_timer < 50:
  676. jump_timer = 60
  677. own['jump_timer'] = jump_timer
  678. if zvel < 7 and jump_timer == 60:
  679. cont.activate(own.actuators["pop"])
  680. own['pop_sound'] = 1
  681. #print("jump")
  682. #
  683. posx = own.worldPosition[0]
  684. posy = own.worldPosition[1]
  685. posz = own.worldPosition[2]
  686. jumppos = Vector((posx, posy, posz))
  687. own['jumpPos'] = jumppos
  688. force = [ 0.0, 0.0, height]
  689. # use local axis
  690. local = False
  691. # apply force
  692. try:
  693. if 'trans' in r_ground.hitObject:
  694. #print('jump from trans')
  695. own['jump_from_trans'] = 1
  696. own['trans_jump_obj'] = r_ground.hitObject
  697. except:
  698. #print('trans jump broke')
  699. pass
  700. if grindHit == False:
  701. if rot.z < .7:
  702. rotamt = rot.z * .5
  703. own.applyRotation([0, rotamt,0], True)
  704. own['no_grind'] = True
  705. own['no_grind_pull'] = 1
  706. own.applyForce(force, local)
  707. force2 = [0.0, 0, 150]
  708. own.applyForce(force2, True)
  709. #print("apply jump force1")
  710. if grindHit == True:
  711. linvelloc = own.getLinearVelocity(True)
  712. own.applyForce(force, True)
  713. force2 = [0.0, 0, 150]
  714. own.applyForce(force2, True)
  715. linvelloc2 = own.getLinearVelocity(True)
  716. force = (linvelloc.x, linvelloc.y, linvelloc2.z)
  717. own.setLinearVelocity(force, True)
  718. #print("apply jump force2 grindHit")
  719. own['jump_stance'] = STANCE
  720. if STANCE == True:
  721. own["jump_stance"] = 1
  722. if STANCE == False:
  723. own["jump_stance"] = 0
  724. own["jump_stance"] = own["stance"]
  725. if grindHit == True:
  726. own['grind_jump'] = 1
  727. if lLR > turnsens or lLR < -turnsens or lUD > turnsens or lUD < -turnsens:
  728. own['grindjumpturn'] = True
  729. num = 1
  730. if num ==1:
  731. rString = "R"
  732. lString = "L"
  733. cont.deactivate(wallrideconstL)
  734. cont.deactivate(wallrideconstR)
  735. if own["wallride"] == "R":
  736. force = [0,170,0]
  737. own.applyForce(force, True)
  738. cont.activate(own.actuators["pop2"])
  739. jump_timer = 60
  740. own['jump_timer'] = jump_timer
  741. if own["wallride"] == "L":
  742. force = [0,-170,0] #325
  743. own.applyForce(force, True)
  744. cont.activate(own.actuators["pop2"])
  745. jump_timer = 60
  746. own['jump_timer'] = jump_timer
  747. own["Q1oncd"] = 0
  748. own["Q2oncd"] = 0
  749. own["Q3oncd"] = 0
  750. own["Q4oncd"] = 0
  751. own["Q5oncd"] = 0
  752. own["Q6oncd"] = 0
  753. own["Q7oncd"] = 0
  754. own["Q8oncd"] = 0
  755. if own['jump_timer'] == 60:
  756. own['jump_timer'] = 59
  757. def jump_Timer():
  758. jump_timer = own['jump_timer']
  759. if jump_timer > 0:
  760. jump_timer = jump_timer - 1
  761. own['jump_timer'] = jump_timer
  762. if own['grindjumpturn'] == True:
  763. jump_timer = 30
  764. own['jump_timer'] = jump_timer
  765. def pump():
  766. velocity = own['velocity']
  767. #switch
  768. local = True
  769. downforce = dict['pump_downforce']
  770. lF_air_frame = own['lF_air_frame']
  771. frames_since_ground = own['framenum'] - own['lF_air_frame']
  772. if linVelocity.x < MAX_VEL and linVelocity.x >= -0 and STANCE == 1 and grindHit == False and frames_since_ground > 30 and own['last_manual_v2'] == 0:
  773. countdown = COUNTDOWN
  774. yvel = linVelocity.x + SPEEDPUMP
  775. yvel2 = linVelocity.x + SPEEDPUMPFAST
  776. own['countdown'] = countdown
  777. force = [(yvel), 0, linVelocity.z + downforce]
  778. force2 = [(yvel2), 0, linVelocity.z + downforce]
  779. if rot.z < PUMP_SENS and rot.z > PUMP_SPEED_SENS:
  780. own.setLinearVelocity(force, local)
  781. if rot.z < PUMP_SENS and rot.z <= PUMP_SPEED_SENS:
  782. own.setLinearVelocity(force2, local)
  783. if own['requestAction'] not in ['fak_pump_left', 'fak_pump_right'] and own['l_actionState'] not in ['fak_turnLeft', 'fak_turnRight']:
  784. own['requestAction'] = 'fak_pump'
  785. #reg
  786. if linVelocity.x > -MAX_VEL and linVelocity.x <= 0 and STANCE == 0 and grindHit == False and frames_since_ground > 30 and own['last_manual_v2'] == 0:
  787. countdown = COUNTDOWN
  788. yvel = linVelocity.x - SPEEDPUMP
  789. yvel2 = linVelocity.x - SPEEDPUMPFAST
  790. own['countdown'] = countdown
  791. force = [(yvel), 0, linVelocity.z + downforce]
  792. force2 = [(yvel2), 0, linVelocity.z + downforce]
  793. if rot.z < PUMP_SENS and rot.z > PUMP_SPEED_SENS:
  794. own.setLinearVelocity(force, local)
  795. if rot.z < PUMP_SENS and rot.z <= PUMP_SPEED_SENS:
  796. own.setLinearVelocity(force2, local)
  797. if own['requestAction'] not in ['reg_pump_left', 'reg_pump_right'] and own['l_actionState'] not in ['reg_turnLeft', 'reg_turnRight']:
  798. own['requestAction'] = 'reg_pump'
  799. own["Pump"] = True
  800. own["lastPump"] = True
  801. def roll():
  802. if r_ground.triggered == 1:
  803. pass
  804. def stop():
  805. if linVelocity.x < .05 and linVelocity.x > -.05:
  806. can_stop = 0
  807. own["lastStop"] = True
  808. else:
  809. can_stop = 1
  810. if r_ground.triggered == 1 and STANCE == False and can_stop == 1:
  811. own['requestAction'] = 'reg_stop'
  812. yvel = linVelocity.x * .985
  813. force = [(yvel), 0, linVelocity.z]
  814. own.setLinearVelocity(force, True)
  815. elif r_ground.triggered == 1 and STANCE == True and can_stop == 1:
  816. own['requestAction'] = 'fak_stop'
  817. yvel = linVelocity.x * .985
  818. force = [(yvel), 0, linVelocity.z]
  819. own.setLinearVelocity(force, True)
  820. if linVelocity.x < .05 and linVelocity.x > -.05 and own["lastStop"] == True:
  821. own["lastStop"] == False
  822. def oposin():
  823. if ground_since > 30:
  824. if (r_ground.triggered == 1) and STANCE == False and own['manual'] == 0:
  825. if grindold == 0:
  826. own['requestAction'] = 'reg_opos'
  827. elif (r_ground.triggered == 1) and STANCE == True and own['manual'] == 0:
  828. if grindold == 0:
  829. own['requestAction'] = 'fak_opos'
  830. own["last_Opos"] = True
  831. def noposin():
  832. if ground_since > 30:
  833. if (r_ground.triggered == 1) and STANCE == False and own['manual'] == 0:
  834. if grindold == 0:
  835. own['requestAction'] = 'reg_nopos'
  836. elif (r_ground.triggered == 1) and STANCE == True and own['manual'] == 0:
  837. if grindold == 0:
  838. own['requestAction'] = 'fak_nopos'
  839. own["last_nOpos"] = True
  840. def aollie():
  841. print("ollie")
  842. #dict['trick_string'] = 'Ollie'
  843. r_ground = cont.sensors["r_Ground"]
  844. trigger = r_ground.triggered
  845. STANCE = own["stance"]
  846. wallride = own["wallride"]
  847. dict['trick_string'] = 'Ollie'
  848. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  849. own["wallride_off"] = 1
  850. own['requestAction'] = 'reg_ollie'
  851. jump()
  852. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  853. own["wallride_off"] = 1
  854. own['requestAction'] = 'fak_ollie'
  855. jump()
  856. def nollie():
  857. print("nollie")
  858. dict['trick_string'] = 'Nollie'
  859. r_ground = cont.sensors["r_Ground"]
  860. trigger = r_ground.triggered
  861. STANCE = own["stance"]
  862. if (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  863. own['requestAction'] = 'fak_nollie'
  864. own["wallride_off"] = 1
  865. jump()
  866. elif (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  867. own["wallride_off"] = 1
  868. own['requestAction'] = 'reg_nollie'
  869. jump()
  870. def kickflip():
  871. print("kickflip")
  872. STANCE = own["stance"]
  873. print(flip_start_lay)
  874. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  875. own["wallride_off"] = 1
  876. own['requestAction'] = 'reg_kickflip'
  877. jump()
  878. dict['trick_string'] = 'Kickflip'
  879. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  880. own["wallride_off"] = 1
  881. own['requestAction'] = 'fak_heelflip'
  882. jump()
  883. if own["wallride"] !=1: jump()
  884. dict['trick_string'] = 'Heelflip'
  885. if r_ground.triggered == 0 and STANCE == False:
  886. own["wallride_off"] = 1
  887. own['requestAction'] = 'reg_kickflip'
  888. if own["wallride"] != None:
  889. jump()
  890. dict['trick_string'] = 'Kickflip'
  891. elif r_ground.triggered == 0 and STANCE == True:
  892. own["wallride_off"] = 1
  893. own['requestAction'] = 'fak_heelflip'
  894. if own["wallride"] != None:
  895. jump()
  896. dict['trick_string'] = 'Heelflip'
  897. def inward_heelflip():
  898. print("inward heelflip")
  899. dict['trick_string'] = 'Inward Heelflip'
  900. STANCE = own["stance"]
  901. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  902. own["wallride_off"] = 1
  903. own['requestAction'] = 'reg_inward_heelflip'
  904. jump()
  905. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  906. own["wallride_off"] = 1
  907. own['requestAction'] = 'fak_inward_heelflip'
  908. jump()
  909. if r_ground.triggered == 0 and STANCE == False:
  910. own["wallride_off"] = 1
  911. if own["wallride"] != None:
  912. jump()
  913. elif r_ground.triggered == 0 and STANCE == True:
  914. own["wallride_off"] = 1
  915. if own["wallride"] != None:
  916. jump()
  917. def hardflip():
  918. print("hardflip")
  919. dict['trick_string'] = 'Hardflip'
  920. STANCE = own["stance"]
  921. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  922. own["wallride_off"] = 1
  923. own['requestAction'] = 'reg_hardflip'
  924. jump()
  925. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  926. own["wallride_off"] = 1
  927. own['requestAction'] = 'fak_hardflip'
  928. jump()
  929. if r_ground.triggered == 0 and STANCE == False:
  930. own["wallride_off"] = 1
  931. if own["wallride"] != None:
  932. jump()
  933. elif r_ground.triggered == 0 and STANCE == True:
  934. own["wallride_off"] = 1
  935. if own["wallride"] != None:
  936. jump()
  937. def nollie_inward_heelflip():
  938. print("nollie inward heelflip")
  939. dict['trick_string'] = 'Nollie Inward Heelflip'
  940. STANCE = own["stance"]
  941. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  942. own["wallride_off"] = 1
  943. own['requestAction'] = 'reg_nollie_inward_heelflip'
  944. jump()
  945. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  946. own["wallride_off"] = 1
  947. own['requestAction'] = 'fak_nollie_inward_heelflip'
  948. jump()
  949. if r_ground.triggered == 0 and STANCE == False:
  950. own["wallride_off"] = 1
  951. if own["wallride"] != None:
  952. jump()
  953. elif r_ground.triggered == 0 and STANCE == True:
  954. own["wallride_off"] = 1
  955. if own["wallride"] != None:
  956. jump()
  957. def nollie_hardflip():
  958. print("nollie hardflip")
  959. dict['trick_string'] = 'Nollie Hardflip'
  960. STANCE = own["stance"]
  961. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  962. own["wallride_off"] = 1
  963. own['requestAction'] = 'reg_nollie_hardflip'
  964. jump()
  965. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  966. own["wallride_off"] = 1
  967. own['requestAction'] = 'fak_nollie_hardflip'
  968. jump()
  969. if r_ground.triggered == 0 and STANCE == False:
  970. own["wallride_off"] = 1
  971. if own["wallride"] != None:
  972. jump()
  973. elif r_ground.triggered == 0 and STANCE == True:
  974. own["wallride_off"] = 1
  975. if own["wallride"] != None:
  976. jump()
  977. def varial_kickflip():
  978. print("varial kickflip")
  979. dict['trick_string'] = 'Varial Kickflip'
  980. STANCE = own["stance"]
  981. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  982. own["wallride_off"] = 1
  983. own['requestAction'] = 'reg_varial_kickflip'
  984. jump()
  985. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  986. own["wallride_off"] = 1
  987. own['requestAction'] = 'fak_varial_kickflip'
  988. jump()
  989. if r_ground.triggered == 0 and STANCE == False:
  990. own["wallride_off"] = 1
  991. if own["wallride"] != None:
  992. jump()
  993. elif r_ground.triggered == 0 and STANCE == True:
  994. own["wallride_off"] = 1
  995. if own["wallride"] != None:
  996. jump()
  997. def nollie_varial_kickflip():
  998. print("nollie varial kickflip")
  999. dict['trick_string'] = 'Nollie Varial Kickflip'
  1000. STANCE = own["stance"]
  1001. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1002. own["wallride_off"] = 1
  1003. own['requestAction'] = 'reg_nollie_varial_kickflip'
  1004. jump()
  1005. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1006. own["wallride_off"] = 1
  1007. own['requestAction'] = 'fak_nollie_varial_kickflip'
  1008. jump()
  1009. if r_ground.triggered == 0 and STANCE == False:
  1010. own["wallride_off"] = 1
  1011. if own["wallride"] != None:
  1012. jump()
  1013. elif r_ground.triggered == 0 and STANCE == True:
  1014. own["wallride_off"] = 1
  1015. if own["wallride"] != None:
  1016. jump()
  1017. def nollie_varial_heelflip():
  1018. print("nollie varial heelflip")
  1019. dict['trick_string'] = 'Nollie Varial Heelflip'
  1020. STANCE = own["stance"]
  1021. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1022. own["wallride_off"] = 1
  1023. own['requestAction'] = 'reg_nollie_varial_heelflip'
  1024. jump()
  1025. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1026. own["wallride_off"] = 1
  1027. own['requestAction'] = 'fak_nollie_varial_heelflip'
  1028. jump()
  1029. if r_ground.triggered == 0 and STANCE == False:
  1030. own["wallride_off"] = 1
  1031. if own["wallride"] != None:
  1032. jump()
  1033. elif r_ground.triggered == 0 and STANCE == True:
  1034. own["wallride_off"] = 1
  1035. if own["wallride"] != None:
  1036. jump()
  1037. def varial_heelflip():
  1038. print("varial heelflip")
  1039. dict['trick_string'] = 'Varial Heelflip'
  1040. STANCE = own["stance"]
  1041. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1042. own["wallride_off"] = 1
  1043. own['requestAction'] = 'reg_varial_heelflip'
  1044. jump()
  1045. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1046. own["wallride_off"] = 1
  1047. own['requestAction'] = 'fak_varial_heelflip'
  1048. jump()
  1049. if r_ground.triggered == 0 and STANCE == False:
  1050. own["wallride_off"] = 1
  1051. if own["wallride"] != None:
  1052. jump()
  1053. elif r_ground.triggered == 0 and STANCE == True:
  1054. own["wallride_off"] = 1
  1055. if own["wallride"] != None:
  1056. jump()
  1057. def nollie_kickflip():
  1058. print("kickflip")
  1059. STANCE = own["stance"]
  1060. dict['trick_string'] = 'Nollie Kickflip'
  1061. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1062. own["wallride_off"] = 1
  1063. own['requestAction'] = 'reg_nollie_kickflip'
  1064. jump()
  1065. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1066. own["wallride_off"] = 1
  1067. own['requestAction'] = 'fak_nollie_kickflip'
  1068. jump()
  1069. if r_ground.triggered == 0 and STANCE == False:
  1070. own["wallride_off"] = 1
  1071. elif r_ground.triggered == 0 and STANCE == True:
  1072. own["wallride_off"] = 1
  1073. def heelflip():
  1074. print("heelflip")
  1075. STANCE = own["stance"]
  1076. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1077. own["wallride_off"] = 1
  1078. own['requestAction'] = 'reg_heelflip'
  1079. jump()
  1080. dict['trick_string'] = 'Heelflip'
  1081. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1082. own["wallride_off"] = 1
  1083. own['requestAction'] = 'fak_kickflip'
  1084. jump()
  1085. dict['trick_string'] = 'Kickflip'
  1086. if r_ground.triggered == 0 and STANCE == False:
  1087. own["wallride_off"] = 1
  1088. elif r_ground.triggered == 0 and STANCE == True:
  1089. own["wallride_off"] = 1
  1090. def nollie_heelflip():
  1091. print("heelflip")
  1092. dict['trick_string'] = 'Nollie Heelflip'
  1093. STANCE = own["stance"]
  1094. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1095. own["wallride_off"] = 1
  1096. own['requestAction'] = 'reg_nollie_heelflip'
  1097. jump()
  1098. elif (r_ground.triggered == 1 and STANCE == True) or (grindHit == True and STANCE == True):
  1099. own["wallride_off"] = 1
  1100. own['requestAction'] = 'fak_nollie_heelflip'
  1101. jump()
  1102. if r_ground.triggered == 0 and STANCE == False:
  1103. own["wallride_off"] = 1
  1104. if own["wallride"] != None:
  1105. jump()
  1106. elif r_ground.triggered == 0 and STANCE == True:
  1107. own["wallride_off"] = 1
  1108. if own["wallride"] != None:
  1109. jump()
  1110. def shuvit():
  1111. print("shuvit")
  1112. dict['trick_string'] = 'Shuvit'
  1113. STANCE = own["stance"]
  1114. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1115. own["wallride_off"] = 1
  1116. own['requestAction'] = 'reg_shuvit'
  1117. jump()
  1118. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1119. own["wallride_off"] = 1
  1120. own['requestAction'] = 'fak_shuvit'
  1121. jump()
  1122. if r_ground.triggered == 0 and STANCE == False:
  1123. if own["wallride"] != None:
  1124. jump()
  1125. elif r_ground.triggered == 0 and STANCE == True:
  1126. own["wallride_off"] = 1
  1127. if own["wallride"] != None:
  1128. jump()
  1129. def shuvit360():
  1130. print("360shuvit")
  1131. dict['trick_string'] = '360 Shuvit'
  1132. STANCE = own["stance"]
  1133. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1134. own["wallride_off"] = 1
  1135. own['requestAction'] = 'reg_shuvit360'
  1136. jump()
  1137. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1138. own["wallride_off"] = 1
  1139. own['requestAction'] = 'fak_shuvit360'
  1140. jump()
  1141. if r_ground.triggered == 0 and STANCE == False:
  1142. own["wallride_off"] = 1
  1143. if own["wallride"] != None:
  1144. jump()
  1145. elif r_ground.triggered == 0 and STANCE == True:
  1146. own["wallride_off"] = 1
  1147. if own["wallride"] != None:
  1148. jump()
  1149. def fsshuvit360():
  1150. print("360shuvit")
  1151. dict['trick_string'] = 'FS 360 Shuvit'
  1152. STANCE = own["stance"]
  1153. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1154. own["wallride_off"] = 1
  1155. own['requestAction'] = 'reg_fsshuvit360'
  1156. jump()
  1157. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1158. own["wallride_off"] = 1
  1159. own['requestAction'] = 'fak_fsshuvit360'
  1160. jump()
  1161. if r_ground.triggered == 0 and STANCE == False:
  1162. own["wallride_off"] = 1
  1163. if own["wallride"] != None:
  1164. jump()
  1165. elif r_ground.triggered == 0 and STANCE == True:
  1166. own["wallride_off"] = 1
  1167. if own["wallride"] != None:
  1168. jump()
  1169. def nollie_shuvit():
  1170. print("shuvit")
  1171. dict['trick_string'] = 'Nollie Shuvit'
  1172. STANCE = own["stance"]
  1173. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1174. own["wallride_off"] = 1
  1175. own['requestAction'] = 'reg_nollie_shuvit'
  1176. jump()
  1177. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1178. own["wallride_off"] = 1
  1179. own['requestAction'] = 'fak_nollie_shuvit'
  1180. jump()
  1181. if r_ground.triggered == 0 and STANCE == False:
  1182. own["wallride_off"] = 1
  1183. if own["wallride"] != None:
  1184. jump()
  1185. elif r_ground.triggered == 0 and STANCE == True:
  1186. own["wallride_off"] = 1
  1187. if own["wallride"] != None:
  1188. jump()
  1189. def fsshuvit():
  1190. dict['trick_string'] = 'FS Shuvit'
  1191. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1192. own["wallride_off"] = 1
  1193. own['requestAction'] = 'reg_fsshuvit'
  1194. jump()
  1195. elif (r_ground.triggered == 1 and STANCE == True) or ((grindHit == True or wallride != None) and STANCE == True):
  1196. own["wallride_off"] = 1
  1197. own['requestAction'] = 'fak_fsshuvit'
  1198. jump()
  1199. if r_ground.triggered == 0 and STANCE == False:
  1200. own["wallride_off"] = 1
  1201. if own["wallride"] != None:
  1202. jump()
  1203. elif r_ground.triggered == 0 and STANCE == True:
  1204. own["wallride_off"] = 1
  1205. if own["wallride"] != None:
  1206. jump()
  1207. def nollie_fsshuvit():
  1208. dict['trick_string'] = 'Nollie FS Shuvit'
  1209. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1210. own["wallride_off"] = 1
  1211. own['requestAction'] = 'reg_nollie_fsshuvit'
  1212. jump()
  1213. elif (r_ground.triggered == 1 and STANCE == True) or (grindHit == True and STANCE == True):
  1214. own["wallride_off"] = 1
  1215. own['requestAction'] = 'fak_nollie_fsshuvit'
  1216. jump()
  1217. if r_ground.triggered == 0 and STANCE == False:
  1218. own["wallride_off"] = 1
  1219. if own["wallride"] != None:
  1220. jump()
  1221. elif r_ground.triggered == 0 and STANCE == True:
  1222. own["wallride_off"] = 1
  1223. if own["wallride"] != None:
  1224. jump()
  1225. #nollie_shuvit360()
  1226. def nollie_shuvit360():
  1227. dict['trick_string'] = 'Nollie FS Shuvit 360'
  1228. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1229. own["wallride_off"] = 1
  1230. own['requestAction'] = 'reg_nollie_shuvit360'
  1231. jump()
  1232. elif (r_ground.triggered == 1 and STANCE == True) or (grindHit == True and STANCE == True):
  1233. own["wallride_off"] = 1
  1234. own['requestAction'] = 'fak_nollie_shuvit360'
  1235. jump()
  1236. if r_ground.triggered == 0 and STANCE == False:
  1237. own["wallride_off"] = 1
  1238. if own["wallride"] != None:
  1239. jump()
  1240. elif r_ground.triggered == 0 and STANCE == True:
  1241. own["wallride_off"] = 1
  1242. if own["wallride"] != None:
  1243. jump()
  1244. #nollie_fsshuvit360()
  1245. def nollie_fsshuvit360():
  1246. dict['trick_string'] = 'Nollie FS Shuvit 360'
  1247. if (r_ground.triggered == 1 and STANCE == False) or ((grindHit == True or wallride != None) and STANCE == False):
  1248. own["wallride_off"] = 1
  1249. own['requestAction'] = 'reg_nollie_fsshuvit_360'
  1250. jump()
  1251. elif (r_ground.triggered == 1 and STANCE == True) or (grindHit == True and STANCE == True):
  1252. own["wallride_off"] = 1
  1253. own['requestAction'] = 'fak_nollie_fsshuvit_360'
  1254. jump()
  1255. if r_ground.triggered == 0 and STANCE == False:
  1256. own["wallride_off"] = 1
  1257. if own["wallride"] != None:
  1258. jump()
  1259. elif r_ground.triggered == 0 and STANCE == True:
  1260. own["wallride_off"] = 1
  1261. if own["wallride"] != None:
  1262. jump()
  1263. #-------
  1264. def reg_frigid_grab_on():
  1265. GRAB_PLAYED = own["GRAB_PLAYED"]
  1266. GRAB_ON = own["GRAB_ON"]
  1267. dict['trick_string'] = 'Frigid'
  1268. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1269. own['requestAction'] = 'reg_frigid'
  1270. GRAB_PLAYED = True
  1271. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1272. def reg_fsonefoot_grab_on():
  1273. GRAB_PLAYED = own["GRAB_PLAYED"]
  1274. GRAB_ON = own["GRAB_ON"]
  1275. dict['trick_string'] = 'FS One Foot'
  1276. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1277. own['requestAction'] = 'reg_fsonefoot'
  1278. GRAB_PLAYED = True
  1279. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1280. def reg_onefoot_grab_on():
  1281. GRAB_PLAYED = own["GRAB_PLAYED"]
  1282. GRAB_ON = own["GRAB_ON"]
  1283. dict['trick_string'] = 'One Foot'
  1284. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1285. own['requestAction'] = 'reg_onefoot'
  1286. GRAB_PLAYED = True
  1287. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1288. def fak_frigid_grab_on():
  1289. GRAB_PLAYED = own["GRAB_PLAYED"]
  1290. GRAB_ON = own["GRAB_ON"]
  1291. dict['trick_string'] = 'Frigid'
  1292. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1293. own['requestAction'] = 'fak_frigid'
  1294. GRAB_PLAYED = True
  1295. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1296. def fak_fsonefoot_grab_on():
  1297. GRAB_PLAYED = own["GRAB_PLAYED"]
  1298. GRAB_ON = own["GRAB_ON"]
  1299. dict['trick_string'] = 'FS One Foot'
  1300. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1301. own['requestAction'] = 'fak_fsonefoot'
  1302. GRAB_PLAYED = True
  1303. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1304. def fak_onefoot_grab_on():
  1305. GRAB_PLAYED = own["GRAB_PLAYED"]
  1306. GRAB_ON = own["GRAB_ON"]
  1307. dict['trick_string'] = 'One Foot'
  1308. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1309. own['requestAction'] = 'fak_onefoot'
  1310. GRAB_PLAYED = True
  1311. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1312. #----
  1313. def reg_judo_grab_on():
  1314. GRAB_PLAYED = own["GRAB_PLAYED"]
  1315. GRAB_ON = own["GRAB_ON"]
  1316. dict['trick_string'] = 'Judo'
  1317. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1318. own['requestAction'] = 'reg_judo'
  1319. GRAB_PLAYED = True
  1320. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1321. def fak_judo_grab_on():
  1322. GRAB_PLAYED = own["GRAB_PLAYED"]
  1323. GRAB_ON = own["GRAB_ON"]
  1324. dict['trick_string'] = 'Judo'
  1325. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1326. own['requestAction'] = 'fak_judo'
  1327. GRAB_PLAYED = True
  1328. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1329. def frontside_grab_on():
  1330. GRAB_PLAYED = own["GRAB_PLAYED"]
  1331. GRAB_ON = own["GRAB_ON"]
  1332. dict['trick_string'] = 'Mute'
  1333. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1334. own['requestAction'] = 'frontside_grab'
  1335. GRAB_PLAYED = True
  1336. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1337. def backside_grab_on():
  1338. GRAB_PLAYED = own["GRAB_PLAYED"]
  1339. GRAB_ON = own["GRAB_ON"]
  1340. dict['trick_string'] = 'Backside'
  1341. if GRAB_ON == True and r_ground.triggered == 0 and aBut == True:
  1342. own['requestAction'] = 'reg_fp_rback'
  1343. elif GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1344. own['requestAction'] = 'backside_grab'
  1345. GRAB_PLAYED = True
  1346. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1347. def fakfrontside_grab_on():
  1348. GRAB_PLAYED = own["GRAB_PLAYED"]
  1349. GRAB_ON = own["GRAB_ON"]
  1350. dict['trick_string'] = 'Mute'
  1351. if GRAB_ON == True and r_ground.triggered == 0 and aBut == True:
  1352. own['requestAction'] = 'fak_fp_rback'
  1353. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1354. own['requestAction'] = 'fak_frontside_grab'
  1355. GRAB_PLAYED = True
  1356. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1357. def fakbackside_grab_on():
  1358. GRAB_PLAYED = own["GRAB_PLAYED"]
  1359. GRAB_ON = own["GRAB_ON"]
  1360. dict['trick_string'] = 'Backside'
  1361. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1362. own['requestAction'] = 'fak_backside_grab'
  1363. GRAB_PLAYED = True
  1364. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1365. #nose/tail grabs
  1366. def frontside_nose_grab_on():
  1367. GRAB_PLAYED = own["GRAB_PLAYED"]
  1368. GRAB_ON = own["GRAB_ON"]
  1369. dict['trick_string'] = 'FS Nose'
  1370. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1371. own['requestAction'] = 'frontside_nose_grab'
  1372. GRAB_PLAYED = True
  1373. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1374. def frontside_tail_grab_on():
  1375. GRAB_PLAYED = own["GRAB_PLAYED"]
  1376. GRAB_ON = own["GRAB_ON"]
  1377. dict['trick_string'] = 'FS Tail'
  1378. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1379. own['requestAction'] = 'frontside_tail_grab'
  1380. GRAB_PLAYED = True
  1381. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1382. def backside_nose_grab_on():
  1383. GRAB_PLAYED = own["GRAB_PLAYED"]
  1384. GRAB_ON = own["GRAB_ON"]
  1385. dict['trick_string'] = 'BS Nose'
  1386. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1387. own['requestAction'] = 'backside_nose_grab'
  1388. GRAB_PLAYED = True
  1389. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1390. def backside_tail_grab_on():
  1391. GRAB_PLAYED = own["GRAB_PLAYED"]
  1392. GRAB_ON = own["GRAB_ON"]
  1393. dict['trick_string'] = 'BS Tail'
  1394. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1395. own['requestAction'] = 'backside_tail_grab'
  1396. GRAB_PLAYED = True
  1397. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1398. def reg_airwalk():
  1399. GRAB_PLAYED = own["GRAB_PLAYED"]
  1400. GRAB_ON = own["GRAB_ON"]
  1401. dict['trick_string'] = 'Airwalk'
  1402. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1403. own['requestAction'] = 'reg_airwalk'
  1404. GRAB_PLAYED = True
  1405. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1406. #switch
  1407. def fak_frontside_nose_grab_on():
  1408. GRAB_PLAYED = own["GRAB_PLAYED"]
  1409. GRAB_ON = own["GRAB_ON"]
  1410. dict['trick_string'] = 'FS Nose'
  1411. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1412. own['requestAction'] = 'fak_frontside_nose_grab'
  1413. GRAB_PLAYED = True
  1414. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1415. def fak_frontside_tail_grab_on():
  1416. GRAB_PLAYED = own["GRAB_PLAYED"]
  1417. GRAB_ON = own["GRAB_ON"]
  1418. dict['trick_string'] = 'FS Tail'
  1419. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1420. own['requestAction'] = 'fak_frontside_tail_grab'
  1421. GRAB_PLAYED = True
  1422. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1423. def fak_backside_nose_grab_on():
  1424. GRAB_PLAYED = own["GRAB_PLAYED"]
  1425. GRAB_ON = own["GRAB_ON"]
  1426. dict['trick_string'] = 'BS Nose'
  1427. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1428. own['requestAction'] = 'fak_backside_nose_grab'
  1429. GRAB_PLAYED = True
  1430. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1431. def fak_backside_tail_grab_on():
  1432. GRAB_PLAYED = own["GRAB_PLAYED"]
  1433. GRAB_ON = own["GRAB_ON"]
  1434. dict['trick_string'] = 'BS Tail'
  1435. if GRAB_ON == True and GRAB_PLAYED == False and r_ground.triggered == 0:
  1436. own['requestAction'] = 'fak_backside_tail_grab'
  1437. GRAB_PLAYED = True
  1438. own["GRAB_PLAYED)"] = GRAB_PLAYED
  1439. #--------------------
  1440. def SWAG():
  1441. if r_ground.triggered == 1:
  1442. SWAG = own["swag"]
  1443. SWAG = own.getLinearVelocity(True)
  1444. SWAG = SWAG[1]
  1445. own["swag"] = SWAG
  1446. if STANCE == True:
  1447. if SWAG > 1 and SWAG < 2:
  1448. rotation = [ 0.0, 0, (SWAG / 200)]
  1449. own.applyRotation( rotation, True)
  1450. elif SWAG > 2:
  1451. rotation = [ 0.0, 0, (SWAG / 50)]
  1452. own.applyRotation( rotation, True)
  1453. elif SWAG < -1 and SWAG > -2:
  1454. rotation = [ 0.0, 0, (SWAG / 200)]
  1455. own.applyRotation( rotation, True)
  1456. elif SWAG < -2:
  1457. rotation = [ 0.0, 0, (SWAG / 50)]
  1458. own.applyRotation( rotation, True)
  1459. if STANCE == False:
  1460. if SWAG > 1 and SWAG < 2:
  1461. rotation = [ 0.0, 0, (-SWAG / 200)]
  1462. own.applyRotation( rotation, True)
  1463. elif SWAG > 2:
  1464. rotation = [ 0.0, 0, (-SWAG / 50)]
  1465. own.applyRotation( rotation, True)
  1466. elif SWAG < -1 and SWAG > -2:
  1467. rotation = [ 0.0, 0, (-SWAG / 200)]
  1468. own.applyRotation( rotation, True)
  1469. elif SWAG < -2:
  1470. rotation = [ 0.0, 0, (-SWAG / 50)]
  1471. own.applyRotation( rotation, True)
  1472. def air():
  1473. if r_ground.triggered == False and own['airup'] == 0:
  1474. distance = own.getDistanceTo(gray.hitPosition)
  1475. since_grind_buf = 3
  1476. if gray.hitObject != None and grindDar2.triggered == False and (frame - lgf) > since_grind_buf:
  1477. #add or colliding
  1478. if distance < .5:
  1479. own.alignAxisToVect(gray.hitNormal, 2, .1)
  1480. elif distance >= .5 and distance < 1.75:
  1481. own.alignAxisToVect(gray.hitNormal, 2, .05)
  1482. elif distance >= 1.75:
  1483. own.alignAxisToVect([0.0,0.0,1.0], 2, .03)
  1484. if grindDar2.triggered and (frame - lgf) > since_grind_buf:
  1485. if distance < .5:
  1486. own.alignAxisToVect(gray.hitNormal, 2, .1)
  1487. elif distance >= .5 and distance < 1.75:
  1488. own.alignAxisToVect(gray.hitNormal, 2, .03)
  1489. elif distance >= 1.75:
  1490. own.alignAxisToVect([0.0,0.0,1.0], 2, .03)
  1491. elif r_ground.triggered == True:
  1492. pass
  1493. def stopAnims():
  1494. pass
  1495. def isplaying():
  1496. # for x in range(9000):
  1497. # l1 = deck.isPlayingAction(x)
  1498. # if l1 == True:
  1499. # print(x)
  1500. pass
  1501. def nextframe():
  1502. framenumber = own["framenum"]
  1503. framenumber = framenumber + 1
  1504. if framenumber == 900000:
  1505. framenumber = 0
  1506. own["framenum"] = framenumber
  1507. own['last_roll_frame'] = framenumber
  1508. def push():
  1509. local = True
  1510. #print("push")
  1511. linVelocity15 = own.linearVelocity
  1512. if linVelocity15.x < MAX_VEL and linVelocity15.x >= -0 and r_ground.triggered == True and own['hippy'] == 0 and own['last_hippy'] == 0 and own['last_footplant'] == False:
  1513. countdown = COUNTDOWN
  1514. yvel = linVelocity15.x + SPEEDUP
  1515. own['countdown'] = countdown
  1516. force = [(yvel), 0, linVelocity15.z]
  1517. own.setLinearVelocity(force, local)
  1518. own['requestAction'] = 'fak_push_goof'
  1519. #switch
  1520. if linVelocity15.x > -MAX_VEL and linVelocity15.x < 0 and r_ground.triggered == True and own['hippy'] == 0 and own['last_hippy'] == 0:
  1521. countdown = COUNTDOWN
  1522. yvel = linVelocity15.x - SPEEDUP
  1523. own['countdown'] = countdown
  1524. force = [(yvel), 0, linVelocity15.z]
  1525. own.setLinearVelocity(force, local)
  1526. own['requestAction'] = 'reg_push'
  1527. def push_goof():
  1528. linVelocity15 = own.linearVelocity
  1529. local = True
  1530. #print("push goof")
  1531. if linVelocity15.x < MAX_VEL and linVelocity15.x >= -0 and r_ground.triggered == True and own['hippy'] == 0 and own['last_hippy'] == 0:
  1532. countdown = COUNTDOWN
  1533. yvel = linVelocity15.x + SPEEDUP
  1534. own['countdown'] = countdown
  1535. force = [(yvel), 0, linVelocity15.z]
  1536. own.setLinearVelocity(force, local)
  1537. own['requestAction'] = 'fak_push'
  1538. #switch
  1539. if linVelocity15.x > -MAX_VEL and linVelocity15.x < 0 and r_ground.triggered == True and own['hippy'] == 0 and own['last_hippy'] == 0:
  1540. countdown = COUNTDOWN
  1541. yvel = linVelocity15.x - SPEEDUP
  1542. own['countdown'] = countdown
  1543. force = [(yvel), 0, linVelocity15.z]
  1544. own.setLinearVelocity(force, local)
  1545. own['requestAction'] = 'reg_push_goof'
  1546. def brfoot():
  1547. if STANCE == 0:
  1548. own['requestAction'] = 'reg_brfoot'
  1549. if STANCE == 1:
  1550. own['requestAction'] = 'fak_brfoot'
  1551. jump()
  1552. def frfoot():
  1553. if STANCE == 0:
  1554. own['requestAction'] = 'reg_frfoot'
  1555. if STANCE == 1:
  1556. own['requestAction'] = 'fak_frfoot'
  1557. jump()
  1558. def blfoot():
  1559. if STANCE == 0:
  1560. own['requestAction'] = 'reg_blfoot'
  1561. if STANCE == 1:
  1562. own['requestAction'] = 'fak_blfoot'
  1563. jump()
  1564. def flfoot():
  1565. if STANCE == 0:
  1566. own['requestAction'] = 'reg_flfoot'
  1567. if STANCE == 1:
  1568. own['requestAction'] = 'fak_flfoot'
  1569. jump()
  1570. def rollsound():
  1571. #onground
  1572. if r_ground.triggered == 1 and grindDar == 0 and own['invert_on'] == 0:
  1573. num1 = .05
  1574. num2 = .25
  1575. if linVelocity.x <= -num1 and linVelocity.x >= num1:
  1576. own.actuators["sroll"].volume = .0001
  1577. cont.deactivate(own.actuators["sroll"])
  1578. own.actuators["sroll"].stopSound()
  1579. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1580. own.actuators["sroll"].volume = .02
  1581. own.actuators["sroll"].pitch = .65
  1582. num1 = .25
  1583. num2 = .5
  1584. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1585. own.actuators["sroll"].volume = .03
  1586. own.actuators["sroll"].pitch = .7
  1587. num1 = .5
  1588. num2 = .75
  1589. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1590. own.actuators["sroll"].volume = .04
  1591. own.actuators["sroll"].pitch = .75
  1592. num1 = .75
  1593. num2 = 1
  1594. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1595. own.actuators["sroll"].volume = .05
  1596. own.actuators["sroll"].pitch = .8
  1597. num1 = 1
  1598. num2 = 1.5
  1599. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1600. own.actuators["sroll"].volume = .06
  1601. own.actuators["sroll"].pitch = .85
  1602. num1 = 1.5
  1603. num2 = 2
  1604. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1605. own.actuators["sroll"].volume = .07
  1606. own.actuators["sroll"].pitch = .9
  1607. num1 = 2
  1608. num2 = 3
  1609. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1610. own.actuators["sroll"].volume = .08
  1611. own.actuators["sroll"].pitch = .95
  1612. num1 = 3
  1613. num2 = 4
  1614. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1615. own.actuators["sroll"].volume = .09
  1616. own.actuators["sroll"].pitch = 1
  1617. num1 = 4
  1618. num2 = 5
  1619. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1620. own.actuators["sroll"].volume = .11
  1621. own.actuators["sroll"].pitch = 1.05
  1622. num1 = 5
  1623. num2 = 6
  1624. if (linVelocity.x > num1 and linVelocity.x < num2) or (linVelocity.x < -num1 and linVelocity.x > -num2):
  1625. own.actuators["sroll"].volume = .1
  1626. own.actuators["sroll"].pitch = 1.1
  1627. own.actuators['sroll'].mode = 2
  1628. cont.activate(own.actuators["sroll"])
  1629. if grindDar == 1 or own['invert_on'] == 1:
  1630. own.actuators["sroll"].volume = .0001
  1631. cont.deactivate(own.actuators["sroll"])
  1632. own.actuators["sroll"].stopSound()
  1633. #in air
  1634. if r_ground.triggered == False:
  1635. own.actuators["sroll"].volume = .0001
  1636. cont.deactivate(own.actuators["sroll"])
  1637. own.actuators["sroll"].stopSound()
  1638. act = cont.actuators["sroll"]
  1639. own['sroll_vol'] = act.volume
  1640. own['sroll_pitch'] = act.pitch
  1641. def wheelroll():
  1642. #still
  1643. if linVelocity.x <= -0.05 and linVelocity.x >= 0.05:
  1644. wheel1.stopAction(2)
  1645. wheel2.stopAction(2)
  1646. wheel3.stopAction(2)
  1647. wheel4.stopAction(2)
  1648. #regular
  1649. if linVelocity.x > 0.05 and linVelocity.x < .5:
  1650. wheel2.playAction("roll1.001", 1,20, layer=2, play_mode=0, speed=.25)
  1651. wheel3.playAction("roll2.001", 1,20, layer=2, play_mode=0, speed=.25)
  1652. wheel4.playAction("roll3.001", 1,20, layer=2, play_mode=0, speed=.25)
  1653. wheel1.playAction("roll4.001", 1,20, layer=2, play_mode=0, speed=.25)
  1654. if linVelocity.x > 0.5 and linVelocity.x < 1:
  1655. wheel2.playAction("roll1.001", 1,20, layer=2, play_mode=1, speed=1)
  1656. wheel3.playAction("roll2.001", 1,20, layer=2, play_mode=1, speed=1)
  1657. wheel4.playAction("roll3.001", 1,20, layer=2, play_mode=1, speed=1)
  1658. wheel1.playAction("roll4.001", 1,20, layer=2, play_mode=1, speed=1)
  1659. if linVelocity.x > 1 and linVelocity.x < 4:
  1660. wheel2.playAction("roll1.001", 1,20, layer=2, play_mode=1, speed=1.5)
  1661. wheel3.playAction("roll2.001", 1,20, layer=2, play_mode=1, speed=1.5)
  1662. wheel4.playAction("roll3.001", 1,20, layer=2, play_mode=1, speed=1.5)
  1663. wheel1.playAction("roll4.001", 1,20, layer=2, play_mode=1, speed=1.5)
  1664. if linVelocity.x > 4:
  1665. wheel2.playAction("roll1.001", 1,20, layer=2, play_mode=1, speed=2)
  1666. wheel3.playAction("roll2.001", 1,20, layer=2, play_mode=1, speed=2)
  1667. wheel4.playAction("roll3.001", 1,20, layer=2, play_mode=1, speed=2)
  1668. wheel1.playAction("roll4.001", 1,20, layer=2, play_mode=1, speed=2)
  1669. #switch
  1670. if linVelocity.x < -0.05 and linVelocity.x > -.5:
  1671. wheel2.playAction("roll1.001", 20,1, layer=2, play_mode=0, speed=.25)
  1672. wheel3.playAction("roll2.001", 20,1, layer=2, play_mode=0, speed=.25)
  1673. wheel4.playAction("roll3.001", 20,1, layer=2, play_mode=0, speed=.25)
  1674. wheel1.playAction("roll4.001", 20,1, layer=2, play_mode=0, speed=.25)
  1675. if linVelocity.x < -0.5 and linVelocity.x > -1:
  1676. wheel2.playAction("roll1.001", 20,1, layer=2, play_mode=1, speed=1)
  1677. wheel3.playAction("roll2.001", 20,1, layer=2, play_mode=1, speed=1)
  1678. wheel4.playAction("roll3.001", 20,1, layer=2, play_mode=1, speed=1)
  1679. wheel1.playAction("roll4.001", 20,1, layer=2, play_mode=1, speed=1)
  1680. if linVelocity.x < -1 and linVelocity > -4:
  1681. wheel2.playAction("roll1.001", 20,1, layer=2, play_mode=1, speed=1.5)
  1682. wheel3.playAction("roll2.001", 20,1, layer=2, play_mode=1, speed=1.5)
  1683. wheel4.playAction("roll3.001", 20,1, layer=2, play_mode=1, speed=1.5)
  1684. wheel1.playAction("roll4.001", 20,1, layer=2, play_mode=1, speed=1.5)
  1685. if linVelocity.x < -4:
  1686. wheel2.playAction("roll1.001", 20,1, layer=2, play_mode=1, speed=2)
  1687. wheel3.playAction("roll2.001", 20,1, layer=2, play_mode=1, speed=2)
  1688. wheel4.playAction("roll3.001", 20,1, layer=2, play_mode=1, speed=2)
  1689. wheel1.playAction("roll4.001", 20,1, layer=2, play_mode=1, speed=2)
  1690. def transspeed():
  1691. num1 = .1
  1692. num2 = .4
  1693. speed = 20
  1694. def turn():
  1695. rotamt = .02
  1696. linVelocity2 = own.getLinearVelocity(True)
  1697. speed = .004
  1698. manual = 0
  1699. if own['manual_v2'] == 1:
  1700. manual = 1
  1701. if abs(linVelocity.x) < 2:
  1702. speed = .005
  1703. jumpstance = own['jump_stance']
  1704. if lLR > turnsens or lLR < -turnsens:
  1705. own["turn"] = 1
  1706. else:
  1707. own["turn"] = 0
  1708. if lUD > turnsens or lUD < -turnsens:
  1709. own["turnud"] = 1
  1710. else:
  1711. own["turnud"] = 0
  1712. #light
  1713. #if manual and grindhit = true
  1714. if lLR > turnsens and lLR < (turnsens * 1.3) and (grindHit == False or (manual == 1 and grindHit == True)):
  1715. rotation = [ 0.0, 0.0, (-rotamt)]
  1716. local = False # use world axis
  1717. own.applyRotation( rotation, local)
  1718. if r_ground.triggered == True:
  1719. #print("light turn")
  1720. if STANCE == 0:
  1721. own.setLinearVelocity([linVelocity2.x - speed, linVelocity2.y, linVelocity2.z], 1)
  1722. if STANCE == 1:
  1723. own.setLinearVelocity([linVelocity2.x + speed, linVelocity2.y, linVelocity2.z], 1)
  1724. if lLR < -turnsens and lLR > (turnsens * -1.3) and (grindHit == False or (manual == 1 and grindHit == True)):
  1725. rotation = [ 0.0, 0.0, rotamt]
  1726. local = False # use world axis
  1727. own.applyRotation( rotation, local)
  1728. if r_ground.triggered == True:
  1729. #print("light turn")
  1730. if STANCE == 0:
  1731. own.setLinearVelocity([linVelocity2.x - speed, linVelocity2.y, linVelocity2.z], 1)
  1732. if STANCE == 1:
  1733. own.setLinearVelocity([linVelocity2.x + speed, linVelocity2.y, linVelocity2.z], 1)
  1734. #medium
  1735. if (lLR > (turnsens * 1.3) or dict['kb_ra'] == 2) and (grindHit == False or (manual == 1 and grindHit == True)):
  1736. #turn left
  1737. if rot.z < .4:
  1738. rotation = [ 0.0, 0.0, (-rotamt * 5)]
  1739. if rot.z < .6 and rot.z > .4:
  1740. rotation = [ 0.0, 0.0, (-rotamt * 2)]
  1741. else:
  1742. rotation = [ 0.0, 0.0, (-rotamt * 1.6)]
  1743. local = True # use world axis
  1744. own.applyRotation( rotation, local)
  1745. if r_ground.triggered == True:
  1746. #print("med turn")
  1747. if STANCE == 0:
  1748. own.setLinearVelocity([linVelocity2.x - speed, linVelocity2.y, linVelocity2.z], 1)
  1749. if STANCE == 1:
  1750. own.setLinearVelocity([linVelocity2.x + speed, linVelocity2.y, linVelocity2.z], 1)
  1751. if (lLR < (-turnsens * 1.3) or dict['kb_la'] == 2) and (grindHit == False or (manual == 1 and grindHit == True)):
  1752. #turn right
  1753. if rot.z < .4:
  1754. rotation = [ 0.0, 0.0, (rotamt * 5)]
  1755. if rot.z < .6 and rot.z > .4:
  1756. rotation = [ 0.0, 0.0, (rotamt * 2)]
  1757. else:
  1758. rotation = [ 0.0, 0.0, (rotamt * 1.6)]
  1759. local = True # use world axis
  1760. own.applyRotation( rotation, local)
  1761. if r_ground.triggered == True:
  1762. #print("med turn")
  1763. if STANCE == 0:
  1764. own.setLinearVelocity([linVelocity2.x - speed, linVelocity2.y, linVelocity2.z], 1)
  1765. if STANCE == 1:
  1766. own.setLinearVelocity([linVelocity2.x + speed, linVelocity2.y, linVelocity2.z], 1)
  1767. #air
  1768. if r_ground.triggered == False and (lLR > turnsens or dict['kb_ra'] == 2) and (grindHit == False or (manual == 1 and grindHit == True)) and own["wallride"] == None:
  1769. rotamt = .07
  1770. if STANCE == 0:
  1771. own.applyRotation([0,0,-rotamt], 1)
  1772. if STANCE == 1:
  1773. own.applyRotation([0,0,-rotamt], 1)
  1774. if r_ground.triggered == False and (lLR < -turnsens or dict['kb_la'] == 2) and (grindHit == False or (manual == 1 and grindHit == True)) and own["wallride"] == None:
  1775. rotamt = .07
  1776. if STANCE == 0:
  1777. own.applyRotation([0,0,rotamt], 1)
  1778. if STANCE == 1:
  1779. own.applyRotation([0,0,rotamt], 1)
  1780. ###########
  1781. def grindsound():
  1782. dropin = own['dropinTimer']
  1783. lif = own['last_invert_frame']
  1784. if grindSound != None and grindHit == True and own['nogrindsound'] == 0:
  1785. if abs(linVelocity.x) > abs(linVelocity.y):
  1786. vel = linVelocity.x
  1787. elif abs(linVelocity.x) < abs(linVelocity.y):
  1788. vel = linVelocity.y
  1789. else:
  1790. vel = 0
  1791. if grindSound == "rail":
  1792. cont.deactivate(own.actuators['grind_cement'])
  1793. num1 = .000
  1794. num2 = .05
  1795. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1796. own.actuators["grind_rail"].volume = .0001
  1797. own.actuators["grind_rail"].pitch = .6
  1798. num1 = .05
  1799. num2 = .25
  1800. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1801. own.actuators["grind_rail"].volume = .05
  1802. own.actuators["grind_rail"].pitch = .7
  1803. num1 = .25
  1804. num2 = .5
  1805. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1806. own.actuators["grind_rail"].volume = .1
  1807. own.actuators["grind_rail"].pitch = .75
  1808. num1 = .5
  1809. num2 = .75
  1810. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1811. own.actuators["grind_rail"].volume = .14
  1812. own.actuators["grind_rail"].pitch = .8
  1813. num1 = .75
  1814. num2 = 1
  1815. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1816. own.actuators["grind_rail"].volume = .17
  1817. own.actuators["grind_rail"].pitch = .85
  1818. num1 = 1
  1819. num2 = 1.25
  1820. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1821. own.actuators["grind_rail"].volume = .18
  1822. own.actuators["grind_rail"].pitch = .9
  1823. num1 = 1.25
  1824. num2 = 2
  1825. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1826. own.actuators["grind_rail"].volume = .19
  1827. own.actuators["grind_rail"].pitch = .95
  1828. num1 = 2
  1829. num2 = 40
  1830. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1831. own.actuators["grind_rail"].volume = .19
  1832. own.actuators["grind_rail"].pitch = 1
  1833. cont.activate(own.actuators['grind_rail'])
  1834. if grindSound == "concrete":
  1835. #play sound
  1836. cont.deactivate(own.actuators['grind_rail'])
  1837. num1 = .000
  1838. num2 = .05
  1839. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1840. own.actuators["grind_cement"].volume = .01
  1841. own.actuators["grind_cement"].pitch = .6
  1842. num1 = .05
  1843. num2 = .25
  1844. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1845. own.actuators["grind_cement"].volume = .05
  1846. own.actuators["grind_cement"].pitch = .7
  1847. num1 = .25
  1848. num2 = .5
  1849. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1850. own.actuators["grind_cement"].volume = .1
  1851. own.actuators["grind_cement"].pitch = .75
  1852. num1 = .5
  1853. num2 = .75
  1854. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1855. own.actuators["grind_cement"].volume = .14
  1856. own.actuators["grind_cement"].pitch = .8
  1857. num1 = .75
  1858. num2 = 1
  1859. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1860. own.actuators["grind_cement"].volume = .17
  1861. own.actuators["grind_cement"].pitch = .85
  1862. num1 = 1
  1863. num2 = 1.25
  1864. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1865. own.actuators["grind_cement"].volume = .18
  1866. own.actuators["grind_cement"].pitch = .9
  1867. num1 = 1.25
  1868. num2 = 2
  1869. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1870. own.actuators["grind_cement"].volume = .19
  1871. own.actuators["grind_cement"].pitch = .95
  1872. num1 = 2
  1873. num2 = 40
  1874. if (vel > num1 and vel < num2) or (vel < -num1 and vel > -num2):
  1875. own.actuators["grind_cement"].volume = .19
  1876. own.actuators["grind_cement"].pitch = 1
  1877. cont.activate(own.actuators['grind_cement'])
  1878. else:
  1879. cont.deactivate(own.actuators['grind_cement'])
  1880. cont.deactivate(own.actuators['grind_rail'])
  1881. def record_grindsound():
  1882. dropin = own['dropinTimer']
  1883. lif = own['last_invert_frame']
  1884. if grindHit == True and dropin == 0 and own['invert_on'] == 0 and own["LAST_GRIND"] == True and own["nogrindsound"] == 0 and (frame - lif > 13):
  1885. if grindSound == "concrete":
  1886. act = own.actuators["grind_cement"]
  1887. own['grindcement_vol'] = act.volume
  1888. own['grindcement_pitch'] = act.pitch
  1889. elif grindSound == "rail":
  1890. act = own.actuators["grind_rail"]
  1891. own['grindrail_vol'] = act.volume
  1892. own['grindrail_pitch'] = act.pitch
  1893. if own["LAST_GRIND"] == False:
  1894. own['grindcement_vol'] = 0
  1895. own['grindcement_pitch'] = 0
  1896. own['grindrail_vol'] = 0
  1897. own['grindrail_pitch'] = 0
  1898. def grind():
  1899. grindsound()
  1900. STANCE = own["stance"]
  1901. jumpstance = own["jump_stance"]
  1902. lif = frame - own['last_invert_frame']
  1903. giniter = 0
  1904. if own['LAST_GRIND'] == False and grindHit == True:
  1905. own['grindstartFrame'] = own['framenum']
  1906. giniter = 1
  1907. if grindHit == True and own['invert_on'] == 0 and own['footplant_on'] == False and own['manual'] == 0 and lif > 40 and own['dropinTimer'] < 30 and giniter == 0:
  1908. control_bottom = scene.objects['control_bottom']
  1909. grindTouch = control_bottom.sensors['grindCol_bottom']
  1910. edge = 0
  1911. try:
  1912. if 'edge' in grindTouch.hitObject:
  1913. #print('Edge')
  1914. edge = 1
  1915. except:
  1916. pass
  1917. gblend = 1
  1918. if LAST_GRIND == 0:
  1919. gt = own['grindType']
  1920. tempstance = 3
  1921. if jumpstance != 3:
  1922. tempstance = jumpstance
  1923. else:
  1924. tempstance = STANCE
  1925. grindpos = own['grindpos']
  1926. if grindpos == "reg_5050" and own['grindType'] == "empty":
  1927. own['grindType'] = grindpos
  1928. if own['grindType'] == "empty" and grindpos == 'reg_board':
  1929. if STANCE == 0:
  1930. own['grindType'] = "reg_bsboard"
  1931. else:
  1932. own['grindType'] = "fak_bsboard"
  1933. if STANCE == True:
  1934. if own['grindType'] == "reg_bsboard":
  1935. own['grind_stance'] = 0
  1936. own['requestAction'] = 'reg_bsboard'
  1937. elif own['grindType'] == "fak_bsboard":
  1938. own['grind_stance'] = 1
  1939. own['requestAction'] = 'fak_bsboard'
  1940. elif own['grindType'] == "reg_fsboard":
  1941. own['grind_stance'] = 0
  1942. own['requestAction'] = 'reg_fsboard'
  1943. elif own['grindType'] == "fak_noseg":
  1944. own['requestAction'] = 'fak_noseg'
  1945. elif own['grindType'] == "fak_nosegR":
  1946. own['requestAction'] = 'fak_nosegr'
  1947. elif own['grindType'] == "fak_nosegL":
  1948. own['requestAction'] = 'fak_nosegl'
  1949. elif own['grindType'] == "fak_tailg":
  1950. own['requestAction'] = 'fak_tailg'
  1951. elif own['grindType'] == "fak_tailgR":
  1952. own['requestAction'] = 'fak_tailgr'
  1953. elif own['grindType'] == "fak_tailgL":
  1954. own['requestAction'] = 'fak_tailgl'
  1955. elif own['grindType'] == "reg_tailg":
  1956. own['requestAction'] = 'fak_noseg'
  1957. elif own['grindType'] == "reg_tailgR":
  1958. own['requestAction'] = 'fak_nosegr'
  1959. elif own['grindType'] == "reg_tailgL":
  1960. own['requestAction'] = 'fak_nosegl'
  1961. elif own['grindType'] == "reg_noseg":
  1962. own['requestAction'] = 'fak_tailg'
  1963. elif own['grindType'] == "reg_nosegR":
  1964. own['requestAction'] = 'fak_tailgr'
  1965. elif own['grindType'] == "reg_nosegL":
  1966. own['requestAction'] = 'fak_tailgl'
  1967. elif own['grindType'] == "reg_tailslide":
  1968. own['requestAction'] = 'reg_tailslide'
  1969. elif own['grindType'] == "reg_noseslide":
  1970. own['requestAction'] = 'reg_noseslide'
  1971. elif own['grindType'] == "fak_tailslide":
  1972. own['requestAction'] = 'fak_tailslide'
  1973. elif own['grindType'] == "fak_noseslide":
  1974. own['requestAction'] = 'fak_noseslide'
  1975. elif own['grindType'] == "reg_tailslide" and edge == 1:
  1976. own['requestAction'] = 'fak_noseslide'
  1977. STANCE = 0
  1978. elif own['grindType'] == "fak_tailslide":
  1979. own['requestAction'] = 'fak_tailslide'
  1980. own['grind_stance'] = 1
  1981. elif own['grindType'] == "reg_noseslide" and edge == 1:
  1982. own['requestAction'] = 'fak_tailslide'
  1983. own['grind_stance'] = 0
  1984. elif own['grindType'] == "fak_noseslide":
  1985. own['requestAction'] = 'fak_noseslide'
  1986. own['grind_stance'] = 1
  1987. else:
  1988. if STANCE == 0:
  1989. own['requestAction'] = 'reg_5050'
  1990. dict['trick_string'] = '5050'
  1991. if STANCE == 1:
  1992. own['requestAction'] = 'fak_5050'
  1993. dict['trick_string'] = '5050'
  1994. elif STANCE == False:
  1995. if own['grindType'] == "reg_bsboard":
  1996. own['grind_stance'] = 0
  1997. own['requestAction'] = 'reg_bsboard'
  1998. elif own['grindType'] == "fak_bsboard":
  1999. own['grind_stance'] = 1
  2000. own['requestAction'] = 'fak_bsboard'
  2001. elif own['grindType'] == "reg_tailg":
  2002. own['grind_stance'] = 0
  2003. own['requestAction'] = 'reg_tailg'
  2004. elif own['grindType'] == "reg_tailgR":
  2005. own['requestAction'] = 'reg_tailgr'
  2006. elif own['grindType'] == "reg_tailgL":
  2007. own['requestAction'] = 'reg_tailgl'
  2008. elif own['grindType'] == "reg_noseg":
  2009. own['requestAction'] = 'reg_noseg'
  2010. elif own['grindType'] == "reg_nosegR":
  2011. own['requestAction'] = 'reg_nosegr'
  2012. elif own['grindType'] == "reg_nosegL":
  2013. own['requestAction'] = 'reg_nosegl'
  2014. elif own['grindType'] == "reg_tailslide":
  2015. own['requestAction'] = 'reg_tailslide'
  2016. elif own['grindType'] == "reg_noseslide":
  2017. own['requestAction'] = 'reg_noseslide'
  2018. elif own['grindType'] == "fak_tailslide":
  2019. own['requestAction'] = 'fak_tailslide'
  2020. elif own['grindType'] == "fak_noseslide":
  2021. own['requestAction'] = 'fak_noseslide'
  2022. elif own['grindType'] == "fak_noseg":
  2023. own['requestAction'] = 'reg_tailg'
  2024. elif own['grindType'] == "fak_nosegR":
  2025. own['requestAction'] = 'reg_tailgr'
  2026. elif own['grindType'] == "fak_nosegL":
  2027. own['requestAction'] = 'reg_tailgl'
  2028. elif own['grindType'] == "fak_tailg":
  2029. own['requestAction'] = 'reg_noseg'
  2030. elif own['grindType'] == "fak_tailgR":
  2031. own['requestAction'] = 'reg_nosegr'
  2032. elif own['grindType'] == "fak_tailgL":
  2033. own['requestAction'] = 'reg_nosegl'
  2034. elif own['grindType'] == "fak_tailslide" and edge == 1:
  2035. own['grind_stance'] = 1
  2036. own['requestAction'] = 'reg_noseslide'
  2037. elif own['grindType'] == "reg_noseslide":
  2038. own['grind_stance'] = 0
  2039. own['requestAction'] = 'reg_noseslide'
  2040. elif own['grindType'] == "fak_noseslide" and edge == 1:
  2041. own['grind_stance'] = 1
  2042. own['requestAction'] = 'reg_tailslide'
  2043. else:
  2044. if STANCE == 0:
  2045. own['requestAction'] = 'reg_5050'
  2046. if STANCE == 1:
  2047. own['requestAction'] = 'fak_5050'
  2048. if 'fak' in own['l_actionState']:
  2049. STANCE = 1
  2050. own['lg_stance'] = 1
  2051. lg_stance = 1
  2052. if 'reg' in own['l_actionState']:
  2053. STANCE = 0
  2054. own['lg_stance'] = 0
  2055. lg_stance = 0
  2056. own['stance'] = STANCE
  2057. def rotmult():
  2058. if r_ground.triggered:
  2059. num = ((rot.z * -1) +1)
  2060. num = num * 100
  2061. def airup():
  2062. if r_ground.triggered == False:
  2063. pos = own.worldPosition
  2064. pos = own.worldPosition.z
  2065. last_pos = own['last_posz']
  2066. if last_pos - pos > 0:
  2067. own['airup'] = 0
  2068. if last_pos - pos < 0:
  2069. own['airup'] = 1
  2070. if pos > own['last_posz']:
  2071. own["air_height"] = pos
  2072. own['last_posz'] = pos
  2073. else:
  2074. own['airup'] = 0
  2075. def onramp():
  2076. if r_ground.positive:
  2077. if 'ramp' in r_ground.hitObject:
  2078. own['onramp'] = 60
  2079. own['last_ramp'] = frame
  2080. own['no_grind_timer'] = 60
  2081. #print('on ramp')
  2082. else:
  2083. own['onramp'] = 0
  2084. else:
  2085. if own['onramp'] > 0:
  2086. own['onramp'] -= 1
  2087. def grindtype(gtype):
  2088. own['grindType'] = gtype
  2089. def transmult():
  2090. lastrotz = own["rotz"]
  2091. linvel = own.getLinearVelocity(True)
  2092. newx = (linvel.x + (linvel.x * .039))
  2093. if linvel.x < 7 and linvel.x > -7 and rot.z > lastrotz and r_ground.triggered == 1 and rot.z > .3 and rot.z < .93:
  2094. own.setLinearVelocity([newx, linvel.y, linvel.z], True)
  2095. def speedmult():
  2096. vel = own.getLinearVelocity(True)
  2097. xyz = own.worldOrientation.to_euler()
  2098. roty = math.degrees(xyz[1])
  2099. roty = abs(roty)
  2100. roty = roty * .0005
  2101. if abs(vel.x) > 1:
  2102. mult = .0015 + roty
  2103. else:
  2104. mult = .000
  2105. mult2 = .018
  2106. mult3 = .007
  2107. lastrotz = own["rotz"]
  2108. x = vel.x * mult
  2109. x2 = x + vel.x
  2110. x3 = vel.x * mult2
  2111. x4 = x3 + vel.x
  2112. x5 = vel.x * mult3
  2113. x6 = x5 + vel.x
  2114. if r_ground.triggered and vel.x < 4 and vel.x > -4:
  2115. own.setLinearVelocity([x2, vel.y, vel.z], True)
  2116. def coping():
  2117. if invertTouch.positive:
  2118. own["coping"] = 1
  2119. else:
  2120. own["coping"] = 0
  2121. def onboard():
  2122. if own['walk'] == 1 and own['lasty'] == False and own['requestAction'] not in ['reg_dropin', 'fak_dropin']:
  2123. cont.deactivate(cam.actuators['replayCam'])
  2124. cont.activate(cam.actuators['Camera'])
  2125. killall()
  2126. walklay = 40
  2127. ob_speed = .5
  2128. if STANCE == 0:
  2129. killall()
  2130. if own['dropinCol'] == True:
  2131. own['requestAction'] = 'reg_dropin'
  2132. own['dropinTimer'] = 60
  2133. else:
  2134. own['requestAction'] = 'reg_onboard'
  2135. force = (linVelocity.x -1, linVelocity.y, linVelocity.z)
  2136. if own['dropinTimer'] == 0:
  2137. own.setLinearVelocity(force, True)
  2138. if STANCE == 1:
  2139. killall()
  2140. if own['dropinCol'] == True:
  2141. own['requestAction'] = 'fak_dropin'
  2142. own['dropinTimer'] = 60
  2143. else:
  2144. own['requestAction'] = 'fak_onboard'
  2145. force = (linVelocity.x +1, linVelocity.y, linVelocity.z)
  2146. if own['dropinTimer'] == 0:
  2147. own.setLinearVelocity(force, True)
  2148. else:
  2149. num = own['dropinTimer']
  2150. if num > 0:
  2151. num = num - 1
  2152. own['dropinTimer'] = num
  2153. def offboard():
  2154. wheel1.stopAction(2)
  2155. wheel2.stopAction(2)
  2156. wheel3.stopAction(2)
  2157. wheel4.stopAction(2)
  2158. cont.deactivate(own.actuators["sroll"])
  2159. sact = own.actuators["sroll"]
  2160. sact.volume = .0001
  2161. own.actuators["sroll"].stopSound()
  2162. own['offboard_vel'] = own.linearVelocity
  2163. own['walk_timer'] = 0
  2164. def resetjumpstance():
  2165. if LAST_GRIND == True and grindHit == False:
  2166. own["lF_ground_frame"] = own['framenum']
  2167. lfg = own["lF_ground_frame"]
  2168. #print(lfg, "----- this?")
  2169. if own['jump_stance'] != 3:
  2170. own['jump_stance'] = 3
  2171. def grass():
  2172. try:
  2173. if 'grass' in r_ground.hitObject:
  2174. linVel = own.getLinearVelocity(True)
  2175. linvelx = linVel.x * .98
  2176. own.setLinearVelocity((linvelx, linVel.y, linVel.z), 1)
  2177. except:
  2178. pass
  2179. def grindoutair():
  2180. skippy = 0
  2181. linVel = own.getLinearVelocity(True)
  2182. STANCE = own['stance']
  2183. if own['LAST_GRIND'] == True and grindHit == True:
  2184. own['lg_stance'] = STANCE
  2185. lg_stance = own['lg_stance']
  2186. own.actuators["grindoutair"].useLocalLinV = True
  2187. if own['grindjumpturn'] == True and own['grindCountdown'] > 12 and skippy == 0:
  2188. if 'fak' in own['l_actionState']:
  2189. STANCE = 1
  2190. own['lg_stance'] = 1
  2191. lg_stance = 1
  2192. #print('changing stance 1')
  2193. if 'reg' in own['l_actionState']:
  2194. STANCE = 0
  2195. own['lg_stance'] = 0
  2196. lg_stance = 0
  2197. #print('changing stance 0')
  2198. own['stance'] = STANCE
  2199. grindoutspeed = .1
  2200. grindoutspeed2 = 5.4
  2201. if lLR > turnsens:
  2202. if own['last_grindpos'] == 'reg_5050':
  2203. if STANCE == 0:
  2204. own.actuators["grindoutair"].linV = [0, grindoutspeed, 0]
  2205. else:
  2206. own.actuators["grindoutair"].linV = [0, -grindoutspeed, 0]
  2207. cont.activate(own.actuators["grindoutair"])
  2208. if lLR < -turnsens:
  2209. if own['last_grindpos'] == 'reg_5050':
  2210. if STANCE == 0:
  2211. own.actuators["grindoutair"].linV = [0, -grindoutspeed, 0]
  2212. else:
  2213. own.actuators["grindoutair"].linV = [0, grindoutspeed, 0]
  2214. cont.activate(own.actuators["grindoutair"])
  2215. if lUD > turnsens:
  2216. js = own['lg_stance']
  2217. linvelx = own.getLinearVelocity(True)
  2218. if own['last_grindpos'] == 'reg_board':
  2219. if js == 1:
  2220. own.actuators["grindoutair"].linV = [-grindoutspeed, 0, 0]
  2221. cont.activate(own.actuators["grindoutair"])
  2222. else:
  2223. own.actuators["grindoutair"].linV = [grindoutspeed, 0, 0]
  2224. cont.activate(own.actuators["grindoutair"])
  2225. if lUD < -turnsens:
  2226. js = own['lg_stance']
  2227. if own['last_grindpos'] == 'reg_board':
  2228. if js == 0:
  2229. own.actuators["grindoutair"].linV = [-grindoutspeed, 0, 0]
  2230. cont.activate(own.actuators["grindoutair"])
  2231. else:
  2232. own.actuators["grindoutair"].linV = [grindoutspeed, 0, 0]
  2233. cont.activate(own.actuators["grindoutair"])
  2234. if LAST_GRIND == False and r_ground.triggered and own['grindjumpturn'] == True and own['grindCountdown'] < 1:
  2235. own['grindjumpturn'] = False
  2236. if r_ground.triggered:
  2237. own['grind_jump'] = False
  2238. if own['grindjumpturn'] == False or own['grindCountdown'] < 19:
  2239. cont.deactivate(own.actuators["grindoutair"])
  2240. #print(STANCE)
  2241. def set_last_grindpos():
  2242. if own['grindpos'] != None:
  2243. own['last_grindpos'] = own['grindpos']
  2244. def air_pos():
  2245. grindpos = own['grindpos']
  2246. GRAB_ON = own["GRAB_ON"]
  2247. wr = own["wallride"]
  2248. jump_timer = own['jump_timer']
  2249. if rUD > .040 and r_ground.triggered == False and GRAB_ON == False and wr == None and jump_timer < 30:
  2250. if STANCE == 0:
  2251. own['requestAction'] = 'reg_air_tail'
  2252. else:
  2253. own['requestAction'] = 'fak_air_tail'
  2254. elif rUD < -.040 and r_ground.triggered == False and GRAB_ON == False and wr == None and jump_timer < 30:
  2255. if STANCE == 0:
  2256. own['requestAction'] = 'reg_air_nose'
  2257. else:
  2258. own['requestAction'] = 'fak_air_nose'
  2259. def air_turn_boost():
  2260. pass
  2261. def revert():
  2262. own["Q3oncdl"] = 0
  2263. own["Q4oncdl"] = 0
  2264. own["Q5oncdl"] = 0
  2265. own["Q6oncdl"] = 0
  2266. own["Q7oncdl"] = 0
  2267. local = True
  2268. rot = [ 0.0, 0.0, 3.14]
  2269. own.applyRotation(rot,local)
  2270. framenum = own['framenum']
  2271. last_ground_frame = own['lF_ground_frame']
  2272. lF_air_frame = own['lF_air_frame']
  2273. frames_since_ground = framenum - lF_air_frame
  2274. if own['manual_v2_type'] == 'reg manual':
  2275. own['requestAction'] = 'reg_manual_revert_ccw'
  2276. elif own['manual_v2_type'] == 'reg nose manual':
  2277. own['requestAction'] = 'reg_nmanual_revert_ccw'
  2278. elif own['manual_v2_type'] == 'fak manual':
  2279. own['requestAction'] = 'fak_manual_revert_ccw'
  2280. elif own['manual_v2_type'] == 'fak nose manual':
  2281. own['requestAction'] = 'fak_nmanual_revert_ccw'
  2282. else:
  2283. if STANCE == 0:
  2284. own['requestAction'] = 'revert1'
  2285. else:
  2286. own['requestAction'] = 'fak_revert1'
  2287. own['revert_timer'] = 20
  2288. cont.activate(own.actuators["revertSound"])
  2289. own['revert_sound'] = 1
  2290. dict['trick_string'] = 'Revert'
  2291. def revert2():
  2292. own["Q3oncdl"] = 0
  2293. own["Q4oncdl"] = 0
  2294. own["Q5oncdl"] = 0
  2295. own["Q6oncdl"] = 0
  2296. own["Q7oncdl"] = 0
  2297. local = True
  2298. rot = [ 0.0, 0.0, -3.14]
  2299. own.applyRotation(rot,local)
  2300. if own['manual_v2_type'] == 'reg manual':
  2301. own['requestAction'] = 'reg_manual_revert_cw'
  2302. elif own['manual_v2_type'] == 'reg nose manual':
  2303. own['requestAction'] = 'reg_nmanual_revert_cw'
  2304. elif own['manual_v2_type'] == 'fak manual':
  2305. own['requestAction'] = 'fak_manual_revert_cw'
  2306. elif own['manual_v2_type'] == 'fak nose manual':
  2307. own['requestAction'] = 'fak_nmanual_revert_cw'
  2308. else:
  2309. if STANCE == 0:
  2310. own['requestAction'] = 'revert2'
  2311. else:
  2312. own['requestAction'] = 'fak_revert2'
  2313. own['revert_timer'] = 20
  2314. cont.activate(own.actuators["revertSound"])
  2315. own['revert_sound'] = 1
  2316. dict['trick_string'] = 'Revert'
  2317. def revert3():
  2318. own["Q7oncdl"] = 0
  2319. own["Q8oncdl"] = 0
  2320. own["Q1oncdl"] = 0
  2321. own["Q2oncdl"] = 0
  2322. own["Q3oncdl"] = 0
  2323. local = True
  2324. rot = [ 0.0, 0.0, 3.14]
  2325. own.applyRotation(rot,local)
  2326. if own['manual_v2_type'] == 'reg manual':
  2327. own['requestAction'] = 'reg_manual_revert_ccw'
  2328. elif own['manual_v2_type'] == 'reg nose manual':
  2329. own['requestAction'] = 'reg_nmanual_revert_ccw'
  2330. elif own['manual_v2_type'] == 'fak manual':
  2331. own['requestAction'] = 'fak_manual_revert_ccw'
  2332. elif own['manual_v2_type'] == 'fak nose manual':
  2333. own['requestAction'] = 'fak_nmanual_revert_ccw'
  2334. else:
  2335. if STANCE == 0:
  2336. own['requestAction'] = 'revert3'
  2337. else:
  2338. own['requestAction'] = 'fak_revert1'
  2339. own['revert_timer'] = 20
  2340. cont.activate(own.actuators["revertSound"])
  2341. own['revert_sound'] = 1
  2342. dict['trick_string'] = 'Revert'
  2343. def revert4():
  2344. own["Q7oncdl"] = 0
  2345. own["Q8oncdl"] = 0
  2346. own["Q1oncdl"] = 0
  2347. own["Q2oncdl"] = 0
  2348. own["Q3oncdl"] = 0
  2349. local = True
  2350. rot = [ 0.0, 0.0, 3.14]
  2351. own.applyRotation(rot,local)
  2352. if own['manual_v2_type'] == 'reg manual':
  2353. own['requestAction'] = 'reg_manual_revert_cw'
  2354. elif own['manual_v2_type'] == 'reg nose manual':
  2355. own['requestAction'] = 'reg_nmanual_revert_cw'
  2356. elif own['manual_v2_type'] == 'fak manual':
  2357. own['requestAction'] = 'fak_manual_revert_cw'
  2358. elif own['manual_v2_type'] == 'fak nose manual':
  2359. own['requestAction'] = 'fak_nmanual_revert_cw'
  2360. else:
  2361. if STANCE == 0:
  2362. own['requestAction'] = 'revert4'
  2363. else:
  2364. own['requestAction'] = 'fak_revert2'
  2365. own['revert_timer'] = 20
  2366. cont.activate(own.actuators["revertSound"])
  2367. own['revert_sound'] = 1
  2368. dict['trick_string'] = 'Revert'
  2369. def powerslide():
  2370. own['powerslide_counter'] = own['powerslide_counter'] + 1
  2371. since_walk = own['framenum'] - own['last_walk_frame']
  2372. since_grind = own['framenum'] - own['last_grind_frame']
  2373. if own['powerslide_counter'] > 15 and since_walk > 100 and since_grind > 40:
  2374. own['powerslide_on'] = 1
  2375. if STANCE == 0:
  2376. own['powerslide'] = "reg2"
  2377. if STANCE == 1:
  2378. own['powerslide'] = "fak1"
  2379. linVelocity4 = own.getLinearVelocity(True)
  2380. if own['powerslide_counter'] > 15 and own['powerslide_counter'] < 18:
  2381. newx = linVelocity4.x * .9
  2382. else:
  2383. newx = linVelocity4.x * .98
  2384. force = [newx, linVelocity4.y, linVelocity4.z]
  2385. own.setLinearVelocity(force, True)
  2386. def powerslide2():
  2387. own['powerslide_counter'] = own['powerslide_counter'] + 1
  2388. since_walk = own['framenum'] - own['last_walk_frame']
  2389. since_grind = own['framenum'] - own['last_grind_frame']
  2390. if own['powerslide_counter'] > 15 and since_walk > 100 and since_grind > 100:
  2391. own['powerslide_on'] = 1
  2392. if STANCE == 0:
  2393. own['powerslide'] = "reg1"
  2394. if STANCE == 1:
  2395. own['powerslide'] = "fak2"
  2396. linVelocity4 = own.getLinearVelocity(True)
  2397. if own['powerslide_counter'] > 15 and own['powerslide_counter'] < 18:
  2398. newx = linVelocity4.x * .9
  2399. else:
  2400. newx = linVelocity4.x * .98
  2401. force = [newx, linVelocity4.y, linVelocity4.z]
  2402. own.setLinearVelocity(force, True)
  2403. def powerslide_state():
  2404. if own['powerslide_on'] == 1:
  2405. if own['powerslide'] == "reg2":
  2406. own['requestAction'] = 'reg_fs_powerslide'
  2407. if own['powerslide'] == "fak1":
  2408. own['requestAction'] = 'fak_fs_powerslide'
  2409. if own['powerslide'] == "reg1":
  2410. own['requestAction'] = 'reg_powerslide'
  2411. if own['powerslide'] == "fak2":
  2412. own['requestAction'] = 'fak_powerslide'
  2413. def powerslide_sound():
  2414. sact = own.actuators["powerslide_sound"]
  2415. if own['powerslide_on'] == 1:
  2416. sact = own.actuators["powerslide_sound"]
  2417. sact.volume = .2
  2418. new_pitch = (abs(linVelocity.x) / 3)
  2419. if new_pitch < 1.1 and new_pitch > .5:
  2420. sact.pitch = new_pitch
  2421. elif new_pitch <= .5:
  2422. sact.pitch = .5
  2423. else:
  2424. sact.pitch = 1.1
  2425. cont.activate(own.actuators["powerslide_sound"])
  2426. else:
  2427. sact.volume = .0
  2428. cont.deactivate(own.actuators["powerslide_sound"])
  2429. def check_powerslide():
  2430. try:
  2431. own['last_powerslide_on'] = own['powerslide_on']
  2432. except:
  2433. pass
  2434. psxvel = abs(linVelocity.x)
  2435. if (lUD > .08 or lUD < -.08) and own['manual_v2'] == False and r_ground.triggered == True and psxvel > .1 and own["Pump"] == False:
  2436. if lUD > .08:
  2437. powerslide()
  2438. else:
  2439. powerslide2()
  2440. else:
  2441. own['powerslide_on'] = 0
  2442. own['powerslide_counter'] = 0
  2443. if own['last_powerslide_on'] == 0:
  2444. own['powerslide'] = None
  2445. def killopos():
  2446. pass
  2447. stopAnims()
  2448. #nextframe()
  2449. air()
  2450. stance()
  2451. turn()
  2452. rotmult()
  2453. airup()
  2454. onramp()
  2455. speedmult()
  2456. coping()
  2457. resetjumpstance()
  2458. grass()
  2459. grindoutair()
  2460. set_last_grindpos()
  2461. air_pos()
  2462. air_turn_boost()
  2463. record_grindsound()
  2464. check_powerslide()
  2465. powerslide_state()
  2466. powerslide_sound()
  2467. killopos()
  2468. grind()
  2469. #onboard()
  2470. ##################
  2471. ###realcontrols###
  2472. ##################
  2473. # q1
  2474. # q8 q2
  2475. # q7 q3
  2476. # q6 q4
  2477. # q5
  2478. ##################
  2479. #lq6
  2480. if lUD > .04 and lLR < -0.04 :
  2481. lq6on = 1
  2482. q6oncdl = countdown
  2483. own["Q6oncdl"] = q6oncdl
  2484. elif q6oncdl > 0:
  2485. lq6on = 0
  2486. q6oncdl = q6oncdl - 1
  2487. own["Q6oncdl"] = q6oncdl
  2488. #lq8
  2489. if lUD < -.04 and lLR < -0.04 :
  2490. lq8on = 1
  2491. q8oncdl = countdown
  2492. own["Q8oncdl"] = q8oncdl
  2493. elif q8oncdl > 0:
  2494. lq8on = 0
  2495. q8oncdl = q8oncdl - 1
  2496. own["Q8oncdl"] = q8oncdl
  2497. #lq2
  2498. if lUD < -.04 and lLR > 0.04 :
  2499. lq2on = 1
  2500. q2oncdl = countdown
  2501. own["Q2oncdl"] = q2oncdl
  2502. elif q2oncdl > 0:
  2503. lq2on = 0
  2504. q2oncdl = q2oncdl - 1
  2505. own["Q2oncdl"] = q2oncdl
  2506. #q4
  2507. if lUD > 0.04 and lLR > 0.04 :
  2508. lq4on = 1
  2509. q4oncdl = countdown
  2510. own["Q4oncdl"] = q4oncdl
  2511. elif q4oncdl > 0:
  2512. lq4on = 0
  2513. q4oncdl = q4oncdl - 1
  2514. own["Q4oncdl"] = q4oncdl
  2515. #q5
  2516. if lUD > .070 and lq4on == 0 and lq6on == 0:
  2517. lq5on = 1
  2518. q5oncdl = countdown
  2519. own["Q5oncdl"] = q5oncdl
  2520. elif q5oncdl > 0:
  2521. lq5on = 0
  2522. q5oncdl = q5oncdl - 1
  2523. own["Q5oncdl"] = q5oncdl
  2524. #q1
  2525. if lUD < -0.070 and lq8on !=1 and lq2on != 1:
  2526. lq1on = 1
  2527. q1oncdl = countdown
  2528. own["Q1oncdl"] = q1oncdl
  2529. elif q1oncdl > 0:
  2530. lq1on = 0
  2531. q1oncdl = q1oncdl - 1
  2532. own["Q1oncdl"] = q1oncdl
  2533. #q7
  2534. if lLR < -0.070 and lq8on != 1 and lq6on != 1:
  2535. lq7on = 1
  2536. q7oncdl = countdown
  2537. own["Q7oncdl"] = q7oncdl
  2538. elif q7oncdl > 0:
  2539. lq7on = 0
  2540. q7oncdl = q7oncdl - 1
  2541. own["Q7oncdl"] = q7oncdl
  2542. #q3
  2543. if lLR > 0.070 and lq2on !=1 and lq4on != 1:
  2544. lq3on = 1
  2545. q3oncdl = countdown
  2546. own["Q3oncdl"] = q3oncdl
  2547. elif q3oncdl > 0:
  2548. lq3on = 0
  2549. q3oncdl = q3oncdl - 1
  2550. own["Q3oncdl"] = q3oncdl
  2551. own['set_revert_timer'] = 0
  2552. ground_since = own["framenum"] - own['lF_air_frame']
  2553. if ground_since > 80 and frames_since_grinding > 40:
  2554. if q3oncdl < q4oncdl < q5oncdl < q6oncdl < q7oncdl:
  2555. if r_ground.triggered == True:
  2556. revert()
  2557. own['set_revert_timer'] = 1
  2558. if q3oncdl > q4oncdl > q5oncdl > q6oncdl > q7oncdl:
  2559. if r_ground.triggered == True:
  2560. revert2()
  2561. own['set_revert_timer'] = 1
  2562. if q7oncdl < q8oncdl < q1oncdl < q2oncdl < q3oncdl:
  2563. if r_ground.triggered == True:
  2564. revert3()
  2565. own['set_revert_timer'] = 1
  2566. if q7oncdl > q8oncdl > q1oncdl > q2oncdl > q3oncdl:
  2567. if r_ground.triggered == True:
  2568. revert4()
  2569. own['set_revert_timer'] = 1
  2570. ################
  2571. #q6
  2572. if rUD > .04 and rLR < -0.04 :
  2573. q6on = 1
  2574. q6oncd = countdown
  2575. own["Q6oncd"] = q6oncd
  2576. #print("q6on")
  2577. elif q6oncd > 0:
  2578. q6on = 0
  2579. q6oncd = q6oncd - 1
  2580. own["Q6oncd"] = q6oncd
  2581. #q8
  2582. if rUD < -.04 and rLR < -0.04 :
  2583. q8on = 1
  2584. q8oncd = countdown
  2585. own["Q8oncd"] = q8oncd
  2586. #print("q8on")
  2587. elif q8oncd > 0:
  2588. q8on = 0
  2589. q8oncd = q8oncd - 1
  2590. own["Q8oncd"] = q8oncd
  2591. #q2
  2592. if rUD < -.04 and rLR > 0.04 :
  2593. q2on = 1
  2594. q2oncd = countdown
  2595. own["Q2oncd"] = q2oncd
  2596. #print("q2on")
  2597. elif q2oncd > 0:
  2598. q2on = 0
  2599. q2oncd = q2oncd - 1
  2600. own["Q2oncd"] = q2oncd
  2601. #q4
  2602. if rUD > 0.04 and rLR > 0.04 :
  2603. q4on = 1
  2604. q4oncd = countdown
  2605. own["Q4oncd"] = q4oncd
  2606. #print("q4on")
  2607. elif q4oncd > 0:
  2608. q4on = 0
  2609. q4oncd = q4oncd - 1
  2610. own["Q4oncd"] = q4oncd
  2611. #q5
  2612. if rUD > .070 or dict['kb_space'] == 2:
  2613. if q4on == 0 and q6on == 0:
  2614. #print("q5on")
  2615. q5on = 1
  2616. q5oncd = countdown
  2617. own["Q5oncd"] = q5oncd
  2618. oposin()
  2619. #print('oposin')
  2620. ground_since = own["framenum"] - own['lF_air_frame']
  2621. if ((rTrig > 0.02 or dict['kb_lsh'] == 2) and GRAB_ON == False and r_ground.triggered == 1) or (lTrig > 0.02 and GRAB_ON == False and r_ground.triggered == 1) and ground_since > 10:
  2622. pump()
  2623. else:
  2624. own["lastPump"] = False
  2625. own["Pump"] = False
  2626. own['jump_stance'] = STANCE
  2627. if rUD > .02 and grindHit == True:
  2628. grindpos = own['grindpos']
  2629. jumpstance = own["jump_stance"]
  2630. if LAST_GRIND == False:
  2631. if grindpos == "reg_stall":
  2632. grindtype("nose_stall") #change
  2633. elif grindpos == "fak_stall":
  2634. grindtype("nose_stall")
  2635. elif grindpos == "reg_5050":
  2636. if jumpstance != 3:
  2637. if jumpstance == 0:
  2638. if rLR > .03:
  2639. grindtype("reg_tailgR")
  2640. elif rLR < -.03:
  2641. grindtype("reg_tailgL")
  2642. else:
  2643. grindtype("reg_tailg")
  2644. if jumpstance == 1:
  2645. if rLR > .03:
  2646. grindtype("fak_tailgR")
  2647. elif rLR < -.03:
  2648. grindtype("fak_tailgL")
  2649. else:
  2650. grindtype("fak_tailg")
  2651. else:
  2652. if STANCE == 0:
  2653. if rLR > .03:
  2654. grindtype("reg_tailgR")
  2655. elif rLR < -.03:
  2656. grindtype("reg_tailgL")
  2657. else:
  2658. grindtype("reg_tailg")
  2659. if STANCE == 1:
  2660. grindtype("fak_tailg")
  2661. elif grindpos == "reg_board":
  2662. if jumpstance != 3:
  2663. if jumpstance == 0:
  2664. grindtype("reg_tailslide")
  2665. if jumpstance == 1:
  2666. grindtype("fak_tailslide")
  2667. STANCE = jumpstance
  2668. own['stance'] = STANCE
  2669. else:
  2670. if STANCE == 0:
  2671. grindtype("reg_tailslide")
  2672. if STANCE == 1:
  2673. grindtype("fak_tailslide")
  2674. else:
  2675. if jumpstance == 0:
  2676. grindtype("reg_tailg")
  2677. if jumpstance == 1:
  2678. grindtype("fak_tailg")
  2679. if q5oncd > 0:
  2680. q5on = 0
  2681. q5oncd = q5oncd - 1
  2682. own["Q5oncd"] = q5oncd
  2683. own["last_Opos"] = False
  2684. #q1
  2685. if rUD < -0.070:
  2686. if q2on == 0 and q8on == 0:
  2687. #print("q1on")
  2688. q1on = 1
  2689. q1oncd = countdown
  2690. own["Q1oncd"] = q1oncd
  2691. noposin()
  2692. if rUD < -0.020 and grindHit == True:
  2693. grindpos = own['grindpos']
  2694. jumpstance = own["jump_stance"]
  2695. if LAST_GRIND == False:
  2696. if grindpos == "reg_5050":
  2697. #print("nose something")
  2698. if jumpstance != 3:
  2699. if jumpstance == 0:
  2700. if rLR > .02:
  2701. grindtype("reg_nosegR")
  2702. elif rLR < -.02:
  2703. grindtype("reg_nosegL")
  2704. else:
  2705. grindtype("reg_noseg")
  2706. if jumpstance == 1:
  2707. if rLR > .02:
  2708. grindtype("fak_nosegR")
  2709. elif rLR < -.02:
  2710. grindtype("fak_nosegL")
  2711. else:
  2712. grindtype("fak_noseg")
  2713. else:
  2714. if STANCE == 0:
  2715. if rLR > .02:
  2716. grindtype("reg_nosegR")
  2717. elif rLR < -.02:
  2718. grindtype("reg_nosegL")
  2719. else:
  2720. grindtype("reg_noseg")
  2721. if STANCE == 1:
  2722. if rLR > .02:
  2723. grindtype("fak_nosegR")
  2724. elif rLR < -.02:
  2725. grindtype("fak_nosegL")
  2726. else:
  2727. grindtype("fak_noseg")
  2728. elif grindpos == "reg_board":
  2729. if jumpstance != 3:
  2730. if jumpstance == 0:
  2731. grindtype("reg_noseslide")
  2732. if jumpstance == 1:
  2733. grindtype("fak_noseslide")
  2734. STANCE = jumpstance
  2735. own['stance'] = STANCE
  2736. else:
  2737. if STANCE == 0:
  2738. grindtype("reg_noseslide")
  2739. if STANCE == 1:
  2740. grindtype("fak_noseslide")
  2741. if rUD > -0.020 and rUD <= .020 and LAST_GRIND == False:
  2742. if own['grindpos'] == 'reg_5050':
  2743. grindtype("reg_5050")
  2744. if own['grindpos'] == 'fak_5050':
  2745. grindtype("fak_5050")
  2746. if q1oncd > 0:
  2747. q1on = 0
  2748. q1oncd = q1oncd - 1
  2749. own["Q1oncd"] = q1oncd
  2750. own["last_nOpos"] = False
  2751. #q7
  2752. if rLR < -0.070:
  2753. if q8on == 0 and q6on == 0:
  2754. q7on = 1
  2755. q7oncd = countdown
  2756. own["Q7oncd"] = q7oncd
  2757. elif q7oncd > 0:
  2758. q7on = 0
  2759. q7oncd = q7oncd - 1
  2760. own["Q7oncd"] = q7oncd
  2761. #q3
  2762. if rLR > 0.070:
  2763. if q4on == 0 and q2on == 0:
  2764. q3on = 1
  2765. q3oncd = countdown
  2766. own["Q3oncd"] = q3oncd
  2767. #print("q3on")
  2768. elif q3oncd > 0:
  2769. q3on = 0
  2770. q3oncd = q3oncd - 1
  2771. own["Q3oncd"] = q3oncd
  2772. ###keyboard fliptricks
  2773. if dict['kb_space'] == 3:
  2774. if dict['kb_a'] == 2:
  2775. kickflip()
  2776. elif dict['kb_d'] == 2:
  2777. heelflip()
  2778. elif dict['kb_w'] == 2:
  2779. fsshuvit()
  2780. elif dict['kb_s'] == 2:
  2781. shuvit()
  2782. else:
  2783. aollie()
  2784. ##########################################
  2785. #trick calls
  2786. ##########################################
  2787. # hard flip
  2788. # 6 > 5 > 8
  2789. if q6oncd > 0 and q5oncd > 0 and q8oncd > 0 and q6oncd <= q5oncd <= q8oncd:
  2790. print ("Hardflip")
  2791. dict['trick_string'] = 'Hardflip'
  2792. hardflip()
  2793. reset_rtimers()
  2794. q1oncd = 0
  2795. q2oncd = 0
  2796. q3oncd = 0
  2797. q4oncd = 0
  2798. q5oncd = 0
  2799. q6oncd = 0
  2800. q7oncd = 0
  2801. q8oncd = 0
  2802. # inward heelflip
  2803. # 4 > 5 > 2
  2804. if q4oncd > 0 and q5oncd > 0 and q2oncd > 0 and q4oncd <= q5oncd <= q2oncd:
  2805. print ("Inward Heelflip")
  2806. dict['trick_string'] = 'Inward Heelflip'
  2807. inward_heelflip()
  2808. reset_rtimers()
  2809. q1oncd = 0
  2810. q2oncd = 0
  2811. q3oncd = 0
  2812. q4oncd = 0
  2813. q5oncd = 0
  2814. q6oncd = 0
  2815. q7oncd = 0
  2816. q8oncd = 0
  2817. # nollie hard flip
  2818. # 8 > 1 > 6
  2819. if q8oncd > 0 and q1oncd > 0 and q6oncd > 0 and q8oncd <= q1oncd <= q6oncd:
  2820. print ("Nollie Hardflip")
  2821. dict['trick_string'] = 'Nollie Hardflip'
  2822. nollie_hardflip()
  2823. reset_rtimers()
  2824. q1oncd = 0
  2825. q2oncd = 0
  2826. q3oncd = 0
  2827. q4oncd = 0
  2828. q5oncd = 0
  2829. q6oncd = 0
  2830. q7oncd = 0
  2831. q8oncd = 0
  2832. # nollie inward heelflip
  2833. # 2 > 1 > 4
  2834. if q2oncd > 0 and q1oncd > 0 and q4oncd > 0 and q2oncd <= q1oncd <= q4oncd:
  2835. print ("Nollie Inward Heelflip")
  2836. dict['trick_string'] = 'Nollie Inward Heelflip'
  2837. nollie_inward_heelflip()
  2838. reset_rtimers()
  2839. q1oncd = 0
  2840. q2oncd = 0
  2841. q3oncd = 0
  2842. q4oncd = 0
  2843. q5oncd = 0
  2844. q6oncd = 0
  2845. q7oncd = 0
  2846. q8oncd = 0
  2847. #nollie 360 shuvit
  2848. if q7oncd > 0 and q8oncd > 0 and q1oncd > 0 and q2oncd > 0 and q3oncd > 0 and q7oncd <= q8oncd <= q1oncd <= q2oncd <= q3oncd:
  2849. print ("Nollie 360 shuvit")
  2850. dict['trick_string'] = 'Nollie 360 shuvit'
  2851. nollie_shuvit360()
  2852. reset_rtimers()
  2853. q1oncd = 0
  2854. q2oncd = 0
  2855. q3oncd = 0
  2856. q4oncd = 0
  2857. q5oncd = 0
  2858. q6oncd = 0
  2859. q7oncd = 0
  2860. q8oncd = 0
  2861. #nollie fs 360 shuvit
  2862. if q7oncd > 0 and q8oncd > 0 and q1oncd > 0 and q2oncd > 0 and q3oncd > 0 and q3oncd <= q2oncd <= q1oncd <= q8oncd <= q7oncd:
  2863. #print("q4oncd: ", q4oncd, " q5oncd: ", q5oncd, " q6oncd: ", q6oncd)
  2864. print ("Nollie Front Side 360 shuvit")
  2865. dict['trick_string'] = 'Nollie FS 360 shuvit'
  2866. nollie_fsshuvit360()
  2867. reset_rtimers()
  2868. q1oncd = 0
  2869. q2oncd = 0
  2870. q3oncd = 0
  2871. q4oncd = 0
  2872. q5oncd = 0
  2873. q6oncd = 0
  2874. q7oncd = 0
  2875. q8oncd = 0
  2876. # varial heelflip
  2877. # 7 < 6 < 2
  2878. if q7oncd > 0 and q6oncd > 0 and q2oncd > 0 and q7oncd < q6oncd < q2oncd:
  2879. dict['trick_string'] = 'Varial Heelflip'
  2880. varial_heelflip()
  2881. reset_rtimers()
  2882. q1oncd = 0
  2883. q2oncd = 0
  2884. q3oncd = 0
  2885. q4oncd = 0
  2886. q5oncd = 0
  2887. q6oncd = 0
  2888. q7oncd = 0
  2889. q8oncd = 0
  2890. # varial kickflip
  2891. # 3 < 4 < 8
  2892. if q3oncd > 0 and q4oncd > 0 and q8oncd > 0 and q3oncd < q4oncd < q8oncd:
  2893. dict['trick_string'] = 'Varial Kickflip'
  2894. varial_kickflip()
  2895. reset_rtimers()
  2896. q1oncd = 0
  2897. q2oncd = 0
  2898. q3oncd = 0
  2899. q4oncd = 0
  2900. q5oncd = 0
  2901. q6oncd = 0
  2902. q7oncd = 0
  2903. q8oncd = 0
  2904. # nollie varial kickflip
  2905. # 3 < 2 < 6
  2906. if q3oncd > 0 and q2oncd > 0 and q6oncd > 0 and q3oncd <= q2oncd <= q6oncd:
  2907. dict['trick_string'] = 'Nollie Varial Kickflip'
  2908. print('Nollie Varial Kickflip')
  2909. nollie_varial_kickflip()
  2910. reset_rtimers()
  2911. q1oncd = 0
  2912. q2oncd = 0
  2913. q3oncd = 0
  2914. q4oncd = 0
  2915. q5oncd = 0
  2916. q6oncd = 0
  2917. q7oncd = 0
  2918. q8oncd = 0
  2919. # nollie varial heelflip
  2920. # 7 < 8 < 4
  2921. if q7oncd > 0 and q8oncd > 0 and q4oncd > 0 and q7oncd <= q8oncd <= q4oncd:
  2922. dict['trick_string'] = 'Nollie Varial Heelflip'
  2923. print('Nollie Varial Heelflip')
  2924. nollie_varial_heelflip()
  2925. reset_rtimers()
  2926. q1oncd = 0
  2927. q2oncd = 0
  2928. q3oncd = 0
  2929. q4oncd = 0
  2930. q5oncd = 0
  2931. q6oncd = 0
  2932. q7oncd = 0
  2933. q8oncd = 0
  2934. #360 shuvit
  2935. if q3oncd > 0 and q4oncd > 0 and q5oncd > 0 and q6oncd > 0 and q7oncd > 0 and q7oncd >= q6oncd >= q5oncd >= q4oncd >= q3oncd:
  2936. # print("q4oncd: ", q4oncd, " q5oncd: ", q5oncd, " q6oncd: ", q6oncd)
  2937. #print ("______-------360 shuvit")
  2938. dict['trick_string'] = '360 shuvit'
  2939. shuvit360()
  2940. reset_rtimers()
  2941. q1oncd = 0
  2942. q2oncd = 0
  2943. q3oncd = 0
  2944. q4oncd = 0
  2945. q5oncd = 0
  2946. q6oncd = 0
  2947. q7oncd = 0
  2948. q8oncd = 0
  2949. #360 fs shuvit
  2950. if q3oncd > 0 and q4oncd > 0 and q5oncd > 0 and q6oncd >= 0 and q7oncd > 0 and q7oncd <= q6oncd <= q5oncd <= q4oncd <= q3oncd:
  2951. dict['trick_string'] = '360 Frontside shuvit'
  2952. fsshuvit360()
  2953. reset_rtimers()
  2954. q1oncd = 0
  2955. q2oncd = 0
  2956. q3oncd = 0
  2957. q4oncd = 0
  2958. q5oncd = 0
  2959. q6oncd = 0
  2960. q7oncd = 0
  2961. q8oncd = 0
  2962. #ollie
  2963. if q5oncd > 0 and q1oncd > 0 and q5oncd < q1oncd:
  2964. JUMPSTRENGTH = q1oncd - q5oncd
  2965. #4,7
  2966. if JUMPSTRENGTH <= 4:
  2967. JUMPSTRENGTH = 1.1
  2968. if JUMPSTRENGTH > 4 and JUMPSTRENGTH < 7:
  2969. JUMPSTRENGTH = 1
  2970. if JUMPSTRENGTH >= 7:
  2971. JUMPSTRENGTH = .9
  2972. aollie()
  2973. reset_rtimers()
  2974. q1oncd = 0
  2975. q2oncd = 0
  2976. q3oncd = 0
  2977. q4oncd = 0
  2978. q5oncd = 0
  2979. q6oncd = 0
  2980. q7oncd = 0
  2981. q8oncd = 0
  2982. #nollie
  2983. if q5oncd > 0 and q1oncd > 0 and q5oncd > q1oncd:
  2984. JUMPSTRENGTH = q5oncd - q1oncd
  2985. #4,7
  2986. if JUMPSTRENGTH <= 4:
  2987. JUMPSTRENGTH = 1.1
  2988. if JUMPSTRENGTH > 4 and JUMPSTRENGTH < 7:
  2989. JUMPSTRENGTH = 1
  2990. if JUMPSTRENGTH >= 7:
  2991. JUMPSTRENGTH = .9
  2992. nollie()
  2993. reset_rtimers()
  2994. print("nollie")
  2995. q1oncd = 0
  2996. q2oncd = 0
  2997. q3oncd = 0
  2998. q4oncd = 0
  2999. q5oncd = 0
  3000. q6oncd = 0
  3001. q7oncd = 0
  3002. q8oncd = 0
  3003. #kickflip
  3004. if q5oncd > 0 and q8oncd > 0 and q5oncd < q8oncd and q3oncd < 1:
  3005. kickflip()
  3006. reset_rtimers()
  3007. q1oncd = 0
  3008. q2oncd = 0
  3009. q3oncd = 0
  3010. q4oncd = 0
  3011. q5oncd = 0
  3012. q6oncd = 0
  3013. q7oncd = 0
  3014. q8oncd = 0
  3015. #nollie kickflip
  3016. if q1oncd > 0 and q6oncd > 0 and q1oncd < q6oncd:
  3017. nollie_kickflip()
  3018. reset_rtimers()
  3019. q1oncd = 0
  3020. q2oncd = 0
  3021. q3oncd = 0
  3022. q4oncd = 0
  3023. q5oncd = 0
  3024. q6oncd = 0
  3025. q7oncd = 0
  3026. q8oncd = 0
  3027. #heelflip
  3028. if q5oncd > 0 and q2oncd > 0 and q5oncd < q2oncd:
  3029. heelflip()
  3030. reset_rtimers()
  3031. q1oncd = 0
  3032. q2oncd = 0
  3033. q3oncd = 0
  3034. q4oncd = 0
  3035. q5oncd = 0
  3036. q6oncd = 0
  3037. q7oncd = 0
  3038. q8oncd = 0
  3039. #nollie_heelflip
  3040. if q1oncd > 0 and q4oncd > 0 and q1oncd < q4oncd:
  3041. nollie_heelflip()
  3042. reset_rtimers()
  3043. q1oncd = 0
  3044. q2oncd = 0
  3045. q3oncd = 0
  3046. q4oncd = 0
  3047. q5oncd = 0
  3048. q6oncd = 0
  3049. q7oncd = 0
  3050. q8oncd = 0
  3051. #shuvit
  3052. if q7oncd > 0 and q5oncd > 0 and q6oncd > 0 and q5oncd <= q6oncd <= q7oncd:# and q3oncd < 1:
  3053. shuvit()
  3054. reset_rtimers()
  3055. q1oncd = 0
  3056. q2oncd = 0
  3057. q3oncd = 0
  3058. q4oncd = 0
  3059. q5oncd = 0
  3060. q6oncd = 0
  3061. q7oncd = 0
  3062. q8oncd = 0
  3063. #nollie_shuvit
  3064. if q7oncd > 0 and q1oncd > 0 and q8oncd > 0 and q1oncd <= q8oncd <= q7oncd:# and q3oncd == 0:
  3065. nollie_shuvit()
  3066. print('nollie shuvit')
  3067. reset_rtimers()
  3068. q1oncd = 0
  3069. q2oncd = 0
  3070. q3oncd = 0
  3071. q4oncd = 0
  3072. q5oncd = 0
  3073. q6oncd = 0
  3074. q7oncd = 0
  3075. q8oncd = 0
  3076. #fsshuvit
  3077. if q4oncd > 0 and q5oncd > 0 and q3oncd > 0 and q5oncd <= q4oncd <= q3oncd:# and q7oncd < 1:
  3078. fsshuvit()
  3079. reset_rtimers()
  3080. q1oncd = 0
  3081. q2oncd = 0
  3082. q3oncd = 0
  3083. q4oncd = 0
  3084. q5oncd = 0
  3085. q6oncd = 0
  3086. q7oncd = 0
  3087. q8oncd = 0
  3088. #nollie_fsshuvit
  3089. if q3oncd > 0 and q1oncd > 0 and q2oncd > 0 and q1oncd <= q2oncd <= q3oncd:# and q7oncd == 0:
  3090. print ("nollie fsshuvit")
  3091. nollie_fsshuvit()
  3092. reset_rtimers()
  3093. q1oncd = 0
  3094. q2oncd = 0
  3095. q3oncd = 0
  3096. q4oncd = 0
  3097. q5oncd = 0
  3098. q6oncd = 0
  3099. q7oncd = 0
  3100. q8oncd = 0
  3101. def hippy_jump():
  3102. STANCE = own["stance"]
  3103. if own['hippy'] == 1 and own['last_hippy'] == 0:
  3104. if STANCE == 0:
  3105. own['requestAction'] = 'reg_hippy_in'
  3106. if STANCE == 1:
  3107. own['requestAction'] = 'fak_hippy_in'
  3108. if own['hippy'] == 1 and own['last_hippy'] == 1:
  3109. if STANCE == 0:
  3110. own['requestAction'] = 'reg_hippy_in'
  3111. if STANCE == 1:
  3112. own['requestAction'] = 'fak_hippy_in'
  3113. if own['hippy'] == 0 and own['last_hippy'] == 1:
  3114. if rLR > turnsens:
  3115. local = True
  3116. rot = [ 0.0, 0.0, 3.14]
  3117. own.applyRotation(rot,local)
  3118. if STANCE == 0:
  3119. own['requestAction'] = 'reg_hippy_ncw'
  3120. if STANCE == 1:
  3121. own['requestAction'] = 'fak_hippy_ncw'
  3122. elif rLR < -turnsens:
  3123. local = True
  3124. rot = [ 0.0, 0.0, -3.14]
  3125. own.applyRotation(rot,local)
  3126. if STANCE == 0:
  3127. own['requestAction'] = 'fak_hippy_nccw'
  3128. if STANCE == 1:
  3129. own['requestAction'] = 'reg_hippy_nccw'
  3130. ##straight
  3131. else:
  3132. if STANCE == 0:
  3133. own['requestAction'] = 'reg_hippy'
  3134. if STANCE == 1:
  3135. own['requestAction'] = 'fak_hippy'
  3136. #pushing and hippy jumps
  3137. since_a = frame - lastaf
  3138. since_x = frame - lastxf
  3139. cush = 10
  3140. hippy = 0
  3141. own['hippy'] = 0
  3142. if xBut == 1 and aBut == 1 and (lTrig < 0.02 and rTrig < 0.02) and r_ground.triggered == True:
  3143. #F"hippy")
  3144. hippy = 1
  3145. own['hippy'] = 1
  3146. hippy_jump()
  3147. if ((since_a > cush and aBut == 1 and lasta == 1) or dict['kb_ua'] == 2) and (lTrig < 0.02 and rTrig < 0.02) and own['last_hippy'] == 0:
  3148. if xBut == 0 and hippy == 0 and (lastaBut_ground == True or dict['kb_ua'] == 2):
  3149. push()
  3150. if since_x > cush and xBut == 1 and lastx == 1 and (lTrig < 0.02 and rTrig < 0.02) and own['last_hippy'] == 0:
  3151. if aBut == 0 and hippy == 0 and lastxBut_ground == True:
  3152. push_goof()
  3153. #cavemans
  3154. if LAST_GRIND == False and grindHit == False and r_ground.triggered:
  3155. if (aBut ==0 and own['lastaBut_ground'] == 1) and lTrig > 0.02:
  3156. brfoot()
  3157. if (aBut ==0 and own['lastaBut_ground'] == 1) and rTrig > 0.02:
  3158. frfoot()
  3159. if (xBut ==0 and own['lastxBut_ground'] == 1) and lTrig > 0.02:
  3160. blfoot()
  3161. if (xBut ==0 and own['lastxBut_ground'] == 1) and rTrig > 0.02:
  3162. flfoot()
  3163. #push b button
  3164. if bBut == 1:
  3165. if linVelocity.x > .05 or linVelocity.x < -.05:
  3166. stop()
  3167. elif linVelocity.x < .05 or linVelocity.x > -.05:
  3168. if own["lastStop"] == True:
  3169. own["lastStop"] = False
  3170. elif bBut ==0:
  3171. own["lastStop"] = False
  3172. ##### falls
  3173. if own['fall'] == 1:
  3174. offboard()
  3175. own['getoffboard'] = True
  3176. ####
  3177. #y button
  3178. if (own['lasty'] == 1 and yBut ==0) or dict['kb_q'] == 3:
  3179. offboard()
  3180. if own["GRAB_ON"] == True:
  3181. playing = skater.isPlayingAction(fliplay)
  3182. if playing == 1:
  3183. frame = skater.getActionFrame(fliplay)
  3184. if frame > 16:
  3185. skater.stopAction(fliplay)
  3186. flipping = skater.isPlayingAction(fliplay)
  3187. #reg_ollie_north
  3188. if rTrig < .02 and lTrig <.02 and r_ground.triggered == 0 and flipping == False and aBut == True:
  3189. if STANCE == 0:
  3190. own['requestAction'] = 'reg_ollie_south'
  3191. else:
  3192. own['requestAction'] = 'fak_ollie_north'
  3193. if rTrig < .02 and lTrig <.02 and r_ground.triggered == 0 and flipping == False and xBut == True:
  3194. if STANCE == 0:
  3195. own['requestAction'] = 'reg_ollie_north'
  3196. else:
  3197. own['requestAction'] = 'fak_ollie_south'
  3198. #frontside grab
  3199. if rTrig > 0.02 and r_ground.triggered == 0 and flipping == False:
  3200. GRAB_ON = True
  3201. own["GRAB_ON"] = GRAB_ON
  3202. #print(rTrig, GRAB_ON)
  3203. if aBut == False and xBut == False:
  3204. if STANCE == False and rUD >= -.07 and rUD <= .07:
  3205. frontside_grab_on()
  3206. elif STANCE == True and rUD >= -.07 and rUD <= .07:
  3207. fakbackside_grab_on()
  3208. #front_nose
  3209. if STANCE == True and rUD < -0.070:
  3210. fak_backside_nose_grab_on()
  3211. #front_tail
  3212. elif STANCE == True and rUD > 0.07:
  3213. fak_backside_tail_grab_on()
  3214. #
  3215. if STANCE == False and rUD < -0.070:
  3216. if bBut == True:
  3217. reg_airwalk()
  3218. else:
  3219. frontside_nose_grab_on()
  3220. #front_tail
  3221. elif STANCE == False and rUD > 0.07:
  3222. frontside_tail_grab_on()
  3223. elif aBut == True and xBut == False:
  3224. if STANCE == False:
  3225. reg_fsonefoot_grab_on()
  3226. else:
  3227. fak_onefoot_grab_on()
  3228. elif aBut == False and xBut == True:
  3229. if STANCE == False:
  3230. reg_frigid_grab_on()
  3231. else:
  3232. fak_judo_grab_on()
  3233. #backside grab
  3234. if lTrig > 0.02 and r_ground.triggered == 0 and flipping == False:
  3235. GRAB_ON = True
  3236. own["GRAB_ON"] = GRAB_ON
  3237. #print(rTrig)
  3238. if aBut == False and xBut == False:
  3239. if STANCE == False and rUD >= -.07 and rUD <= .07:
  3240. backside_grab_on()
  3241. elif STANCE == True and rUD >= -.07 and rUD <= .07:
  3242. fakfrontside_grab_on()
  3243. #front_nose
  3244. if STANCE == True and rUD < -0.070:
  3245. fak_frontside_nose_grab_on()
  3246. #front_tail
  3247. elif STANCE == True and rUD > 0.07:
  3248. fak_frontside_tail_grab_on()
  3249. #front_nose
  3250. if STANCE == False and rUD < -0.070:
  3251. if bBut == True:
  3252. reg_airwalk()
  3253. else:
  3254. backside_nose_grab_on()
  3255. #front_tail
  3256. elif STANCE == False and rUD > 0.07:
  3257. backside_tail_grab_on()
  3258. elif aBut == True and xBut == False:
  3259. if STANCE == False:
  3260. reg_judo_grab_on()
  3261. else:
  3262. fak_frigid_grab_on()
  3263. elif aBut == False and xBut == True:
  3264. if STANCE == False:
  3265. reg_onefoot_grab_on()
  3266. else:
  3267. fak_frigid_grab_on()
  3268. #kill grabs
  3269. if lTrig <= 0.02 and GRAB_ON == True and lTrig >= -.02 and rTrig <= .02 and rTrig >= -.2:
  3270. GRAB_ON = False
  3271. own["GRAB_ON"] = GRAB_ON
  3272. GRAB_PLAYED = False
  3273. own["GRAB_PLAYED"] = GRAB_PLAYED
  3274. #frontside pump #backside pump
  3275. def footplant():
  3276. framenum = own['framenum']
  3277. last_ground_frame = own['lF_ground_frame']
  3278. lF_air_frame = own['lF_air_frame']
  3279. frames_since_ground = framenum - lF_air_frame
  3280. frames_since_grind = framenum - own['last_grind_frame']
  3281. if grindHit == True and aBut == True and ground_since < 10:
  3282. own.linearVelocity.x = 0
  3283. own.linearVelocity.y = 0
  3284. own['footplant_on'] = 1
  3285. if grindHit == False:
  3286. own['footplant_on'] = 0
  3287. if own['footplant_on'] == True and rUD < turnsens and rUD > -turnsens:
  3288. own.linearVelocity.x = 0
  3289. own.linearVelocity.y = 0
  3290. if own['footplant_on'] == 1 and own['last_footplant'] == True and own['jump_timer'] < 50:
  3291. if skater.isPlayingAction(2925) == False:
  3292. if STANCE == 0:
  3293. own['requestAction'] = 'reg_fp_rback'
  3294. if STANCE == 1:
  3295. own['requestAction'] = 'fak_fp_rback'
  3296. def invert():
  3297. if grindHit == True and own['grindpos'] == 'reg_board' and gsf < 10:
  3298. if lBump == 1:
  3299. own['invert_on'] = 1
  3300. own.linearVelocity.x = 0
  3301. own.linearVelocity.y = 0
  3302. if own["coping"] == 1 and own['invert_on'] == 1:
  3303. if own['invert_on'] == 1 and own['last_invert'] == False:
  3304. cont.activate(own.actuators['invertOn_sound'])
  3305. if STANCE == False:
  3306. own['invert_type'] = "reg_back_invert_in"
  3307. if STANCE == True:
  3308. own['invert_type'] = "fak_fr_invert"
  3309. if own['invert_on'] == 0 and own['last_invert'] == True:
  3310. own['last_invert_frame'] = frame
  3311. cont.activate(own.actuators['invertOff_Sound'])
  3312. if own['invert_on'] == 1 and own['invert_type'] != None:
  3313. if own['invert_type'] == "reg_back_invert_in":
  3314. own['requestAction'] = 'reg_back_invert'
  3315. if own['invert_type'] == "fak_fr_invert":
  3316. own['requestAction'] = 'fak_fr_invert'
  3317. lif = own['last_invert_frame']
  3318. if frame - lif > 3 and own['invert_on'] == 0:
  3319. own['invert_type'] = None
  3320. invert()
  3321. footplant()
  3322. def reset_pos():
  3323. #reset
  3324. if ddPad == 1:
  3325. spawn_pos = own['spawn_pos']
  3326. spawn_rot = own['spawn_rot']
  3327. spawn_cam_pos = own['spawn_cam_pos']
  3328. spawn_cam_rot = own['spawn_cam_rot']
  3329. try:
  3330. own.worldPosition = (spawn_pos[0], spawn_pos[1], (spawn_pos[2] + .1))
  3331. own.worldOrientation = [[spawn_rot[0][0],spawn_rot[0][1],spawn_rot[0][2]], [spawn_rot[1][0],spawn_rot[1][1],spawn_rot[1][2]], [0.0, 0.0, 1.0]]
  3332. cam.worldPosition = (spawn_cam_pos[0], spawn_cam_pos[1], (spawn_cam_pos[2]))
  3333. cam.worldOrientation = [[spawn_cam_rot[0][0],spawn_cam_rot[0][1],spawn_cam_rot[0][2]], [spawn_cam_rot[1][0],spawn_cam_rot[1][1],spawn_cam_rot[1][2]], [0.0, 0.0, 1.0]]
  3334. except:
  3335. own.worldPosition = (0, 0, .1)
  3336. own.worldOrientation = [[1.0, 0.0, 0.0], [ 0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]
  3337. if own["spawn_stance"] == 1:
  3338. own.setLinearVelocity([.1,0,0], 1)
  3339. else:
  3340. own.setLinearVelocity([-.1,0,0], 1)
  3341. if udPad == 1:
  3342. own['spawn_pos'] = [own.worldPosition[0], own.worldPosition[1], own.worldPosition[2]]
  3343. own['spawn_rot'] = [[own.worldOrientation[0][0],own.worldOrientation[0][1],own.worldOrientation[0][2]], [own.worldOrientation[1][0],own.worldOrientation[1][1],own.worldOrientation[1][2]], own.worldOrientation[2][2]]
  3344. own['spawn_cam_pos'] = [cam.worldPosition[0], cam.worldPosition[1], cam.worldPosition[2]]
  3345. own['spawn_cam_rot'] = [[cam.worldOrientation[0][0],cam.worldOrientation[0][1],cam.worldOrientation[0][2]], [cam.worldOrientation[1][0],cam.worldOrientation[1][1],cam.worldOrientation[1][2]], cam.worldOrientation[2][2]]
  3346. stance = own["stance"]
  3347. own["spawn_stance"] = stance
  3348. #start button
  3349. if stBut == True:
  3350. own.actuators["sroll"].volume = .0001
  3351. cont.deactivate(own.actuators["sroll"])
  3352. own.actuators["sroll"].stopSound()
  3353. if (stBut == False and dict['last_stBut'] == True) or dict['kb_en'] == 1:
  3354. if own['pause_on'] == True:
  3355. own['pause_on'] = False
  3356. else:
  3357. own['pause_on'] = True
  3358. def ylimit():
  3359. lgf = own['last_grind_frame']
  3360. frame = own['framenum']
  3361. frames_since_grinding = frame - lgf
  3362. ylimit = .84
  3363. #print(ground_since, 'ground_since')
  3364. if ground_since < 20 and ground_since > 1 and grindHit == 0 and own['jump_timer'] < 40:
  3365. ylimit = ylimit + ((ground_since - 15) * -.005)
  3366. yvel = own.linearVelocity.y
  3367. yvel = yvel *.03
  3368. if STANCE == 0:
  3369. yvel *= -1
  3370. try:
  3371. dist = r_ground.hitObject.worldPosition - own.worldPosition
  3372. #print('ground dist', dist)
  3373. if own.linearVelocity.y > .01 or own.linearVelocity.y < -.01:
  3374. own.applyRotation([0,0,yvel], True)
  3375. if ylimit > .99999:
  3376. ylimit = .9999
  3377. except:
  3378. pass
  3379. else:
  3380. if r_ground.triggered and touched == False and grindHit == 0 and frames_since_grinding > 20:
  3381. linVelocity4 = own.getLinearVelocity(True)
  3382. newy = linVelocity4.y * ylimit
  3383. force = [linVelocity4.x, newy, linVelocity4.z]
  3384. own.setLinearVelocity(force, True)
  3385. #print(ylimit, 'ylimit')
  3386. def getoffboard():
  3387. lasty = own['lasty']
  3388. getoffboard = own['getoffboard']
  3389. if getoffboard == 1 and own['fall'] == False:
  3390. own['getoffboard'] = 0
  3391. if (yBut == False and lasty == True) or dict['kb_q'] == 3:
  3392. own['getoffboard'] = 1
  3393. def switchcam():
  3394. pass
  3395. # if ltsBut == False and own['lastlts'] == True and rtsBut == False:
  3396. # if own['camera'] == 1:
  3397. # own['camera'] = 0
  3398. # else:
  3399. # own['camera'] = 1
  3400. # if rtsBut == False and own['lastrts'] == True and ltsBut == False:
  3401. # if own['camera'] == 2:
  3402. # own['camera'] = 0
  3403. # else:
  3404. # own['camera'] = 2
  3405. #followcam
  3406. def move_followcam():
  3407. if own['camera'] == 2:
  3408. #if rtsBut == False and own['lastrts'] == True:
  3409. if dict['last_bkBut'] == True and bkBut == False:
  3410. #print("activate move followcam")
  3411. if own['move_followcam'] == False:
  3412. own['move_followcam'] = True
  3413. else:
  3414. own['move_followcam'] = False
  3415. if own['move_followcam'] == True:
  3416. #act = followcam.actuators[
  3417. camspeed1 = .015
  3418. camspeed2 = .055
  3419. camrot1 = .005
  3420. camrot2 = .02
  3421. #up
  3422. if lUD < -0.080:
  3423. followcam.actuators["up"].dLoc = [ 0, 0, -camspeed2]
  3424. cont.activate(followcam.actuators["up"])
  3425. else:
  3426. cont.deactivate(followcam.actuators["up"])
  3427. # #down
  3428. if lUD > .080:
  3429. followcam.actuators["down"].dLoc = [ 0, 0, camspeed2]
  3430. cont.activate(followcam.actuators["down"])
  3431. else:
  3432. cont.deactivate(followcam.actuators["down"])
  3433. # #left
  3434. if lLR < -0.080:
  3435. followcam.actuators["left"].dLoc = [-camspeed2, 0, 0]
  3436. cont.activate(followcam.actuators["left"])
  3437. else:
  3438. cont.deactivate(followcam.actuators["left"])
  3439. # #right
  3440. if lLR > 0.080:
  3441. followcam.actuators["right"].dLoc = [camspeed2, 0, 0]
  3442. cont.activate(followcam.actuators["right"])
  3443. else:
  3444. cont.deactivate(followcam.actuators["right"])
  3445. #up
  3446. if rUD < -0.080:
  3447. followcam.actuators["rotup"].dLoc = [0, 0, camrot2]
  3448. cont.activate(followcam.actuators["rotup"])
  3449. else:
  3450. cont.deactivate(followcam.actuators["rotup"])
  3451. # #down
  3452. if rUD > .080:
  3453. followcam.actuators["rotdown"].dLoc = [0, 0, -camrot2]
  3454. cont.activate(followcam.actuators["rotdown"])
  3455. else:
  3456. cont.deactivate(followcam.actuators["rotdown"])
  3457. # #left
  3458. if rLR < -0.080:
  3459. followcam.actuators["rotleft"].dRot = [0, 0, camrot2]
  3460. cont.activate(followcam.actuators["rotleft"])
  3461. else:
  3462. cont.deactivate(followcam.actuators["rotleft"])
  3463. # #right
  3464. if rLR > 0.080:
  3465. followcam.actuators["rotright"].dRot = [0, 0, -camrot2]
  3466. cont.activate(followcam.actuators["rotright"])
  3467. else:
  3468. cont.deactivate(followcam.actuators["rotright"])
  3469. #*********************************************
  3470. if lUD > -0.080 and lUD < -0.030:
  3471. followcam.actuators["up"].dLoc = [ 0, 0, -camspeed1]
  3472. cont.activate(followcam.actuators["up"])
  3473. else:
  3474. cont.deactivate(followcam.actuators["up"])
  3475. # #down
  3476. if lUD < .080 and lUD > .03:
  3477. followcam.actuators["down"].dLoc = [ 0, 0, camspeed1]
  3478. cont.activate(followcam.actuators["down"])
  3479. else:
  3480. cont.deactivate(followcam.actuators["down"])
  3481. # #left
  3482. if lLR > -0.080 and lLR < -0.030:
  3483. followcam.actuators["left"].dLoc = [-camspeed1, 0, 0]
  3484. cont.activate(followcam.actuators["left"])
  3485. else:
  3486. cont.deactivate(followcam.actuators["left"])
  3487. # #right
  3488. if lLR < .080 and lLR > .03:
  3489. followcam.actuators["right"].dLoc = [camspeed1, 0, 0]
  3490. cont.activate(followcam.actuators["right"])
  3491. else:
  3492. cont.deactivate(followcam.actuators["right"])
  3493. #up
  3494. if rUD > -0.080 and rUD < -0.030:
  3495. followcam.actuators["rotup"].dRot = [camrot1, 0, 0]
  3496. cont.activate(followcam.actuators["rotup"])
  3497. else:
  3498. cont.deactivate(followcam.actuators["rotup"])
  3499. # #down
  3500. if rUD < .080 and rUD > .03:
  3501. followcam.actuators["rotdown"].dRot = [-camrot1, 0, 0]
  3502. cont.activate(followcam.actuators["rotdown"])
  3503. else:
  3504. cont.deactivate(followcam.actuators["rotdown"])
  3505. # #left
  3506. if rLR > -0.080 and rLR < -0.030:
  3507. followcam.actuators["rotleft"].dRot = [0, 0, camrot1]
  3508. cont.activate(followcam.actuators["rotleft"])
  3509. else:
  3510. cont.deactivate(followcam.actuators["rotleft"])
  3511. # #right
  3512. if rLR < .080 and rLR > .03:
  3513. followcam.actuators["rotright"].dRot = [0, 0, -camrot1]
  3514. cont.activate(followcam.actuators["rotright"])
  3515. else:
  3516. cont.deactivate(followcam.actuators["rotright"])
  3517. def move_flycam():
  3518. if own['camera'] == 1:
  3519. if dict['last_bkBut'] == True and bkBut == False:
  3520. if own['move_freecam'] == False:
  3521. own['move_freecam'] = True
  3522. else:
  3523. own['move_freecam'] = False
  3524. if own['move_freecam'] == True:
  3525. camspeed1 = .015
  3526. camspeed2 = .055
  3527. camrot1 = .005
  3528. camrot2 = .02
  3529. #up
  3530. if lUD < -0.080:
  3531. freecam.actuators["up"].dLoc = [ 0, 0, -camspeed2]
  3532. cont.activate(freecam.actuators["up"])
  3533. else:
  3534. cont.deactivate(freecam.actuators["up"])
  3535. # #down
  3536. if lUD > .080:
  3537. freecam.actuators["down"].dLoc = [ 0, 0, camspeed2]
  3538. cont.activate(freecam.actuators["down"])
  3539. else:
  3540. cont.deactivate(freecam.actuators["down"])
  3541. # #left
  3542. if lLR < -0.080:
  3543. freecam.actuators["left"].dLoc = [-camspeed2, 0, 0]
  3544. cont.activate(freecam.actuators["left"])
  3545. else:
  3546. cont.deactivate(freecam.actuators["left"])
  3547. # #right
  3548. if lLR > 0.080:
  3549. freecam.actuators["right"].dLoc = [camspeed2, 0, 0]
  3550. cont.activate(freecam.actuators["right"])
  3551. else:
  3552. cont.deactivate(freecam.actuators["right"])
  3553. #up
  3554. if rUD < -0.080:
  3555. freecam.actuators["rotup"].dRot = [camrot2, 0, 0]
  3556. cont.activate(freecam.actuators["rotup"])
  3557. else:
  3558. cont.deactivate(freecam.actuators["rotup"])
  3559. # #down
  3560. if rUD > .080:
  3561. freecam.actuators["rotdown"].dRot = [-camrot2, 0, 0]
  3562. cont.activate(freecam.actuators["rotdown"])
  3563. else:
  3564. cont.deactivate(freecam.actuators["rotdown"])
  3565. # #left
  3566. if rLR < -0.080:
  3567. freecam.actuators["rotleft"].dRot = [0, 0, camrot2]
  3568. cont.activate(freecam.actuators["rotleft"])
  3569. else:
  3570. cont.deactivate(freecam.actuators["rotleft"])
  3571. # #right
  3572. if rLR > 0.080:
  3573. freecam.actuators["rotright"].dRot = [0, 0, -camrot2]
  3574. cont.activate(freecam.actuators["rotright"])
  3575. else:
  3576. cont.deactivate(freecam.actuators["rotright"])
  3577. #*********************************************
  3578. if lUD > -0.080 and lUD < -0.030:
  3579. freecam.actuators["up"].dLoc = [ 0, 0, -camspeed1]
  3580. cont.activate(freecam.actuators["up"])
  3581. else:
  3582. cont.deactivate(freecam.actuators["up"])
  3583. # #down
  3584. if lUD < .080 and lUD > .03:
  3585. freecam.actuators["down"].dLoc = [ 0, 0, camspeed1]
  3586. cont.activate(freecam.actuators["down"])
  3587. else:
  3588. cont.deactivate(freecam.actuators["down"])
  3589. # #left
  3590. if lLR > -0.080 and lLR < -0.030:
  3591. freecam.actuators["left"].dLoc = [-camspeed1, 0, 0]
  3592. cont.activate(freecam.actuators["left"])
  3593. else:
  3594. cont.deactivate(freecam.actuators["left"])
  3595. # #right
  3596. if lLR < .080 and lLR > .03:
  3597. freecam.actuators["right"].dLoc = [camspeed1, 0, 0]
  3598. cont.activate(freecam.actuators["right"])
  3599. else:
  3600. cont.deactivate(freecam.actuators["right"])
  3601. #up
  3602. if rUD > -0.080 and rUD < -0.030:
  3603. freecam.actuators["rotup"].dRot = [camrot1, 0, 0]
  3604. cont.activate(freecam.actuators["rotup"])
  3605. else:
  3606. cont.deactivate(freecam.actuators["rotup"])
  3607. # #down
  3608. if rUD < .080 and rUD > .03:
  3609. freecam.actuators["rotdown"].dRot = [-camrot1, 0, 0]
  3610. cont.activate(freecam.actuators["rotdown"])
  3611. else:
  3612. cont.deactivate(freecam.actuators["rotdown"])
  3613. # #left
  3614. if rLR > -0.080 and rLR < -0.030:
  3615. freecam.actuators["rotleft"].dRot = [0, 0, camrot1]
  3616. cont.activate(freecam.actuators["rotleft"])
  3617. else:
  3618. cont.deactivate(freecam.actuators["rotleft"])
  3619. # #right
  3620. if rLR < .080 and rLR > .03:
  3621. freecam.actuators["rotright"].dRot = [0, 0, -camrot1]
  3622. cont.activate(freecam.actuators["rotright"])
  3623. else:
  3624. cont.deactivate(freecam.actuators["rotright"])
  3625. if r_ground.triggered == False:
  3626. own["lF_air_frame"] = own["framenum"]
  3627. if r_ground.triggered == True:
  3628. own["lF_ground_frame"] = own["framenum"]
  3629. if own['LAST_GRIND'] == True:
  3630. own['last_grind_frame'] = own['framenum']
  3631. if own['LAST_GRIND'] == False and r_ground.triggered and own['jump_timer'] == 0:
  3632. if own['jump_stance'] != 3:
  3633. own['jump_stance'] = 3
  3634. def control_calib():
  3635. #controller calibration test
  3636. scenes = bge.logic.getSceneList()
  3637. controller_calib = [scene for scene in scenes if scene.name=="controller_calib"][0]
  3638. cq1 = controller_calib.objects['q1']
  3639. cq2 = controller_calib.objects['q2']
  3640. cq3 = controller_calib.objects['q3']
  3641. cq4 = controller_calib.objects['q4']
  3642. cq5 = controller_calib.objects['q5']
  3643. cq6 = controller_calib.objects['q6']
  3644. cq7 = controller_calib.objects['q7']
  3645. cq8 = controller_calib.objects['q8']
  3646. if lq1on == 1:
  3647. cq1["q1"] = 1
  3648. else:
  3649. cq1["q1"] = 0
  3650. if lq2on == 1:
  3651. cq2["q2"] = 1
  3652. else:
  3653. cq2["q2"] = 0
  3654. if lq3on == 1:
  3655. cq3["q3"] = 1
  3656. else:
  3657. cq3["q3"] = 0
  3658. if lq4on == 1:
  3659. cq4["q4"] = 1
  3660. else:
  3661. cq4["q4"] = 0
  3662. if lq5on == 1:
  3663. cq5["q5"] = 1
  3664. else:
  3665. cq5["q5"] = 0
  3666. if lq6on == 1:
  3667. cq6["q6"] = 1
  3668. else:
  3669. cq6["q6"] = 0
  3670. if lq7on == 1:
  3671. cq7["q7"] = 1
  3672. else:
  3673. cq7["q7"] = 0
  3674. if lq8on == 1:
  3675. cq8["q8"] = 1
  3676. else:
  3677. cq8["q8"] = 0
  3678. def grind_turn():
  3679. jumping = None
  3680. gotcd = 25
  3681. force = [0,0,0]
  3682. grindHit = own['grindTouch']
  3683. sincegrinding = own['framenum'] - own['grindstartFrame']
  3684. STANCE = own['stance']
  3685. if rUD > turnsens or rLR > turnsens or rUD < -turnsens or rLR < -turnsens:
  3686. jumping = True
  3687. if grindHit == False:
  3688. cont.deactivate(own.actuators['grindoutRight'])
  3689. cont.deactivate(own.actuators['grindoutLeft'])
  3690. if (grindHit == True and jumping == None and sincegrinding > 20 and ground_since > 20)or own['invert_on'] == True and own['last_grind'] == 1:
  3691. outloc = 0.022
  3692. bsoutloc = .07
  3693. bsoutvel = .1
  3694. outrot = .06#2 #0.012
  3695. outrot2 = .24
  3696. outact = own.actuators["grindoutRight"]
  3697. STANCE = own['grind_stance']
  3698. if 'fak' in own['l_actionState']:
  3699. STANCE = 1
  3700. if 'reg' in own['l_actionState']:
  3701. STANCE = 0
  3702. if own['grindpos'] == 'reg_5050':
  3703. if lq3on == 1 or lq2on or dict['kb_ra'] == 2:
  3704. if own['gt_cd2'] == 0:
  3705. own['gt_cd2'] = 60
  3706. if STANCE == True:
  3707. if own['grind_out_type'] == None:
  3708. own['grind_out_type'] = 'fak right'
  3709. if STANCE == False:
  3710. if own['grind_out_type'] == None:
  3711. own['grind_out_type'] = 'reg right'
  3712. own["grindoutturn"] = gotcd
  3713. if lq7on == 1 or lq8on or dict['kb_la'] == 2:
  3714. if own['gt_cd2'] == 0:
  3715. own['gt_cd2'] = 60
  3716. if STANCE == True:
  3717. if own['grind_out_type'] == None:
  3718. own['grind_out_type'] = 'fak left'
  3719. if STANCE == False:
  3720. if own['grind_out_type'] == None:
  3721. own['grind_out_type'] = 'reg left'
  3722. own["grindoutturn"] = gotcd
  3723. if lq4on == 1:
  3724. if own['gt_cd2'] == 0:
  3725. own['gt_cd2'] = 60
  3726. if STANCE == True:
  3727. if own['grind_out_type'] == None:
  3728. own['grind_out_type'] = 'fak fak right'
  3729. if STANCE == False:
  3730. if own['grind_out_type'] == None:
  3731. own['grind_out_type'] = 'reg fak right'
  3732. own["grindoutturn"] = gotcd
  3733. if lq6on == 1:
  3734. if own['gt_cd2'] == 0:
  3735. own['gt_cd2'] = 60
  3736. if STANCE == True:
  3737. if own['grind_out_type'] == None:
  3738. own['grind_out_type'] = 'fak fak left'
  3739. if STANCE == False:
  3740. if own['grind_out_type'] == None:
  3741. own['grind_out_type'] = 'reg fak left'
  3742. own["grindoutturn"] = gotcd
  3743. #use stance for 5050 and grindstance for boards
  3744. if own['grindpos'] == 'reg_board':
  3745. outvel = own.getLinearVelocity(1)
  3746. outact.dLoc = [0, 0, 0]
  3747. outact.dRot = [0, 0, 0]
  3748. if lq5on == 1 or dict['kb_da'] == 2:
  3749. if own['gt_cd2'] == 0:
  3750. own['gt_cd2'] = 60
  3751. if STANCE == True:
  3752. if own['footplant_on'] == True:
  3753. own.setLinearVelocity([(outvel.x + -bsoutvel), outvel.y, outvel.z], 1)
  3754. cont.activate(own.actuators["grindoutRight"])
  3755. if own['grind_out_type'] == None:
  3756. own['grind_out_type'] = 'bs fak back'
  3757. if STANCE == False:
  3758. if own['footplant_on'] == True:
  3759. own.setLinearVelocity([(outvel.x + bsoutvel), outvel.y, outvel.z], 1)
  3760. cont.activate(own.actuators["grindoutRight"])
  3761. if own['grind_out_type'] == None:
  3762. own['grind_out_type'] = 'bs reg back'
  3763. own["grindoutturn"] = gotcd
  3764. own['invert_on'] = 0
  3765. if lq1on == 1 or dict['kb_ua'] == 2:
  3766. if own['gt_cd2'] == 0:
  3767. own['gt_cd2'] = 60
  3768. if STANCE == True:
  3769. if own['footplant_on'] == True:
  3770. own.setLinearVelocity([(outvel.x + bsoutvel), outvel.y, outvel.z], 1)
  3771. cont.activate(own.actuators["grindoutRight"])
  3772. if own['grind_out_type'] == None:
  3773. own['grind_out_type'] = 'bs fak forward'
  3774. if STANCE == False:
  3775. if own['footplant_on'] == True:
  3776. own.setLinearVelocity([(outvel.x + -bsoutvel), outvel.y, outvel.z], 1)
  3777. cont.activate(own.actuators["grindoutRight"])
  3778. if own['grind_out_type'] == None:
  3779. own['grind_out_type'] = 'bs reg forward'
  3780. own["grindoutturn"] = gotcd
  3781. own['invert_on'] = 0
  3782. if lq1on or lq2on or lq3on or lq4on or lq5on or lq6on or lq7on or lq8on:
  3783. gt_cd = own['gt_cd']
  3784. if gt_cd == 0:
  3785. gt_cd = 30
  3786. own['gt_cd'] = gt_cd
  3787. if own['grindoutturn'] == 0:
  3788. cont.deactivate(own.actuators["grindoutRight"])
  3789. own["grindoutturn"] = 0
  3790. gt_cd = own['gt_cd']
  3791. if gt_cd > 0:
  3792. own['gt_cd'] = gt_cd - 1
  3793. else:
  3794. own['gt_cd'] = 0
  3795. #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  3796. reg_move = .05
  3797. reg_rot = 0.02#2
  3798. reg_rot2 = .26
  3799. reg_move2 = .13
  3800. bsforce = 50
  3801. bs_dloc = .04
  3802. outvel = own.linearVelocity
  3803. if own["coping"] == 1:
  3804. reg_rot = reg_rot *3
  3805. if own['gt_cd2'] > 50 and own['jump_timer'] < 20:
  3806. if own['grind_out_type'] == 'reg right':
  3807. own.applyMovement([0,reg_move,0], True)
  3808. own.applyRotation([0,0,-reg_rot],True)
  3809. if own['grind_out_type'] == 'fak right':
  3810. own.applyMovement([0,-reg_move,0], True)
  3811. own.applyRotation([0,0,-reg_rot],True)
  3812. if own['grind_out_type'] == 'reg left':
  3813. own.applyMovement([0,-reg_move,0], True)
  3814. own.applyRotation([0,0,reg_rot],True)
  3815. if own['grind_out_type'] == 'fak left':
  3816. own.applyMovement([0,reg_move,0], True)
  3817. own.applyRotation([0,0,reg_rot],True)
  3818. if own['grind_out_type'] == 'reg fak right':
  3819. if own['gt_cd2'] > 55:
  3820. own.applyMovement([0,reg_move2,0], True)
  3821. own.applyRotation([0,0,reg_rot2],True)
  3822. if own['grind_out_type'] == 'fak fak right':
  3823. if own['gt_cd2'] > 55:
  3824. own.applyMovement([0,-reg_move2,0], True)
  3825. own.applyRotation([0,0,reg_rot2],True)
  3826. if own['grind_out_type'] == 'reg fak left':
  3827. if own['gt_cd2'] > 55:
  3828. own.applyMovement([0,-reg_move2,0], True)
  3829. own.applyRotation([0,0,-reg_rot2],True)
  3830. if own['grind_out_type'] == 'fak fak left':
  3831. if own['gt_cd2'] > 55:
  3832. own.applyMovement([0,reg_move2,0], True)
  3833. own.applyRotation([0,0,-reg_rot2],True)
  3834. if own['grind_out_type'] == 'reg right' or own['grind_out_type'] == 'reg left' or own['grind_out_type'] == 'fak right' or own['grind_out_type'] == 'fak left':
  3835. own.setLinearVelocity([outvel.x * 1.01, outvel.y, outvel.z], True)
  3836. if own['grind_out_type'] == 'reg fak right' or own['grind_out_type'] == 'reg fak left' or own['grind_out_type'] == 'fak fak right' or own['grind_out_type'] == 'fak fak left':
  3837. if own['gt_cd2'] == 51:
  3838. if STANCE == False:
  3839. own.applyForce([-200, 0, 0], True)
  3840. own['stance'] = True
  3841. STANCE = True
  3842. if STANCE == True:
  3843. own.applyForce([200, 0, 0], True)
  3844. own['stance'] = False
  3845. STANCE = False
  3846. if own['grind_out_type'] == 'bs reg back' or own['grind_out_type'] == 'bs fak forward':
  3847. if own['gt_cd2'] > 50:
  3848. if STANCE == True:
  3849. own.applyForce([bsforce, 0, 0], True)
  3850. if STANCE == False:
  3851. own.applyForce([bsforce, 0, 0], True)
  3852. own.applyMovement([bs_dloc,0,0], True)
  3853. if own['grind_out_type'] == 'bs fak back' or own['grind_out_type'] == 'bs reg forward':
  3854. if own['gt_cd2'] > 50:
  3855. if STANCE == True:
  3856. own.applyForce([-bsforce, 0, 0], True)
  3857. if STANCE == False:
  3858. own.applyForce([-bsforce, 0, 0], True)
  3859. own.applyMovement([-bs_dloc,0,0], True)
  3860. if own['gt_cd2'] > 0:
  3861. own['gt_cd2'] -= 1
  3862. if own['gt_cd2'] == 0:
  3863. own['grind_out_type'] = None
  3864. if own["grindoutturn"] > 0:
  3865. own["grindoutturn"] = own["grindoutturn"] - 1
  3866. def air_height():
  3867. height = own["air_height"]
  3868. if lf_ground == True and r_ground.triggered == False:
  3869. height = 0
  3870. #wallride
  3871. def wallride():
  3872. wallride_off = own['wallride_off']
  3873. distance = own.getDistanceTo(gray.hitPosition)
  3874. upforce = 25
  3875. sideforce = 15
  3876. try:
  3877. obj = gray.hitObject
  3878. objpos = obj.worldPosition
  3879. ownpos = own.worldPosition
  3880. distance = ownpos.z - objpos.z
  3881. except:
  3882. pass
  3883. if wallrideL.triggered and wallride_off == 0 and r_ground.triggered == False:
  3884. own['jump_timer'] = 0
  3885. if r_ground.triggered == False:
  3886. own["wallride"] = "L"
  3887. cont.activate(wallrideconstL)
  3888. force = [0,sideforce,upforce]
  3889. own.applyForce(force,1)
  3890. #align
  3891. if STANCE == 0:
  3892. own['requestAction'] = 'reg_wall_r'
  3893. else:
  3894. own['requestAction'] = 'fak_wall_l'
  3895. else:
  3896. if own["wallride"] != "R":
  3897. own["wallride"] = None
  3898. cont.deactivate(wallrideconstL)
  3899. if wallrideR.triggered and wallride_off == 0:
  3900. own['jump_timer'] = 0
  3901. if r_ground.triggered == False:
  3902. own["wallride"] = "R"
  3903. cont.activate(wallrideconstR)
  3904. force = [0,-sideforce,upforce]
  3905. own.applyForce(force,1)
  3906. if STANCE == 0:
  3907. own['requestAction'] = 'reg_wall_l'
  3908. else:
  3909. own['requestAction'] = 'fak_wall_r'
  3910. else:
  3911. if own["wallride"] != "L":
  3912. own["wallride"] = None
  3913. cont.deactivate(wallrideconstR)
  3914. def wallride_sound():
  3915. sact = own.actuators["wallSound"]
  3916. if own["wallride"] != None and (own['actionState'] == 'reg_wall_r' or own['actionState'] == 'reg_wall_l' or own['actionState'] == 'fak_wall_r' or own['actionState'] == 'fak_wall_l'):
  3917. sact.volume = .2
  3918. cont.activate(own.actuators["wallSound"])
  3919. else:
  3920. sact.volume = .001
  3921. sact.stopSound()
  3922. if own['revert_timer'] > 0:
  3923. own['revert_timer'] = own['revert_timer'] - 1
  3924. def shutoff_timers():
  3925. if (LAST_GRIND == False and grindHit == True) or (jump_timer > 10 and own['wallride'] == None):
  3926. own["Q1oncd"] = 0
  3927. own["Q2oncd"] = 0
  3928. own["Q3oncd"] = 0
  3929. own["Q4oncd"] = 0
  3930. own["Q5oncd"] = 0
  3931. own["Q6oncd"] = 0
  3932. own["Q7oncd"] = 0
  3933. own["Q8oncd"] = 0
  3934. def grindout_cleanup():
  3935. lgf = own['last_grind_frame']
  3936. def trans_jump():
  3937. if own['jump_from_trans'] == 1:
  3938. ground_ray = cont.sensors['ground_look']
  3939. jump_obj = own['trans_jump_obj']
  3940. jump_obj = scene.objects[str(own['trans_jump_obj'])]
  3941. worldVect = [1, 0, 0]
  3942. vect = jump_obj.getAxisVect(worldVect)
  3943. go = jump_obj.worldOrientation
  3944. grinder_axis = [0,1,0]
  3945. player_pos = own.worldPosition
  3946. jump_obj = jump_obj.worldPosition
  3947. try:
  3948. delta = player_pos - jump_obj
  3949. except:
  3950. pass
  3951. delta = delta.cross(vect)
  3952. deltamove = delta[1] * .25
  3953. move = [deltamove, 0, 0]
  3954. if abs(deltamove) < 1 and delta[1] < 1:
  3955. own.applyMovement(move, True)
  3956. def air_mover():
  3957. if r_ground.triggered == False and jump_timer > 53 and frames_since_grinding > 50:
  3958. if lUD > 0.075:
  3959. if STANCE == 0:
  3960. force2 = [120, 0, 10]
  3961. if STANCE == 1:
  3962. force2 = [-120, 0, 10]
  3963. own.applyForce(force2, True)
  3964. own['no_grind_pull'] = 1
  3965. if r_ground.triggered == False and jump_timer > 53 and frames_since_grinding > 50:
  3966. if lUD < -0.075:
  3967. own['no_grind_pull'] = 1
  3968. if r_ground.triggered == False and jump_timer > 10 and lUD > 0.075 and frames_since_grinding > 50:
  3969. if STANCE == 0:
  3970. force2 = [7, 0, 10]
  3971. if STANCE == 1:
  3972. force2 = [-7, 0, 10]
  3973. own.applyForce(force2, True)
  3974. own.applyForce([0,0,5], False)
  3975. own['air_mover'] = True
  3976. own['no_grind_pull'] = 1
  3977. else:
  3978. own['air_mover'] = False
  3979. def dropinRotate():
  3980. if own['dropinTimer'] > 30 and own['dropinTimer'] < 40:
  3981. rot = [ 0.01, 0.0, 0]
  3982. vel = [linVelocity.x - .25, linVelocity.y, linVelocity.z - .01]
  3983. if STANCE == 1:
  3984. rot = [-0.01, 0.0, 0]
  3985. vel = [linVelocity.x + .25, linVelocity.y, linVelocity.z - .01]
  3986. local = True
  3987. own.applyRotation(rot,local)
  3988. own.setLinearVelocity(vel, local)
  3989. if own['dropinTimer'] == 50:
  3990. if STANCE == 1:
  3991. force = (linVelocity.x +1, linVelocity.y, linVelocity.z )
  3992. else:
  3993. force = (linVelocity.x -1, linVelocity.y, linVelocity.z )
  3994. own.setLinearVelocity(force, True)
  3995. framenum = own['framenum']
  3996. last_ground_frame = own['lF_ground_frame']
  3997. lF_air_frame = own['lF_air_frame']
  3998. frames_since_ground = framenum - lF_air_frame
  3999. if framenum - lF_air_frame > 30:
  4000. own['no_grind_pull'] = 0
  4001. def wallhit():
  4002. linvelx = linVelocity.x
  4003. lastx = own["linvelx"]
  4004. wallsens = cont.sensors['wall']
  4005. if frames_since_ground > 20 and (abs(lastx) - abs(linvelx)) > .5 and wallsens.positive:
  4006. velx = linVelocity.x * -1.5
  4007. if velx > 0 and velx < 1:
  4008. velx = 1
  4009. if velx < 0 and velx > -1:
  4010. velx = -1
  4011. force = (velx, linVelocity.y, linVelocity.z )
  4012. own.setLinearVelocity(force, True)
  4013. def land_boost():
  4014. linvelx = linVelocity.x
  4015. lastx = own["linvelx"]
  4016. if frames_since_ground < 10 and (abs(lastx) - abs(linvelx)) > .5:
  4017. #print('land boost')
  4018. force = (lastx, linVelocity.y, linVelocity.z )
  4019. own.setLinearVelocity(force, True)
  4020. jump_Timer()
  4021. check_landing()
  4022. nextframe()
  4023. wheelroll()
  4024. rollsound()
  4025. reset_pos()
  4026. ylimit()
  4027. getoffboard()
  4028. #switchcam()
  4029. move_flycam()
  4030. move_followcam()
  4031. grind_turn()
  4032. air_height()
  4033. wallride()
  4034. wallride_sound()
  4035. shutoff_timers()
  4036. grindout_cleanup()
  4037. air_mover()
  4038. dropinRotate()
  4039. onboard()
  4040. #wallhit()
  4041. linvelx = own.getLinearVelocity(True)
  4042. land_boost()
  4043. own["linvelx"] = linvelx.x
  4044. LAST_STANCE = STANCE
  4045. LAST_STANCE = own["stance"]
  4046. own["last_stance"] = STANCE
  4047. own["lastGrab"] = GRAB_ON
  4048. own['ground'] = r_ground.triggered
  4049. own['last_ground'] = r_ground.triggered
  4050. own["LAST_GRIND"] = grindHit
  4051. own["rotz"] = rot.z
  4052. own['walk'] = 0
  4053. own['lasty'] = yBut
  4054. own['lastlts'] = ltsBut
  4055. own['lastrts'] = rtsBut
  4056. own["lF_ground2"] = own["lF_ground"]
  4057. own['last_invert'] = invert_on
  4058. own['grab_type'] = grab_type
  4059. own['last_last_manual'] = own['last_manual']
  4060. own['last_manual'] = own['manual']
  4061. own['last_reg_manual'] = own['reg_manual']
  4062. own['last_fak_manual'] = own['fak_manual']
  4063. own['last_fak_nmanual'] = own['fak_nmanual']
  4064. own['last_reg_nmanual'] = own['reg_nmanual']
  4065. if own['manual'] == 1:
  4066. own['last_manual_frame'] = frame
  4067. own['last_hippy'] = own['hippy']
  4068. if aBut == 1 and own["lasta"] == 0:
  4069. own["lastaf"] = frame
  4070. if xBut == 1 and own["lastx"] == 0:
  4071. own["lastxf"] = frame
  4072. own["lasta"] = aBut
  4073. own["lastx"] = xBut
  4074. own['lastaBut_ground'] = aBut_ground
  4075. own['lastxBut_ground'] = xBut_ground
  4076. own["last_sel"] = own["sel"]
  4077. own["sel"] = bkBut
  4078. if r_ground.triggered and own["jump_timer"] < 20:
  4079. force2 = [0.0, 0, -10]
  4080. own.applyForce(force2, True)
  4081. if (grindDar == False and r_ground.triggered and own['grindTouch'] == False) or own['jump_timer'] > 40:
  4082. own['grindType'] = ''
  4083. dict['walk'] = 0