*/}}

la_animation.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. /*
  2. * LaGUI: A graphical application framework.
  3. * Copyright (C) 2022-2023 Wu Yiming
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "la_5.h"
  19. extern LA MAIN;
  20. extern tnsMain* T;
  21. void la_AnimationEvaluateActions(int ClampOffsets);
  22. void laget_AnimationActionHolderCategory(void* a_unused, laActionHolder* ah, char* copy, char** ptr);
  23. void laui_AnimationActionHolder(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *ExtraColumns, int context);
  24. int laAnimationRegisterHolderPath(const char* Path){
  25. laPropPack PP={0}; if(!la_GetPropFromPath(&PP,0,Path,0)){ la_FreePropStepCache(PP.Go); return 0; }
  26. la_EnsureSubTarget(PP.LastPs->p,0);
  27. if((!PP.LastPs->p->SubProp) || (!la_PropLookup(&PP.LastPs->p->SubProp->Props,"__actions__"))){
  28. la_FreePropStepCache(PP.Go); return 0;
  29. }
  30. laActionHolderPath* ahp=memAcquire(sizeof(laActionHolderPath));
  31. ahp->OriginalPath=Path;
  32. la_CopyPropPack(&PP,&ahp->PP); lstAppendItem(&MAIN.Animation->ActionHolderPaths,ahp);
  33. la_FreePropStepCache(PP.Go);
  34. return 1;
  35. }
  36. void laAnimationUpdateHolderList(){
  37. laActionHolder* ah;
  38. while(ah=lstPopItem(&MAIN.Animation->ActionHolders)){
  39. strSafeDestroy(&ah->Name); strSafeDestroy(&ah->CategoryTitle); memFree(ah);
  40. }
  41. for(laActionHolderPath* ahp=MAIN.Animation->ActionHolderPaths.pFirst;ahp;ahp=ahp->Item.pNext){
  42. la_StepPropPack(&ahp->PP); laSubProp* pa=ahp->PP.LastPs->p; la_EnsureSubTarget(pa,0); laPropIterator pi={0};
  43. int ListOffset=0,PropOffset=0;
  44. laSubProp* paa=la_PropLookup(&pa->Base.SubProp->Props,"__actions__");
  45. laSubProp* paap=la_PropLookup(&pa->Base.SubProp->Props,"__action_props__");
  46. if((!paa) || (!paap) || (!paa->ListHandleOffset) || (!paap->ListHandleOffset)){ continue; }
  47. ListOffset=paa->ListHandleOffset; PropOffset=paap->ListHandleOffset;
  48. void* inst=laGetInstance(ahp->PP.LastPs->p,ahp->PP.LastPs->UseInstance,&pi); int FirstIn=1;
  49. while(inst){
  50. ah=memAcquire(sizeof(laActionHolder));
  51. memAssignRef(ah,&ah->Instance,inst);
  52. ah->ActionOffset=ListOffset; ah->PropOffset=PropOffset;
  53. ah->Container=ahp->PP.LastPs->p->SubProp;
  54. char _id[64]="unamed", *id=_id;
  55. laTryGetInstanceIdentifier(inst,pa->Base.SubProp,_id,&id);
  56. strSafeSet(&ah->Name,id);
  57. if(FirstIn){ strSafeSet(&ah->CategoryTitle,pa->Base.SubProp->Name); FirstIn=0; }
  58. lstAppendItem(&MAIN.Animation->ActionHolders,ah);
  59. inst=laGetNextInstance(ahp->PP.LastPs->p, inst, &pi);
  60. }
  61. }
  62. laNotifyUsers("la.animation.action_holders");
  63. }
  64. laActionHolder* laFindAnimationHolder(void* inst,char* container){
  65. for(laActionHolder*ah=MAIN.Animation->ActionHolders.pFirst;ah;ah=ah->Item.pNext){
  66. if(ah->Instance==inst){ if(ah->Container&&strSame(ah->Container->Identifier,container)) return ah; }
  67. }
  68. return 0;
  69. }
  70. laAction* laAnimiationNewAction(laActionHolder* ah, char* Name){
  71. laAction* aa=memAcquire(sizeof(laAction));
  72. if(!Name || !Name[0]){ Name="New Action"; }
  73. strSafeSet(&aa->Name,Name);
  74. aa->Length=2; aa->FrameCount=24; aa->HolderContainer=ah->Container;
  75. memAssignRef(aa,&aa->HolderInstance,ah->Instance);
  76. memAssignRef(MAIN.Animation,&MAIN.Animation->CurrentAction,aa);
  77. void* lh=((uint8_t*)ah->Instance)+ah->ActionOffset;
  78. lstAppendItem(lh,aa);
  79. laNotifyInstanceUsers(ah->Instance);
  80. laNotifyUsers("la.animation.current_action");
  81. return aa;
  82. }
  83. laActionProp* laAnimationEnsureProp(laAction* aa, void* hyper1, laProp* p){
  84. int DataSize=la_GetKeyablePropertyStorageSize(p); if(!DataSize || !aa->HolderInstance || !aa->HolderContainer) return 0;
  85. laSubProp* paap=la_PropLookup(&aa->HolderContainer->Props,"__action_props__"); if(!paap){ return 0; }
  86. laListHandle *pl=((uint8_t*)aa->HolderInstance)+paap->ListHandleOffset;
  87. for(laActionProp* ap=pl->pFirst;ap;ap=ap->Item.pNext){ if(ap->For==hyper1 && ap->Prop==p){ return ap; } }
  88. laActionProp* ap = memAcquire(sizeof(laActionProp)); lstAppendItem(pl,ap);
  89. memAssignRef(ap,&ap->For,hyper1); ap->Prop=p;
  90. ap->DataSize = DataSize;
  91. char _name[128]={0}, *name=_name; laTryGetInstanceIdentifier(hyper1, p->Container,_name,&name);
  92. strSafeSet(&ap->CachedName,name); strSafePrint(&ap->CachedName," ⯈ %s",p->Identifier);
  93. return ap;
  94. }
  95. laActionChannel* laAnimationEnsureChannel(laAction* aa, void* hyper1, laProp* p){
  96. laActionProp* ap=laAnimationEnsureProp(aa, hyper1,p); if(!ap) return 0; laActionChannel* ac;
  97. for(ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){ if(ac->AP==ap) return ac; }
  98. ac=memAcquire(sizeof(laActionChannel)); ac->AP=ap;
  99. lstAppendItem(&aa->Channels,ac); laNotifyUsers("la.animation.current_action.channels");
  100. return ac;
  101. }
  102. laActionChannel* laAnimationEnsureFrame(laActionChannel* ac, int frame){
  103. laActionKey* akf=0,*beforeakf=0;
  104. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){
  105. if(ak->At==frame){ akf=ak; break; } if(ak->At>frame){ beforeakf=ak; break; }
  106. }
  107. if(!akf){
  108. akf=memAcquireSimple(sizeof(laActionKey));
  109. akf->At=frame; akf->Data=memAcquireSimple(ac->AP->DataSize); akf->DataSize=ac->AP->DataSize;
  110. if(beforeakf){ lstInsertItemBefore(&ac->Keys, akf, beforeakf); }
  111. else{ lstAppendItem(&ac->Keys, akf); }
  112. }
  113. return akf;
  114. }
  115. void laAnimationStoreKeyValue(laActionChannel* ac, laActionKey* ak){
  116. laPropPack PP={0}; laPropStep PS={0}; laActionProp* ap=ac->AP; if(!ap) return;
  117. PS.p=ap->Prop; PS.Type='.'; PS.UseInstance=ap->For; PP.LastPs=&PS; PP.EndInstance=ap->For;
  118. switch(ap->Prop->PropertyType){
  119. case LA_PROP_INT: case LA_PROP_INT | LA_PROP_ARRAY: laGetIntArray(&PP,(int*)ak->Data); break;
  120. case LA_PROP_FLOAT: case LA_PROP_FLOAT | LA_PROP_ARRAY: laGetFloatArray(&PP,(real*)ak->Data); break;
  121. case LA_PROP_ENUM: case LA_PROP_ENUM | LA_PROP_ARRAY: laGetEnumArray(&PP,(laEnumItem**)ak->Data); break;
  122. case LA_PROP_SUB: case LA_PROP_OPERATOR: case LA_PROP_STRING: case LA_PROP_RAW: default: return;
  123. }
  124. }
  125. laActionKey* laAnimationInsertKeyFrame(laAction* aa, void* hyper1, laProp* p, int* error){
  126. if(error) *error=0; if(!aa) return 0;
  127. if(!aa->HolderInstance||!aa->HolderContainer){ if(error) *error=1; return 0; }
  128. if(aa->HolderContainer->ActionHolderVerify){
  129. if(!aa->HolderContainer->ActionHolderVerify(aa->HolderInstance,aa->HolderContainer,hyper1,p->Container)){
  130. if(error) *error=2; return 0;
  131. }
  132. }
  133. laActionChannel* ac=laAnimationEnsureChannel(aa,hyper1,p); if(!ac || !ac->AP || !ac->AP->For) return;
  134. int frame=LA_ACTION_FRAME(aa);
  135. laActionKey* ak=laAnimationEnsureFrame(ac,frame);
  136. laAnimationStoreKeyValue(ac,ak);
  137. laNotifyUsers("la.animation.current_action");
  138. return ak;
  139. }
  140. void laAnimationSetPlayStatus(int PlayStatus){
  141. if(PlayStatus>3||PlayStatus<0) PlayStatus=0; MAIN.Animation->PlayStatus=PlayStatus;
  142. if(PlayStatus) laRecordTime(&MAIN.Animation->TimeOrigin);
  143. laNotifyUsers("la.animation.play_status");
  144. }
  145. void laAnimationSetPlayHead(real time){
  146. MAIN.Animation->PlayHead=time;
  147. }
  148. STRUCTURE(laNewActionData){
  149. laActionHolder* SelectedHolder;
  150. };
  151. laActionHolder* laget_AnimationFirstActionHolder(void* unused1, void* unused2){
  152. return MAIN.Animation->ActionHolders.pFirst;
  153. }
  154. void laset_AnimationNewActionSetHolder(laNewActionData *np, laActionHolder *ah, int State){
  155. np->SelectedHolder = ah;
  156. }
  157. int OPINV_AnimationNewAction(laOperator *a, laEvent *e){
  158. laAnimationUpdateHolderList();
  159. laNewActionData* np= memAcquire(sizeof(laNewActionData));
  160. a->CustomData = np;
  161. laEnableOperatorPanel(a, 0, e->x-50,e->y-50,500,500,10000,0,0,0,0,0,0,0,e);
  162. return LA_RUNNING;
  163. }
  164. int OPMOD_AnimationNewAction(laOperator *a, laEvent *e){
  165. laNewActionData* np=a->CustomData;
  166. if(!a->ConfirmData) return LA_RUNNING;
  167. if(a->ConfirmData->Mode == LA_CONFIRM_CANCEL||a->ConfirmData->Mode == LA_CONFIRM_OK){ if(np) memFree(np); return LA_CANCELED; }
  168. if(a->ConfirmData->Mode == LA_CONFIRM_DATA){
  169. if (!np || !np->SelectedHolder){ if(np) memFree(np); return LA_CANCELED; }
  170. laAnimiationNewAction(np->SelectedHolder,0);
  171. laRecordInstanceDifferences(np->SelectedHolder->Instance,np->SelectedHolder->Container->Identifier);
  172. laRecordDifferences(0,"la.animation"); laPushDifferences("New action",0); memFree(np);
  173. return LA_FINISHED;
  174. }
  175. return LA_RUNNING;
  176. }
  177. void laui_AnimationNewAction(laUiList *uil, laPropPack *This, laPropPack *OperatorProps, laColumn *UNUSED, int context){
  178. laColumn *c = laFirstColumn(uil);
  179. laUiItem* ui=laShowItem(uil, c, OperatorProps, "holder");ui->SymbolID=3; ui->Flags|=LA_UI_FLAGS_NO_DECAL;
  180. }
  181. int OPINV_AnimationSelectAction(laOperator *a, laEvent *e){
  182. laEnableOperatorPanel(a, 0, e->x-50,e->y-50,500,500,10000,0,0,0,0,0,0,0,e);
  183. return LA_RUNNING;
  184. }
  185. void laui_AnimationSelectAction(laUiList *uil, laPropPack *This, laPropPack *OperatorProps, laColumn *UNUSED, int context){
  186. laColumn *c = laFirstColumn(uil);
  187. for(laActionHolderPath* ahp=MAIN.Animation->ActionHolderPaths.pFirst;ahp;ahp=ahp->Item.pNext){
  188. laShowLabel(uil,c,ahp->PP.LastPs->p->Name,0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_MONO;
  189. laShowItemFull(uil,c,0,ahp->OriginalPath,LA_WIDGET_COLLECTION,"feedback=NONE",laui_AnimationActionHolder,0)->Flags|=LA_UI_FLAGS_NO_DECAL|LA_UI_FLAGS_NO_GAP;
  190. }
  191. }
  192. void laAnimationRemoveFrame(laActionChannel* ac, laActionKey* ak){
  193. ak->DataSize=0; memLeave(ak->Data); ak->Data=0;
  194. lstRemoveItem(&ac->Keys,ak); memLeave(ak);
  195. }
  196. void laAnimationRemoveChannel(laAction* aa, laActionChannel* ac){
  197. while(ac->Keys.pFirst){ laAnimationRemoveFrame(ac,ac->Keys.pFirst); }
  198. lstRemoveItem(&aa->Channels,ac); memLeave(ac);
  199. }
  200. void laAnimationRemoveAction(laAction* aa){
  201. while(aa->Channels.pFirst){ laAnimationRemoveChannel(aa,aa->Channels.pFirst); }
  202. if(!aa->HolderContainer || !aa->HolderInstance){ return; }
  203. strSafeDestroy(&aa->Name);
  204. if(aa==MAIN.Animation->CurrentAction){
  205. if(aa->Item.pNext){ memAssignRef(MAIN.Animation,&MAIN.Animation->CurrentAction,aa->Item.pNext); }
  206. else{ memAssignRef(MAIN.Animation,&MAIN.Animation->CurrentAction,aa->Item.pPrev); }
  207. }
  208. laSubProp* paa=la_PropLookup(&aa->HolderContainer->Props,"__actions__"); if(!paa){ goto action_remove_clean; }
  209. laListHandle* al=((uint8_t*)aa->HolderInstance)+paa->ListHandleOffset;
  210. lstRemoveItem(al,aa);
  211. action_remove_clean:
  212. memLeave(aa);
  213. }
  214. void* laAnimationGetRetargetedPropInstance(laProp* p, void* Instance){
  215. laPropContainer* pc=p->Container;
  216. laProp* rp = la_PropLookup(&pc->Props,"__action_retarget__");
  217. if(rp->PropertyType!=LA_PROP_SUB) return Instance;
  218. laPropIterator pi={0};
  219. void* retargeted = laGetInstance(rp,Instance,&pi);
  220. return retargeted;
  221. }
  222. void laAnimationEnsureRetarget(void* HolderInstance, laListHandle* action_list, laActionRetarget** retarget){
  223. if((*retarget) || (!HolderInstance) || (!action_list)){ return; }
  224. int count = lstCountElements(action_list); if(!count){ return; }
  225. laActionRetarget* ar=memAcquire(sizeof(laActionRetarget));
  226. ar->ActionCount = count; ar->Actions = action_list;
  227. ar->Retargeted = memAcquireSimple(sizeof(laRetargetedAction)*count);
  228. int i=0;
  229. for(laAction* aa=action_list->pFirst;aa;aa=aa->Item.pNext){
  230. int channels = lstCountElements(&aa->Channels);
  231. ar->Retargeted[i].Instances = memAcquireSimple(sizeof(void*)*channels);
  232. int j=0;
  233. for(laActionChannel* ac = aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  234. ar->Retargeted[i].Instances[j] = laAnimationGetRetargetedPropInstance(ac->AP->Prop,ac->AP->For);
  235. }
  236. }
  237. *retarget = ar;
  238. }
  239. void laAnimationClearRetarget(laActionRetarget **ar_ptr){
  240. if(!ar_ptr) return;
  241. laActionRetarget *ar = *ar_ptr;
  242. if(!ar || !ar->ActionCount) return;
  243. for(int i=0;i<ar->ActionCount;i++){ memFree(ar->Retargeted[i].Instances); }
  244. memFree(ar->Retargeted); memFree(ar); *ar_ptr=0;
  245. }
  246. int OPCHK_AnimationRemoveAction(laPropPack *This, laStringSplitor *Instructions){
  247. laPropContainer* pc; return LA_VERIFY_THIS_TYPE(This,pc,"la_animation_action");
  248. }
  249. int OPINV_AnimationRemoveAction(laOperator *a, laEvent *e){
  250. if(!a->This || !a->This->EndInstance){ return LA_CANCELED; }
  251. laAction* aa=a->This->EndInstance;
  252. char str[256]; sprintf(str,"Will remove action \"%s\".",SSTR(aa->Name));
  253. laEnableYesNoPanel(a,0,"Remove?",str,e->x,e->y,200,e);
  254. return LA_RUNNING;
  255. }
  256. int OPMOD_AnimationRemoveAction(laOperator *a, laEvent *e){
  257. if(!a->This || !a->This->EndInstance){ return LA_CANCELED; }
  258. laAction* aa=a->This->EndInstance;
  259. if(a->ConfirmData && a->ConfirmData->Mode==LA_CONFIRM_OK){
  260. laAnimationRemoveAction(aa); laNotifyUsers("la.animation");
  261. laRecordInstanceDifferences(aa->HolderInstance,aa->HolderContainer->Identifier);
  262. laRecordDifferences(0,"la.animation"); laPushDifferences("Remove action",0);
  263. }
  264. return LA_FINISHED;
  265. }
  266. int OPINV_AnimationPlayAction(laOperator *a, laEvent *e){
  267. char* str=strGetArgumentString(a->ExtraInstructionsP, "mode");
  268. int PlayStatus=LA_ANIMATION_STATUS_PAUSED;
  269. if(strSame(str,"forward")){ PlayStatus=LA_ANIMATION_STATUS_PLAY_FWD; }
  270. elif(strSame(str,"reverse")){ if(MAIN.Animation->PlayHead>0) PlayStatus=LA_ANIMATION_STATUS_PLAY_REV; }
  271. laAnimationSetPlayStatus(PlayStatus);
  272. return LA_FINISHED;
  273. }
  274. void la_AnimationActionSetOwnFrame(laAction* aa, int frame, int clamp){
  275. if(!aa) return;
  276. aa->Offset+=(aa->PlayHead-(real)frame/aa->FrameCount)*aa->Length;
  277. la_AnimationEvaluateActions(clamp);
  278. laNotifyUsers("la.animation.current_action");
  279. }
  280. int OPINV_AnimationResetTime(laOperator *a, laEvent *e){
  281. char* arg=strGetArgumentString(a->ExtraInstructionsP,"current");
  282. if(strSame(arg,"true")){ la_AnimationActionSetOwnFrame(MAIN.Animation->CurrentAction,0,1); return LA_FINISHED; }
  283. laAnimationSetPlayHead(0); la_AnimationEvaluateActions(1);
  284. return LA_FINISHED;
  285. }
  286. laActionChannel* laAnimationGetFrame(laActionChannel* ac, int frame){
  287. if(ac->Keys.pFirst==ac->Keys.pLast){ return ac->Keys.pFirst; }
  288. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){
  289. if(ak->At<=frame && ((!ak->Item.pNext) ||ak->Item.pNext && ((laActionKey*)ak->Item.pNext)->At>frame)){ return ak; }
  290. }
  291. return ac->Keys.pFirst;
  292. }
  293. void la_AnimationMarkPropReset(){
  294. for(laActionHolder* ah=MAIN.Animation->ActionHolders.pFirst;ah;ah=ah->Item.pNext){
  295. if(!ah->Instance){ continue; } laListHandle* lp=((uint8_t*)ah->Instance)+ah->PropOffset;
  296. for(laActionProp* ap=lp->pFirst;ap;ap=ap->Item.pNext){ ap->Reset=1; }
  297. }
  298. }
  299. void la_AnimationInterpolateKeys(laActionChannel* ac, laActionKey* ak1, laActionKey* ak2, real PlayHead_mul_Length, void** data){
  300. int* id1,*id2,*iret=(*data); real* fd1,*fd2,*fret=(*data);
  301. if(!ak2){ *data=ak1->Data; return; } laActionProp* ap=ac->AP; if(!ap) return;
  302. int arrlen=ap->Prop->Len?ap->Prop->Len:1;
  303. real fac=tnsGetRatiod(ak1->At,ak2->At,PlayHead_mul_Length); TNS_CLAMP(fac,0,1);
  304. switch(ap->Prop->PropertyType){
  305. case LA_PROP_INT: case LA_PROP_INT|LA_PROP_ARRAY:
  306. id1=ak1->Data;id2=ak2->Data; for(int i=0;i<arrlen;i++){ iret[i]=tnsLinearItp(id1[i],id2[i],fac); } break;
  307. case LA_PROP_FLOAT: case LA_PROP_FLOAT|LA_PROP_ARRAY:
  308. fd1=ak1->Data;fd2=ak2->Data; for(int i=0;i<arrlen;i++){ fret[i]=tnsLinearItp(fd1[i],fd2[i],fac); } break;
  309. default:
  310. *data=ak1->Data; break;
  311. }
  312. }
  313. void la_AnimationSetPropValue(laActionProp* ap, void* OverrideInstance){
  314. void* data=ap->Data;
  315. laPropPack PP={0}; laPropStep PS={0}; if(!ap) return;
  316. PS.p=ap->Prop; PS.Type='.'; PS.UseInstance=ap->For; PP.LastPs=&PS; PP.EndInstance=OverrideInstance?OverrideInstance:ap->For;
  317. switch(ap->Prop->PropertyType){
  318. case LA_PROP_INT: laSetInt(&PP,*((int*)data)); break;
  319. case LA_PROP_INT|LA_PROP_ARRAY: laSetIntArrayAllArray(&PP,(int*)data); break;
  320. case LA_PROP_FLOAT: laSetFloat(&PP,*((real*)data)); break;
  321. case LA_PROP_FLOAT|LA_PROP_ARRAY: laSetFloatArrayAllArray(&PP,(real*)data); break;
  322. case LA_PROP_ENUM: laSetEnum(&PP,*((int*)data)); break;
  323. //case LA_PROP_ENUM|LA_PROP_ARRAY: laSetEnumArrayAllArray(&PP,(real*)data); break; //doesnt work
  324. default: break;
  325. }
  326. }
  327. void la_AnimationMixChannelValue(laActionChannel* ac, void* data, int MixMode, real Factor){
  328. laActionProp* ap=ac->AP; if(!ap) return; int* ip=ap->Data,*ipd=data; real* fp=ap->Data,*fpd=data;
  329. int arrlen=ap->Prop->Len?ap->Prop->Len:1;
  330. switch(ap->Prop->PropertyType){
  331. case LA_PROP_INT: case LA_PROP_INT|LA_PROP_ARRAY: for(int i=0;i<arrlen;i++){
  332. ip[i]=ap->Reset?ipd[i]:(MixMode==LA_ANIMATION_MIX_REPLACE?ipd[i]:(ipd[i]+ip[i]));
  333. } break;
  334. case LA_PROP_FLOAT: case LA_PROP_FLOAT|LA_PROP_ARRAY: for(int i=0;i<arrlen;i++){
  335. fp[i]=ap->Reset?fpd[i]:(MixMode==LA_ANIMATION_MIX_REPLACE?fpd[i]:(fpd[i]+fp[i]));
  336. } break;
  337. case LA_PROP_ENUM: ip[0]=ipd[0]; break;
  338. //case LA_PROP_ENUM|LA_PROP_ARRAY: laSetEnumArrayAllArray(&PP,(real*)data); break; //doesnt work
  339. default: break;
  340. }
  341. ap->Reset=0;
  342. }
  343. void la_AnimationEvaluateActionChannels(laAction* aa){
  344. int64_t _data[16]; void* data=_data;
  345. int frame=LA_ACTION_FRAME(aa); real totframe=aa->PlayHead*aa->FrameCount;
  346. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  347. data=_data;
  348. laActionKey* ak1=laAnimationGetFrame(ac,frame); if(!ak1) continue;
  349. laActionKey* ak2=ak1->Item.pNext;
  350. la_AnimationInterpolateKeys(ac,ak1,ak2,totframe,&data);
  351. la_AnimationMixChannelValue(ac, data, aa->MixMode, 0);
  352. }
  353. }
  354. void la_AnimationEvaluateActions(int ClampOffsets){
  355. int any=0;
  356. la_AnimationMarkPropReset();
  357. for(laActionHolder* ah=MAIN.Animation->ActionHolders.pFirst;ah;ah=ah->Item.pNext){
  358. if(!ah->Instance) continue;
  359. laListHandle* lh=((uint8_t*)ah->Instance)+ah->ActionOffset;
  360. for(laAction* aa=lh->pFirst;aa;aa=aa->Item.pNext){
  361. real preoffset=0,postoffset=aa->Offset/aa->Length;
  362. if(ClampOffsets || (MAIN.Animation->PlayStatus!=LA_ANIMATION_STATUS_PAUSED)){
  363. while(aa->Offset>aa->Length*2){ aa->Offset-=aa->Length*2; }
  364. while(aa->Offset<-aa->Length*2){ aa->Offset+=aa->Length*2; }
  365. preoffset=aa->Offset; postoffset=0;
  366. }
  367. real UseTime=MAIN.Animation->PlayHead-preoffset+aa->Length*2;
  368. int repeats=(real)(UseTime/aa->Length);
  369. real remaining=UseTime-repeats*aa->Length;
  370. while(remaining<0){ remaining+=aa->Length; }
  371. if(aa->PlayMode==LA_ANIMATION_PLAY_MODE_REPEAT){ aa->PlayHead=remaining/aa->Length-postoffset; }
  372. elif(aa->PlayMode==LA_ANIMATION_PLAY_MODE_HOLD){ aa->PlayHead=((UseTime>aa->Length)?1.0:(UseTime<0?0:UseTime/aa->Length))-postoffset; }
  373. elif(aa->PlayMode==LA_ANIMATION_PLAY_MODE_BOUNCE){ real t=remaining/aa->Length; aa->PlayHead=((repeats%2)?(1-t):t)-postoffset; }
  374. any=1;
  375. la_AnimationEvaluateActionChannels(aa);
  376. }
  377. }
  378. for(laActionHolder* ah=MAIN.Animation->ActionHolders.pFirst;ah;ah=ah->Item.pNext){
  379. if(!ah->Instance){ continue; } laListHandle* lp=((uint8_t*)ah->Instance)+ah->PropOffset;
  380. for(laActionProp* ap=lp->pFirst;ap;ap=ap->Item.pNext){ if(ap->Reset){ continue; }
  381. la_AnimationSetPropValue(ap,0);
  382. }
  383. }
  384. if(any) laNotifyUsers("la.animation");
  385. }
  386. void la_AnimationPreFrame(){
  387. if(MAIN.Animation->PlayHead<0){
  388. MAIN.Animation->PlayHead=0; laAnimationSetPlayStatus(0);
  389. la_AnimationEvaluateActions(1);
  390. laNotifyUsers("la.animation.play_head");
  391. }
  392. if(MAIN.Animation->PlayStatus){
  393. la_AnimationEvaluateActions(0);
  394. }
  395. }
  396. void la_AnimationPostFrame(){
  397. laTimeRecorder cur={0};
  398. if(MAIN.Animation->PlayStatus){ laRecordTime(&cur);
  399. real td=laTimeElapsedSecondsf(&cur,&MAIN.Animation->TimeOrigin);
  400. laRecordTime(&MAIN.Animation->TimeOrigin);
  401. if(MAIN.Animation->PlayStatus==LA_ANIMATION_STATUS_PLAY_REV){ td*=-1; }
  402. MAIN.Animation->PlayHead+=td; laNotifyUsers("la.animation.play_head");
  403. }
  404. }
  405. void la_ActionDeselectFrames(laAction* aa){
  406. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  407. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){
  408. ak->Selected=0;
  409. }
  410. }
  411. }
  412. void la_ActionSelectFrame(laAction* aa, int Channel, real At, real zoomx){
  413. int tc=0;laActionChannel* ac;
  414. for(ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){ if(tc==Channel) break; tc++; }
  415. if(!ac) return;
  416. real ClosestDist=FLT_MAX; laActionKey* ClosestKey=0;
  417. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){
  418. real d=fabs(ak->At-At+0.5); if(d*zoomx<LA_RH*2 && d<ClosestDist){ ClosestDist=d; ClosestKey=ak; }
  419. }
  420. if(ClosestKey){ ClosestKey->Selected=1; }
  421. }
  422. int la_ActionSaveKeyOriginalAt(laAction* aa){
  423. int any=0;
  424. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  425. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){ if(!ak->Selected) continue; any=1; ak->OriginaAt=ak->At; }
  426. }
  427. return any;
  428. }
  429. void la_ActionEnsureFrameOrder(laAction* aa){
  430. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  431. laListHandle lst={0};
  432. laActionKey* ak; while(ak=lstPopItem(&ac->Keys)){ int done=0;
  433. if(!lst.pFirst){ lstAppendItem(&lst,ak); continue; }
  434. laActionKey* ak2=0;
  435. for(ak2=lst.pFirst;ak2;ak2=ak2->Item.pNext){
  436. if(ak2->At>=ak->At){ lstInsertItemBefore(&lst,ak,ak2); done=1; break; }
  437. }
  438. if(!done) lstAppendItem(&lst,ak);
  439. }
  440. lstCopyHandle(&ac->Keys,&lst);
  441. }
  442. }
  443. void la_ActionRestoreKeyOriginalAt(laAction* aa) {
  444. for (laActionChannel* ac = aa->Channels.pFirst; ac; ac = ac->Item.pNext) {
  445. for (laActionKey* ak = ac->Keys.pFirst; ak; ak = ak->Item.pNext) { if (!ak->Selected) continue; ak->At = ak->OriginaAt; }
  446. }
  447. la_ActionEnsureFrameOrder(aa);
  448. }
  449. void la_ActionRemoveDuplicatedFrames(laAction* aa){
  450. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  451. laActionKey* ak2; for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){
  452. while((ak2=ak->Item.pNext)&&ak->At==ak2->At){ lstRemoveItem(&ac->Keys,ak2); memLeave(ak2); }
  453. }
  454. }
  455. }
  456. void la_ActionMoveSelectedFrames(laAction* aa, int Delta){
  457. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  458. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){ if(!ak->Selected) continue;
  459. ak->At=ak->OriginaAt+Delta;
  460. }
  461. }
  462. la_ActionEnsureFrameOrder(aa);
  463. }
  464. int la_ActionDeleteSelectedFrames(laAction* aa){
  465. int any=0; laActionChannel* NextAc;
  466. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=NextAc){ NextAc=ac->Item.pNext;
  467. laActionKey* NextAk; for(laActionKey* ak=ac->Keys.pFirst;ak;ak=NextAk){ NextAk=ak->Item.pNext;if(!ak->Selected) continue;
  468. laAnimationRemoveFrame(ac,ak); any=1;
  469. }
  470. if(!ac->Keys.pFirst){ laAnimationRemoveChannel(aa,ac); any=1; }
  471. }
  472. return any;
  473. }
  474. int LAMOD_AnimationActionsCanvas(laOperator *a, laEvent *e){
  475. laUiItem *ui = a->Instance; laBoxedTheme *bt = (*ui->Type->Theme);
  476. laCanvasExtra *ex = a->CustomData; laAction* aa=ui->PP.EndInstance;
  477. if(!aa) LA_RUNNING_PASS;
  478. int W, H; W = ui->R - ui->L; H = ui->B - ui->U;
  479. int ShowSide=(ex->ShowLegend&&ex->LW<W-2*LA_RH);
  480. int ll=ui->L, lr=ll+(ShowSide?ex->LW:0), tl=lr, tr=ui->R;
  481. int FW=LA_RH/2;
  482. int Channels=aa?lstCountElements(&aa->Channels):0;
  483. int Modal=0; int mid=((W-lr)/2);
  484. if(e->type==LA_M_MOUSE_DOWN){
  485. ex->UiMode=1; ex->ClickedX=e->x; ex->ClickedY=e->y; Modal=1; ex->Dragging=10;
  486. }elif(e->type==LA_M_MOUSE_UP || e->type==LA_L_MOUSE_UP){
  487. ex->UiMode=0; Modal=1; ex->Dragging=0; ex->TargetIndexVali=0;
  488. }
  489. if(ex->UiMode==1){
  490. if(e->type&LA_MOUSE_EVENT){
  491. ex->PanY-=e->y-ex->ClickedY; ex->PanX-=e->x-ex->ClickedX;
  492. ex->ClickedX=e->x; ex->ClickedY=e->y; Modal=1;
  493. }
  494. }elif(ex->UiMode==2){ Modal=1;
  495. if(e->type&LA_MOUSE_EVENT){
  496. ex->LW=e->x-ui->L+LA_SEAM_W; ex->ClickedX=e->x; ex->ClickedY=e->y;
  497. if(ex->LW<LA_RH*3 && ex->LW>=LA_RH/2){ ex->LW=LA_RH*3; }
  498. if(ex->LW<LA_RH/2 && ex->Dragging!=12){ ex->ShowLegend=0; ex->LW=0; }
  499. if(ex->LW<LA_RH*3){ ex->LW=LA_RH*3;}
  500. }
  501. }elif(ex->UiMode==3){ Modal=1;
  502. if(e->type&LA_MOUSE_EVENT){ ex->ClickedX=e->x; ex->ClickedY=e->y;
  503. int SetFrame=(real)(e->x-tl+ex->PanX)/ex->ZoomX/FW;
  504. la_AnimationActionSetOwnFrame(aa,SetFrame,0);
  505. }
  506. }elif(ex->UiMode==4){ Modal=1;
  507. if(e->type==LA_R_MOUSE_DOWN || (e->type==LA_ESCAPE_DOWN)){ ex->UiMode=0; ex->Dragging=0;
  508. la_ActionRestoreKeyOriginalAt(aa); laNotifyUsers("la.animation.current_action");
  509. }elif(e->type==LA_L_MOUSE_DOWN){ la_ActionRemoveDuplicatedFrames(aa);
  510. laNotifyUsers("la.animation.current_action"); ex->UiMode=0; ex->Dragging=0;
  511. }elif(e->type&LA_MOUSE_EVENT){ Modal=1;
  512. int ToFrame=(real)(e->x-tl+ex->PanX)/ex->ZoomX/FW,FromFrame=(real)(ex->ClickedX-tl+ex->PanX)/ex->ZoomX/FW;
  513. la_ActionMoveSelectedFrames(aa,ToFrame-FromFrame); laNotifyUsers("la.animation.current_action");
  514. }
  515. }
  516. int MaxDN=LA_RH*(Channels+1)-H+bt->TP+bt->BP; if(MaxDN<0) MaxDN=0;
  517. if(!Modal){
  518. if(e->x<=lr){
  519. if(e->type==LA_MOUSE_WHEEL_DOWN){ ex->PanY+=LA_RH*MAIN.ScrollingSpeed; Modal=1; }
  520. if(e->type==LA_MOUSE_WHEEL_UP){ ex->PanY-=LA_RH*MAIN.ScrollingSpeed; Modal=1; }
  521. if(e->x>=lr-LA_SEAM_W*2){ if(!ex->TargetIndexVali){ ex->TargetIndexVali=1; Modal=1; }
  522. if(e->type==LA_L_MOUSE_DOWN){
  523. ex->UiMode=2; ex->ClickedX=e->x; ex->ClickedY=e->y; Modal=1; ex->Dragging=10; Modal=1;
  524. }
  525. }else{ if(ex->TargetIndexVali){ ex->TargetIndexVali=0; Modal=1; } }
  526. }elif(aa){
  527. if((!ex->ShowLegend)&&e->x<=ll+LA_SEAM_W*2){
  528. if(!ex->TargetIndexVali){ ex->TargetIndexVali=1; Modal=1; }
  529. if(e->type==LA_L_MOUSE_DOWN){ ex->LW=LA_RH*4; ex->Dragging=12; ex->ShowLegend=1; Modal=1; ex->UiMode=2; ex->TargetIndexVali=1; }
  530. }else{ if(ex->TargetIndexVali){ ex->TargetIndexVali=0; Modal=1; } }
  531. if(e->type==LA_MOUSE_WHEEL_DOWN){ ex->ZoomX*=0.9; ex->PanX+=mid; ex->PanX*=0.9; ex->PanX-=mid; Modal=1; }
  532. elif(e->type==LA_MOUSE_WHEEL_UP){ ex->ZoomX*=1.1; ex->PanX+=mid; ex->PanX*=1.1; ex->PanX-=mid; Modal=1; }
  533. elif(e->type==LA_L_MOUSE_DOWN){
  534. ex->UiMode=3; int SetFrame=(real)(e->x-tl+ex->PanX)/ex->ZoomX/FW;
  535. la_AnimationActionSetOwnFrame(aa,SetFrame,0); Modal=1;
  536. }elif(e->type==LA_R_MOUSE_DOWN){
  537. int row=(e->y-ui->U-bt->BM-LA_RH)/LA_RH; real at=(real)(e->x-tl+ex->PanX)/ex->ZoomX/FW;
  538. if(!(e->SpecialKeyBit&LA_KEY_SHIFT)){ la_ActionDeselectFrames(aa); }
  539. la_ActionSelectFrame(aa,row,at,ex->ZoomX);
  540. laNotifyUsers("la.animation.current_action");
  541. }elif(e->type==LA_KEY_DOWN&&e->key=='g'){
  542. int any=la_ActionSaveKeyOriginalAt(aa);
  543. if(any){ ex->ClickedX=e->x; ex->ClickedY=e->y; ex->UiMode=4; Modal=1; ex->Dragging=13;
  544. laNotifyUsers("la.animation.current_action");
  545. }
  546. }elif(e->type==LA_KEY_DOWN&&e->key=='x'){
  547. int any=la_ActionDeleteSelectedFrames(aa);
  548. if(any){
  549. laNotifyUsers("la.animation.current_action");
  550. }
  551. }
  552. }
  553. }
  554. if(ex->PanY>MaxDN){ ex->PanY=MaxDN; } if(ex->PanY<0){ ex->PanY=0; }
  555. //if(ex->PanX<0){ ex->PanX=0; }
  556. if(ex->TargetIndexVali){ laSetWindowCursor(LA_LEFT_AND_RIGHT); }else{ laSetWindowCursor(LA_ARROW); }
  557. if(Modal){ laRedrawCurrentPanel(); return LA_RUNNING; }
  558. return LA_RUNNING_PASS;
  559. }
  560. void la_AnimationActionCanvasInit(laUiItem *ui){
  561. la_CanvasInit(ui);
  562. laCanvasExtra* ex=ui->Extra; ex->LW=LA_RH*7; ex->ShowLegend=1;
  563. }
  564. void la_AnimationActionDrawCanvas(laBoxedTheme *bt, laAction *aa, laUiItem* ui){
  565. laCanvasExtra* ex=ui->Extra; //laAction* aa=ui->PP.EndInstance;
  566. int W, H; W = ui->R - ui->L; H = ui->B - ui->U; if (W<=0 || H<=0) return;
  567. int ShowSide=(ex->ShowLegend&&ex->LW<W-2*LA_RH);
  568. int ll=ui->L, lr=ll+(ShowSide?ex->LW-1:0), tl=lr, tr=ui->R;
  569. int FW=LA_RH/2;
  570. //if (!e->OffScr || e->OffScr->pColor[0]->Height != ui->B - ui->U || e->Be.OffScr->pColor[0]->Width != ui->R - ui->L){
  571. // if (e->OffScr) tnsDelete2DOffscreen(e->OffScr);
  572. // e->OffScr = tnsCreate2DOffscreen(GL_RGBA, W, H, MAIN.PanelMultisample, 1, 0);
  573. //}
  574. real *bkg=laThemeColor(bt,LA_BT_NORMAL);
  575. real *txt=laThemeColor(bt,LA_BT_TEXT);
  576. real *act=laThemeColor(bt,LA_BT_ACTIVE);
  577. tnsUseNoTexture();
  578. tnsColor4d(LA_COLOR3(bkg),bkg[3]*0.3);
  579. tnsVertex2d(tl, ui->U); tnsVertex2d(tr, ui->U);
  580. tnsVertex2d(tr, ui->B); tnsVertex2d(tl, ui->B);
  581. tnsPackAs(GL_TRIANGLE_FAN);
  582. int row=1,curframe,cx; real fl,fr;
  583. tnsColor4dv(laThemeColor(bt,LA_BT_NORMAL));
  584. tnsVertex2d(ui->L, ui->U+bt->TP+LA_RH); tnsVertex2d(ui->R, ui->U+bt->TP+LA_RH);
  585. tnsVertex2d(ui->R, ui->U); tnsVertex2d(ui->L, ui->U);
  586. tnsPackAs(GL_TRIANGLE_FAN);
  587. tnsColor4dv(laThemeColor(bt,LA_BT_TEXT));
  588. tnsVertex2d(tl, LA_RH+ui->U); tnsVertex2d(tr, LA_RH+ui->U);
  589. tnsPackAs(GL_LINES);
  590. tnsFlush();
  591. int sx,sy,sw,sh,vl,vr,vu,vb;
  592. la_DoUiScissor(ui,&sx,&sy,&sw,&sh,&vl,&vr,&vu,&vb);
  593. if(aa){
  594. curframe=LA_ACTION_FRAME(aa); fl=tl+curframe*FW*ex->ZoomX-ex->PanX, fr=tl+(curframe+1)*FW*ex->ZoomX-ex->PanX;
  595. tnsUseNoTexture();
  596. tnsColor4dv(laAccentColor(LA_BT_NORMAL));
  597. tnsVertex2d(fl, ui->U); tnsVertex2d(fr, ui->U);
  598. tnsVertex2d(fr, ui->B); tnsVertex2d(fl, ui->B);
  599. tnsPackAs(GL_TRIANGLE_FAN);
  600. tnsFlush(); glLineWidth(2);
  601. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){
  602. real ku=ui->U+bt->TP+row*LA_RH-ex->PanY,kb=ku+LA_RH;
  603. for(laActionKey* ak=ac->Keys.pFirst;ak;ak=ak->Item.pNext){
  604. real kl=tl+ak->At*FW*ex->ZoomX-ex->PanX, kr=tl+(ak->At+1)*FW*ex->ZoomX-ex->PanX;
  605. if(ak->Selected) tnsColor4dv(laAccentColor(LA_BT_TEXT_ACTIVE));
  606. elif(curframe==ak->At) tnsColor4d(LA_COLOR3(txt),txt[3]*0.6);
  607. else tnsColor4dv(laThemeColor(bt,LA_BT_ACTIVE));
  608. tnsVertex2d(kl, ku); tnsVertex2d(kr, ku);
  609. tnsVertex2d(kr, kb); tnsVertex2d(kl, kb);
  610. tnsPackAs(GL_TRIANGLE_FAN);
  611. tnsColor4dv(laThemeColor(bt,LA_BT_TEXT_ACTIVE));
  612. tnsVertex2d(kl, ku); tnsVertex2d(kr, ku);
  613. tnsVertex2d(kr, kb); tnsVertex2d(kl, kb);
  614. tnsPackAs(GL_LINE_LOOP);
  615. }
  616. row++;
  617. }
  618. tnsFlush(); glLineWidth(1);
  619. real end=tl+aa->FrameCount*FW*ex->ZoomX-ex->PanX;
  620. tnsColor4d(0,0,0,0.3);
  621. tnsVertex2d(end, ui->U+LA_RH); tnsVertex2d(end+1e6, ui->U+LA_RH);
  622. tnsVertex2d(end+1e6, ui->B); tnsVertex2d(end, ui->B);
  623. tnsPackAs(GL_TRIANGLE_FAN);
  624. tnsVertex2d(tl-ex->PanX, ui->U+LA_RH); tnsVertex2d(tl-ex->PanX-1e6, ui->U+LA_RH);
  625. tnsVertex2d(tl-ex->PanX-1e6, ui->B); tnsVertex2d(tl-ex->PanX, ui->B);
  626. tnsPackAs(GL_TRIANGLE_FAN);
  627. tnsColor4dv(laAccentColor(LA_BT_TEXT_ACTIVE));
  628. int FrameFix=aa->PlayHead<0?1:0;
  629. cx=tl+(aa->PlayHead*aa->FrameCount+FrameFix)*FW*ex->ZoomX-ex->PanX; tnsVertex2d(cx, ui->U); tnsVertex2d(cx, ui->B);
  630. tnsPackAs(GL_LINES); glLineWidth(3); tnsFlush(); glLineWidth(1);
  631. char buf[32]; sprintf(buf,"%d",curframe); real tlen=tnsStringGetDimension(buf,0,0,0,0,0)+bt->LP+bt->RP;
  632. tnsColor4dv(laAccentColor(LA_BT_TEXT_ACTIVE));
  633. tnsVertex2d(cx, ui->U+LA_RH); tnsVertex2d(cx+tlen, ui->U+LA_RH);
  634. tnsVertex2d(cx+tlen, ui->U); tnsVertex2d(cx, ui->U);
  635. tnsPackAs(GL_TRIANGLE_FAN);
  636. tnsDrawStringAuto(buf,laThemeColor(bt,LA_BT_TEXT_ACTIVE),cx+bt->LP,cx+LA_RH*2,ui->U+bt->TP,0);
  637. tnsPackAs(GL_TRIANGLE_FAN); tnsUseNoTexture();
  638. }
  639. if(ShowSide){
  640. tnsColor4dv(laThemeColor(bt,LA_BT_NORMAL));
  641. tnsVertex2d(ll, ui->U); tnsVertex2d(lr, ui->U);
  642. tnsVertex2d(lr, ui->B); tnsVertex2d(ll, ui->B);
  643. tnsPackAs(GL_TRIANGLE_FAN);
  644. if(!aa){
  645. tnsDrawStringAuto("No action selected",laThemeColor(bt,LA_BT_TEXT),ll+bt->LP,lr-bt->RP,ui->U+bt->BP,0);
  646. }else{ int row=1;
  647. tnsDrawStringAuto(SSTR(aa->Name),laThemeColor(bt,LA_BT_TEXT),ll+bt->LP,lr-bt->RP,ui->U+bt->BP,0);
  648. for(laActionChannel* ac=aa->Channels.pFirst;ac;ac=ac->Item.pNext){ if(!ac->AP){ continue; }
  649. tnsDrawStringAuto(SSTR(ac->AP->CachedName),laThemeColor(bt,LA_BT_TEXT),ll+bt->LP,lr-bt->RP,ui->U+bt->TP+row*LA_RH-ex->PanY,0);
  650. row++;
  651. }
  652. }
  653. }
  654. if(ex->TargetIndexVali==1){
  655. int LR=TNS_MAX2(lr,ui->L+LA_SEAM_W*2);
  656. tnsColor4dv(act);tnsUseNoTexture();
  657. tnsVertex2d(LR, ui->B); tnsVertex2d(LR-LA_SEAM_W*2, ui->B);
  658. tnsVertex2d(LR-LA_SEAM_W*2, ui->U); tnsVertex2d(LR, ui->U);
  659. tnsPackAs(GL_TRIANGLE_FAN);
  660. }
  661. tnsFlush();
  662. tnsViewportWithScissor(sx,sy,sw,sh);
  663. tnsOrtho(vl,vr,vb,vu,-100,100);
  664. tnsUseNoTexture();
  665. tnsColor4dv(laThemeColor(bt,LA_BT_BORDER));
  666. tnsVertex2d(ui->L, ui->U); tnsVertex2d(ui->R, ui->U);
  667. tnsVertex2d(ui->R, ui->B); tnsVertex2d(ui->L, ui->B);
  668. tnsPackAs(GL_LINE_LOOP);
  669. }
  670. void la_AnimationActionDrawOverlay(laUiItem *ui, int h){
  671. laCanvasExtra *e = ui->Extra; laBoxedTheme *bt = (*ui->Type->Theme);
  672. tnsUseImmShader();
  673. if(MAIN.CurrentWindow->MaximizedUi!=ui){
  674. tnsUseNoTexture();
  675. tnsColor4dv(laThemeColor(bt,LA_BT_BORDER));
  676. tnsVertex2d(ui->L, ui->U); tnsVertex2d(ui->R, ui->U);
  677. tnsVertex2d(ui->R, ui->B); tnsVertex2d(ui->L, ui->B);
  678. tnsPackAs(GL_LINE_LOOP);
  679. }
  680. if (e->DrawCursor){
  681. tnsColor4dv(laThemeColor(bt,LA_BT_TEXT));
  682. int drawx=(e->DrawCursor==LA_CANVAS_CURSOR_CROSS)||(e->DrawCursor==LA_CANVAS_CURSOR_X);
  683. int drawy=(e->DrawCursor==LA_CANVAS_CURSOR_CROSS)||(e->DrawCursor==LA_CANVAS_CURSOR_Y);
  684. if(drawx) tnsVertex2d(e->OnX, ui->U); tnsVertex2d(e->OnX, ui->B);
  685. if(drawy) tnsVertex2d(ui->L, e->OnY); tnsVertex2d(ui->R, e->OnY);
  686. tnsPackAs(GL_LINES);
  687. tnsFlush();
  688. }
  689. return;
  690. }
  691. void laui_AnimationActionMenu(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context){
  692. }
  693. void la_RegisterAnimationResources(){
  694. laPropContainer *pc; laProp *p; laOperatorType *at; laEnumProp *ep;
  695. at=laCreateOperatorType("LA_animation_new_action", "New Action", "Add a new action",0,0,0,OPINV_AnimationNewAction,OPMOD_AnimationNewAction,U'🞦',0);
  696. pc = laDefineOperatorProps(at, 1);
  697. p = laAddSubGroup(pc, "holder", "Holder", "Action holder to add the new action into", "la_animation_action_holder",
  698. 0, 0, laui_IdentifierOnly, -1, laget_AnimationFirstActionHolder, 0, laget_ListNext, 0, 0, laset_AnimationNewActionSetHolder,0,0);
  699. laSubGroupExtraFunctions(p,0,0,0,0,laget_AnimationActionHolderCategory);
  700. at->UiDefine=laui_AnimationNewAction;
  701. at=laCreateOperatorType("LA_animation_remove_action", "Remove Action", "Remove this action",OPCHK_AnimationRemoveAction,0,0,OPINV_AnimationRemoveAction,OPMOD_AnimationRemoveAction,U'🞫',0);
  702. at=laCreateOperatorType("LA_animation_select_action", "Select Action", "Select an action",0,0,0,OPINV_AnimationSelectAction,OPMOD_FinishOnData,U'⯆',0);
  703. at->UiDefine=laui_AnimationSelectAction;
  704. laCreateOperatorType("LA_animation_set_play_status", "Set Play", "Set global animation player status",0,0,0,OPINV_AnimationPlayAction,0,0,0);
  705. laCreateOperatorType("LA_animation_reset_time", "Reset Time", "Reset Time",0,0,0,OPINV_AnimationResetTime,0,U'🡄',0);
  706. laCanvasTemplate* ct=laRegisterCanvasTemplate("la_AnimationActionDrawCanvas", "la_animation_action", LAMOD_AnimationActionsCanvas, la_AnimationActionDrawCanvas, la_AnimationActionDrawOverlay, la_AnimationActionCanvasInit, la_CanvasDestroy);
  707. pc = laCanvasHasExtraProps(ct,sizeof(laCanvasExtra),2); laAddIntProperty(pc, "height_coeff", "Ui Height", "Ui Height Coefficiency Entry", 0, 0, "Rows", 100, -100, 1, 0, 0, offsetof(laCanvasExtra, HeightCoeff), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  708. }