*/}}

ouroperations.c 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120
  1. /*
  2. * Our Paint: A light weight GPU powered painting program.
  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 "ourpaint.h"
  19. #include "png.h"
  20. #include "lcms2.h"
  21. OurPaint *Our;
  22. extern LA MAIN;
  23. extern tnsMain* T;
  24. void our_LayerEnsureTiles(OurLayer* ol, real xmin,real xmax, real ymin,real ymax, int Aligned, int *tl, int *tr, int* tu, int* tb);
  25. void our_LayerEnsureTileDirect(OurLayer* ol, int col, int row);
  26. void our_RecordUndo(OurLayer* ol, real xmin,real xmax, real ymin,real ymax,int Aligned,int Push);
  27. void our_CanvasAlphaMix(uint16_t* target, uint16_t* source, real alpha){
  28. real a_1=(real)(65535-source[3]*alpha)/65535;
  29. target[3]=source[3]*alpha+target[3]*a_1;
  30. target[0]=source[0]*alpha+target[0]*a_1;
  31. target[1]=source[1]*alpha+target[1]*a_1;
  32. target[2]=source[2]*alpha+target[2]*a_1;
  33. }
  34. void our_CanvasAdd(uint16_t* target, uint16_t* source, real alpha){
  35. int a=(int)(source[3]*alpha+target[3]); TNS_CLAMP(a,0,65535);
  36. int r=(int)(source[0]*alpha+target[0]); TNS_CLAMP(r,0,65535);
  37. int g=(int)(source[1]*alpha+target[1]); TNS_CLAMP(g,0,65535);
  38. int b=(int)(source[2]*alpha+target[2]); TNS_CLAMP(b,0,65535);
  39. target[3]=a; target[0]=r; target[1]=g; target[2]=b;
  40. }
  41. void our_InitRGBProfile(int Linear,cmsCIExyYTRIPLE* primaries_pre_quantized, void** ptr, int* psize, char* copyright, char* manufacturer, char* description){
  42. cmsCIExyY d65_srgb_adobe_specs = {0.3127, 0.3290, 1.0};
  43. cmsToneCurve*tonecurve; cmsToneCurve*curve[3];
  44. if(Linear==1){ tonecurve = cmsBuildGamma (NULL, 1.0f); }
  45. elif(Linear==2){
  46. tonecurve=cmsBuildGamma(NULL,2.19921875);
  47. }else{
  48. cmsFloat64Number srgb_parameters[5] = { 2.4, 1.0 / 1.055, 0.055 / 1.055, 1.0 / 12.92, 0.04045 };
  49. tonecurve=cmsBuildParametricToneCurve(NULL, 4, srgb_parameters);
  50. }
  51. curve[0] = curve[1] = curve[2] = tonecurve;
  52. cmsHPROFILE profile4 = cmsCreateRGBProfile (&d65_srgb_adobe_specs, primaries_pre_quantized, curve);
  53. cmsMLU *copy = cmsMLUalloc(NULL, 1);
  54. cmsMLUsetASCII(copy, "en", "US", copyright);
  55. cmsWriteTag(profile4, cmsSigCopyrightTag, copy);
  56. cmsMLU* manu = cmsMLUalloc(NULL, 1);
  57. cmsMLUsetASCII(manu, "en", "US", manufacturer);
  58. cmsWriteTag(profile4, cmsSigDeviceMfgDescTag, manu);
  59. cmsMLU *desc = cmsMLUalloc(NULL, 1);
  60. cmsMLUsetASCII(desc, "en", "US", description);
  61. cmsWriteTag(profile4, cmsSigProfileDescriptionTag, desc);
  62. cmsSaveProfileToMem(profile4, 0, psize);
  63. (*ptr)=calloc(1,*psize); cmsSaveProfileToMem(profile4, *ptr, psize);
  64. cmsMLUfree(copy); cmsMLUfree(manu); cmsMLUfree(desc); cmsFreeToneCurve(tonecurve); cmsCloseProfile(profile4);
  65. }
  66. void our_cmsErrorLogger(cmsContext ContextID,cmsUInt32Number ErrorCode,const char *Text){
  67. logPrintNew("[LCMS] %s\n",Text);
  68. }
  69. void our_InitColorProfiles(){
  70. cmsSetLogErrorHandler(our_cmsErrorLogger);
  71. cmsCIExyYTRIPLE srgb_primaries_pre_quantized = { {0.639998686, 0.330010138, 1.0}, {0.300003784, 0.600003357, 1.0}, {0.150002046, 0.059997204, 1.0} };
  72. cmsCIExyYTRIPLE adobe_primaries_prequantized = { {0.639996511, 0.329996864, 1.0}, {0.210005295, 0.710004866, 1.0}, {0.149997606, 0.060003644, 1.0} };
  73. char* manu="sRGB chromaticities from A Standard Default Color Space for the Internet - sRGB, http://www.w3.org/Graphics/Color/sRGB; and http://www.color.org/specification/ICC1v43_2010-12.pdf";
  74. our_InitRGBProfile(1,&srgb_primaries_pre_quantized,&Our->icc_LinearsRGB,&Our->iccsize_LinearsRGB,"Copyright Yiming 2022.",manu,"Yiming's linear sRGB icc profile.");
  75. our_InitRGBProfile(0,&srgb_primaries_pre_quantized,&Our->icc_sRGB,&Our->iccsize_sRGB,"Copyright Yiming 2022.",manu,"Yiming's sRGB icc profile.");
  76. manu="ClayRGB chromaticities as given in Adobe RGB (1998) Color Image Encoding, Version 2005-05, https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf";
  77. our_InitRGBProfile(1,&adobe_primaries_prequantized,&Our->icc_LinearClay,&Our->iccsize_LinearClay,"Copyright Yiming 2022.",manu,"Yiming's Linear ClayRGB icc profile.");
  78. our_InitRGBProfile(2,&adobe_primaries_prequantized,&Our->icc_Clay,&Our->iccsize_Clay,"Copyright Yiming 2022.",manu,"Yiming's ClayRGB icc profile.");
  79. real data[12288];
  80. real data_new[12288];
  81. real cmyk8[16384];
  82. for(int i=0;i<16;i++){
  83. for(int j=0;j<16;j++){
  84. for(int k=0;k<16;k++){
  85. real* p=&data[(i*256+j*16+k)*3];
  86. p[0]=(real)i/16; p[1]=(real)j/16; p[2]=(real)k/16;
  87. }
  88. }
  89. }
  90. if(0){ // TRYING TO CREATE GLSL LUT FOR REAL TIME CMYK PROOFING
  91. char path[4096]; getcwd(path,4096); strcat(path,"/SWOP2006_Coated3v2.icc");
  92. printf("%s\n",path);
  93. cmsHPROFILE cmyk=cmsOpenProfileFromFile(path,"r");
  94. cmsHPROFILE srgb=cmsOpenProfileFromMem(Our->icc_sRGB,Our->iccsize_sRGB);
  95. cmsHPROFILE argb=cmsOpenProfileFromMem(Our->icc_LinearClay,Our->iccsize_LinearClay);
  96. cmsHTRANSFORM htransform=cmsCreateProofingTransform(srgb,TYPE_RGB_DBL,cmyk,TYPE_CMYK_DBL,cmyk,INTENT_ABSOLUTE_COLORIMETRIC,cmsFLAGS_SOFTPROOFING|cmsFLAGS_GAMUTCHECK,cmsFLAGS_HIGHRESPRECALC);
  97. cmsDoTransform(htransform,data,cmyk8,4096);
  98. htransform=cmsCreateProofingTransform(cmyk,TYPE_CMYK_DBL,srgb,TYPE_RGB_DBL,cmyk,INTENT_ABSOLUTE_COLORIMETRIC,cmsFLAGS_SOFTPROOFING|cmsFLAGS_GAMUTCHECK,cmsFLAGS_HIGHRESPRECALC);
  99. cmsDoTransform(htransform,cmyk8,data_new,4096);
  100. FILE* fp=fopen("transform_out_table","w");
  101. for(int i=0;i<16;i++){
  102. for(int j=0;j<16;j++){
  103. for(int k=0;k<16;k++){
  104. real* p=&data_new[(i*256+j*16+k)*3];
  105. fprintf(fp,"{%.2lf,%.2lf,%.2lf},",p[0],p[1],p[2]);
  106. }
  107. fprintf(fp," ");
  108. }
  109. fprintf(fp,"\n");
  110. }
  111. fprintf(fp,"\n");
  112. for(int i=0;i<16;i++){
  113. for(int j=0;j<16;j++){
  114. for(int k=0;k<16;k++){
  115. real* p=&data[(i*256+j*16+k)*3];
  116. fprintf(fp,"{%.2lf,%.2lf,%.2lf},",p[0],p[1],p[2]);
  117. }
  118. fprintf(fp," ");
  119. }
  120. fprintf(fp,"\n");
  121. }
  122. fflush(fp);fclose(fp);
  123. }
  124. }
  125. void ourui_NotesPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  126. laColumn* c=laFirstColumn(uil);
  127. laUiItem* ui=laShowItemFull(uil,c,0,"our.canvas.notes",LA_WIDGET_STRING_MULTI,0,0,0);
  128. laGeneralUiExtraData* ce=ui->Extra; ce->HeightCoeff = -1;
  129. }
  130. void ourui_CanvasPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  131. laColumn* c=laFirstColumn(uil);
  132. laUiItem* ui=laShowCanvas(uil,c,0,"our.canvas",0,-1);
  133. laCanvasExtra* ce=ui->Extra; ce->ZoomX=ce->ZoomY=1.0f/Our->DefaultScale;
  134. }
  135. void ourui_ThumbnailPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  136. laColumn* c=laFirstColumn(uil);
  137. laUiItem* ui=laShowCanvas(uil,c,0,"our.canvas",0,-1);
  138. laCanvasExtra* ce=ui->Extra; ce->ZoomX=ce->ZoomY=1.0f/Our->DefaultScale;
  139. ce->SelectThrough = 1;
  140. }
  141. void ourui_Layer(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  142. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.7); cl=laLeftColumn(c,0);cr=laRightColumn(c,1);
  143. laUiItem* b=laBeginRow(uil,cl,0,0);
  144. laShowHeightAdjuster(uil,cl,This,"__move",0);
  145. laUiItem* b0=laOnConditionThat(uil,cr,laPropExpression(This,"as_sketch"));{
  146. laShowLabel(uil,cl,"🖉",0,0);
  147. }laEndCondition(uil,b0);
  148. laShowItemFull(uil,cl,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  149. laShowItemFull(uil,cl,This,"lock",LA_WIDGET_ENUM_CYCLE_ICON,0,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL;
  150. laShowItemFull(uil,cl,This,"hide",LA_WIDGET_ENUM_CYCLE_ICON,0,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL;
  151. laEndRow(uil,b);
  152. laUiItem* b1=laOnConditionToggle(uil,cr,0,0,0,0,0);{ strSafeSet(&b1->ExtraInstructions,"text=☰");
  153. b=laBeginRow(uil,c,0,0);
  154. laShowItem(uil,c,This,"remove")->Flags|=LA_UI_FLAGS_ICON;
  155. laShowSeparator(uil,c)->Expand=1;
  156. laShowItem(uil,c,This,"as_sketch")->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_ICON;
  157. laShowSeparator(uil,c);
  158. laShowItemFull(uil,c,This,"move",0,"direction=up;icon=🡱;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  159. laShowItemFull(uil,c,This,"move",0,"direction=down;icon=🡳;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  160. laEndRow(uil,b);
  161. }laEndCondition(uil,b1);
  162. }
  163. void ourui_LayersPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  164. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.5); cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  165. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.current_layer"));{
  166. laUiItem* b1=laBeginRow(uil,c,0,0);
  167. laShowItem(uil,c,0,"our.canvas.current_layer.name")->Expand=1;
  168. laShowItem(uil,c,0,"OUR_new_layer")->Flags|=LA_UI_FLAGS_ICON;
  169. laEndRow(uil,b1);
  170. laShowItem(uil,cl,0,"our.canvas.current_layer.transparency");
  171. laShowItem(uil,cr,0,"our.canvas.current_layer.blend_mode");
  172. }laElse(uil,b);{
  173. laShowItem(uil,c,0,"OUR_new_layer");
  174. }laEndCondition(uil,b);
  175. laUiItem* lui=laShowItemFull(uil,c,0,"our.canvas.layers",0,0,0,0);
  176. b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.current_layer"));{
  177. laUiItem* b1=laBeginRow(uil,c,0,0);
  178. laShowItem(uil,c,&lui->PP,"remove")->Flags|=LA_UI_FLAGS_ICON;
  179. laShowItem(uil,c,&lui->PP,"merge");
  180. laShowSeparator(uil,c)->Expand=1;
  181. laShowItem(uil,c,&lui->PP,"duplicate");
  182. laEndRow(uil,b1);
  183. }laEndCondition(uil,b);
  184. laShowSeparator(uil,c);
  185. b=laBeginRow(uil,c,0,0);
  186. laShowItem(uil,c,0,"OUR_cycle_sketch")->Expand=1;
  187. laShowSeparator(uil,c); laShowItem(uil,c,0,"our.canvas.sketch_mode");
  188. laEndRow(uil,b);
  189. laShowSeparator(uil,c);
  190. b=laBeginRow(uil,c,0,0);
  191. lui=laShowLabel(uil,c,"Color Space:",0,0);lui->Expand=1;lui->Flags|=LA_TEXT_ALIGN_RIGHT; laShowItem(uil,c,0,"our.canvas.color_interpretation");
  192. laEndRow(uil,b);
  193. laShowSeparator(uil,c);
  194. laShowLabel(uil,c,"Background:",0,0);
  195. laUiItem* b2=laOnConditionThat(uil,c,laPropExpression(0,"our.lock_background"));{
  196. laShowItemFull(uil,c,0,"our.lock_background",LA_WIDGET_ENUM_CYCLE,0,0,0)->Flags|=LA_UI_FLAGS_EXIT_WHEN_TRIGGERED;
  197. }laElse(uil,b2);{
  198. b=laBeginRow(uil,c,1,0);
  199. laShowLabel(uil,c,"Color:",0,0);
  200. laShowItemFull(uil,c,0,"our.canvas.background_color",LA_WIDGET_FLOAT_COLOR,0,0,0);
  201. laEndRow(uil,b);
  202. b=laBeginRow(uil,c,1,0);
  203. laShowLabel(uil,c,"Pattern:",0,0);
  204. laShowItemFull(uil,c,0,"our.canvas.background_type",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND;
  205. laEndRow(uil,b);
  206. b=laBeginRow(uil,c,1,0);
  207. laShowItemFull(uil,c,0,"our.canvas.background_random",0,0,0,0);
  208. laShowItemFull(uil,c,0,"our.canvas.background_factor",0,0,0,0);
  209. laEndRow(uil,b);
  210. }laEndCondition(uil,b2);
  211. }
  212. void ourui_Brush(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  213. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.7); cl=laLeftColumn(c,0);cr=laRightColumn(c,1);
  214. laUiItem* b=laBeginRow(uil,cl,0,0);
  215. laShowHeightAdjuster(uil,cl,This,"__move",0);
  216. laShowItemFull(uil,cl,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  217. laEndRow(uil,b);
  218. laUiItem* b1=laOnConditionToggle(uil,cr,0,0,0,0,0);{ strSafeSet(&b1->ExtraInstructions,"text=☰");
  219. b=laBeginRow(uil,c,0,0);
  220. laShowItem(uil,c,This,"remove")->Flags|=LA_UI_FLAGS_ICON;
  221. laShowItem(uil,c,This,"binding")->Expand=1;
  222. laShowItem(uil,c,This,"show_in_pages")
  223. ->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_CYCLE|LA_UI_FLAGS_HIGHLIGHT|LA_UI_FLAGS_TRANSPOSE|LA_UI_FLAGS_ICON;
  224. laShowItem(uil,c,This,"duplicate")->Flags|=LA_UI_FLAGS_ICON;
  225. laShowItemFull(uil,c,This,"move",0,"direction=up;icon=🡱;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  226. laShowItemFull(uil,c,This,"move",0,"direction=down;icon=🡳;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  227. laEndRow(uil,b);
  228. }laEndCondition(uil,b1);
  229. }
  230. void ourui_ColorItemSimple(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  231. laColumn* c=laFirstColumn(uil);
  232. laShowItemFull(uil,c,This,"color",LA_WIDGET_FLOAT_COLOR,0,0,0)->Flags|=LA_UI_FLAGS_NO_EVENT|LA_UI_FLAGS_NO_DECAL;
  233. }
  234. void ourui_Pallette(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  235. laColumn* c=laFirstColumn(uil);
  236. laUiItem* ui=laShowItemFull(uil,c,This,"colors",0,0,ourui_ColorItemSimple,0);ui->SymbolID=7;
  237. ui->Flags|=LA_UI_FLAGS_NO_DECAL;
  238. }
  239. void ourui_BrushSimple(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  240. laColumn* c=laFirstColumn(uil);
  241. laUiItem* b=laBeginRow(uil,c,0,0);
  242. laShowItemFull(uil,c,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  243. laUiItem* b1=laOnConditionThat(uil,c,laGreaterThan(laPropExpression(This,"binding"),laIntExpression(-1)));
  244. laShowItemFull(uil,c,This,"binding",LA_WIDGET_INT_PLAIN,0,0,0)->Flags|=LA_UI_FLAGS_NO_LABEL|LA_TEXT_MONO;
  245. laEndCondition(uil,b1);
  246. laEndRow(uil,b);
  247. }
  248. void ourui_ToolsPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  249. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.5); cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  250. laUiItem* b1, *b2;
  251. laUiItem* cb = laShowInvisibleItem(uil,c,0,"our.tools.current_brush");
  252. #define OUR_BR b1=laBeginRow(uil,c,0,0);
  253. #define OUR_ER laEndRow(uil,b1);
  254. #define OUR_PRESSURE(a) \
  255. b2=laOnConditionThat(uil,c,laNot(laPropExpression(&cb->PP,"use_nodes")));\
  256. laShowItemFull(uil,c,&cb->PP, a,0,"text=P",0,0);\
  257. laEndCondition(uil,b2);
  258. #define OUR_TWIST(a) \
  259. b2=laOnConditionThat(uil,c,laNot(laPropExpression(&cb->PP,"use_nodes")));\
  260. laShowItemFull(uil,c,&cb->PP, a,0,"text=T",0,0);\
  261. laEndCondition(uil,b2);
  262. laShowItem(uil,c,0,"our.tool")->Flags|=LA_UI_FLAGS_EXPAND;
  263. laUiItem* bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_PAINT)));{
  264. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(&cb->PP,0));{
  265. laShowLabel(uil,cl,"Mode:",0,0);laShowItem(uil,cr,0,"our.erasing");
  266. laShowItem(uil,c,&cb->PP,"name");
  267. laShowItem(uil,cl,&cb->PP,"use_nodes");
  268. laUiItem* b3=laOnConditionThat(uil,c,laPropExpression(&cb->PP,"use_nodes"));{
  269. laShowItemFull(uil,cr,0,"LA_panel_activator",0,"text=Edit;panel_id=panel_brush_nodes",0,0);
  270. }laEndCondition(uil,b3);
  271. OUR_BR laShowItem(uil,c,&cb->PP,"size")->Expand=1; OUR_PRESSURE("pressure_size") OUR_ER
  272. OUR_BR laShowItem(uil,c,&cb->PP,"transparency")->Expand=1; OUR_PRESSURE("pressure_transparency") OUR_ER
  273. OUR_BR laShowItem(uil,c,&cb->PP,"hardness")->Expand=1; OUR_PRESSURE("pressure_hardness") OUR_ER
  274. laShowItem(uil,c,&cb->PP,"slender");
  275. OUR_BR laShowItem(uil,c,&cb->PP,"angle")->Expand=1; OUR_TWIST("twist_angle") OUR_ER;
  276. laShowItem(uil,c,&cb->PP,"dabs_per_size");
  277. OUR_BR laShowItem(uil,c,&cb->PP,"smudge")->Expand=1; OUR_PRESSURE("pressure_smudge") OUR_ER
  278. laShowItem(uil,c,&cb->PP,"smudge_resample_length");
  279. laShowItem(uil,c,&cb->PP,"gunkyness");
  280. OUR_BR laShowItem(uil,c,&cb->PP,"force")->Expand=1; OUR_PRESSURE("pressure_force") OUR_ER
  281. laShowSeparator(uil,c);
  282. laShowItem(uil,c,&cb->PP,"smoothness");
  283. laShowSeparator(uil,c);
  284. b2=laOnConditionThat(uil,c,laPropExpression(&cb->PP,"use_nodes"));
  285. laShowItem(uil,cl,&cb->PP,"c1");
  286. laShowItem(uil,cr,&cb->PP,"c1_name");
  287. laShowItem(uil,cl,&cb->PP,"c2");
  288. laShowItem(uil,cr,&cb->PP,"c2_name");
  289. laEndCondition(uil,b2);
  290. laShowSeparator(uil,c);
  291. laShowLabel(uil,c,"Visual Offset:",0,0);
  292. OUR_BR laShowItem(uil,c,&cb->PP,"visual_offset")->Expand=1;
  293. b3=laOnConditionThat(uil,c,laNot(laPropExpression(&cb->PP,"offset_follow_pen_tilt")));{
  294. laShowItem(uil,c,&cb->PP,"visual_offset_angle");
  295. }laEndCondition(uil,b3);
  296. laShowItemFull(uil,c,&cb->PP,"offset_follow_pen_tilt",0,"text=🖍",0,0);
  297. OUR_ER
  298. laShowSeparator(uil,c);
  299. laShowItem(uil,c,&cb->PP,"default_as_eraser");
  300. }laEndCondition(uil,b);
  301. laShowSeparator(uil,c);
  302. laShowLabel(uil,c,"Display:",0,0);
  303. laShowItem(uil,c,0,"our.preferences.enable_brush_circle");
  304. laShowItem(uil,c,0,"our.preferences.show_stripes");
  305. }laEndCondition(uil,bt);
  306. bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_CROP)));{
  307. laShowItemFull(uil,cl,0,"our.canvas.show_border",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0);
  308. laUiItem* b=laOnConditionThat(uil,cl,laPropExpression(0,"our.canvas.show_border"));{
  309. laShowItem(uil,cl,0,"our.canvas.border_alpha");
  310. laShowLabel(uil,cl,"Position:",0,0); laShowItem(uil,cl,0,"our.canvas.position")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  311. laShowLabel(uil,cl,"Size:",0,0); laShowItem(uil,cl,0,"our.canvas.size")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  312. laShowItem(uil,cl,0,"OUR_crop_to_ref");
  313. laUiItem* b1=laBeginRow(uil,cl,1,0);
  314. laShowItemFull(uil,cl,0,"OUR_crop_to_ref",0,"border=inner;text=Inner",0,0);
  315. laShowItemFull(uil,cl,0,"OUR_crop_to_ref",0,"border=outer;text=Outer",0,0);
  316. laEndRow(uil,b1);
  317. }laEndCondition(uil,b);
  318. laShowLabel(uil,cr,"Reference:",0,0);
  319. laShowItemFull(uil,cr,0,"our.canvas.ref_mode",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND;
  320. b=laOnConditionThat(uil,cr,laPropExpression(0,"our.canvas.ref_mode"));{
  321. laShowItem(uil,cr,0,"our.canvas.ref_alpha");
  322. laShowItem(uil,cr,0,"our.canvas.ref_category")->Flags|=LA_UI_FLAGS_EXPAND;
  323. laShowItem(uil,cr,0,"our.canvas.ref_size")->Flags|=LA_UI_FLAGS_EXPAND;
  324. laShowItem(uil,cr,0,"our.canvas.ref_orientation")->Flags|=LA_UI_FLAGS_EXPAND;
  325. laShowLabel(uil,cr,"Margins:",0,0); laShowItem(uil,cr,0,"our.canvas.ref_margins")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  326. laShowLabel(uil,cr,"Paddings:",0,0); laShowItem(uil,cr,0,"our.canvas.ref_paddings")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  327. laShowItem(uil,cr,0,"our.canvas.ref_middle_margin");
  328. }laEndCondition(uil,b);
  329. }laEndCondition(uil,bt);
  330. }
  331. void ourui_BrushesPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  332. laColumn* c=laFirstColumn(uil); laUiItem* b1, *b2;
  333. laUiItem* bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_PAINT)));{
  334. laShowItem(uil,c,0,"our.preferences.smoothness");
  335. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  336. laShowItemFull(uil,c,0,"our.tools.current_brush.size",0,0,0,0);
  337. laShowItemFull(uil,c,0,"our.tools.current_brush.size_100",0,0,0,0);
  338. laShowItemFull(uil,c,0,"our.tools.current_brush.size_10",0,0,0,0);
  339. OUR_BR laShowItemFull(uil,c,0,"our.brush_page",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_ICON;
  340. laShowSeparator(uil,c)->Expand=1; laShowItemFull(uil,c,0,"our.preferences.lock_radius",LA_WIDGET_ENUM_HIGHLIGHT,"text=Lock;",0,0); OUR_ER
  341. }laEndCondition(uil,b);
  342. b=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.brush_page"),laIntExpression(OUR_BRUSH_PAGE_LIST)));{
  343. laShowItemFull(uil,c,0,"our.tools.brushes",0,0,0,0);
  344. laShowItem(uil,c,0,"OUR_new_brush");
  345. }laElse(uil,b);{
  346. laUiItem* bui=laShowItemFull(uil,c,0,"our.tools.brushes",0,0,ourui_BrushSimple,0);
  347. bui->SymbolID=2;
  348. }laEndCondition(uil,b);
  349. }laElse(uil,bt);{
  350. laShowLabel(uil,c,"Brush tool not selected",0,0);
  351. }laEndCondition(uil,bt);
  352. }
  353. void ourui_ColorPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  354. laColumn* c=laFirstColumn(uil);
  355. laUiItem* b=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.canvas.color_interpretation"),laIntExpression(OUR_CANVAS_INTERPRETATION_SRGB)));{
  356. laShowItemFull(uil,c,0,"our.current_color",LA_WIDGET_FLOAT_COLOR_HCY,0,0,0);
  357. }laElse(uil,b);{
  358. laShowItemFull(uil,c,0,"our.current_color",LA_WIDGET_FLOAT_COLOR_HCY,0,0,0)->Flags|=LA_UI_FLAGS_COLOR_SPACE_CLAY;
  359. }laEndCondition(uil,b);
  360. b=laBeginRow(uil,c,0,0);
  361. laShowItem(uil,c,0,"our.preferences.spectral_mode");
  362. laShowItem(uil,c,0,"our.current_color")->Expand=1;
  363. laEndRow(uil,b);
  364. }
  365. void ourui_PallettesPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  366. laColumn* c=laFirstColumn(uil); laUiItem* b,*b1,*b2;
  367. b=laBeginRow(uil,c,0,0);
  368. laShowItemFull(uil,c,0,"our.tools.pallettes",LA_WIDGET_COLLECTION_SELECTOR,0,laui_IdentifierOnly,0)->Flags|=LA_UI_COLLECTION_SIMPLE_SELECTOR;
  369. laUiItem* ui=laShowInvisibleItem(uil,c,0,"our.tools.current_pallette");
  370. b1=laOnConditionThat(uil,c,laPropExpression(&ui->PP,""));{
  371. laUiItem* name=laShowItem(uil,c,&ui->PP,"name");name->Flags|=LA_UI_FLAGS_NO_DECAL; name->Expand=1;
  372. laShowItem(uil,c,0,"OUR_new_pallette")->Flags|=LA_UI_FLAGS_ICON;
  373. laEndRow(uil,b);
  374. laShowItemFull(uil,c,0,"our.tools.current_pallette",LA_WIDGET_COLLECTION_SINGLE,0,ourui_Pallette,0);
  375. b2=laBeginRow(uil,c,0,0);
  376. laShowItem(uil,c,0,"OUR_pallette_new_color")->Expand=1;
  377. laUiList* muil=laMakeMenuPage(uil,c,"☰"); laColumn* mc=laFirstColumn(muil);{
  378. laShowItem(muil,mc,0,"OUR_remove_pallette");
  379. }
  380. laEndRow(uil,b2);
  381. }laElse(uil,b1);{
  382. laShowItem(uil,c,0,"OUR_new_pallette")->Expand=1;
  383. laEndRow(uil,b);
  384. }laEndCondition(uil,b1);
  385. }
  386. void ourui_BrushPage(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  387. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.5); cl=laLeftColumn(c,0);cr=laRightColumn(c,15);
  388. laShowItemFull(uil,cr,0,"our.tools.current_brush",LA_WIDGET_COLLECTION_SELECTOR,0,laui_IdentifierOnly,0);
  389. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  390. laShowItemFull(uil,c,0,"our.tools.current_brush.rack_page",LA_WIDGET_COLLECTION_SINGLE,0,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL;
  391. }laEndCondition(uil,b);
  392. }
  393. void ourui_AboutAuthor(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  394. laColumn* c=laFirstColumn(uil); laUiItem* g; laUiList* gu; laColumn* gc;
  395. g = laMakeGroup(uil, c, "Our Paint", 0);
  396. gu = g->Page;{ gc = laFirstColumn(gu);
  397. laShowLabel(gu,gc,"Our Paint is made by Wu Yiming.",0,0)->Flags|=LA_TEXT_LINE_WRAP;
  398. laUiItem* b =laBeginRow(gu,gc,0,0);
  399. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaint;text=Our Paint blog", 0, 0);
  400. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaintlog;text=Dev log", 0, 0);
  401. laEndRow(gu,b);
  402. b=laBeginRow(gu,gc,0,0);
  403. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "icon=$;link=https://www.patreon.com/chengdulittlea;text=Donate", 0, 0);
  404. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "icon=¥;link=http://www.ChengduLittleA.com/donate;text=Donate (China)", 0, 0);
  405. laEndRow(gu,b);
  406. }
  407. g = laMakeGroup(uil, c, "Credits to Sponsors", 0);
  408. gu = g->Page;{ gc = laFirstColumn(gu);
  409. laShowLabel(gu,gc,"- Deathblood",0,0);
  410. laShowLabel(gu,gc,"- Leone Arturo",0,0);
  411. laShowLabel(gu,gc,"- 贵州混混",0,0);
  412. laShowLabel(gu,gc,"- Louis Lithium",0,0);
  413. laShowLabel(gu,gc,"- Nayeli Lafeuille",0,0);
  414. }
  415. }
  416. void ourui_AboutVersion(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  417. laColumn* c=laFirstColumn(uil); laUiItem* g; laUiList* gu; laColumn* gc;
  418. g = laMakeGroup(uil, c, "Our Paint", 0);
  419. gu = g->Page;{
  420. gc = laFirstColumn(gu); char buf[128]; sprintf(buf,"Our Paint %d.%d [%d]",OUR_VERSION_MAJOR,OUR_VERSION_MINOR,OUR_VERSION_SUB);
  421. laShowLabel(gu,gc,buf,0,0)->Flags|=LA_TEXT_MONO;
  422. laShowLabel(gu, gc, OURPAINT_GIT_BRANCH,0,0)->Flags|=LA_TEXT_MONO;
  423. #ifdef OURPAINT_GIT_HASH
  424. laShowLabel(gu, gc, OURPAINT_GIT_HASH,0,0)->Flags|=LA_TEXT_MONO;
  425. #endif
  426. laShowLabel(gu, gc, "Single canvas implementation.", 0, 0)->Flags|=LA_TEXT_MONO|LA_TEXT_LINE_WRAP;
  427. }
  428. }
  429. void ourui_AboutContent(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  430. laColumn* c=laFirstColumn(uil);
  431. laShowLabel(uil, c, "Our Paint", 0, 0);
  432. laShowLabel(uil, c, "A simple yet flexible node-based GPU painting program.", 0, 0)->Flags|=LA_TEXT_LINE_WRAP;
  433. laShowLabel(uil, c, "(C)Yiming Wu", 0, 0);
  434. }
  435. void ourui_OurPreference(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  436. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  437. laShowLabel(uil,c,"Generic:",0,0);
  438. laShowItem(uil,cl,0,"our.preferences.enable_brush_circle");
  439. laShowItem(uil,cr,0,"our.preferences.show_stripes");
  440. laShowItem(uil,cl,0,"our.preferences.lock_radius");
  441. laShowItem(uil,cr,0,"our.preferences.smoothness");
  442. laShowItem(uil,cl,0,"our.preferences.spectral_mode");
  443. laShowItem(uil,cr,0,"our.preferences.canvas_default_scale");
  444. laShowSeparator(uil,c);
  445. laShowItem(uil,cl,0,"our.preferences.allow_none_pressure");
  446. laShowItem(uil,cr,0,"our.preferences.bad_event_tolerance");
  447. laShowSeparator(uil,c);
  448. laShowLabel(uil,c,"Undo:",0,0);
  449. laShowItem(uil,c,0,"our.preferences.paint_undo_limit");
  450. laShowSeparator(uil,c);
  451. laShowLabel(uil,c,"Exporting Defaults:",0,0);
  452. laShowLabel(uil,cl,"Bit Depth:",0,0); laShowItem(uil,cr,0,"our.preferences.export_default_bit_depth");
  453. laShowLabel(uil,cl,"Color Profile:",0,0); laShowItem(uil,cr,0,"our.preferences.export_default_color_profile");
  454. laShowSeparator(uil,c);
  455. laShowLabel(uil,c,"Developer:",0,0);
  456. laShowItem(uil,cl,0,"our.preferences.show_debug_tiles");
  457. }
  458. void ourui_SplashPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  459. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  460. if(MAIN.CurrentWindow->CW>2500){
  461. laShowImage(uil,c,Our->SplashImageHigh,5)->Flags|=LA_UI_IMAGE_FULL_W;
  462. }else{
  463. laShowImage(uil,c,Our->SplashImage,5)->Flags|=LA_UI_IMAGE_FULL_W;
  464. }
  465. laUiItem* b=laBeginRow(uil,cl,0,0); laShowLabel(uil,cl,OUR_PAINT_NAME_STRING,0,0);
  466. laShowItemFull(uil, cl, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20230910202654;text=Release Notes", 0, 0);
  467. laEndRow(uil,b);
  468. laShowLabel(uil,cl,"Our Paint is a free application.",0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_LINE_WRAP|LA_UI_MIN_WIDTH;
  469. b=laBeginRow(uil,cl,0,0);
  470. laShowLabel(uil, cl, OURPAINT_GIT_BRANCH,0,0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  471. #ifdef OURPAINT_GIT_HASH
  472. laShowLabel(uil, cl, OURPAINT_GIT_HASH,0,0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  473. #endif
  474. laEndRow(uil,b);
  475. laShowLabel(uil,cl," ",0,0);
  476. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=🗩;link=http://www.ChengduLittleA.com/ourpaint;text=Our Paint blog", 0, 0);
  477. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaintlog;text=Development logs", 0, 0);
  478. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=📖;link=http://www.ChengduLittleA.com/ourpaintmanual;text=User Manual", 0, 0);
  479. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=🐞;link=https://www.wellobserve.com/repositories/chengdulittlea/OurPaint/issues;text=Report a Bug", 0, 0);
  480. laShowLabel(uil,cr," ",0,0);
  481. laShowLabel(uil,cr,"Support the development:",0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_LINE_WRAP|LA_UI_MIN_WIDTH;
  482. b=laBeginRow(uil,cr,1,0);
  483. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=$;link=https://www.patreon.com/chengdulittlea;text=Donate", 0, 0);
  484. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=¥;link=http://www.ChengduLittleA.com/donate;text=Donate (China)", 0, 0);
  485. laEndRow(uil,b);
  486. laShowLabel(uil,cl,"Cover artist:",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  487. b=laBeginRow(uil,cl,0,0);
  488. laShowLabel(uil,cl,"吴奕茗 Wu Yiming",0,0);
  489. laShowItemFull(uil, cl, 0, "LA_open_internet_link", 0, "text=Website;link=http://www.ChengduLittleA.com", 0, 0);
  490. laEndRow(uil,b);
  491. laShowLabel(uil,cl," ",0,0);
  492. b=laBeginRow(uil,cl,0,0);
  493. laShowLabel(uil, cl, "语言/Language",0,0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  494. laShowItemFull(uil, cl, 0, "la.user_preferences.enable_translation",LA_WIDGET_ENUM_HIGHLIGHT,"text=翻译/Translate",0,0);
  495. laEndRow(uil,b);
  496. laUiItem* b1=laOnConditionThat(uil, cl, laPropExpression(0, "la.user_preferences.enable_translation"));
  497. laShowItemFull(uil, cl, 0, "la.user_preferences.languages",LA_WIDGET_COLLECTION_SELECTOR,0,0,0);
  498. laEndCondition(uil,b1);
  499. }
  500. void our_EnableSplashPanel(){
  501. laEnableSplashPanel(ourui_SplashPanel,0,100,0,2000,1500,0);
  502. }
  503. void our_CanvasDrawTextures(){
  504. tnsUseImmShader; tnsEnableShaderv(T->immShader); real MultiplyColor[4];
  505. for(OurLayer* l=Our->Layers.pLast;l;l=l->Item.pPrev){
  506. if(l->Hide || l->Transparency==1) continue; real a=1-l->Transparency;
  507. if(Our->SketchMode && l->AsSketch){
  508. if(Our->SketchMode == 1){ a=1.0f; }
  509. elif(Our->SketchMode == 2){ a=0.0f; }
  510. }
  511. tnsVectorSet4(MultiplyColor,a,a,a,a); int any=0;
  512. if(l->BlendMode==OUR_BLEND_NORMAL){ glBlendFunc(GL_ONE,GL_ONE_MINUS_SRC_ALPHA); }
  513. if(l->BlendMode==OUR_BLEND_ADD){ glBlendFunc(GL_ONE,GL_ONE); }
  514. for(int row=0;row<OUR_TILES_PER_ROW;row++){
  515. if(!l->TexTiles[row]) continue;
  516. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  517. if(!l->TexTiles[row][col] || !l->TexTiles[row][col]->Texture) continue;
  518. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  519. real pad=(real)OUR_TILE_SEAM/OUR_TILE_W; int seam=OUR_TILE_SEAM;
  520. tnsDraw2DTextureArg(l->TexTiles[row][col]->Texture,sx+seam,sy+OUR_TILE_W-seam,OUR_TILE_W-seam*2,-OUR_TILE_W+seam*2,MultiplyColor,pad,pad,pad,pad);
  521. any=1;
  522. }
  523. }
  524. if(any) tnsFlush();
  525. }
  526. glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,GL_ONE,GL_ONE_MINUS_SRC_ALPHA);
  527. }
  528. void our_CanvasDrawTiles(){
  529. OurLayer* l=Our->CurrentLayer; if(!l) return;
  530. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  531. int any=0;
  532. for(int row=0;row<OUR_TILES_PER_ROW;row++){
  533. if(!l->TexTiles[row]) continue;
  534. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  535. if(!l->TexTiles[row][col] || !l->TexTiles[row][col]->Texture) continue;
  536. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  537. //tnsVertex2d(sx, sy); tnsVertex2d(sx+OUR_TILE_W,sy);
  538. //tnsVertex2d(sx+OUR_TILE_W, sy+OUR_TILE_W); tnsVertex2d(sx,sy+OUR_TILE_W);
  539. //tnsColor4dv(laAccentColor(LA_BT_NORMAL));
  540. //tnsPackAs(GL_TRIANGLE_FAN);
  541. tnsVertex2d(sx, sy); tnsVertex2d(sx+OUR_TILE_W,sy);
  542. tnsVertex2d(sx+OUR_TILE_W, sy+OUR_TILE_W); tnsVertex2d(sx,sy+OUR_TILE_W);
  543. tnsColor4dv(laAccentColor(LA_BT_TEXT));
  544. tnsPackAs(GL_LINE_LOOP);
  545. }
  546. }
  547. if(any) tnsFlush();
  548. }
  549. void our_CanvasDrawCropping(OurCanvasDraw* ocd){
  550. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  551. tnsColor4d(0,0,0,Our->BorderAlpha);
  552. tnsVertex2d(-1e6,Our->Y); tnsVertex2d(1e6,Our->Y); tnsVertex2d(-1e6,1e6); tnsVertex2d(1e6,1e6); tnsPackAs(GL_TRIANGLE_FAN);
  553. tnsVertex2d(-1e6,Our->Y); tnsVertex2d(Our->X,Our->Y); tnsVertex2d(Our->X,Our->Y-Our->H); tnsVertex2d(-1e6,Our->Y-Our->H); tnsPackAs(GL_TRIANGLE_FAN);
  554. tnsVertex2d(1e6,Our->Y); tnsVertex2d(Our->X+Our->W,Our->Y); tnsVertex2d(Our->X+Our->W,Our->Y-Our->H); tnsVertex2d(1e6,Our->Y-Our->H); tnsPackAs(GL_TRIANGLE_FAN);
  555. tnsVertex2d(-1e6,Our->Y-Our->H); tnsVertex2d(1e6,Our->Y-Our->H); tnsVertex2d(-1e6,-1e6); tnsVertex2d(1e6,-1e6); tnsPackAs(GL_TRIANGLE_FAN);
  556. if(Our->Tool==OUR_TOOL_CROP){
  557. tnsColor4dv(laAccentColor(LA_BT_TEXT));
  558. tnsVertex2d(Our->X,Our->Y); tnsVertex2d(Our->X+Our->W,Our->Y); tnsVertex2d(Our->X+Our->W,Our->Y-Our->H); tnsVertex2d(Our->X,Our->Y-Our->H);
  559. tnsLineWidth(3); tnsPackAs(GL_LINE_LOOP);
  560. tnsLineWidth(1); tnsFlush();
  561. }
  562. }
  563. void our_CanvasGetRefString(char* ref){
  564. int refs=Our->RefSize; int add=0; if(Our->ShowRef==2){ refs++; add=1; }
  565. if(Our->RefCategory==0){ sprintf(ref,"%sA%d",add?"2X":"",refs); }
  566. elif(Our->RefCategory==1){ sprintf(ref,"%sB%d",add?"2X":"",refs); }
  567. elif(Our->RefCategory==2){ sprintf(ref,"%s%dK",add?"2X":"",refs?((int)pow(2,refs-1)):0); }
  568. }
  569. #define OUR_GET_REF_SIZE(W,H) \
  570. { if(Our->RefCategory==0){ W=118.9,H=84.1; } \
  571. elif(Our->RefCategory==1){ W=141.4,H=100.0; } \
  572. elif(Our->RefCategory==2){ W=109.2,H=78.7; } \
  573. for(int i=0;i<Our->RefSize;i++){ if(W>H){ W/=2; }else{ H/=2; } } \
  574. if((Our->RefOrientation && (W>H))||((!Our->RefOrientation) && (W<H))){ real t=H; H=W; W=t; } }
  575. void our_CanvasDrawReferenceBlock(OurCanvasDraw* ocd){
  576. real W,H,W2,H2; char str[128]; our_CanvasGetRefString(str);
  577. OUR_GET_REF_SIZE(W,H); sprintf(str+strlen(str)," %dX%.dmm",(int)W*10,(int)H*10);
  578. real dpc=OUR_DPC; W*=dpc; H*=dpc; W2=W/2; H2=H/2;
  579. real LM=Our->RefMargins[0]*dpc,RM=LM,TM=Our->RefMargins[1]*dpc,BM=TM;
  580. real LP=Our->RefPaddings[0]*dpc,RP=LP,TP=Our->RefPaddings[1]*dpc,BP=TP;
  581. real MM=Our->RefMargins[2]*dpc;
  582. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  583. tnsColor4d(0,0,0,Our->RefAlpha); tnsLineWidth(3.0);
  584. tnsVertex2d(-W2,H2); tnsVertex2d(W2,H2); tnsVertex2d(W2,-H2); tnsVertex2d(-W2,-H2); tnsPackAs(GL_LINE_LOOP);
  585. if(Our->ShowRef==2){
  586. if(Our->RefOrientation){ tnsVertex2d(W2,0); tnsVertex2d(-W2,0); }
  587. else{ tnsVertex2d(0,H2); tnsVertex2d(0,-H2); }tnsPackAs(GL_LINES);
  588. }
  589. tnsColor4d(0,0,0,Our->RefAlpha*0.6); tnsLineWidth(1.0);
  590. tnsVertex2d(-W2+LM,H2-TM); tnsVertex2d(W2-LM,H2-TM); tnsVertex2d(W2-LM,-H2+BM); tnsVertex2d(-W2+LM,-H2+BM); tnsPackAs(GL_LINE_LOOP);
  591. tnsVertex2d(-W2-LP,H2+TP); tnsVertex2d(W2+LP,H2+TP); tnsVertex2d(W2+LP,-H2-BP); tnsVertex2d(-W2-LP,-H2-BP); tnsPackAs(GL_LINE_LOOP);
  592. if(Our->ShowRef==2){
  593. if(Our->RefOrientation){ tnsVertex2d(W2,-MM); tnsVertex2d(-W2,-MM); tnsVertex2d(W2,MM); tnsVertex2d(-W2,MM); }
  594. else{ tnsVertex2d(-MM,H2); tnsVertex2d(-MM,-H2); tnsVertex2d(MM,H2); tnsVertex2d(MM,-H2); }
  595. tnsPackAs(GL_LINES);
  596. }
  597. real tcolor[4]={0,0,0,Our->RefAlpha}; real th=ocd->Base.ZoomX*1.5;
  598. tnsLineWidth(3);
  599. tnsDrawStringLCD(str,0,tcolor,-W2,W2,H2+th*LA_RH,LA_TEXT_LCD_16|LA_TEXT_REVERT_Y,th);
  600. tnsLineWidth(1);
  601. tnsFlush();
  602. }
  603. void our_CanvasDrawBrushCircle(OurCanvasDraw* ocd){
  604. real colorw[4]={1,1,1,0.5}; real colork[4]={0,0,0,0.5};
  605. if(Our->Tool==OUR_TOOL_MOVE || (Our->Tool==OUR_TOOL_CROP && Our->ShowBorder)){
  606. tnsUseImmShader();
  607. tnsDrawStringM("🤚",0,colork,ocd->Base.OnX-LA_RH,ocd->Base.OnX+10000,ocd->Base.OnY-LA_RH,0);
  608. tnsDrawStringM("🤚",0,colorw,ocd->Base.OnX-2-LA_RH,ocd->Base.OnX+10000,ocd->Base.OnY-2-LA_RH,0);
  609. return;
  610. }
  611. real v[96]; real Radius=(Our->CurrentBrush?Our->CurrentBrush->Size:100.0f)/ocd->Base.ZoomX, gap=rad(2);
  612. tnsUseImmShader();tnsUseNoTexture(); tnsLineWidth(1.5);
  613. OurLayer* l = Our->CurrentLayer;
  614. if (!Our->CurrentBrush || !l || l->Hide || l->Transparency==1 || l->Lock ||
  615. (l->AsSketch && Our->SketchMode==2)|| ocd->Base.SelectThrough || (Our->Tool==OUR_TOOL_CROP && !Our->ShowBorder)){
  616. real d = Radius * 0.707;
  617. tnsColor4d(0,0,0,0.5);
  618. tnsVertex2d(ocd->Base.OnX-d+1, ocd->Base.OnY+d-1); tnsVertex2d(ocd->Base.OnX+d+1, ocd->Base.OnY-d-1);
  619. tnsVertex2d(ocd->Base.OnX-d+1, ocd->Base.OnY-d-1); tnsVertex2d(ocd->Base.OnX+d+1, ocd->Base.OnY+d-1);
  620. tnsPackAs(GL_LINES);
  621. tnsColor4d(1,1,1,0.5);
  622. tnsVertex2d(ocd->Base.OnX-d, ocd->Base.OnY+d-1); tnsVertex2d(ocd->Base.OnX+d, ocd->Base.OnY-d-1);
  623. tnsVertex2d(ocd->Base.OnX-d, ocd->Base.OnY-d-1); tnsVertex2d(ocd->Base.OnX+d, ocd->Base.OnY+d-1);
  624. tnsPackAs(GL_LINES);
  625. tnsLineWidth(1.0);
  626. return;
  627. }
  628. if(Our->ShowBrushName){
  629. tnsDrawStringAuto(SSTR(Our->CurrentBrush->Name),colork,ocd->Base.OnX-10000,ocd->Base.OnX-LA_RH,ocd->Base.OnY-LA_RH,LA_TEXT_ALIGN_RIGHT);
  630. tnsDrawStringAuto(SSTR(Our->CurrentBrush->Name),colorw,ocd->Base.OnX-10000,ocd->Base.OnX-LA_RH-2,ocd->Base.OnY-2-LA_RH,LA_TEXT_ALIGN_RIGHT);
  631. tnsUseNoTexture();
  632. }
  633. tnsMakeCircle2d(v,48,ocd->Base.OnX,ocd->Base.OnY,Radius+0.5,0);
  634. tnsColor4d(1,1,1,0.5); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  635. tnsMakeCircle2d(v,48,ocd->Base.OnX,ocd->Base.OnY,Radius-0.5,0);
  636. tnsColor4d(0,0,0,0.5); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  637. if(Our->EventHasTwist){
  638. tnsColor4d(0,0,0,0.5);
  639. tnsVertex2d(ocd->Base.OnX+sin(Our->EventTwistAngle+gap)*Radius,ocd->Base.OnY+cos(Our->EventTwistAngle+gap)*Radius);
  640. tnsVertex2d(ocd->Base.OnX-sin(Our->EventTwistAngle-gap)*Radius,ocd->Base.OnY-cos(Our->EventTwistAngle-gap)*Radius);
  641. tnsVertex2d(ocd->Base.OnX+sin(Our->EventTwistAngle-gap)*Radius,ocd->Base.OnY+cos(Our->EventTwistAngle-gap)*Radius);
  642. tnsVertex2d(ocd->Base.OnX-sin(Our->EventTwistAngle+gap)*Radius,ocd->Base.OnY-cos(Our->EventTwistAngle+gap)*Radius);
  643. tnsPackAs(GL_LINES);
  644. tnsColor4d(1,1,1,0.5);
  645. tnsVertex2d(ocd->Base.OnX+sin(Our->EventTwistAngle)*Radius,ocd->Base.OnY+cos(Our->EventTwistAngle)*Radius);
  646. tnsVertex2d(ocd->Base.OnX-sin(Our->EventTwistAngle)*Radius,ocd->Base.OnY-cos(Our->EventTwistAngle)*Radius);
  647. tnsPackAs(GL_LINES);
  648. }
  649. if(Our->CurrentBrush && Our->CurrentBrush->VisualOffset > 1e-4){
  650. tnsMakeCircle2d(v,48,ocd->PointerX,ocd->PointerY,Radius/4+0.5,0);
  651. tnsColor4d(1,1,1,0.5); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  652. tnsMakeCircle2d(v,48,ocd->PointerX,ocd->PointerY,Radius/4-0.5,0);
  653. tnsColor4d(0,0,0,0.5); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  654. tnsVertex2d(ocd->PointerX,ocd->PointerY);
  655. tnsVertex2d(ocd->Base.OnX,ocd->Base.OnY);
  656. real vcolor[8]={1,1,1,0.3,0,0,0,0.5};
  657. tnsColorArray4d(vcolor,2); tnsPackAs(GL_LINES);
  658. }
  659. tnsLineWidth(1.0);
  660. tnsFlush();
  661. }
  662. void our_CanvasDrawInit(laUiItem* ui){
  663. ui->Extra=memAcquireHyper(sizeof(OurCanvasDraw));
  664. laFirstColumn(laAddTabPage(ui, "New Group"));
  665. OurCanvasDraw* ocd=ui->Extra;
  666. ocd->Base.ParentUi=ui;
  667. ocd->Base.HeightCoeff = 10;
  668. ocd->Base.ZoomX = 1;
  669. ocd->Base.ZoomY = 1;
  670. ocd->Base.ImageDrawAlpha = 1;
  671. ocd->Base.ImageDrawBorder = 1;
  672. ocd->Base.AdaptiveLineWidth = 1;
  673. ocd->Base.ClearBackground = 1;
  674. logPrintNew("Our Paint initialization:\n");
  675. int work_grp_cnt[3];
  676. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 0, &work_grp_cnt[0]);
  677. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 1, &work_grp_cnt[1]);
  678. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 2, &work_grp_cnt[2]);
  679. logPrint("GPU max global (total) work group counts x:%i y:%i z:%i\n", work_grp_cnt[0], work_grp_cnt[1], work_grp_cnt[2]);
  680. int work_grp_size[3];
  681. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 0, &work_grp_size[0]);
  682. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 1, &work_grp_size[1]);
  683. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 2, &work_grp_size[2]);
  684. logPrint("GPU max local (in one shader) work group sizes x:%i y:%i z:%i\n", work_grp_size[0], work_grp_size[1], work_grp_size[2]);
  685. int work_grp_inv;
  686. glGetIntegerv(GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS, &work_grp_inv);
  687. logPrint("GPU max local work group invocations %i\n", work_grp_inv);
  688. }
  689. void our_CanvasDrawCanvas(laBoxedTheme *bt, OurPaint *unused_c, laUiItem* ui){
  690. OurCanvasDraw* ocd=ui->Extra; OurPaint* oc=ui->PP.EndInstance; laCanvasExtra*e=&ocd->Base;
  691. int W, H; W = ui->R - ui->L; H = ui->B - ui->U;
  692. tnsFlush();
  693. if (!e->OffScr || e->OffScr->pColor[0]->Height != ui->B - ui->U || e->OffScr->pColor[0]->Width != ui->R - ui->L){
  694. if (e->OffScr) tnsDelete2DOffscreen(e->OffScr);
  695. e->OffScr = tnsCreate2DOffscreen(GL_RGBA16F, W, H, 0, 0, 0);
  696. }
  697. //our_CANVAS_TEST(bt,ui);
  698. //glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,GL_ONE,GL_ONE);
  699. tnsDrawToOffscreen(e->OffScr,1,0);
  700. tnsViewportWithScissor(0, 0, W, H);
  701. tnsResetViewMatrix();tnsResetModelMatrix();tnsResetProjectionMatrix();
  702. tnsOrtho(e->PanX - W * e->ZoomX / 2, e->PanX + W * e->ZoomX / 2, e->PanY - e->ZoomY * H / 2, e->PanY + e->ZoomY * H / 2, 100, -100);
  703. tnsClearColor(LA_COLOR3(Our->BackgroundColor),1); tnsClearAll();
  704. if(Our->ShowTiles){ our_CanvasDrawTiles(); }
  705. our_CanvasDrawTextures();
  706. if(Our->ShowBorder){ our_CanvasDrawCropping(ocd); }
  707. if(Our->ShowRef){ our_CanvasDrawReferenceBlock(ocd); }
  708. }
  709. void our_CanvasDrawOverlay(laUiItem* ui,int h){
  710. laCanvasExtra *e = ui->Extra; OurCanvasDraw* ocd=e;
  711. laBoxedTheme *bt = (*ui->Type->Theme);
  712. tnsUseImmShader(); tnsEnableShaderv(T->immShader); tnsUniformColorMode(T->immShader,2);
  713. tnsUniformOutputColorSpace(T->immShader, 0);
  714. if(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB){ tnsUniformInputColorSpace(T->immShader, 0); }
  715. elif(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY){ tnsUniformInputColorSpace(T->immShader, 1); }
  716. tnsDraw2DTextureDirectly(e->OffScr->pColor[0], ui->L, ui->U, ui->R - ui->L, ui->B - ui->U);
  717. tnsFlush();
  718. tnsUniformColorMode(T->immShader, 0); tnsUniformInputColorSpace(T->immShader, 0); tnsUniformOutputColorSpace(T->immShader, MAIN.CurrentWindow->OutputColorSpace);
  719. if(Our->EnableBrushCircle && (!ocd->HideBrushCircle)){ our_CanvasDrawBrushCircle(ocd); }
  720. if(!(ui->Flags&LA_UI_FLAGS_NO_OVERLAY)){
  721. real colorw[4]={1,1,1,0.5}; real colork[4]={0,0,0,0.5};
  722. if(Our->ShowStripes){ int UH=TNS_MIN2(LA_RH,(ui->B-ui->U)/8); real varr[8]; real carr[16];
  723. tnsUseNoTexture();
  724. tnsVectorSet4(&varr[0], ui->L,ui->B-UH,ui->R,ui->B-UH);
  725. tnsVectorSet4(&varr[4], ui->R,ui->B-2*UH,ui->L,ui->B-2*UH);
  726. tnsVectorSet4(&carr[0], 0,0,0,1); tnsVectorSet4(&carr[4], 1,1,1,1);
  727. tnsVectorSet4(&carr[8], 1,1,1,1); tnsVectorSet4(&carr[12], 0,0,0,1);
  728. tnsVertexArray2d(varr,4); tnsColorArray4d(carr,4);
  729. tnsPackAs(GL_TRIANGLE_FAN);
  730. tnsVertex2d(ui->L,ui->B); tnsVertex2d(ui->R,ui->B); tnsVertex2d(ui->R,ui->B-UH); tnsVertex2d(ui->L,ui->B-UH);
  731. tnsColor4d(0,0,0,1); tnsPackAs(GL_TRIANGLE_FAN);
  732. tnsVertex2d(ui->L,ui->B-UH*2); tnsVertex2d(ui->R,ui->B-UH*2); tnsVertex2d(ui->R,ui->B-UH*3); tnsVertex2d(ui->L,ui->B-UH*3);
  733. tnsColor4d(1,1,1,1); tnsPackAs(GL_TRIANGLE_FAN);
  734. real ca[16]={0,0,0,1,0.5,0.5,0.5,1,1,1,1,1,0.5,0.5,0.5,1};
  735. int count=(ui->R-ui->L)/UH; real sp=(real)(ui->R-ui->L)/(real)count;
  736. for(int i=0;i<count;i++){ real sl=sp*i+ui->L;
  737. tnsVertex2d(sl,ui->U); tnsVertex2d(sl+sp,ui->U); tnsVertex2d(sl+sp,ui->U+UH); tnsVertex2d(sl,ui->U+UH);
  738. tnsColor4dv(&ca[(i%4)*4]); tnsPackAs(GL_TRIANGLE_FAN);
  739. }
  740. }
  741. char buf[128]; sprintf(buf,"%.1lf%%",100.0f/e->ZoomX);
  742. tnsDrawStringAuto(buf,colork,ui->L+bt->LM+1,ui->R-bt->RM,ui->B-LA_RH-bt->BM+1,0);
  743. tnsDrawStringAuto(buf,colorw,ui->L+bt->LM,ui->R-bt->RM,ui->B-LA_RH-bt->BM,0);
  744. }
  745. la_CanvasDefaultOverlay(ui, h);
  746. }
  747. void our_GetBrushOffset(OurCanvasDraw* ocd_if_scale, OurBrush*b, real event_orientation, real*x, real*y){
  748. *x=*y=0;
  749. real offx=0,offy=0;
  750. if(b && b->VisualOffset>1e-4){ real offset=b->VisualOffset;
  751. real orientation = b->OffsetFollowPenTilt?event_orientation:b->VisualOffsetAngle;
  752. real zoom=ocd_if_scale?ocd_if_scale->Base.ZoomX:1;
  753. offx = cos(orientation)*zoom*LA_RH*offset; offy = sin(orientation)*zoom*LA_RH*offset * (ocd_if_scale?-1:1);
  754. }
  755. *x=offx; *y=offy;
  756. }
  757. int ourextramod_Canvas(laOperator *a, laEvent *e){
  758. laUiItem *ui = a->Instance; OurCanvasDraw* ocd=ui->Extra;
  759. if(ocd->Base.SelectThrough && e->type==LA_L_MOUSE_DOWN) return LA_RUNNING;
  760. if(Our->EnableBrushCircle && ((e->type&LA_MOUSE_EVENT)||(e->type&LA_KEYBOARD_EVENT))){
  761. ocd->PointerX = e->x; ocd->PointerY = e->y; real offx,offy;
  762. our_GetBrushOffset(0,Our->CurrentBrush,e->Orientation,&offx,&offy);
  763. ocd->Base.OnX=e->x-offx; ocd->Base.OnY=e->y-offy;
  764. laRedrawCurrentPanel(); Our->EventHasTwist=e->HasTwist; Our->EventTwistAngle=e->Twist;
  765. }
  766. return LA_RUNNING_PASS;
  767. }
  768. OurLayer* our_NewLayer(char* name){
  769. OurLayer* l=memAcquire(sizeof(OurLayer)); strSafeSet(&l->Name,name); lstPushItem(&Our->Layers, l);
  770. memAssignRef(Our, &Our->CurrentLayer, l);
  771. return l;
  772. }
  773. void our_DuplicateLayerContent(OurLayer* to, OurLayer* from){
  774. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!from->TexTiles[row]) continue;
  775. to->TexTiles[row]=memAcquire(sizeof(OurTexTile*)*OUR_TILES_PER_ROW);
  776. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!from->TexTiles[row][col] || !from->TexTiles[row][col]->Texture) continue;
  777. to->TexTiles[row][col]=memAcquire(sizeof(OurTexTile));
  778. OurTexTile* tt=to->TexTiles[row][col],*ft=from->TexTiles[row][col];
  779. memcpy(tt,ft,sizeof(OurTexTile));
  780. tt->CopyBuffer=0;
  781. tt->Texture=tnsCreate2DTexture(GL_RGBA16,OUR_TILE_W,OUR_TILE_W,0);
  782. int bufsize=sizeof(uint16_t)*OUR_TILE_W*OUR_TILE_W*4;
  783. tt->FullData=malloc(bufsize);
  784. ft->Data=malloc(bufsize); int width=OUR_TILE_W;
  785. tnsBindTexture(ft->Texture); glPixelStorei(GL_PACK_ALIGNMENT, 2);
  786. glGetTextureSubImage(ft->Texture->GLTexHandle, 0, 0, 0, 0, width, width,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, ft->Data);
  787. tnsBindTexture(tt->Texture);
  788. glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, width, GL_RGBA, GL_UNSIGNED_SHORT, ft->Data);
  789. free(ft->Data); ft->Data=0;
  790. }
  791. }
  792. }
  793. void ourbeforefree_Layer(OurLayer* l){
  794. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!l->TexTiles[row]) continue;
  795. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!l->TexTiles[row][col]) continue;
  796. if(l->TexTiles[row][col]->Texture) tnsDeleteTexture(l->TexTiles[row][col]->Texture); l->TexTiles[row][col]->Texture=0;
  797. if(l->TexTiles[row][col]->Data) free(l->TexTiles[row][col]->Data); l->TexTiles[row][col]->Data=0;
  798. if(l->TexTiles[row][col]->FullData) free(l->TexTiles[row][col]->FullData); l->TexTiles[row][col]->FullData=0;
  799. if(l->TexTiles[row][col]->CopyBuffer) free(l->TexTiles[row][col]->CopyBuffer); l->TexTiles[row][col]->CopyBuffer=0;
  800. memFree(l->TexTiles[row][col]);
  801. }
  802. memFree(l->TexTiles[row]); l->TexTiles[row]=0;
  803. }
  804. }
  805. void our_RemoveLayer(OurLayer* l, int cleanup){
  806. strSafeDestroy(&l->Name);
  807. if(Our->CurrentLayer==l){ OurLayer* nl=l->Item.pPrev?l->Item.pPrev:l->Item.pNext; memAssignRef(Our, &Our->CurrentLayer, nl); }
  808. lstRemoveItem(&Our->Layers, l);
  809. if(cleanup) ourbeforefree_Layer(l);
  810. memLeave(l);
  811. }
  812. int our_MergeLayer(OurLayer* l){
  813. OurLayer* ol=l->Item.pNext; if(!ol) return 0; int xmin=INT_MAX,xmax=-INT_MAX,ymin=INT_MAX,ymax=-INT_MAX; int seam=OUR_TILE_SEAM;
  814. glUseProgram(Our->CompositionProgram);
  815. glUniform1i(Our->uBlendMode, l->BlendMode);
  816. glUniform1f(Our->uAlphaTop, 1-l->Transparency);
  817. glUniform1f(Our->uAlphaBottom, 1-ol->Transparency);
  818. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!l->TexTiles[row]) continue;// Should not happen.
  819. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!l->TexTiles[row][col]) continue; OurTexTile*t=l->TexTiles[row][col];
  820. if(!t->Texture) continue;
  821. int tl,tr,tu,tb; our_LayerEnsureTileDirect(ol,row,col);
  822. OurTexTile*ot=ol->TexTiles[row][col];
  823. if((!ot) || (!ot->Texture)) our_LayerEnsureTileDirect(ol,row,col);
  824. glBindImageTexture(0, t->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  825. glBindImageTexture(1, ot->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  826. glDispatchCompute(32,32,1);
  827. xmin=TNS_MIN2(xmin,t->l+seam);xmax=TNS_MAX2(xmax,t->r-seam); ymin=TNS_MIN2(ymin,t->b+seam);ymax=TNS_MAX2(ymax,t->u-seam);
  828. }
  829. }
  830. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  831. if(xmin>xmax||ymin>ymax) return 0;
  832. our_RecordUndo(l,xmin,xmax,ymin,ymax,1,0);
  833. our_RecordUndo(ol,xmin,xmax,ymin,ymax,1,0);
  834. our_RemoveLayer(l,0);
  835. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");
  836. laPushDifferences("Merge layers",0);
  837. return 1;
  838. }
  839. OurBrush* our_NewBrush(char* name, real Size, real Hardness, real DabsPerSize, real Transparency, real Smudge, real SmudgeResampleLength,
  840. int PressureSize, int PressureHardness, int PressureTransparency, int PressureSmudge){
  841. OurBrush* b=memAcquireHyper(sizeof(OurBrush)); strSafeSet(&b->Name,name); lstAppendItem(&Our->Brushes, b);
  842. b->Size=Size; b->Hardness=Hardness; b->DabsPerSize=DabsPerSize; b->Transparency=Transparency; b->Smudge=Smudge;
  843. b->PressureHardness=PressureHardness; b->PressureSize=PressureSize; b->PressureTransparency=PressureTransparency; b->PressureSmudge=PressureSmudge;
  844. b->SmudgeResampleLength = SmudgeResampleLength;
  845. memAssignRef(Our, &Our->CurrentBrush, b);
  846. b->Rack=memAcquire(sizeof(laRackPage)); b->Rack->RackType=LA_RACK_TYPE_DRIVER;
  847. b->Binding=-1;
  848. b->PressureForce=1; b->Force=1; b->VisualOffsetAngle=TNS_PI/4;
  849. return b;
  850. }
  851. void our_RemoveBrush(OurBrush* b){
  852. strSafeDestroy(&b->Name); strSafeDestroy(&b->Custom1Name); strSafeDestroy(&b->Custom2Name);
  853. if(Our->CurrentBrush==b){ OurBrush* nb=b->Item.pPrev?b->Item.pPrev:b->Item.pNext; memAssignRef(Our, &Our->CurrentBrush, nb); }
  854. lstRemoveItem(&Our->Brushes, b);
  855. memLeave(b->Rack); b->Rack=0;
  856. memLeave(b);
  857. }
  858. OurBrush* our_DuplicateBrush(OurBrush* b){
  859. OurBrush* nb=memAcquireHyper(sizeof(OurBrush));
  860. memcpy(nb,b,sizeof(OurBrush)); nb->Binding=-1; nb->Name=0; strSafePrint(&nb->Name,"%s Copy",b->Name?b->Name->Ptr:"New Brush");
  861. nb->Rack=laDuplicateRackPage(0,b->Rack);
  862. nb->Item.pNext=nb->Item.pPrev=0;
  863. lstInsertItemAfter(&Our->Brushes,nb,b);
  864. memAssignRef(Our, &Our->CurrentBrush, nb);
  865. return nb;
  866. }
  867. int our_BufferAnythingVisible(uint16_t* buf, int elemcount){
  868. for(int i=0;i<elemcount;i++){
  869. uint16_t* rgba=&buf[i*4]; if(rgba[3]) return 1;
  870. }
  871. return 0;
  872. }
  873. void our_TileEnsureUndoBuffer(OurTexTile* t, real xmin,real xmax, real ymin,real ymax,int OnlyUpdateLocal){
  874. if(!t->Texture) return;
  875. if(OnlyUpdateLocal){
  876. t->cl=0;t->cr=OUR_TILE_W;t->cu=OUR_TILE_W;t->cb=0;
  877. }else{
  878. int _l=floor(xmin),_r=ceil(xmax),_u=ceil(ymax),_b=floor(ymin);
  879. if(t->CopyBuffer) free(t->CopyBuffer); t->CopyBuffer=0; //shouldn't happen
  880. if(_l>=t->r || _r<t->l || _b>=t->u || _u<t->b || _l==_r || _u==_b) return;
  881. t->cl=TNS_MAX2(_l,t->l)-t->l;t->cr=TNS_MIN2(_r,t->r)-t->l;t->cu=TNS_MIN2(_u,t->u)-t->b;t->cb=TNS_MAX2(_b,t->b)-t->b;
  882. }
  883. int rows=t->cu-t->cb,cols=t->cr-t->cl;
  884. int bufsize=cols*4*rows*sizeof(uint16_t);
  885. t->CopyBuffer=calloc(1,bufsize);
  886. for(int row=0;row<rows;row++){
  887. memcpy(&t->CopyBuffer[row*cols*4],&t->FullData[((+row+t->cb)*OUR_TILE_W+t->cl)*4],sizeof(uint16_t)*4*cols);
  888. }
  889. uint16_t* temp=malloc(bufsize);
  890. tnsBindTexture(t->Texture);
  891. glGetTextureSubImage(t->Texture->GLTexHandle, 0, t->cl, t->cb, 0, cols,rows,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, temp);
  892. for(int row=0;row<rows;row++){
  893. memcpy(&t->FullData[((+row+t->cb)*OUR_TILE_W+t->cl)*4],&temp[row*cols*4],sizeof(uint16_t)*4*cols);
  894. }
  895. free(temp);
  896. }
  897. void our_TileSwapBuffers(OurTexTile* t, uint16_t* data, int IsRedo, int l, int r, int u, int b){
  898. int rows=u-b,cols=r-l; int bufsize=rows*cols*sizeof(uint16_t)*4;
  899. uint16_t* temp=malloc(bufsize);
  900. memcpy(temp,data,bufsize);
  901. for(int row=0;row<rows;row++){
  902. memcpy(&data[row*cols*4],&t->FullData[((+row+b)*OUR_TILE_W+l)*4],sizeof(uint16_t)*4*cols);
  903. memcpy(&t->FullData[((+row+b)*OUR_TILE_W+l)*4],&temp[row*cols*4],sizeof(uint16_t)*4*cols);
  904. }
  905. tnsBindTexture(t->Texture);
  906. glGetError();
  907. uint16_t* use_data=temp;
  908. if(IsRedo){ use_data=data; }
  909. glTexSubImage2D(GL_TEXTURE_2D, 0, l, b, cols,rows,GL_RGBA,GL_UNSIGNED_SHORT,use_data);
  910. free(temp);
  911. }
  912. void ourundo_Tiles(OurUndo* undo){
  913. for(OurUndoTile* ut=undo->Tiles.pFirst;ut;ut=ut->Item.pNext){
  914. our_LayerEnsureTileDirect(undo->Layer,ut->row,ut->col);
  915. our_TileSwapBuffers(undo->Layer->TexTiles[ut->row][ut->col], ut->CopyData, 0, ut->l, ut->r, ut->u, ut->b);
  916. }
  917. laNotifyUsers("our.canvas");
  918. }
  919. void ourredo_Tiles(OurUndo* undo){
  920. for(OurUndoTile* ut=undo->Tiles.pFirst;ut;ut=ut->Item.pNext){
  921. our_LayerEnsureTileDirect(undo->Layer,ut->row,ut->col);
  922. our_TileSwapBuffers(undo->Layer->TexTiles[ut->row][ut->col], ut->CopyData, 0, ut->l, ut->r, ut->u, ut->b);
  923. }
  924. laNotifyUsers("our.canvas");
  925. }
  926. void ourundo_Free(OurUndo* undo,int FromLeft){
  927. OurUndoTile* ut;
  928. while(ut=lstPopItem(&undo->Tiles)){ free(ut->CopyData); memFree(ut); }
  929. memFree(undo);
  930. }
  931. #define OUR_XXYY_TO_COL_ROW_RANGE \
  932. l=(int)(floor(OUR_TILE_CTR+(xmin-OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  933. r=(int)(floor(OUR_TILE_CTR+(xmax+OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  934. u=(int)(floor(OUR_TILE_CTR+(ymax+OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  935. b=(int)(floor(OUR_TILE_CTR+(ymin-OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  936. TNS_CLAMP(l,0,OUR_TILES_PER_ROW-1); TNS_CLAMP(r,0,OUR_TILES_PER_ROW-1); TNS_CLAMP(u,0,OUR_TILES_PER_ROW-1); TNS_CLAMP(b,0,OUR_TILES_PER_ROW-1);
  937. #define OUR_XXYY_TO_COL_ROW_ALIGNED \
  938. l=(int)(floor(OUR_TILE_CTR+(xmin)/OUR_TILE_W_USE+0.5));\
  939. r=(int)(floor(OUR_TILE_CTR+(xmax-1)/OUR_TILE_W_USE+0.5));\
  940. u=(int)(floor(OUR_TILE_CTR+(ymax-1)/OUR_TILE_W_USE+0.5));\
  941. b=(int)(floor(OUR_TILE_CTR+(ymin)/OUR_TILE_W_USE+0.5));\
  942. TNS_CLAMP(l,0,OUR_TILES_PER_ROW-1); TNS_CLAMP(r,0,OUR_TILES_PER_ROW-1); TNS_CLAMP(u,0,OUR_TILES_PER_ROW-1); TNS_CLAMP(b,0,OUR_TILES_PER_ROW-1);
  943. void our_RecordUndo(OurLayer* ol, real xmin,real xmax, real ymin,real ymax,int Aligned,int Push){
  944. if(xmax<xmin || ymax<ymin) return;
  945. int l,r,u,b;
  946. if(Aligned){ OUR_XXYY_TO_COL_ROW_ALIGNED }else{ OUR_XXYY_TO_COL_ROW_RANGE; }
  947. OurUndo* undo=memAcquire(sizeof(OurUndo)); undo->Layer=ol;
  948. for(int row=b;row<=u;row++){ if(!ol->TexTiles[row]) continue;// Should not happen.
  949. for(int col=l;col<=r;col++){ if(!ol->TexTiles[row][col]) continue; OurTexTile*t=ol->TexTiles[row][col];
  950. our_TileEnsureUndoBuffer(t,xmin,xmax,ymin,ymax,0);
  951. if(!t->CopyBuffer) continue;
  952. OurUndoTile* ut=memAcquire(sizeof(OurUndoTile));
  953. ut->l=t->cl; ut->r=t->cr; ut->u=t->cu; ut->b=t->cb;
  954. ut->CopyData=t->CopyBuffer; t->CopyBuffer=0;
  955. ut->col=col;ut->row=row;
  956. lstAppendItem(&undo->Tiles,ut);
  957. }
  958. }
  959. if(!undo->Tiles.pFirst){ memFree(undo); return; /*unlikely;*/ }
  960. laFreeNewerDifferences();
  961. laRecordCustomDifferences(undo,ourundo_Tiles,ourredo_Tiles,ourundo_Free);
  962. if(Push){ laPushDifferences("Paint",0); laFreeOlderDifferences(Our->PaintUndoLimit); }
  963. }
  964. void our_LayerRefreshLocal(OurLayer* ol){
  965. //OurUndo* undo=memAcquire(sizeof(OurUndo)); undo->Layer=ol;
  966. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  967. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue; OurTexTile*t=ol->TexTiles[row][col];
  968. our_TileEnsureUndoBuffer(t,0,0,0,0,1);
  969. }
  970. }
  971. //if(!undo->Tiles.pFirst){ memFree(undo); return; /*unlikely;*/ }
  972. //laFreeNewerDifferences();
  973. //laRecordCustomDifferences(undo,ourundo_Tiles,ourredo_Tiles,ourundo_Free);
  974. //if(Push){ laPushDifferences("Loaded",0); }
  975. }
  976. void our_LayerEnsureTileDirect(OurLayer* ol, int row, int col){
  977. if(!ol->TexTiles[row]){ol->TexTiles[row]=memAcquireSimple(sizeof(OurTexTile*)*OUR_TILES_PER_ROW);}
  978. if(!ol->TexTiles[row][col]) ol->TexTiles[row][col]=memAcquireSimple(sizeof(OurTexTile));
  979. OurTexTile*t=ol->TexTiles[row][col];
  980. if(t->Texture) return;
  981. t->Texture=tnsCreate2DTexture(GL_RGBA16,OUR_TILE_W,OUR_TILE_W,0);
  982. int sx=((real)col-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE,sy=((real)row-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE;
  983. t->l=sx-OUR_TILE_SEAM,t->b=sy-OUR_TILE_SEAM; t->r=t->l+OUR_TILE_W; t->u=t->b+OUR_TILE_W;
  984. uint16_t initColor[]={0,0,0,0};
  985. glClearTexImage(t->Texture->GLTexHandle, 0, GL_RGBA, GL_UNSIGNED_SHORT, 0);
  986. t->FullData=calloc(OUR_TILE_W*4,OUR_TILE_W*sizeof(uint16_t));
  987. }
  988. void our_LayerEnsureTiles(OurLayer* ol, real xmin,real xmax, real ymin,real ymax, int Aligned, int *tl, int *tr, int* tu, int* tb){
  989. int l,r,u,b;
  990. if(Aligned){ OUR_XXYY_TO_COL_ROW_ALIGNED }else{ OUR_XXYY_TO_COL_ROW_RANGE; }
  991. for(int row=b;row<=u;row++){
  992. for(int col=l;col<=r;col++){
  993. our_LayerEnsureTileDirect(ol,row,col);
  994. }
  995. }
  996. *tl=l; *tr=r; *tu=u; *tb=b;
  997. }
  998. void our_TileTextureToImage(OurTexTile* ot, int SX, int SY, int composite, int BlendMode, real alpha){
  999. if(!ot->Texture) return;
  1000. int bufsize=sizeof(uint16_t)*OUR_TILE_W_USE*OUR_TILE_W_USE*4;
  1001. ot->Data=malloc(bufsize); int seam=OUR_TILE_SEAM; int width=OUR_TILE_W_USE;
  1002. tnsBindTexture(ot->Texture); glPixelStorei(GL_PACK_ALIGNMENT, 2);
  1003. glGetTextureSubImage(ot->Texture->GLTexHandle, 0, seam, seam, 0, width, width,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, ot->Data);
  1004. if(composite){
  1005. for(int row=0;row<OUR_TILE_W_USE;row++){
  1006. for(int col=0;col<OUR_TILE_W_USE;col++){
  1007. if(BlendMode==OUR_BLEND_NORMAL){
  1008. our_CanvasAlphaMix(&Our->ImageBuffer[((int64_t)(SY+row)*Our->ImageW+SX+col)*4], &ot->Data[(row*OUR_TILE_W_USE+col)*4],alpha);
  1009. }elif(BlendMode==OUR_BLEND_ADD){
  1010. our_CanvasAdd(&Our->ImageBuffer[((int64_t)(SY+row)*Our->ImageW+SX+col)*4], &ot->Data[(row*OUR_TILE_W_USE+col)*4],alpha);
  1011. }
  1012. }
  1013. }
  1014. }else{
  1015. for(int row=0;row<OUR_TILE_W_USE;row++){
  1016. memcpy(&Our->ImageBuffer[((int64_t)(SY+row)*Our->ImageW+SX)*4],&ot->Data[(row*OUR_TILE_W_USE)*4],sizeof(uint16_t)*4*OUR_TILE_W_USE);
  1017. }
  1018. }
  1019. free(ot->Data); ot->Data=0;
  1020. }
  1021. void our_TileImageToTexture(OurTexTile* ot, int SX, int SY){
  1022. if(!ot->Texture) return;
  1023. int pl=(SX!=0)?OUR_TILE_SEAM:0, pr=((SX+OUR_TILE_W_USE)!=Our->ImageW)?OUR_TILE_SEAM:0;
  1024. int pu=(SY!=0)?OUR_TILE_SEAM:0, pb=((SY+OUR_TILE_W_USE)!=Our->ImageH)?OUR_TILE_SEAM:0;
  1025. int bufsize=sizeof(uint16_t)*(OUR_TILE_W+pl+pr)*(OUR_TILE_W+pu+pb)*4;
  1026. ot->Data=malloc(bufsize); int width=OUR_TILE_W_USE+pl+pr, height=OUR_TILE_W_USE+pu+pb;
  1027. for(int row=0;row<height;row++){
  1028. memcpy(&ot->Data[((row)*width)*4],&Our->ImageBuffer[((int64_t)(SY+row-pu)*Our->ImageW+SX-pl)*4],sizeof(uint16_t)*4*width);
  1029. }
  1030. if(!our_BufferAnythingVisible(ot->Data, bufsize/sizeof(uint16_t)/4)){ tnsDeleteTexture(ot->Texture); ot->Texture=0; }
  1031. else{
  1032. tnsBindTexture(ot->Texture);
  1033. glTexSubImage2D(GL_TEXTURE_2D, 0, OUR_TILE_SEAM-pl, OUR_TILE_SEAM-pu, width, height, GL_RGBA, GL_UNSIGNED_SHORT, ot->Data);
  1034. }
  1035. free(ot->Data); ot->Data=0;
  1036. }
  1037. int our_LayerEnsureImageBuffer(OurLayer* ol, int OnlyCalculate){
  1038. int l=1000,r=-1000,u=-1000,b=1000; int any=0;
  1039. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  1040. if(row<b) b=row; if(row>u) u=row;
  1041. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col] || !ol->TexTiles[row][col]->Texture) continue;
  1042. if(col<l) l=col; if(col>r) r=col; any++;
  1043. }
  1044. }
  1045. if(!any) return 0;
  1046. Our->ImageW = OUR_TILE_W_USE*(r-l+1); Our->ImageH = OUR_TILE_W_USE*(u-b+1);
  1047. Our->ImageX =((real)l-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE; Our->ImageY=((real)b-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE;
  1048. if(!OnlyCalculate){
  1049. if(Our->ImageBuffer) free(Our->ImageBuffer);
  1050. Our->ImageBuffer = calloc(Our->ImageW*4,Our->ImageH*sizeof(uint16_t));
  1051. if(!Our->ImageBuffer){ return 0; }
  1052. }
  1053. return 1;
  1054. }
  1055. void our_LayerClearEmptyTiles(OurLayer* ol);
  1056. int our_CanvasEnsureImageBuffer(){
  1057. int x=INT_MAX,y=INT_MAX,w=-INT_MAX,h=-INT_MAX;
  1058. for(OurLayer* l=Our->Layers.pFirst;l;l=l->Item.pNext){
  1059. our_LayerClearEmptyTiles(l);
  1060. our_LayerEnsureImageBuffer(l,1);
  1061. if(Our->ImageX<x) x=Our->ImageX; if(Our->ImageY<y) y=Our->ImageY;
  1062. if(Our->ImageW>w) w=Our->ImageW; if(Our->ImageH>h) h=Our->ImageH;
  1063. }
  1064. if(w<0||h<0) return 0;
  1065. Our->ImageX=x; Our->ImageY=y; Our->ImageW=w; Our->ImageH=h;
  1066. if(Our->ImageBuffer) free(Our->ImageBuffer);
  1067. Our->ImageBuffer = calloc(Our->ImageW*4,Our->ImageH*sizeof(uint16_t));
  1068. if(!Our->ImageBuffer){ return 0; }
  1069. return 1;
  1070. }
  1071. void our_CanvasFillImageBufferBackground(){
  1072. int64_t count=Our->ImageW*Our->ImageH;
  1073. real bk[4]; tnsVectorSet3v(bk,Our->BackgroundColor); bk[3]=1;
  1074. Our->BColorU16[0]=bk[0]*65535; Our->BColorU16[1]=bk[1]*65535; Our->BColorU16[2]=bk[2]*65535; Our->BColorU16[3]=65535;
  1075. Our->BColorU8[0]=0.5+bk[0]*255; Our->BColorU8[1]=0.5+bk[1]*255; Our->BColorU8[2]=0.5+bk[2]*255; Our->BColorU8[3]=255;
  1076. for(int64_t i=0;i<count;i++){
  1077. uint16_t* p=&Our->ImageBuffer[(int64_t)i*4]; tnsVectorSet4v(p,Our->BColorU16);
  1078. }
  1079. }
  1080. void our_LayerToImageBuffer(OurLayer* ol, int composite){
  1081. if(composite && (ol->Hide || ol->Transparency==1 || (Our->SketchMode==2 && ol->AsSketch))) return;
  1082. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  1083. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  1084. int sx=ol->TexTiles[row][col]->l+OUR_TILE_SEAM,sy=ol->TexTiles[row][col]->b+OUR_TILE_SEAM;
  1085. our_TileTextureToImage(ol->TexTiles[row][col], sx-Our->ImageX, sy-Our->ImageY, composite, ol->BlendMode, 1.0f-ol->Transparency);
  1086. }
  1087. }
  1088. }
  1089. void our_LayerToTexture(OurLayer* ol){
  1090. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  1091. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  1092. int sx=ol->TexTiles[row][col]->l+OUR_TILE_SEAM,sy=ol->TexTiles[row][col]->b+OUR_TILE_SEAM;
  1093. our_TileImageToTexture(ol->TexTiles[row][col], sx-Our->ImageX, sy-Our->ImageY);
  1094. }
  1095. }
  1096. }
  1097. void our_GetFinalDimension(int UseFrame, int* x, int* y, int* w, int* h){
  1098. if(UseFrame){ *x=Our->X; *y=Our->Y; *w=Our->W; *h=Our->H; }
  1099. else{ *x=Our->ImageX; *y=Our->ImageY; *w=Our->ImageW; *h=Our->ImageH; }
  1100. printf("%d %d %d %d, %d %d %d %d\n",Our->X, Our->Y, Our->W, Our->H,Our->ImageX, Our->ImageY, Our->ImageW, Our->ImageH);
  1101. }
  1102. #define GET_FINAL_ROW_TYPE(TYPE,BCOLOR) \
  1103. TYPE* our_GetFinalRow_##TYPE(int UseFrame, int row, int x, int y, int w, int h, TYPE* temp){\
  1104. if(!UseFrame) return &((TYPE*)Our->ImageBuffer)[(int64_t)Our->ImageW*(Our->ImageH-row-1)*4];\
  1105. int userow=(h-row-1)-(Our->ImageY-(y-h));\
  1106. if(userow<0 || userow>=Our->ImageH){ for(int i=0;i<w;i++){ tnsVectorSet4v(&temp[(int64_t)i*4],BCOLOR); } return temp; }\
  1107. int sstart=x>Our->ImageX?(x-Our->ImageX):0, tstart=x>Our->ImageX?0:(Our->ImageX-x);\
  1108. int slen=(x+w>Our->ImageX+Our->ImageW)?(Our->ImageW-sstart):(Our->ImageW-sstart-(Our->ImageX+Our->ImageW-x-w));\
  1109. for(int i=0;i<tstart;i++){ tnsVectorSet4v(&temp[(int64_t)i*4],BCOLOR); }\
  1110. for(int i=sstart+slen;i<w;i++){ tnsVectorSet4v(&temp[(int64_t)i*4],BCOLOR); }\
  1111. memcpy(&temp[(int64_t)tstart*4],&((TYPE*)Our->ImageBuffer)[(int64_t)(Our->ImageW*(userow)+sstart)*4],slen*sizeof(TYPE)*4);\
  1112. return temp;\
  1113. }
  1114. GET_FINAL_ROW_TYPE(uint16_t,Our->BColorU16)
  1115. GET_FINAL_ROW_TYPE(uint8_t,Our->BColorU8)
  1116. typedef void* (*ourGetFinalRowFunc)(int UseFrame, int row, int x, int y, int w, int h, void* temp);
  1117. static void _our_png_write(png_structp png_ptr, png_bytep data, png_size_t length){
  1118. OurLayerWrite* LayerWrite=png_get_io_ptr(png_ptr);
  1119. arrEnsureLength(&LayerWrite->data,LayerWrite->NextData+length,&LayerWrite->MaxData,sizeof(unsigned char));
  1120. memcpy(&LayerWrite->data[LayerWrite->NextData], data, length);
  1121. LayerWrite->NextData+=length;
  1122. }
  1123. void our_ImageConvertForExport(int BitDepth, int ColorProfile){
  1124. uint8_t* NewImage;
  1125. cmsHTRANSFORM cmsTransform = NULL;
  1126. cmsHPROFILE input_buffer_profile=NULL,input_gamma_profile=NULL;
  1127. cmsHPROFILE output_buffer_profile=NULL;
  1128. if(BitDepth==OUR_EXPORT_BIT_DEPTH_16){ return; /* only export 16bit flat */ }
  1129. input_buffer_profile=(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY)?
  1130. cmsOpenProfileFromMem(Our->icc_LinearClay,Our->iccsize_LinearClay):cmsOpenProfileFromMem(Our->icc_LinearsRGB,Our->iccsize_LinearsRGB);
  1131. input_gamma_profile=(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY)?
  1132. cmsOpenProfileFromMem(Our->icc_Clay,Our->icc_Clay):cmsOpenProfileFromMem(Our->icc_sRGB,Our->iccsize_sRGB);
  1133. NewImage=calloc(Our->ImageW*sizeof(uint8_t),Our->ImageH*4);
  1134. if(NewImage){
  1135. int64_t total_pixels = (int64_t)Our->ImageW*Our->ImageH;
  1136. if(ColorProfile!=OUR_EXPORT_COLOR_MODE_FLAT && total_pixels<=UINT32_MAX){
  1137. if(ColorProfile==OUR_EXPORT_COLOR_MODE_SRGB){ output_buffer_profile=cmsOpenProfileFromMem(Our->icc_sRGB,Our->iccsize_sRGB); }
  1138. elif(ColorProfile==OUR_EXPORT_COLOR_MODE_CLAY){ output_buffer_profile=cmsOpenProfileFromMem(Our->icc_Clay,Our->iccsize_Clay); }
  1139. cmsTransform = cmsCreateTransform(input_buffer_profile, TYPE_RGBA_16, input_gamma_profile, TYPE_RGBA_8,
  1140. INTENT_ABSOLUTE_COLORIMETRIC, cmsFLAGS_COPY_ALPHA|cmsFLAGS_HIGHRESPRECALC);
  1141. cmsDoTransform(cmsTransform,Our->ImageBuffer,NewImage,total_pixels);
  1142. cmsDeleteTransform(cmsTransform);
  1143. if(input_gamma_profile!=output_buffer_profile){
  1144. cmsTransform = cmsCreateTransform(input_gamma_profile, TYPE_RGBA_8, output_buffer_profile, TYPE_RGBA_8,
  1145. INTENT_ABSOLUTE_COLORIMETRIC, cmsFLAGS_COPY_ALPHA|cmsFLAGS_HIGHRESPRECALC);
  1146. cmsDoTransform(cmsTransform,NewImage,NewImage,total_pixels);
  1147. cmsDeleteTransform(cmsTransform);
  1148. }
  1149. }else{
  1150. if(total_pixels>UINT32_MAX){
  1151. logPrintNew("Export: [TODO] Image pixel count exceeds UINT32_MAX, not doing any transforms.\n");
  1152. }
  1153. for(int row=0;row<Our->ImageH;row++){
  1154. for(int col=0;col<Our->ImageW;col++){ uint8_t* p=&NewImage[((int64_t)row*Our->ImageW+col)*4]; uint16_t* p0=&Our->ImageBuffer[((int64_t)row*Our->ImageW+col)*4];
  1155. p[0]=((real)p0[0])/256; p[1]=((real)p0[1])/256; p[2]=((real)p0[2])/256; p[3]=((real)p0[3])/256;
  1156. }
  1157. }
  1158. }
  1159. }
  1160. cmsCloseProfile(input_buffer_profile);cmsCloseProfile(input_gamma_profile);cmsCloseProfile(output_buffer_profile);
  1161. free(Our->ImageBuffer); Our->ImageBuffer=NewImage;
  1162. }
  1163. int our_ImageExportPNG(FILE* fp, int WriteToBuffer, void** buf, int* sizeof_buf, int UseFrame, int BitDepth, int ColorProfile){
  1164. if((!fp)&&(!WriteToBuffer)) return 0;
  1165. if(!Our->ImageBuffer) return 0;
  1166. real bk[4]; tnsVectorSet3v(bk,Our->BackgroundColor); bk[3]=1;
  1167. int UseBitDepth,ElemSize; void* use_icc=0; int use_icc_size;
  1168. ourGetFinalRowFunc GetFinalRow;
  1169. if(BitDepth==OUR_EXPORT_BIT_DEPTH_16){ UseBitDepth=16; ElemSize=sizeof(uint16_t); ColorProfile=OUR_EXPORT_COLOR_MODE_FLAT; GetFinalRow=our_GetFinalRow_uint16_t; }
  1170. else{ UseBitDepth=8; ElemSize=sizeof(uint8_t); GetFinalRow=our_GetFinalRow_uint8_t; }
  1171. png_structp png_ptr=png_create_write_struct(PNG_LIBPNG_VER_STRING,0,0,0);
  1172. png_infop info_ptr = png_create_info_struct(png_ptr);
  1173. OurLayerWrite LayerWrite={0};
  1174. if(WriteToBuffer){
  1175. arrEnsureLength(&LayerWrite.data,0,&LayerWrite.MaxData,sizeof(unsigned char));
  1176. png_set_write_fn(png_ptr,&LayerWrite,_our_png_write,0);
  1177. }else{
  1178. png_init_io(png_ptr, fp);
  1179. }
  1180. int X,Y,W,H; our_GetFinalDimension(UseFrame, &X,&Y,&W,&H);
  1181. png_set_IHDR(png_ptr, info_ptr,W,H,UseBitDepth,PNG_COLOR_TYPE_RGBA,PNG_INTERLACE_NONE,PNG_COMPRESSION_TYPE_BASE,PNG_FILTER_TYPE_BASE);
  1182. if(ColorProfile==OUR_EXPORT_COLOR_MODE_SRGB){ png_set_sRGB(png_ptr,info_ptr,PNG_sRGB_INTENT_PERCEPTUAL);use_icc=Our->icc_sRGB;use_icc_size=Our->iccsize_sRGB;tns2LogsRGB(bk); }
  1183. elif(ColorProfile==OUR_EXPORT_COLOR_MODE_CLAY){ use_icc=Our->icc_Clay;use_icc_size=Our->iccsize_Clay;tns2LogsRGB(bk);/* should be clay */ }
  1184. elif(ColorProfile==OUR_EXPORT_COLOR_MODE_FLAT){
  1185. if(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB){use_icc=Our->icc_LinearsRGB;use_icc_size=Our->iccsize_LinearsRGB;}
  1186. elif(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY){use_icc=Our->icc_LinearClay;use_icc_size=Our->iccsize_LinearClay;}
  1187. }
  1188. if(use_icc){ png_set_iCCP(png_ptr,info_ptr,"LA_PROFILE",PNG_COMPRESSION_TYPE_BASE,use_icc,use_icc_size); }
  1189. png_write_info(png_ptr, info_ptr);
  1190. png_set_swap(png_ptr);
  1191. Our->BColorU16[0]=bk[0]*65535; Our->BColorU16[1]=bk[1]*65535; Our->BColorU16[2]=bk[2]*65535; Our->BColorU16[3]=65535;
  1192. Our->BColorU8[0]=0.5+bk[0]*255; Our->BColorU8[1]=0.5+bk[1]*255; Our->BColorU8[2]=0.5+bk[2]*255; Our->BColorU8[3]=255;
  1193. char* temp_row=calloc(W,ElemSize*4);
  1194. int prog=0,lastprog=0;
  1195. for(int i=0;i<H;i++){
  1196. char* final=GetFinalRow(UseFrame,i,X,Y,W,H,temp_row);
  1197. png_write_row(png_ptr, (png_const_bytep)final);
  1198. lastprog=i/100; if(lastprog!=prog){ prog=lastprog; laShowProgress(-1,(real)i/H); }
  1199. }
  1200. png_write_end(png_ptr, info_ptr);
  1201. png_destroy_write_struct(&png_ptr, &info_ptr);
  1202. if(Our->ImageBuffer){ free(Our->ImageBuffer); Our->ImageBuffer=0; }
  1203. if(WriteToBuffer){ *buf=LayerWrite.data; *sizeof_buf=LayerWrite.NextData; }
  1204. free(temp_row);
  1205. return 1;
  1206. }
  1207. void our_EnsureImageBufferOnRead(OurLayer*l, int W, int H, int UseOffsets, int StartX, int StartY){
  1208. int tw=W/OUR_TILE_W_USE, th=H/OUR_TILE_W_USE;
  1209. int w=tw*OUR_TILE_W_USE, h=th*OUR_TILE_W_USE;
  1210. if(w<W){ tw+=1; w+=OUR_TILE_W_USE; } if(h<H){ th+=1; h+=OUR_TILE_W_USE; }
  1211. int ix=UseOffsets?StartX:(-tw/2*OUR_TILE_W_USE-OUR_TILE_W_USE/2);
  1212. int iy=UseOffsets?StartY:(th/2*OUR_TILE_W_USE+OUR_TILE_W_USE/2);
  1213. int tl,tr,tu,tb;
  1214. our_LayerEnsureTiles(l,ix,ix+W,iy-H,iy,1,&tl,&tr,&tu,&tb);
  1215. our_LayerEnsureImageBuffer(l, 0);
  1216. Our->LoadX = ix-Our->ImageX; Our->LoadY = Our->ImageY+Our->ImageH-iy;
  1217. }
  1218. static void _our_png_read(png_struct *ps, png_byte *data, png_size_t length){
  1219. OurLayerRead *LayerRead = (OurLayerRead*)png_get_io_ptr(ps);
  1220. memcpy(data,&LayerRead->data[LayerRead->NextData],length);
  1221. LayerRead->NextData+=length;
  1222. }
  1223. int our_PeekPNG(FILE* fp, int* HasProfile, int* HassRGB, laSafeString** iccName){
  1224. png_structp png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,0,0,0); if (!png_ptr) { return 0; }
  1225. png_infop info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { return 0; }
  1226. png_init_io(png_ptr, fp);
  1227. png_read_info(png_ptr, info_ptr);
  1228. int srgb_intent = 0;
  1229. png_charp icc_profile_name = NULL;
  1230. png_uint_32 icc_proflen = 0;
  1231. int icc_compression_type = 0;
  1232. cmsHPROFILE input_buffer_profile = NULL;
  1233. cmsHTRANSFORM cmsTransform = NULL;
  1234. cmsToneCurve *cmsToneCurve = NULL;
  1235. cmsUInt32Number input_buffer_format = 0;
  1236. #if PNG_LIBPNG_VER < 10500 // 1.5.0beta36, according to libpng CHANGES
  1237. png_charp icc_profile = NULL;
  1238. #else
  1239. png_bytep icc_profile = NULL;
  1240. #endif
  1241. if(png_get_iCCP (png_ptr, info_ptr, &icc_profile_name, &icc_compression_type, &icc_profile, &icc_proflen)) {
  1242. input_buffer_profile = cmsOpenProfileFromMem(icc_profile, icc_proflen);
  1243. if(!input_buffer_profile) { goto cleanup_png_peek; }
  1244. cmsColorSpaceSignature cs_sig = cmsGetColorSpace(input_buffer_profile);
  1245. if (cs_sig != cmsSigRgbData) { logPrint(" png has grayscale iCCP, Our Paint doesn't supported that yet, will load as sRGB.\n");
  1246. cmsCloseProfile(input_buffer_profile); input_buffer_profile = NULL; }
  1247. else{
  1248. char* desc="UNAMED PROFILE";
  1249. cmsUInt32Number len=cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",0,0);
  1250. if(len){ desc=calloc(1,sizeof(char)*len); cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",desc,len); }
  1251. logPrint(" png has iCCP: %s.\n", desc); strSafeSet(iccName, desc); if(len){ free(desc); } *HasProfile=1;
  1252. }
  1253. }elif(png_get_sRGB(png_ptr,info_ptr,&srgb_intent)){
  1254. logPrint(" png is sRGB.\n");
  1255. *HassRGB=1;
  1256. }else{
  1257. // should use png_get_cHRM and png_get_gAMA, but for simplicity we just treat them as srgb,
  1258. logPrint(" png doesn't contain iCCP or sRGB flags, assuming sRGB.\n");
  1259. *HassRGB=0;
  1260. }
  1261. cleanup_png_peek:
  1262. if(input_buffer_profile) cmsCloseProfile(input_buffer_profile);
  1263. if(png_ptr && info_ptr) png_destroy_read_struct(&png_ptr,&info_ptr,0);
  1264. return 1;
  1265. }
  1266. int our_LayerImportPNG(OurLayer* l, FILE* fp, void* buf, int InputProfileMode, int OutputProfileMode, int UseOffsets, int StartX, int StartY){
  1267. int result=0;
  1268. if((!fp&&!buf) || !l) return 0;
  1269. int srgb_intent = 0;
  1270. png_charp icc_profile_name = NULL;
  1271. png_uint_32 icc_proflen = 0;
  1272. int icc_compression_type = 0;
  1273. cmsHPROFILE input_buffer_profile = NULL;
  1274. cmsHPROFILE output_buffer_profile = NULL;
  1275. cmsHTRANSFORM cmsTransform = NULL;
  1276. cmsToneCurve *cmsToneCurve = NULL;
  1277. cmsUInt32Number input_buffer_format = 0;
  1278. #if PNG_LIBPNG_VER < 10500 // 1.5.0beta36, according to libpng CHANGES
  1279. png_charp icc_profile = NULL;
  1280. #else
  1281. png_bytep icc_profile = NULL;
  1282. #endif
  1283. OurLayerRead LayerRead={0};
  1284. png_structp png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,0,0,0); if (!png_ptr) { return 0; }
  1285. png_infop info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { return 0; }
  1286. if (setjmp(png_jmpbuf(png_ptr))) { goto cleanup_png_read; }
  1287. if(buf){
  1288. LayerRead.data=buf; png_set_read_fn(png_ptr, &LayerRead, _our_png_read);
  1289. }else{
  1290. png_init_io(png_ptr, fp);
  1291. }
  1292. png_read_info(png_ptr, info_ptr);
  1293. png_set_swap(png_ptr);
  1294. int UseSRGB=0;
  1295. if(InputProfileMode==1){
  1296. if(png_get_iCCP (png_ptr, info_ptr, &icc_profile_name, &icc_compression_type, &icc_profile, &icc_proflen)) {
  1297. input_buffer_profile = cmsOpenProfileFromMem(icc_profile, icc_proflen);
  1298. if(!input_buffer_profile) { goto cleanup_png_read; }
  1299. cmsColorSpaceSignature cs_sig = cmsGetColorSpace(input_buffer_profile);
  1300. if (cs_sig != cmsSigRgbData) { /*no grayscale icc*/ cmsCloseProfile(input_buffer_profile); input_buffer_profile = NULL; }
  1301. else{
  1302. char* desc="UNAMED PROFILE";
  1303. cmsUInt32Number len=cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",0,0);
  1304. if(len){ desc=calloc(1,sizeof(char)*len); cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",desc,len); free(desc); }
  1305. }
  1306. }
  1307. }
  1308. if (png_get_interlace_type (png_ptr, info_ptr) != PNG_INTERLACE_NONE){ logPrint(" Interlaced png not supported.\n");
  1309. goto cleanup_png_read;
  1310. }
  1311. png_byte ColorType = png_get_color_type(png_ptr, info_ptr);
  1312. png_byte BitDepth = png_get_bit_depth(png_ptr, info_ptr);
  1313. int HasAlpha = ColorType & PNG_COLOR_MASK_ALPHA;
  1314. if (ColorType == PNG_COLOR_TYPE_PALETTE) { png_set_palette_to_rgb(png_ptr); }
  1315. //if (ColorType == PNG_COLOR_TYPE_GRAY && BitDepth < 8) { png_set_expand_gray_1_2_4_to_8(png_ptr); }
  1316. if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { png_set_tRNS_to_alpha(png_ptr); HasAlpha = 1; }
  1317. if (BitDepth<16) { png_set_expand_16(png_ptr); }
  1318. if (!HasAlpha) { png_set_add_alpha(png_ptr, 0xFFFF, PNG_FILLER_AFTER); }
  1319. if (ColorType == PNG_COLOR_TYPE_GRAY || ColorType == PNG_COLOR_TYPE_GRAY_ALPHA) { png_set_gray_to_rgb(png_ptr); }
  1320. png_read_update_info(png_ptr, info_ptr);
  1321. if (png_get_bit_depth(png_ptr, info_ptr)!=16) {
  1322. logPrint(" Can't convert png into 16 bits per channel, aborting.\n"); goto cleanup_png_read;
  1323. }
  1324. if (png_get_color_type(png_ptr, info_ptr) != PNG_COLOR_TYPE_RGB_ALPHA) {
  1325. logPrint(" Can't convert png into RGBA format, aborting.\n"); goto cleanup_png_read;
  1326. }
  1327. if (png_get_channels(png_ptr, info_ptr) != 4) {
  1328. logPrint(" Can't convert png into 4 channel RGBA format, aborting.\n"); goto cleanup_png_read;
  1329. }
  1330. #ifdef CMS_USE_BIG_ENDIAN
  1331. input_buffer_format = TYPE_RGBA_16;
  1332. #else
  1333. input_buffer_format = TYPE_RGBA_16_SE;
  1334. #endif
  1335. int W = png_get_image_width(png_ptr, info_ptr);
  1336. int H = png_get_image_height(png_ptr, info_ptr);
  1337. our_EnsureImageBufferOnRead(l,W,H,UseOffsets,StartX,StartY);
  1338. int prog=0,lastprog=0;
  1339. for(int i=0;i<H;i++){
  1340. png_read_row(png_ptr, &Our->ImageBuffer[((int64_t)(H-i-1+Our->LoadY)*Our->ImageW+Our->LoadX)*4], NULL);
  1341. lastprog=i/100; if(lastprog!=prog){ prog=lastprog; laShowProgress(-1,(real)i/H); }
  1342. }
  1343. if(InputProfileMode && OutputProfileMode && (InputProfileMode!=OutputProfileMode)){
  1344. void* icc=0; int iccsize=0;
  1345. if(!input_buffer_profile){
  1346. if(InputProfileMode==OUR_PNG_READ_INPUT_SRGB){ icc=Our->icc_sRGB; iccsize=Our->iccsize_sRGB; }
  1347. elif(InputProfileMode==OUR_PNG_READ_INPUT_CLAY){ icc=Our->icc_Clay; iccsize=Our->iccsize_Clay; }
  1348. elif(InputProfileMode==OUR_PNG_READ_INPUT_LINEAR_SRGB){ icc=Our->icc_LinearsRGB; iccsize=Our->iccsize_LinearsRGB; }
  1349. elif(InputProfileMode==OUR_PNG_READ_INPUT_LINEAR_CLAY){ icc=Our->icc_LinearClay; iccsize=Our->iccsize_LinearClay; }
  1350. input_buffer_profile=cmsOpenProfileFromMem(icc, iccsize);
  1351. }
  1352. icc=0; iccsize=0;
  1353. if(OutputProfileMode==OUR_PNG_READ_OUTPUT_LINEAR_SRGB){ icc=Our->icc_LinearsRGB; iccsize=Our->iccsize_LinearsRGB; }
  1354. elif(OutputProfileMode==OUR_PNG_READ_OUTPUT_LINEAR_CLAY){ icc=Our->icc_LinearClay; iccsize=Our->iccsize_LinearClay; }
  1355. output_buffer_profile=cmsOpenProfileFromMem(icc, iccsize);
  1356. if(input_buffer_profile && output_buffer_profile){
  1357. cmsTransform = cmsCreateTransform(input_buffer_profile, TYPE_RGBA_16, output_buffer_profile, TYPE_RGBA_16, INTENT_PERCEPTUAL, 0);
  1358. cmsDoTransform(cmsTransform,Our->ImageBuffer,Our->ImageBuffer,(int64_t)Our->ImageW*Our->ImageH);
  1359. }
  1360. }
  1361. our_LayerToTexture(l);
  1362. result=1;
  1363. cleanup_png_read:
  1364. if(input_buffer_profile) cmsCloseProfile(input_buffer_profile);
  1365. if(output_buffer_profile) cmsCloseProfile(output_buffer_profile);
  1366. if(cmsTransform) cmsDeleteTransform(cmsTransform);
  1367. if(png_ptr && info_ptr) png_destroy_read_struct(&png_ptr,&info_ptr,0);
  1368. if(Our->ImageBuffer){ free(Our->ImageBuffer); Our->ImageBuffer=0; }
  1369. return result;
  1370. }
  1371. void our_UiToCanvas(laCanvasExtra* ex, laEvent*e, real* x, real *y){
  1372. *x = (real)((real)e->x - (real)(ex->ParentUi->R - ex->ParentUi->L) / 2 - ex->ParentUi->L) * ex->ZoomX + ex->PanX;
  1373. *y = (real)((real)(ex->ParentUi->B - ex->ParentUi->U) / 2 - (real)e->y + ex->ParentUi->U) * ex->ZoomY + ex->PanY;
  1374. }
  1375. void our_PaintResetBrushState(OurBrush* b){
  1376. b->BrushRemainingDist = 0; b->SmudgeAccum=0; b->SmudgeRestart=1;
  1377. Our->LastBrushCenter[0]=-1e21;
  1378. }
  1379. real our_PaintGetDabStepDistance(real Size,real DabsPerSize){
  1380. real d=Size/DabsPerSize; if(d<1e-2) d=1e-2; return d;
  1381. }
  1382. int our_PaintGetDabs(OurBrush* b, OurLayer* l, real x, real y, real xto, real yto,
  1383. real last_pressure, real last_orientation, real last_deviation, real last_twist, real pressure, real Orientation, real Deviation, real Twist,
  1384. int *tl, int *tr, int* tu, int* tb, real* r_xto, real* r_yto){
  1385. if (isnan(x)||isnan(y)||isnan(xto)||isnan(yto)||isinf(x)||isinf(y)||isinf(xto)||isinf(yto)){
  1386. printf("brush input coordinates has nan or inf.\n"); return 0;
  1387. }
  1388. Our->NextDab=0;
  1389. if(!b->EvalDabsPerSize) b->EvalDabsPerSize=b->DabsPerSize;
  1390. real smfac=(1-b->Smoothness/1.1); xto=tnsLinearItp(x,xto,smfac); yto=tnsLinearItp(y,yto,smfac); *r_xto=xto; *r_yto=yto;
  1391. real size=b->Size; real dd=our_PaintGetDabStepDistance(b->EvalSize, b->EvalDabsPerSize); real len=tnsDistIdv2(x,y,xto,yto); real rem=b->BrushRemainingDist;
  1392. if(len>1000){ *r_xto=xto; *r_yto=yto; b->BrushRemainingDist=0; return 0; /* Prevent crazy events causing GPU hang. */ }
  1393. real alllen=len+rem; real uselen=dd,step=0; if(!len)return 0; if(dd>alllen){ b->BrushRemainingDist+=len; return 0; }
  1394. real xmin=FLT_MAX,xmax=-FLT_MAX,ymin=FLT_MAX,ymax=-FLT_MAX;
  1395. b->EvalSize=b->Size; b->EvalHardness=b->Hardness; b->EvalSmudge=b->Smudge; b->EvalSmudgeLength=b->SmudgeResampleLength;
  1396. b->EvalTransparency=b->Transparency; b->EvalDabsPerSize=b->DabsPerSize; b->EvalSlender=b->Slender; b->EvalAngle=b->Angle;
  1397. b->EvalSpeed=tnsDistIdv2(x,y,xto,yto)/b->Size; b->EvalForce=b->Force; b->EvalGunkyness=b->Gunkyness;
  1398. if(Our->ResetBrush){ b->LastX=x; b->LastY=y; b->LastAngle=atan2(yto-y,xto-x); b->EvalStrokeLength=0; Our->ResetBrush=0; }
  1399. real this_angle=atan2(yto-y,xto-x);
  1400. if(b->LastAngle-this_angle>TNS_PI){ this_angle+=(TNS_PI*2); }
  1401. elif(this_angle-b->LastAngle>TNS_PI){ b->LastAngle+=(TNS_PI*2); }
  1402. while(1){ int Repeat=1; OurDab* od;
  1403. for(b->Iteration=0;b->Iteration<Repeat;b->Iteration++){ b->EvalDiscard=0;
  1404. arrEnsureLength(&Our->Dabs,Our->NextDab,&Our->MaxDab,sizeof(OurDab)); od=&Our->Dabs[Our->NextDab]; od->Direction[0]=-1e21;
  1405. real r=tnsGetRatiod(0,len,uselen-rem); od->X=tnsInterpolate(x,xto,r); od->Y=tnsInterpolate(y,yto,r); TNS_CLAMP(r,0,1);
  1406. b->LastX=od->X; b->LastY=od->Y; tnsVectorSet3v(b->EvalColor, Our->CurrentColor);
  1407. if(b->UseNodes){
  1408. b->EvalPressure=tnsInterpolate(last_pressure,pressure,r); b->EvalPosition[0]=od->X; b->EvalPosition[1]=od->Y;
  1409. b->EvalOffset[0]=0; b->EvalOffset[1]=0; b->EvalStrokeAngle=tnsInterpolate(b->LastAngle,this_angle,r);
  1410. b->EvalTilt[0]=tnsInterpolate(last_orientation,Orientation,r); b->EvalTilt[1]=tnsInterpolate(last_deviation,Deviation,r);
  1411. b->EvalTwist=tnsInterpolate(last_twist,Twist,r);
  1412. ourEvalBrush(); if(!b->Iteration){ Repeat=b->EvalRepeats;} if(b->EvalDiscard){ continue; }
  1413. TNS_CLAMP(b->EvalSmudge,0,1); TNS_CLAMP(b->EvalSmudgeLength,0,100000); TNS_CLAMP(b->EvalTransparency,0,1); TNS_CLAMP(b->EvalHardness,0,1); TNS_CLAMP(b->DabsPerSize,0,100000);
  1414. od->X+=b->EvalOffset[0]; od->Y+=b->EvalOffset[1];
  1415. }
  1416. if(!b->EvalDabsPerSize) b->EvalDabsPerSize=1;
  1417. #define pfac(psw) (((!b->UseNodes)&&psw)?tnsInterpolate(last_pressure,pressure,r):1)
  1418. od->Size = b->EvalSize*pfac(b->PressureSize); od->Hardness = b->EvalHardness*pfac(b->PressureHardness);
  1419. od->Smudge = b->EvalSmudge*pfac(b->PressureSmudge); od->Color[3]=pow(b->EvalTransparency*pfac(b->PressureTransparency),2.718);
  1420. tnsVectorSet3v(od->Color,b->EvalColor); od->Force=b->EvalForce*pfac(b->PressureForce);
  1421. #undef pfac;
  1422. od->Gunkyness = b->EvalGunkyness; od->Slender = b->EvalSlender;
  1423. od->Angle=b->EvalAngle; if(b->TwistAngle){ od->Angle=tnsInterpolate(last_twist,Twist,r); }
  1424. xmin=TNS_MIN2(xmin, od->X-od->Size); xmax=TNS_MAX2(xmax, od->X+od->Size);
  1425. ymin=TNS_MIN2(ymin, od->Y-od->Size); ymax=TNS_MAX2(ymax, od->Y+od->Size);
  1426. if(od->Size>1e-1 && (!b->EvalDiscard)) Our->NextDab++;
  1427. }
  1428. step=our_PaintGetDabStepDistance(od->Size, b->EvalDabsPerSize);
  1429. b->EvalStrokeLength+=step/b->Size; b->EvalStrokeLengthAccum+=step/b->Size; if(b->EvalStrokeLengthAccum>1e6){b->EvalStrokeLengthAccum-=1e6;}
  1430. od->ResampleSmudge=0;
  1431. if(b->Smudge>1e-3){ b->SmudgeAccum+=step;
  1432. if(b->SmudgeAccum>(b->EvalSmudgeLength*od->Size)){ b->SmudgeAccum-=(b->EvalSmudgeLength*od->Size); od->ResampleSmudge=1; }
  1433. od->Recentness=b->SmudgeAccum/b->EvalSmudgeLength/od->Size; TNS_CLAMP(od->Recentness,0,1);
  1434. }else{od->Recentness=0;}
  1435. if(step+uselen<alllen)uselen+=step; else break;
  1436. }
  1437. if(this_angle>TNS_PI*2){ this_angle-=(TNS_PI*2); }
  1438. b->LastAngle=this_angle;
  1439. b->BrushRemainingDist=alllen-uselen;
  1440. if(Our->NextDab) {
  1441. our_LayerEnsureTiles(l,xmin,xmax,ymin,ymax,0,tl,tr,tu,tb);
  1442. Our->xmin=TNS_MIN2(Our->xmin,xmin);Our->xmax=TNS_MAX2(Our->xmax,xmax);Our->ymin=TNS_MIN2(Our->ymin,ymin);Our->ymax=TNS_MAX2(Our->ymax,ymax);
  1443. return 1;
  1444. }
  1445. return 0;
  1446. }
  1447. void our_PaintDoSample(int x, int y, int sx, int sy, int ssize, int last,int begin_stroke){
  1448. glUniform2i(Our->uBrushCorner,x-sx,y-sy);
  1449. glUniform2f(Our->uBrushCenter,x-sx,y-sy);
  1450. glUniform1f(Our->uBrushSize, ssize);
  1451. glUniform1i(Our->uBrushErasing,last?(begin_stroke?2:1):0);
  1452. glDispatchCompute(1,1,1);
  1453. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  1454. }
  1455. void our_PaintDoDab(OurDab* d, int tl, int tr, int tu, int tb){
  1456. int corner[2]; corner[0]=floorf(d->X-d->Size); corner[1]=floorf(d->Y-d->Size);
  1457. real MaxX,MaxY; MaxX=ceil(d->X+d->Size); MaxY=ceil(d->Y+d->Size);
  1458. float center[2]; center[0]=d->X-tl; center[1]=d->Y-tu;
  1459. if(d->Direction[0]<-1e20){
  1460. if(Our->LastBrushCenter[0]<-1e20){ d->Direction[0]=0;d->Direction[1]=0; }
  1461. else{ d->Direction[0]=d->X-Our->LastBrushCenter[0]; d->Direction[1]=d->Y-Our->LastBrushCenter[1]; }
  1462. } tnsVectorSet2(Our->LastBrushCenter,d->X,d->Y);
  1463. if(corner[0]>tr||MaxX<tl||corner[1]>tb||MaxY<tu) return;
  1464. corner[0]=corner[0]-tl; corner[1]=corner[1]-tu;
  1465. glUniform2iv(Our->uBrushCorner,1,corner);
  1466. glUniform2fv(Our->uBrushCenter,1,center);
  1467. glUniform1f(Our->uBrushSize,d->Size);
  1468. glUniform1f(Our->uBrushHardness,d->Hardness);
  1469. glUniform1f(Our->uBrushSmudge,d->Smudge);
  1470. glUniform1f(Our->uBrushSlender,d->Slender);
  1471. glUniform1f(Our->uBrushAngle,d->Angle);
  1472. glUniform2fv(Our->uBrushDirection,1,d->Direction);
  1473. glUniform1f(Our->uBrushForce,d->Force);
  1474. glUniform1f(Our->uBrushGunkyness,d->Gunkyness);
  1475. glUniform1f(Our->uBrushRecentness,d->Recentness);
  1476. glUniform4fv(Our->uBrushColor,1,d->Color);
  1477. glDispatchCompute(ceil(d->Size/16), ceil(d->Size/16), 1);
  1478. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  1479. }
  1480. void our_PaintDoDabs(OurLayer* l,int tl, int tr, int tu, int tb, int Start, int End){
  1481. for(int row=tb;row<=tu;row++){
  1482. for(int col=tl;col<=tr;col++){
  1483. OurTexTile* ott=l->TexTiles[row][col];
  1484. glBindImageTexture(0, ott->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1485. int s[2]; s[0]=l->TexTiles[row][col]->l,s[1]=l->TexTiles[row][col]->b;
  1486. glUniform2iv(Our->uImageOffset,1,s);
  1487. for(int i=Start;i<End;i++){
  1488. our_PaintDoDab(&Our->Dabs[i],s[0],s[0]+OUR_TILE_W,s[1],s[1]+OUR_TILE_W);
  1489. }
  1490. }
  1491. }
  1492. }
  1493. STRUCTURE(OurSmudgeSegement){
  1494. laListItem Item;
  1495. int Start,End,Resample;
  1496. };
  1497. void our_PaintDoDabsWithSmudgeSegments(OurLayer* l,int tl, int tr, int tu, int tb){
  1498. laListHandle Segments={0}; int from=0,to=Our->NextDab; if(!Our->NextDab) return;
  1499. OurSmudgeSegement* oss; unsigned int uniforms[2];
  1500. oss=lstAppendPointerSized(&Segments, 0,sizeof(OurSmudgeSegement));
  1501. for(int i=1;i<to;i++){
  1502. if(Our->Dabs[i].ResampleSmudge){ oss->Start=from; oss->End=i; from=i;
  1503. oss=lstAppendPointerSized(&Segments, 0,sizeof(OurSmudgeSegement)); oss->Resample=1;
  1504. }
  1505. }
  1506. oss->Start=from; oss->End=to;
  1507. if(Our->Dabs[0].ResampleSmudge){ ((OurSmudgeSegement*)Segments.pFirst)->Resample=1; }
  1508. glUseProgram(Our->CanvasProgram);
  1509. glUniform1i(Our->uBrushErasing,Our->Erasing);
  1510. uniforms[Our->uBrushRoutineSelection]=Our->RoutineDoDabs;
  1511. uniforms[Our->uMixRoutineSelection]=Our->SpectralMode?Our->RoutineDoMixSpectral:Our->RoutineDoMixNormal;
  1512. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,2,uniforms);
  1513. glUniform1i(Our->uCanvasType,Our->BackgroundType);
  1514. glUniform1i(Our->uCanvasRandom,Our->BackgroundRandom);
  1515. glUniform1f(Our->uCanvasFactor,Our->BackgroundFactor);
  1516. while(oss=lstPopItem(&Segments)){
  1517. if(oss->Resample || Our->CurrentBrush->SmudgeRestart){
  1518. uniforms[Our->uBrushRoutineSelection]=Our->RoutineDoSample;
  1519. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,2,uniforms);
  1520. int x=Our->Dabs[oss->Start].X, y=Our->Dabs[oss->Start].Y; float usize=Our->Dabs[oss->Start].Size;
  1521. float ssize=(usize>15)?(usize+1.5):(usize*1.1); if(ssize<3) ssize=3;
  1522. int colmax=(int)(floor(OUR_TILE_CTR+(float)(x+ssize)/OUR_TILE_W_USE+0.5)); TNS_CLAMP(colmax,0,OUR_TILES_PER_ROW-1);
  1523. int rowmax=(int)(floor(OUR_TILE_CTR+(float)(y+ssize)/OUR_TILE_W_USE+0.5)); TNS_CLAMP(rowmax,0,OUR_TILES_PER_ROW-1);
  1524. int colmin=(int)(floor(OUR_TILE_CTR+(float)(x-ssize)/OUR_TILE_W_USE+0.5)); TNS_CLAMP(colmin,0,OUR_TILES_PER_ROW-1);
  1525. int rowmin=(int)(floor(OUR_TILE_CTR+(float)(y-ssize)/OUR_TILE_W_USE+0.5)); TNS_CLAMP(rowmin,0,OUR_TILES_PER_ROW-1);
  1526. glBindImageTexture(1, Our->SmudgeTexture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1527. for(int col=colmin;col<=colmax;col++){
  1528. for(int row=rowmin;row<=rowmax;row++){
  1529. glBindImageTexture(0, l->TexTiles[row][col]->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1530. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  1531. our_PaintDoSample(x,y,sx,sy,ssize,(col==colmax)&&(row==rowmax),Our->CurrentBrush->SmudgeRestart);
  1532. }
  1533. }
  1534. Our->CurrentBrush->SmudgeRestart=0;
  1535. uniforms[Our->uBrushRoutineSelection]=Our->RoutineDoDabs;
  1536. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,2,uniforms);
  1537. glUniform1i(Our->uBrushErasing,Our->Erasing);
  1538. }
  1539. //printf("from to %d %d %d\n", oss->Start,oss->End,Our->Dabs[oss->Start].ResampleSmudge);
  1540. our_PaintDoDabs(l,tl,tr,tu,tb,oss->Start,oss->End);
  1541. }
  1542. }
  1543. void ourset_CurrentBrush(void* unused, OurBrush* b);
  1544. void our_EnsureEraser(int EventIsEraser){
  1545. if(EventIsEraser==Our->EventErasing){ return; }
  1546. printf("ev e %d %d\n", Our->EventErasing, Our->Erasing);
  1547. int erasing=Our->Erasing; int num=0;
  1548. if(EventIsEraser && (!Our->EventErasing)){ num=TNS_MAX2(Our->EraserID,num);
  1549. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1550. if(b->Binding==num){ ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break; }
  1551. }
  1552. Our->Erasing=1; Our->EventErasing=1; laNotifyUsers("our.erasing");
  1553. }
  1554. elif((!EventIsEraser) && Our->EventErasing){ num=TNS_MAX2(Our->PenID,num);
  1555. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1556. if(b->Binding==num){ ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break; }
  1557. }
  1558. Our->Erasing=0; Our->EventErasing=0; laNotifyUsers("our.erasing");
  1559. }
  1560. }
  1561. void our_ReadWidgetColor(laCanvasExtra*e,int x,int y){
  1562. float color[4]; real rcolor[3],xyz[3];
  1563. glBindFramebuffer(GL_READ_FRAMEBUFFER, e->OffScr->FboHandle);
  1564. glReadBuffer(GL_COLOR_ATTACHMENT0);
  1565. glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
  1566. glReadPixels(x,y,1,1, GL_RGBA, GL_FLOAT, color);
  1567. color[0]*=color[3];color[1]*=color[3];color[2]*=color[3];tnsVectorSet3v(Our->CurrentColor,color);
  1568. }
  1569. int our_RenderThumbnail(uint8_t** buf, int* sizeof_buf){
  1570. int x=INT_MAX,y=INT_MAX,x1=-INT_MAX,y1=-INT_MAX,w=-INT_MAX,h=-INT_MAX;
  1571. for(OurLayer* l=Our->Layers.pFirst;l;l=l->Item.pNext){
  1572. our_LayerClearEmptyTiles(l);
  1573. our_LayerEnsureImageBuffer(l,1);
  1574. if(Our->ImageX<x) x=Our->ImageX; if(Our->ImageY<y) y=Our->ImageY;
  1575. if(Our->ImageW+Our->ImageX>x1) x1=Our->ImageW+Our->ImageX;
  1576. if(Our->ImageH+Our->ImageY>y1) y1=Our->ImageH+Our->ImageY;
  1577. }
  1578. w = x1-x; h=y1-y;
  1579. if(w<=0||h<=0) return 0;
  1580. real r = (real)(TNS_MAX2(w,h))/400.0f;
  1581. int use_w=w/r, use_h=h/r;
  1582. tnsOffscreen* off = tnsCreate2DOffscreen(GL_RGBA,use_w,use_h,0,0,0);
  1583. tnsDrawToOffscreen(off,1,0);
  1584. tnsViewportWithScissor(0, 0, use_w, use_h);
  1585. tnsResetViewMatrix();tnsResetModelMatrix();tnsResetProjectionMatrix();
  1586. tnsOrtho(x,x+w,y+h,y,-100,100);
  1587. tnsClearColor(LA_COLOR3(Our->BackgroundColor),1); tnsClearAll();
  1588. our_CanvasDrawTextures();
  1589. if(Our->ImageBuffer){ free(Our->ImageBuffer); }
  1590. int bufsize=use_w*use_h*sizeof(uint16_t)*4;
  1591. Our->ImageBuffer=malloc(bufsize);
  1592. tnsBindTexture(off->pColor[0]); glPixelStorei(GL_PACK_ALIGNMENT, 2);
  1593. glGetTextureSubImage(off->pColor[0]->GLTexHandle, 0, 0, 0, 0, use_w, use_h, 1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, Our->ImageBuffer);
  1594. tnsDrawToScreen();
  1595. tnsDelete2DOffscreen(off);
  1596. Our->ImageW = use_w; Our->ImageH = use_h;
  1597. our_ImageConvertForExport(OUR_EXPORT_BIT_DEPTH_8,OUR_EXPORT_COLOR_MODE_CLAY);
  1598. png_structp png_ptr=png_create_write_struct(PNG_LIBPNG_VER_STRING,0,0,0);
  1599. png_infop info_ptr = png_create_info_struct(png_ptr);
  1600. OurLayerWrite LayerWrite={0};
  1601. arrEnsureLength(&LayerWrite.data,0,&LayerWrite.MaxData,sizeof(unsigned char));
  1602. png_set_write_fn(png_ptr,&LayerWrite,_our_png_write,0);
  1603. png_set_IHDR(png_ptr, info_ptr,use_w,use_h,8,PNG_COLOR_TYPE_RGBA,PNG_INTERLACE_NONE,PNG_COMPRESSION_TYPE_BASE,PNG_FILTER_TYPE_BASE);
  1604. png_write_info(png_ptr, info_ptr);
  1605. png_set_swap(png_ptr);
  1606. uint8_t* data=Our->ImageBuffer;
  1607. for(int i=0;i<use_h;i++){
  1608. png_write_row(png_ptr,&data[use_w*i*4]);
  1609. }
  1610. png_write_end(png_ptr, info_ptr);
  1611. png_destroy_write_struct(&png_ptr, &info_ptr);
  1612. *buf=LayerWrite.data; *sizeof_buf=LayerWrite.NextData;
  1613. free(Our->ImageBuffer); Our->ImageBuffer=0;
  1614. Our->ImageW = w; Our->ImageH = h;
  1615. return 1;
  1616. }
  1617. int our_GetFileThumbnail(char* file, uint8_t** buf, int* sizeof_buf){
  1618. laUDF* udf = laOpenUDF(file,0,0,0);
  1619. if(udf){
  1620. laExtractProp(udf,"our.thumbnail");
  1621. laExtractUDF(udf,0,LA_UDF_MODE_APPEND); laCloseUDF(udf);
  1622. }
  1623. }
  1624. void our_StartCropping(OurCanvasDraw* cd){
  1625. if(cd->CanvasDownX<Our->X){
  1626. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_BL; }
  1627. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_L; }
  1628. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_UL; }
  1629. }elif(cd->CanvasDownX>=Our->X&&cd->CanvasDownX<=Our->X+Our->W){
  1630. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_B; }
  1631. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_CENTER; }
  1632. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_U; }
  1633. }elif(cd->CanvasDownX>Our->X+Our->W){
  1634. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_BR; }
  1635. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_R; }
  1636. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_UR; }
  1637. }
  1638. }
  1639. void our_DoCropping(OurCanvasDraw* cd, real x, real y){
  1640. int dx=x-cd->CanvasLastX, dy=y-cd->CanvasLastY;
  1641. if(cd->AtCrop==OUR_AT_CROP_B||cd->AtCrop==OUR_AT_CROP_BL||cd->AtCrop==OUR_AT_CROP_BR){ Our->H-=dy; }
  1642. if(cd->AtCrop==OUR_AT_CROP_U||cd->AtCrop==OUR_AT_CROP_UL||cd->AtCrop==OUR_AT_CROP_UR){ Our->Y+=dy; Our->H+=dy; }
  1643. if(cd->AtCrop==OUR_AT_CROP_L||cd->AtCrop==OUR_AT_CROP_BL||cd->AtCrop==OUR_AT_CROP_UL){ Our->X+=dx; Our->W-=dx; }
  1644. if(cd->AtCrop==OUR_AT_CROP_R||cd->AtCrop==OUR_AT_CROP_BR||cd->AtCrop==OUR_AT_CROP_UR){ Our->W+=dx; }
  1645. if(cd->AtCrop==OUR_AT_CROP_CENTER){ Our->Y+=dy; Our->X+=dx; }
  1646. if(Our->W<32) Our->W=32; if(Our->H<32) Our->H=32;
  1647. cd->CanvasLastX+=dx; cd->CanvasLastY+=dy;
  1648. }
  1649. void our_LayerGetRange(OurLayer* ol, int* rowmin,int* rowmax, int* colmin, int* colmax){
  1650. *rowmin = *colmin = INT_MAX; *rowmax = *colmax = -INT_MAX;
  1651. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  1652. if(*rowmin==INT_MAX){ *rowmin = row; }
  1653. *rowmax=row;
  1654. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  1655. if(col > *colmax){ *colmax=col; }
  1656. if(col < *colmin){ *colmin = col; }
  1657. }
  1658. }
  1659. }
  1660. int our_MoveLayer(OurLayer* ol, int dx, int dy, int* movedx, int* movedy){
  1661. if(!ol || (!dx && !dy)){ *movedx=0; *movedy=0; return 0; }
  1662. int rowmin,rowmax,colmin,colmax; our_LayerGetRange(ol,&rowmin,&rowmax,&colmin,&colmax);
  1663. if(dx+colmax >= OUR_TILES_PER_ROW){ dx = OUR_TILES_PER_ROW - colmax - 1; }
  1664. if(dy+rowmax >= OUR_TILES_PER_ROW){ dy = OUR_TILES_PER_ROW - rowmax - 1; }
  1665. if(colmin + dx < 0){ dx = -colmin; }
  1666. if(rowmin + dy < 0){ dy = -rowmin; }
  1667. if(!dx && !dy){ *movedx=0; *movedy=0; return 0; }
  1668. if(movedx){ *movedx=dx; }
  1669. if(movedy){ *movedy=dy; }
  1670. OurTexTile*** copy = memAcquire(sizeof(void*)*OUR_TILES_PER_ROW);
  1671. for(int i=0;i<OUR_TILES_PER_ROW;i++){ copy[i] = memAcquire(sizeof(void*)*OUR_TILES_PER_ROW); }
  1672. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  1673. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  1674. copy[row][col] = ol->TexTiles[row][col];
  1675. ol->TexTiles[row][col] = 0;
  1676. }
  1677. }
  1678. for(int row=rowmin;row<=rowmax;row++){ if(!ol->TexTiles[row]) continue;
  1679. for(int col=colmin;col<=colmax;col++){
  1680. OurTexTile* t0=copy[row][col]; if(!t0){continue; }
  1681. t0->l+=dx*OUR_TILE_W; t0->r+=dx*OUR_TILE_W;
  1682. t0->u+=dy*OUR_TILE_W; t0->b+=dy*OUR_TILE_W;
  1683. if(!ol->TexTiles[row+dy]){
  1684. ol->TexTiles[row+dy] = memAcquire(sizeof(OurTexTile*)*OUR_TILES_PER_ROW);
  1685. }
  1686. ol->TexTiles[row+dy][col+dx] = t0;
  1687. }
  1688. }
  1689. for(int i=0;i<OUR_TILES_PER_ROW;i++){ memFree(copy[i]); }
  1690. memFree(copy);
  1691. return 1;
  1692. }
  1693. void ourundo_Move(OurMoveUndo* undo){
  1694. our_LayerClearEmptyTiles(undo->Layer);
  1695. our_MoveLayer(undo->Layer, -undo->dx, -undo->dy,0,0);
  1696. laNotifyUsers("our.canvas");
  1697. }
  1698. void ourredo_Move(OurMoveUndo* undo){
  1699. our_LayerClearEmptyTiles(undo->Layer);
  1700. our_MoveLayer(undo->Layer, undo->dx, undo->dy,0,0);
  1701. laNotifyUsers("our.canvas");
  1702. }
  1703. void our_DoMoving(OurCanvasDraw* cd, real x, real y, int *movedx, int *movedy){
  1704. OurLayer* ol=Our->CurrentLayer; if(!ol){ return; }
  1705. int dx = x-cd->CanvasDownX, dy = y-cd->CanvasDownY;
  1706. dx/=OUR_TILE_W_USE; dy/=OUR_TILE_W_USE;
  1707. if(dx || dy){
  1708. our_MoveLayer(ol, dx,dy,movedx,movedy);
  1709. laNotifyUsers("our.canvas");
  1710. cd->CanvasDownX+=dx*OUR_TILE_W_USE; cd->CanvasDownY+=dy*OUR_TILE_W_USE;
  1711. }
  1712. }
  1713. void our_ShowAllocationError(laEvent* e){
  1714. char buf[256];
  1715. Our->SaveFailed=1;
  1716. sprintf(buf, "%s %dx%d.\n",transLate("Can't allocate memory for size"),Our->ImageW,Our->ImageH);
  1717. logPrintNew("Export: %s",buf);
  1718. if(e){
  1719. strcat(buf,transLate("Try erasing some contents to make the canvas smaller.\n"));
  1720. laEnableMessagePanel(0,0,"Export Error",buf,e->x,e->y,200,e);
  1721. }
  1722. }
  1723. int ourinv_ShowSplash(laOperator* a, laEvent* e){
  1724. our_EnableSplashPanel();return LA_FINISHED;
  1725. }
  1726. int ourinv_NewLayer(laOperator* a, laEvent* e){
  1727. our_NewLayer("Our Layer"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1728. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1729. return LA_FINISHED;
  1730. }
  1731. int ourinv_DuplicateLayer(laOperator* a, laEvent* e){
  1732. OurLayer* l=a->This?a->This->EndInstance:Our->CurrentLayer;
  1733. if(!l){ return LA_FINISHED; }
  1734. our_NewLayer(SSTR(Our->CurrentLayer->Name));
  1735. our_DuplicateLayerContent(Our->CurrentLayer,l);
  1736. int rowmin,rowmax,colmin,colmax;
  1737. our_LayerGetRange(Our->CurrentLayer,&rowmin,&rowmax,&colmin,&colmax);
  1738. int xmin,xmax,ymin,ymax;
  1739. xmin =((real)colmin-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE; ymin=((real)rowmin-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE;
  1740. xmax =((real)colmax+1-OUR_TILE_CTR+0.5)*OUR_TILE_W_USE; ymax=((real)rowmax+1-OUR_TILE_CTR-0.5)*OUR_TILE_W_USE;
  1741. our_RecordUndo(Our->CurrentLayer,xmin,xmax,ymin,ymax,1,0);
  1742. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1743. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1744. return LA_FINISHED;
  1745. }
  1746. int ourinv_RemoveLayer(laOperator* a, laEvent* e){
  1747. OurLayer* l=a->This?a->This->EndInstance:0; if(!l) return LA_CANCELED;
  1748. our_RemoveLayer(l,0); laNotifyUsers("our.canvas.layers"); laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1749. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("Remove Layer",0);
  1750. return LA_FINISHED;
  1751. }
  1752. int ourinv_MoveLayer(laOperator* a, laEvent* e){
  1753. OurLayer* l=a->This?a->This->EndInstance:0; if(!l) return LA_CANCELED; int changed=0;
  1754. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1755. if(strSame(direction,"up")&&l->Item.pPrev){ lstMoveUp(&Our->Layers, l); changed=1; }
  1756. elif(l->Item.pNext){ lstMoveDown(&Our->Layers, l); changed=1; }
  1757. if(changed){ laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); laRecordDifferences(0,"our.canvas.layers"); laPushDifferences("Move Layer",0); }
  1758. return LA_FINISHED;
  1759. }
  1760. int ourchk_MergeLayer(laPropPack *This, laStringSplitor *ss){
  1761. OurLayer* l=This->EndInstance; if(!l || !l->Item.pNext) return 0;
  1762. OurLayer* nl=l->Item.pNext; if(l->Lock || l->Transparency==1 || nl->Lock || nl->Transparency==1) return 0;
  1763. return 1;
  1764. }
  1765. int ourinv_MergeLayer(laOperator* a, laEvent* e){
  1766. OurLayer* l=a->This?a->This->EndInstance:0; if(!l || !l->Item.pNext) return LA_CANCELED;
  1767. OurLayer* nl=l->Item.pNext; if(l->Lock || l->Transparency==1 || nl->Lock || nl->Transparency==1) return LA_CANCELED;
  1768. if(our_MergeLayer(l)){ laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); }
  1769. return LA_FINISHED;
  1770. }
  1771. int ourchk_ExportLayer(laPropPack *This, laStringSplitor *ss){
  1772. OurLayer* ol=This?This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return 0; return 1;
  1773. }
  1774. int ourinv_ExportLayer(laOperator* a, laEvent* e){
  1775. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1776. laInvoke(a, "LA_file_dialog", e, 0, "warn_file_exists=true;filter_extensions=png;use_extension=png", 0);
  1777. return LA_RUNNING;
  1778. }
  1779. int ourmod_ExportLayer(laOperator* a, laEvent* e){
  1780. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1781. if (a->ConfirmData){
  1782. if (a->ConfirmData->StrData){
  1783. our_LayerClearEmptyTiles(ol);
  1784. if(!our_LayerEnsureImageBuffer(ol, 0)){ our_ShowAllocationError(e); return LA_FINISHED; }
  1785. FILE* fp=fopen(a->ConfirmData->StrData,"wb");
  1786. if(!fp) return LA_FINISHED;
  1787. laShowProgress(0,-1);
  1788. our_LayerToImageBuffer(ol, 0);
  1789. laShowProgress(0.5,-1);
  1790. our_ImageExportPNG(fp, 0, 0, 0, 0, OUR_EXPORT_BIT_DEPTH_16, OUR_EXPORT_COLOR_MODE_FLAT);
  1791. if(Our->ImageBuffer){ free(Our->ImageBuffer); Our->ImageBuffer=0; }
  1792. laHideProgress();
  1793. fclose(fp);
  1794. }
  1795. return LA_FINISHED;
  1796. }
  1797. return LA_RUNNING;
  1798. }
  1799. int ourinv_ImportLayer(laOperator* a, laEvent* e){
  1800. OurLayer* ol=a->This?a->This->EndInstance:0;
  1801. a->CustomData=memAcquire(sizeof(OurPNGReadExtra));
  1802. laInvoke(a, "LA_file_dialog", e, 0, "filter_extensions=png;use_extension=png", 0);
  1803. return LA_RUNNING;
  1804. }
  1805. int ourmod_ImportLayer(laOperator* a, laEvent* e){
  1806. OurLayer* ol=a->This?a->This->EndInstance:0;
  1807. OurPNGReadExtra* ex=a->CustomData;
  1808. if(!ex->Confirming){
  1809. if (a->ConfirmData){
  1810. if (a->ConfirmData->StrData){
  1811. FILE* fp=fopen(a->ConfirmData->StrData,"rb"); if(!fp) return LA_FINISHED;
  1812. if(!our_PeekPNG(fp,&ex->HasProfile, &ex->HassRGB, &ex->iccName)){ fclose(fp); return LA_FINISHED; }
  1813. else{ ex->Confirming=1; fclose(fp); strSafeSet(&ex->FilePath,a->ConfirmData->StrData);
  1814. if(ex->HasProfile){ex->InputMode=OUR_PNG_READ_INPUT_ICC;}
  1815. else{ ex->InputMode=OUR_PNG_READ_INPUT_SRGB; }
  1816. laEnableOperatorPanel(a,a->This,e->x,e->y,300,200,0,0,0,0,0,0,0,0,e); return LA_RUNNING;
  1817. }
  1818. }
  1819. return LA_FINISHED;
  1820. }
  1821. }else{
  1822. if (a->ConfirmData){
  1823. if (a->ConfirmData->Mode==LA_CONFIRM_OK){
  1824. FILE* fp=fopen(ex->FilePath->Ptr,"rb"); if(!fp) return LA_FINISHED;
  1825. if(!ol) ol=our_NewLayer("Imported");
  1826. int OutMode=ex->OutputMode?ex->OutputMode:((Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB)?OUR_PNG_READ_OUTPUT_LINEAR_SRGB:OUR_PNG_READ_OUTPUT_LINEAR_CLAY);
  1827. int UseOffsets = ex->Offsets[0] && ex->Offsets[1];
  1828. our_LayerImportPNG(ol, fp, 0, ex->InputMode, OutMode, UseOffsets, ex->Offsets[0], ex->Offsets[1]);
  1829. laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1830. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1831. our_LayerRefreshLocal(ol);
  1832. laHideProgress();
  1833. fclose(fp);
  1834. }
  1835. return LA_FINISHED;
  1836. }
  1837. }
  1838. return LA_RUNNING;
  1839. }
  1840. void ourexit_ImportLayer(laOperator* a, int result){
  1841. OurPNGReadExtra* ex=a->CustomData;
  1842. strSafeDestroy(&ex->FilePath);
  1843. memFree(ex);
  1844. }
  1845. void ourui_ImportLayer(laUiList *uil, laPropPack *This, laPropPack *Operator, laColumn *UNUSED, int context){
  1846. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  1847. laUiItem* b;
  1848. laShowLabel(uil,c,"Select the importing behavior:",0,0);
  1849. laShowLabel(uil,cl,"Input:",0,0); laShowItem(uil,cl,Operator,"input_mode");
  1850. b=laOnConditionThat(uil,c,laNot(laEqual(laPropExpression(Operator,"input_mode"),laIntExpression(OUR_PNG_READ_INPUT_FLAT))));{
  1851. laShowLabel(uil,cr,"Output:",0,0); laShowItem(uil,cr,Operator,"output_mode");
  1852. laShowLabel(uil,cl,"Canvas:",0,0)->Flags|=LA_TEXT_ALIGN_RIGHT; laShowItem(uil,cr,0,"our.canvas.color_interpretation");
  1853. }laEndCondition(uil,b);
  1854. b=laOnConditionThat(uil,c,laPropExpression(Operator,"has_profile"));{
  1855. laShowLabel(uil,c,"Input image has built-in color profile:",0,0);
  1856. laShowItem(uil,cl,Operator,"icc_name")->Flags|=LA_TEXT_MONO;
  1857. }laElse(uil,b);{
  1858. laShowLabel(uil,c,"Input image does not have a built-in color profile.",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  1859. }laEndCondition(uil,b);
  1860. b=laOnConditionThat(uil,c,laPropExpression(Operator,"has_srgb"));{
  1861. laShowLabel(uil,c,"Input image is tagged as sRGB.",0,0);
  1862. }laElse(uil,b);{
  1863. laShowLabel(uil,c,"Input image is not tagged as sRGB.",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  1864. }laEndCondition(uil,b);
  1865. laUiItem* row = laBeginRow(uil,cl,0,0);
  1866. laShowLabel(uil,cl,"Use Offsets",0,0);
  1867. b=laOnConditionToggle(uil,cl,0,0,0,0,0);{
  1868. laEndRow(uil,row);
  1869. laShowItem(uil,cl,Operator,"offsets");
  1870. }laEndCondition(uil,b);
  1871. laEndRow(uil,row);
  1872. b=laBeginRow(uil,c,0,0);laShowSeparator(uil,c)->Expand=1;laShowItem(uil,c,0,"LA_confirm")->Flags|=LA_UI_FLAGS_HIGHLIGHT;laEndRow(uil,b);
  1873. }
  1874. int ourchk_ExportImage(laPropPack *This, laStringSplitor *ss){
  1875. OurLayer* ol=This?This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return 0; return 1;
  1876. }
  1877. int ourinv_ExportImage(laOperator* a, laEvent* e){
  1878. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1879. a->CustomData=memAcquire(sizeof(OurPNGWriteExtra));
  1880. laInvoke(a, "LA_file_dialog", e, 0, "warn_file_exists=true;filter_extensions=png;use_extension=png", 0);
  1881. return LA_RUNNING;
  1882. }
  1883. int ourmod_ExportImage(laOperator* a, laEvent* e){
  1884. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1885. OurPNGWriteExtra* ex=a->CustomData;
  1886. if(!ex->Confirming){
  1887. if (a->ConfirmData){
  1888. if (a->ConfirmData->StrData){
  1889. strSafeSet(&ex->FilePath,a->ConfirmData->StrData); ex->Confirming=1;
  1890. ex->ColorProfile=Our->DefaultColorProfile; ex->BitDepth=Our->DefaultBitDepth;
  1891. laEnableOperatorPanel(a,a->This,e->x,e->y,200,200,0,0,0,0,0,0,0,0,e); return LA_RUNNING;
  1892. }
  1893. return LA_FINISHED;
  1894. }
  1895. }else{
  1896. if (a->ConfirmData){
  1897. if (a->ConfirmData->Mode==LA_CONFIRM_OK){
  1898. if(!our_CanvasEnsureImageBuffer()){ our_ShowAllocationError(e); return LA_FINISHED; }
  1899. FILE* fp=fopen(ex->FilePath->Ptr,"wb");
  1900. if(!fp) return LA_FINISHED;
  1901. static int LayerCount=0; static int CurrentLayer=0; LayerCount=lstCountElements(&Our->Layers); CurrentLayer=0;
  1902. our_CanvasFillImageBufferBackground();
  1903. laShowProgress(0,-1);
  1904. for(OurLayer* l=Our->Layers.pLast;l;l=l->Item.pPrev){
  1905. our_LayerToImageBuffer(l, 1);
  1906. CurrentLayer++; laShowProgress((real)CurrentLayer/LayerCount,-1);
  1907. }
  1908. our_ImageConvertForExport(ex->BitDepth, ex->ColorProfile);
  1909. if(!Our->ImageBuffer){ our_ShowAllocationError(e); fclose(fp); return LA_FINISHED; }
  1910. our_ImageExportPNG(fp, 0, 0, 0, Our->ShowBorder, ex->BitDepth, ex->ColorProfile);
  1911. if(Our->ImageBuffer){ free(Our->ImageBuffer); Our->ImageBuffer=0; }
  1912. laHideProgress();
  1913. fclose(fp);
  1914. }
  1915. return LA_FINISHED;
  1916. }
  1917. }
  1918. return LA_RUNNING;
  1919. }
  1920. void ourexit_ExportImage(laOperator* a, int result){
  1921. OurPNGWriteExtra* ex=a->CustomData;
  1922. strSafeDestroy(&ex->FilePath);
  1923. memFree(ex);
  1924. }
  1925. void ourui_ExportImage(laUiList *uil, laPropPack *This, laPropPack *Operator, laColumn *UNUSED, int context){
  1926. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  1927. laUiItem* b;
  1928. laShowLabel(uil,c,"Select the exporting behavior:",0,0);
  1929. laShowLabel(uil,cl,"Bit Depth:",0,0); laShowItem(uil,cl,Operator,"bit_depth");
  1930. b=laOnConditionThat(uil,c,laEqual(laPropExpression(Operator,"bit_depth"),laIntExpression(OUR_EXPORT_BIT_DEPTH_16)));{
  1931. laShowLabel(uil,c,"16 bit images would be exported in the same linear color space as the canvas",0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_LINE_WRAP;
  1932. }laElse(uil,b);{
  1933. laShowLabel(uil,cr,"Color Space:",0,0); laShowItem(uil,cr,Operator,"color_profile");
  1934. }laEndCondition(uil,b);
  1935. laShowLabel(uil,cl,"Canvas Current:",0,0)->Flags|=LA_TEXT_ALIGN_RIGHT; laShowItem(uil,cr,0,"our.canvas.color_interpretation");
  1936. b=laBeginRow(uil,c,0,0);laShowSeparator(uil,c)->Expand=1;laShowItem(uil,c,0,"LA_confirm")->Flags|=LA_UI_FLAGS_HIGHLIGHT;laEndRow(uil,b);
  1937. }
  1938. int ourinv_NewBrush(laOperator* a, laEvent* e){
  1939. our_NewBrush("Our Brush",15,0.95,9,0.5,0.5,5,0,0,0,0);
  1940. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Add brush",0);
  1941. return LA_FINISHED;
  1942. }
  1943. int ourinv_DuplicateBrush(laOperator* a, laEvent* e){
  1944. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1945. our_DuplicateBrush(b);
  1946. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Duplicate brush",0);
  1947. return LA_FINISHED;
  1948. }
  1949. int ourinv_RemoveBrush(laOperator* a, laEvent* e){
  1950. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1951. our_RemoveBrush(b);
  1952. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Remove brush",0);
  1953. return LA_FINISHED;
  1954. }
  1955. int ourinv_MoveBrush(laOperator* a, laEvent* e){
  1956. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1957. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1958. if(strSame(direction,"up")&&b->Item.pPrev){ lstMoveUp(&Our->Brushes, b); }
  1959. elif(b->Item.pNext){ lstMoveDown(&Our->Brushes, b); }
  1960. laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Move brush",0);
  1961. return LA_FINISHED;
  1962. }
  1963. int ourinv_BrushQuickSwitch(laOperator* a, laEvent* e){
  1964. char* id=strGetArgumentString(a->ExtraInstructionsP,"binding"); if(!id){ return LA_CANCELED; }
  1965. int num; int ret=sscanf(id,"%d",&num); if(ret>9||ret<0){ return LA_CANCELED; }
  1966. OurBrush* found=0,*first=0; int set=0;
  1967. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1968. if(b->Binding==num){
  1969. if(!first){ first=b; }
  1970. if(found){ ourset_CurrentBrush(Our,b); set=1; laNotifyUsers("our.tools.brushes"); break; }
  1971. elif(b == Our->CurrentBrush){ found = b; }
  1972. }
  1973. }
  1974. if(!found || (found && !set)){ found = first; }
  1975. if(!set && found){
  1976. ourset_CurrentBrush(Our,found); laNotifyUsers("our.tools.brushes");
  1977. }
  1978. return LA_FINISHED;
  1979. }
  1980. int ourinv_BrushResize(laOperator* a, laEvent* e){
  1981. OurBrush* b=Our->CurrentBrush; if(!b) return LA_CANCELED;
  1982. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1983. if(strSame(direction,"bigger")){ b->Size*=1.25; }else{ b->Size/=1.25; }
  1984. TNS_CLAMP(b->Size,0,1000);
  1985. laNotifyUsers("our.tools.current_brush.size");
  1986. return LA_FINISHED;
  1987. }
  1988. int ourinv_ToggleErase(laOperator* a, laEvent* e){
  1989. OurBrush* b=Our->CurrentBrush; if(!b) return LA_FINISHED;
  1990. if(Our->Erasing){ Our->Erasing=0; }else{ Our->Erasing=1; } laNotifyUsers("our.erasing");
  1991. return LA_FINISHED;
  1992. }
  1993. int ourinv_CycleSketch(laOperator* a, laEvent* e){
  1994. Our->SketchMode++; Our->SketchMode%=3;
  1995. laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.sketch_mode");
  1996. laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1997. }
  1998. void our_SmoothGlobalInput(real *x, real *y, int reset){
  1999. if(reset){ Our->LastX=*x; Our->LastY=*y; return; }
  2000. else{
  2001. real smfac=(1-Our->Smoothness/1.1);
  2002. real xto=tnsLinearItp(Our->LastX,*x,smfac), yto=tnsLinearItp(Our->LastY,*y,smfac);
  2003. *x=Our->LastX=xto; *y=Our->LastY=yto;
  2004. }
  2005. }
  2006. int ourinv_Action(laOperator* a, laEvent* e){
  2007. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  2008. our_PaintResetBrushState(ob);
  2009. real ofx,ofy; our_GetBrushOffset(ex,Our->CurrentBrush,e->Orientation,&ofx,&ofy); ex->DownTilt = e->Orientation;
  2010. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y); x-=ofx; y-=ofy; our_SmoothGlobalInput(&x,&y,1);
  2011. ex->CanvasLastX=x;ex->CanvasLastY=y;ex->LastPressure=-1;ex->LastTilt[0]=e->Orientation;ex->LastTilt[1]=e->Deviation;
  2012. ex->CanvasDownX=x; ex->CanvasDownY=y; ex->MovedX=0; ex->MovedY=0;
  2013. Our->ActiveTool=Our->Tool; Our->CurrentScale = 1.0f/ex->Base.ZoomX;
  2014. Our->xmin=FLT_MAX;Our->xmax=-FLT_MAX;Our->ymin=FLT_MAX;Our->ymax=-FLT_MAX; Our->ResetBrush=1; ex->HideBrushCircle=1;
  2015. Our->PaintProcessedEvents=0; Our->BadEventsGiveUp=0; Our->BadEventCount=0;
  2016. if(Our->ActiveTool==OUR_TOOL_CROP){ if(!Our->ShowBorder){ ex->HideBrushCircle=0; return LA_FINISHED;} our_StartCropping(ex); }
  2017. if(l->Hide || l->Transparency==1 || l->Lock || (l->AsSketch && Our->SketchMode==2)){ ex->HideBrushCircle=0; return LA_FINISHED; }
  2018. Our->LockBackground=1; laNotifyUsers("our.lock_background");
  2019. our_EnsureEraser(e->IsEraser);
  2020. laHideCursor(); Our->ShowBrushName=0;
  2021. return LA_RUNNING;
  2022. }
  2023. int ourmod_Paint(laOperator* a, laEvent* e){
  2024. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  2025. if(e->type==LA_L_MOUSE_UP || e->type==LA_R_MOUSE_DOWN || e->type==LA_ESCAPE_DOWN){
  2026. if(Our->PaintProcessedEvents) our_RecordUndo(l,Our->xmin,Our->xmax,Our->ymin,Our->ymax,0,1);
  2027. ex->HideBrushCircle=0; laShowCursor();
  2028. laEvent* ue; while(ue=lstPopItem(&Our->BadEvents)){ memFree(ue); }
  2029. return LA_FINISHED;
  2030. }
  2031. if(e->type==LA_MOUSEMOVE||e->type==LA_L_MOUSE_DOWN){
  2032. if((!e->GoodPressure) && ((!Our->BadEventsGiveUp)||(!Our->AllowNonPressure))){
  2033. laEvent* be=memAcquire(sizeof(laEvent)); memcpy(be,e,sizeof(laEvent)); be->Item.pNext=be->Item.pPrev=0;
  2034. lstAppendItem(&Our->BadEvents,be); Our->BadEventCount++;
  2035. if(Our->BadEventCount>=Our->BadEventsLimit){ Our->BadEventsGiveUp=1; }
  2036. }else{
  2037. Our->PaintProcessedEvents=1; laEvent* UseEvent;real Pressure=e->Pressure,Orientation=-e->Orientation,Deviation=e->Deviation,Twist=e->Twist;
  2038. while(1){
  2039. UseEvent=lstPopItem(&Our->BadEvents); if(!UseEvent){ UseEvent=e; }
  2040. real ofx,ofy; our_GetBrushOffset(ex,Our->CurrentBrush,ex->DownTilt,&ofx,&ofy);
  2041. real x,y; our_UiToCanvas(&ex->Base,UseEvent,&x,&y); x-=ofx; y-=ofy; our_SmoothGlobalInput(&x,&y,0);
  2042. int tl,tr,tu,tb; if(ex->LastPressure<0){ ex->LastPressure=Pressure; }
  2043. if(our_PaintGetDabs(ob,l,ex->CanvasLastX,ex->CanvasLastY,x,y,ex->LastPressure,ex->LastTilt[0],ex->LastTilt[1],ex->LastTwist,
  2044. Pressure,Orientation,Deviation,Twist,
  2045. &tl,&tr,&tu,&tb,&ex->CanvasLastX,&ex->CanvasLastY)){
  2046. our_PaintDoDabsWithSmudgeSegments(l,tl,tr,tu,tb);
  2047. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2048. }
  2049. ex->LastPressure=Pressure;ex->LastTilt[0]=Orientation;ex->LastTilt[1]=Deviation; ex->LastTwist=Twist;
  2050. if(UseEvent==e){ break; }
  2051. else{ memFree(UseEvent); }
  2052. }
  2053. }
  2054. }
  2055. return LA_RUNNING;
  2056. }
  2057. int ourmod_Crop(laOperator* a, laEvent* e){
  2058. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  2059. if(e->type==LA_L_MOUSE_UP || e->type==LA_R_MOUSE_DOWN || e->type==LA_ESCAPE_DOWN){ ex->HideBrushCircle=0; laShowCursor(); return LA_FINISHED; }
  2060. if(e->type==LA_MOUSEMOVE||e->type==LA_L_MOUSE_DOWN){
  2061. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y);
  2062. our_DoCropping(ex,x,y);
  2063. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2064. }
  2065. return LA_RUNNING;
  2066. }
  2067. int ourmod_Move(laOperator* a, laEvent* e){
  2068. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  2069. if(e->type==LA_L_MOUSE_UP || e->type==LA_R_MOUSE_DOWN || e->type==LA_ESCAPE_DOWN){
  2070. OurMoveUndo* undo = memAcquire(sizeof(OurMoveUndo));
  2071. undo->dx = ex->MovedX; undo->dy = ex->MovedY; undo->Layer = Our->CurrentLayer;
  2072. laFreeNewerDifferences();
  2073. laRecordCustomDifferences(undo,ourundo_Move,ourredo_Move,memFree); laPushDifferences("Move layer",0);
  2074. ex->HideBrushCircle=0; laShowCursor(); return LA_FINISHED;
  2075. }
  2076. if(e->type==LA_MOUSEMOVE||e->type==LA_L_MOUSE_DOWN){
  2077. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y);
  2078. int movedx=0,movedy=0;
  2079. our_DoMoving(ex,x,y,&movedx,&movedy);
  2080. ex->MovedX+=movedx; ex->MovedY+=movedy;
  2081. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2082. }
  2083. return LA_RUNNING;
  2084. }
  2085. int ourmod_Action(laOperator* a, laEvent* e){
  2086. OurCanvasDraw *ex = a->This?a->This->EndInstance:0; if(!ex) return LA_CANCELED;
  2087. OurLayer* l=Our->CurrentLayer; OurBrush* ob=Our->CurrentBrush;
  2088. switch(Our->ActiveTool){
  2089. case OUR_TOOL_PAINT: if(!l||!ob) return LA_CANCELED;
  2090. return ourmod_Paint(a,e);
  2091. case OUR_TOOL_CROP:
  2092. return ourmod_Crop(a,e);
  2093. case OUR_TOOL_MOVE:
  2094. return ourmod_Move(a,e);
  2095. default: return LA_FINISHED;
  2096. }
  2097. return LA_RUNNING;
  2098. }
  2099. int ourinv_PickColor(laOperator* a, laEvent* e){
  2100. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  2101. laUiItem* ui=ex->Base.ParentUi; ex->HideBrushCircle=1;
  2102. our_ReadWidgetColor(ex, e->x-ui->L, ui->B-e->y); laNotifyUsers("our.current_color");
  2103. return LA_RUNNING;
  2104. }
  2105. int ourmod_PickColor(laOperator* a, laEvent* e){
  2106. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  2107. laUiItem* ui=ex->Base.ParentUi;
  2108. if(e->type==LA_R_MOUSE_UP || e->type==LA_L_MOUSE_UP || e->type==LA_ESCAPE_DOWN){ ex->HideBrushCircle=0; return LA_FINISHED; }
  2109. if(e->type==LA_MOUSEMOVE||e->type==LA_R_MOUSE_DOWN){
  2110. our_ReadWidgetColor(ex, e->x-ui->L, ui->B-e->y); laNotifyUsers("our.current_color");
  2111. }
  2112. return LA_RUNNING;
  2113. }
  2114. int ourchk_CropToRef(laPropPack *This, laStringSplitor *ss){ if(Our->ShowRef&&Our->ShowBorder) return 1; return 0; }
  2115. int ourinv_CropToRef(laOperator* a, laEvent* e){
  2116. if((!Our->ShowRef) || (!Our->ShowBorder)) return LA_FINISHED;
  2117. real W,H,W2,H2; OUR_GET_REF_SIZE(W,H)
  2118. char* arg = strGetArgumentString(a->ExtraInstructionsP,"border");
  2119. if(strSame(arg,"outer")){
  2120. W+=Our->RefPaddings[0]*2; H+=Our->RefPaddings[1]*2;
  2121. }elif(strSame(arg,"inner")){
  2122. W-=Our->RefMargins[0]*2; H-=Our->RefMargins[1]*2;
  2123. }
  2124. real dpc=OUR_DPC; W*=dpc; H*=dpc; W2=W/2; H2=H/2;
  2125. Our->X=-W2; Our->W=W; Our->Y=H2; Our->H=H;
  2126. laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); laNotifyUsers("our.canvas");
  2127. return LA_FINISHED;
  2128. }
  2129. OurColorPallette* our_NewPallette(char* Name){
  2130. OurColorPallette* cp=memAcquireHyper(sizeof(OurColorPallette));
  2131. strSafeSet(&cp->Name,Name); lstAppendItem(&Our->Pallettes,cp); memAssignRef(Our,&Our->CurrentPallette,cp);
  2132. return cp;
  2133. }
  2134. OurColorItem* our_PalletteNewColor(OurColorPallette* cp,tnsVector3d Color){
  2135. OurColorItem* ci=memAcquire(sizeof(OurColorItem)); memAssignRef(ci,&ci->Parent,cp);
  2136. tnsVectorSet3v(ci->Color,Color); lstAppendItem(&cp->Colors,ci); return ci;
  2137. laMarkMemChanged(cp);
  2138. }
  2139. void our_PalletteRemoveColor(OurColorItem* ci){
  2140. lstRemoveItem(&ci->Parent->Colors,ci); memLeave(ci); laMarkMemChanged(ci->Parent);
  2141. }
  2142. void our_RemovePallette(OurColorPallette* cp){
  2143. strSafeDestroy(&cp->Name); while(cp->Colors.pFirst){ our_PalletteRemoveColor(cp->Colors.pFirst); }
  2144. if(Our->CurrentPallette==cp){
  2145. if(cp->Item.pNext){ memAssignRef(Our,&Our->CurrentPallette,cp->Item.pNext); }
  2146. else { memAssignRef(Our,&Our->CurrentPallette,cp->Item.pPrev); }
  2147. }
  2148. lstRemoveItem(&Our->Pallettes,cp); memLeave(cp);
  2149. }
  2150. int ourinv_NewPallette(laOperator* a, laEvent* e){
  2151. our_NewPallette("Our Pallette");
  2152. laNotifyUsers("our.tools.current_pallette"); laNotifyUsers("our.tools.pallettes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Add pallette",0);
  2153. return LA_FINISHED;
  2154. }
  2155. int ourinv_RemovePallette(laOperator* a, laEvent* e){
  2156. OurColorPallette* cp=Our->CurrentPallette; if(a->This && a->This->EndInstance){ cp=a->This->EndInstance; }
  2157. if(!cp) return LA_FINISHED;
  2158. our_RemovePallette(cp);
  2159. laNotifyUsers("our.tools.current_pallette"); laNotifyUsers("our.tools.pallettes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Remove pallette",0);
  2160. return LA_FINISHED;
  2161. }
  2162. int ourinv_PalletteNewColor(laOperator* a, laEvent* e){
  2163. OurColorPallette* cp=Our->CurrentPallette; if(a->This && a->This->EndInstance){ cp=a->This->EndInstance; }
  2164. if(!cp) return LA_FINISHED;
  2165. our_PalletteNewColor(cp,Our->CurrentColor);
  2166. laNotifyUsers("our.tools.current_pallette"); laNotifyUsers("our.tools.pallettes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Add color",0);
  2167. return LA_FINISHED;
  2168. }
  2169. int ourinv_PalletteRemoveColor(laOperator* a, laEvent* e){
  2170. OurColorItem* ci=0; if(a->This && a->This->EndInstance){ ci=a->This->EndInstance; }
  2171. if(!ci) return LA_FINISHED;
  2172. our_PalletteRemoveColor(ci);
  2173. laNotifyUsers("our.tools.current_pallette"); laNotifyUsers("our.tools.pallettes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Remove pallette",0);
  2174. return LA_FINISHED;
  2175. }
  2176. int our_TileHasPixels(OurTexTile* ot){
  2177. if(!ot || !ot->Texture) return 0;
  2178. int bufsize=sizeof(uint16_t)*OUR_TILE_W*OUR_TILE_W*4;
  2179. ot->Data=malloc(bufsize); int width=OUR_TILE_W;
  2180. tnsBindTexture(ot->Texture); glPixelStorei(GL_PACK_ALIGNMENT, 2);
  2181. glGetTextureSubImage(ot->Texture->GLTexHandle, 0, 0, 0, 0, width, width,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, ot->Data);
  2182. int has=0;
  2183. int total_elems = width*width;
  2184. for(int i=0;i<total_elems;i++){
  2185. if(ot->Data[i*4-1]!=0){ has=1; break; }
  2186. }
  2187. free(ot->Data); ot->Data=0;
  2188. return has;
  2189. }
  2190. void our_LayerClearEmptyTiles(OurLayer* ol){
  2191. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  2192. int rowhas=0;
  2193. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  2194. OurTexTile* ot=ol->TexTiles[row][col];
  2195. if(!our_TileHasPixels(ot)){
  2196. if(ot->Texture) tnsDeleteTexture(ot->Texture); ot->Texture=0;
  2197. if(ot->Data) free(ot->Data); ot->Data=0;
  2198. if(ot->FullData) free(ot->FullData); ot->FullData=0;
  2199. if(ot->CopyBuffer) free(ot->CopyBuffer); ot->CopyBuffer=0;
  2200. memFree(ot); ol->TexTiles[row][col]=0;
  2201. }else{
  2202. rowhas=1;
  2203. }
  2204. }
  2205. if(!rowhas){
  2206. memFree(ol->TexTiles[row]); ol->TexTiles[row]=0;
  2207. }
  2208. }
  2209. }
  2210. int ourinv_ClearEmptyTiles(laOperator* a, laEvent* e){
  2211. for(OurLayer* ol=Our->Layers.pFirst;ol;ol=ol->Item.pNext){
  2212. our_LayerClearEmptyTiles(ol);
  2213. }
  2214. laNotifyUsers("our.canvas");
  2215. return LA_FINISHED;
  2216. }
  2217. int ourgetstate_Canvas(void* unused_canvas){
  2218. int level; laMemNodeHyper* m=memGetHead(Our->CanvasSaverDummyList.pFirst,&level); if(!m || level!=2) return -1;
  2219. if(m->Modified || !m->FromFile) return LA_BT_WARNING;
  2220. return -1;
  2221. }
  2222. int ourgetstate_Brush(OurBrush* brush){
  2223. int level; laMemNodeHyper* m=memGetHead(brush,&level); if(!m || level!=2) return -1;
  2224. if(m->Modified || !m->FromFile) return LA_BT_WARNING;
  2225. return -1;
  2226. }
  2227. int ourgetstate_Pallette(OurColorPallette* pallette){
  2228. int level; laMemNodeHyper* m=memGetHead(pallette,&level); if(!m || level!=2) return -1;
  2229. if(m->Modified || !m->FromFile) return LA_BT_WARNING;
  2230. return -1;
  2231. }
  2232. void* ourgetraw_FileThumbnail(void* unused, int* r_size, int* r_is_copy){
  2233. void* buf=0;
  2234. if(our_RenderThumbnail(&buf, r_size)){ *r_is_copy=1; return buf; }
  2235. *r_is_copy=0; return 0;
  2236. }
  2237. void oursetraw_FileThumbnail(void* unused, void* data, int DataSize){
  2238. return;
  2239. }
  2240. void ourget_CanvasIdentifier(void* unused, char* buf, char** ptr){
  2241. *ptr=transLate("Main canvas");
  2242. }
  2243. void* ourget_FirstLayer(void* unused, void* unused1){
  2244. return Our->Layers.pFirst;
  2245. }
  2246. void* ourget_FirstBrush(void* unused, void* unused1){
  2247. return Our->Brushes.pFirst;
  2248. }
  2249. void* ourget_FirstPallette(void* unused, void* unused1){
  2250. return Our->Pallettes.pFirst;
  2251. }
  2252. void* ourget_our(void* unused, void* unused1){
  2253. return Our;
  2254. }
  2255. void ourget_LayerTileStart(OurLayer* l, int* xy){
  2256. our_LayerClearEmptyTiles(l);
  2257. our_LayerEnsureImageBuffer(l, 1); xy[0]=Our->ImageX; xy[1]=Our->ImageY+Our->ImageH;
  2258. }
  2259. void ourset_LayerTileStart(OurLayer* l, int* xy){
  2260. Our->TempLoadX = xy[0]; Our->TempLoadY = xy[1];
  2261. }
  2262. void* ourget_LayerImage(OurLayer* l, int* r_size, int* r_is_copy){
  2263. static int LayerCount=0; static int CurrentLayer=0;
  2264. void* buf=0; if(!l->Item.pPrev){ LayerCount=lstCountElements(&Our->Layers); CurrentLayer=0; }
  2265. CurrentLayer++; laShowProgress((real)CurrentLayer/LayerCount,-1);
  2266. our_LayerClearEmptyTiles(l);
  2267. if(!our_LayerEnsureImageBuffer(l, 0)){ our_ShowAllocationError(0); *r_is_copy=0; return 0; }
  2268. our_LayerToImageBuffer(l, 0);
  2269. if(our_ImageExportPNG(0,1,&buf,r_size, 0, OUR_EXPORT_BIT_DEPTH_16, OUR_EXPORT_COLOR_MODE_FLAT)){ *r_is_copy=1; return buf; }
  2270. *r_is_copy=0; return buf;
  2271. }
  2272. void ourset_LayerImage(OurLayer* l, void* data, int size){
  2273. if(!data) return;
  2274. our_LayerImportPNG(l, 0, data, 0, 0, 1, Our->TempLoadX, Our->TempLoadY);
  2275. }
  2276. void ourset_LayerMove(OurLayer* l, int move){
  2277. if(move<0 && l->Item.pPrev){ lstMoveUp(&Our->Layers, l); laNotifyUsers("our.canvas"); }
  2278. elif(move>0 && l->Item.pNext){ lstMoveDown(&Our->Layers, l); laNotifyUsers("our.canvas"); }
  2279. }
  2280. void ourset_LayerAlpha(OurLayer* l, real a){
  2281. l->Transparency=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2282. }
  2283. void ourset_LayerHide(OurLayer* l, int hide){
  2284. l->Hide=hide; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2285. }
  2286. void ourset_LayerAsSketch(OurLayer* l, int sketch){
  2287. l->AsSketch=sketch; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2288. }
  2289. void ourset_LayerBlendMode(OurLayer* l, int mode){
  2290. l->BlendMode=mode; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2291. }
  2292. void ourset_BrushMove(OurBrush* b, int move){
  2293. if(move<0 && b->Item.pPrev){ lstMoveUp(&Our->Brushes, b); laNotifyUsers("our.tools.brushes"); }
  2294. elif(move>0 && b->Item.pNext){ lstMoveDown(&Our->Brushes, b); laNotifyUsers("our.tools.brushes"); }
  2295. }
  2296. void ourset_BackgroundColor(void* unused, real* arr){
  2297. memcpy(Our->BackgroundColor, arr, sizeof(real)*3); laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2298. }
  2299. void ourset_BorderAlpha(void* unused, real a){
  2300. Our->BorderAlpha=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2301. }
  2302. void ourset_Tool(void* unused, int a){
  2303. Our->Tool=a; laNotifyUsers("our.canvas");
  2304. }
  2305. void ourset_ShowBorder(void* unused, int a){
  2306. Our->ShowBorder=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2307. }
  2308. void ourset_ColorInterpretation(void* unused, int a){
  2309. Our->ColorInterpretation=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2310. }
  2311. void ourset_ShowTiles(void* unused, int a){ Our->ShowTiles=a; laNotifyUsers("our.canvas"); }
  2312. void ourset_ShowStripes(void* unused, int a){ Our->ShowStripes=a; laNotifyUsers("our.canvas"); }
  2313. void ourset_CanvasSize(void* unused, int* wh){
  2314. Our->W=wh[0]; Our->H=wh[1]; if(Our->W<32) Our->W=32; if(Our->H<32) Our->H=32; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2315. }
  2316. void ourset_CanvasPosition(void* unused, int* xy){
  2317. Our->X=xy[0]; Our->Y=xy[1]; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2318. }
  2319. void ourset_LayerPosition(OurLayer* l, int* xy){
  2320. l->OffsetX=xy[0]; l->OffsetY=xy[1]; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2321. }
  2322. void ourreset_Canvas(OurPaint* op){
  2323. while(op->Layers.pFirst){ our_RemoveLayer(op->Layers.pFirst,1); }
  2324. }
  2325. void ourreset_Preferences(OurPaint* op){
  2326. return; //does nothing.
  2327. }
  2328. void ourpropagate_Tools(OurPaint* p, laUDF* udf, int force){
  2329. for(OurBrush* b=p->Brushes.pFirst;b;b=b->Item.pNext){
  2330. if(force || !laget_InstanceActiveUDF(b)){ laset_InstanceUDF(b, udf); }
  2331. }
  2332. }
  2333. void ourset_CurrentBrush(void* unused, OurBrush* b){
  2334. real r; if(Our->LockRadius) r=Our->CurrentBrush?Our->CurrentBrush->Size:15;
  2335. OurBrush* ob=Our->CurrentBrush;
  2336. if(ob){
  2337. if(ob->DefaultAsEraser){ Our->SaveEraserSize=ob->Size; }else{ Our->SaveBrushSize=ob->Size; }
  2338. }
  2339. Our->CurrentBrush=b;
  2340. if(b->DefaultAsEraser){ Our->Erasing=1; Our->EraserID=b->Binding; if(Our->LockRadius) b->Size=Our->SaveEraserSize?Our->SaveEraserSize:r; }
  2341. else{ Our->Erasing=0; Our->PenID=b->Binding; if(Our->LockRadius) b->Size=Our->SaveBrushSize?Our->SaveBrushSize:r; }
  2342. Our->ShowBrushName = 1;
  2343. laNotifyUsers("our.tools.current_brush"); laGraphRequestRebuild();
  2344. }
  2345. void ourset_CurrentLayer(void* unused, OurLayer*l){
  2346. memAssignRef(Our, &Our->CurrentLayer, l); laNotifyUsers("our.canvas");
  2347. }
  2348. void ourset_CurrentPallette(void* unused, OurColorPallette* cp){
  2349. memAssignRef(Our,&Our->CurrentPallette,cp);
  2350. laNotifyUsers("our.tools.current_pallette"); laNotifyUsers("our.tools.pallettes");
  2351. }
  2352. void ourset_PalletteColor(void* unused, OurColorItem* ci){
  2353. tnsVectorSet3v(Our->CurrentColor,ci->Color);
  2354. laNotifyUsers("our.current_color");
  2355. }
  2356. void ourset_ShowRef(void* unused, int c){ Our->ShowRef=c; laNotifyUsers("our.canvas"); }
  2357. void ourset_RefCategory(void* unused, int c){ Our->RefCategory=c; laNotifyUsers("our.canvas"); }
  2358. void ourset_RefSize(void* unused, int c){ Our->RefSize=c; laNotifyUsers("our.canvas"); }
  2359. void ourset_RefOrientation(void* unused, int c){ Our->RefOrientation=c; laNotifyUsers("our.canvas"); }
  2360. void ourset_RefMargins(void* unused, real* v){ tnsVectorSet2v(Our->RefMargins,v);laNotifyUsers("our.canvas"); }
  2361. void ourset_RefPaddings(void* unused, real* v){ tnsVectorSet2v(Our->RefPaddings,v); laNotifyUsers("our.canvas"); }
  2362. void ourset_RefMiddleMargin(void* unused, real v){ Our->RefMargins[2]=v;laNotifyUsers("our.canvas"); }
  2363. void ourset_RefAlpha(void* unused, real a){
  2364. Our->RefAlpha=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2365. }
  2366. void ourset_BrushPage(void* unused, int a){ Our->BrushPage=a; laNotifyUsers("our.tools.brushes"); }
  2367. void ourset_BrushShowInPages(OurBrush* b, int index, int v){
  2368. int flag=(1<<index); if(v){ b->ShowInPages|=flag; }else{ b->ShowInPages&=(~flag); }
  2369. laNotifyUsers("our.tools.brushes");
  2370. }
  2371. void ourget_BrushShowInPages(OurBrush* b, int* v){
  2372. v[0]=(b->ShowInPages&(1<<0))?1:0;
  2373. v[1]=(b->ShowInPages&(1<<1))?1:0;
  2374. v[2]=(b->ShowInPages&(1<<2))?1:0;
  2375. }
  2376. int ourfilter_BrushInPage(void* Unused, OurBrush* b){
  2377. if((!Our->BrushPage) || Our->BrushPage==OUR_BRUSH_PAGE_LIST) return 1;
  2378. if(Our->BrushPage==1 && (b->ShowInPages&(1<<0))) return 1;
  2379. if(Our->BrushPage==2 && (b->ShowInPages&(1<<1))) return 1;
  2380. if(Our->BrushPage==3 && (b->ShowInPages&(1<<2))) return 1;
  2381. return 0;
  2382. }
  2383. void ourset_ShowSketch(void* unused, int c){ Our->SketchMode=c; laNotifyUsers("our.canvas"); }
  2384. int ourget_CanvasVersion(void* unused){
  2385. return OUR_VERSION_MAJOR*100+OUR_VERSION_MINOR*10+OUR_VERSION_SUB;
  2386. }
  2387. void ourpost_Canvas(void* unused){
  2388. if(Our->CanvasVersion<20){ Our->BackgroundFactor=0; Our->BackgroundType=0; }
  2389. }
  2390. #define OUR_ADD_PRESSURE_SWITCH(p) \
  2391. laAddEnumItemAs(p,"NONE","None","Not using pressure",0,0);\
  2392. laAddEnumItemAs(p,"ENABLED","Enabled","Using pressure",1,0);
  2393. void ourui_MenuButtons(laUiList *uil, laPropPack *pp, laPropPack *actinst, laColumn *extracol, int context){
  2394. laUiList *muil; laColumn *mc,*c = laFirstColumn(uil);
  2395. muil = laMakeMenuPage(uil, c, "File");{
  2396. mc = laFirstColumn(muil);
  2397. laShowLabel(muil, mc, "Our Paint", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2398. laShowItem(muil, mc, 0, "LA_udf_read");
  2399. laShowItemFull(muil, mc, 0, "LA_udf_read",0,"mode=append;text=Append",0,0);
  2400. laShowSeparator(muil,mc);
  2401. laShowItemFull(muil, mc, 0, "LA_managed_save",0,"quiet=true;text=Save;",0,0);
  2402. laShowItem(muil, mc, 0, "LA_managed_save");
  2403. laShowLabel(muil, mc, "Image", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2404. laShowItem(muil, mc, 0, "OUR_export_image");
  2405. laShowLabel(muil, mc, "Layer", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2406. laShowItem(muil, mc, 0, "OUR_import_layer");
  2407. laShowItem(muil, mc, 0, "OUR_export_layer");
  2408. laShowLabel(muil, mc, "Others", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2409. laShowItem(muil, mc, 0, "LA_terminate_program");
  2410. //laui_DefaultMenuButtonsFileEntries(muil,pp,actinst,extracol,0);
  2411. }
  2412. muil = laMakeMenuPage(uil, c, "Edit");{
  2413. mc = laFirstColumn(muil); laui_DefaultMenuButtonsEditEntries(muil,pp,actinst,extracol,0);
  2414. laShowSeparator(muil,mc);
  2415. laShowLabel(muil,mc,"Canvas",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  2416. laUiItem* row=laBeginRow(muil,mc,0,0);
  2417. laShowItem(muil,mc,0,"OUR_clear_empty_tiles");
  2418. laShowItemFull(muil,mc,0,"our.preferences.show_debug_tiles",LA_WIDGET_ENUM_HIGHLIGHT,"text=👁",0,0);
  2419. laEndRow(muil,row);
  2420. }
  2421. muil = laMakeMenuPage(uil, c, "Options"); {
  2422. mc = laFirstColumn(muil);
  2423. laShowLabel(muil, mc, "Settings", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2424. laShowItemFull(muil, mc, 0, "LA_panel_activator", 0, "panel_id=LAUI_user_preferences;", 0, 0);
  2425. laShowLabel(muil, mc, "Help", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2426. laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=📖;link=http://www.ChengduLittleA.com/ourpaintmanual;text=User Manual", 0, 0);
  2427. laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20230910202654;text=Release Notes", 0, 0);
  2428. laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=🐞;link=https://www.wellobserve.com/repositories/chengdulittlea/OurPaint/issues;text=Report a Bug", 0, 0);
  2429. laShowLabel(muil, mc, "Information", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  2430. laShowItemFull(muil, mc, 0, "LA_panel_activator", 0, "panel_id=LAUI_about;text=About;", 0, 0);
  2431. }
  2432. }
  2433. void ourui_ToolExtras(laUiList *uil, laPropPack *pp, laPropPack *actinst, laColumn *extracol, int context){
  2434. laColumn *c = laFirstColumn(uil);
  2435. laShowItemFull(uil,c,0,"our.tool",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_ICON;
  2436. laShowItemFull(uil,c,0,"our.erasing",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0);
  2437. char str[100]; sprintf(str,"text=%s",MAIN.MenuProgramName);
  2438. laShowItemFull(uil,c,0,"OUR_show_splash",0,str,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL|LA_UI_FLAGS_NO_TOOLTIP|LA_UI_FLAGS_EXIT_WHEN_TRIGGERED;
  2439. laShowSeparator(uil,c)->Expand=1;
  2440. //laShowLabel(uil, c, MAIN.MenuProgramName, 0, 0)->Expand=1;
  2441. }
  2442. int ourProcessInitArgs(int argc, char* argv[]){
  2443. if(argc == 4 && strstr(argv[1],"--t")==argv[1]){
  2444. FILE* fp=fopen(argv[2],"rb"); if(!fp){ printf("Can't open file %s\n",argv[2]); return -1; }
  2445. void* data=0; size_t size=0;
  2446. if(laExtractQuickRaw(fp,"our.thumbnail",&data,&size)){
  2447. FILE* thumb = fopen(argv[3],"wb");
  2448. if(thumb){
  2449. fwrite(data, size, 1, thumb);
  2450. fclose(thumb);
  2451. }
  2452. free(data);
  2453. }else{
  2454. printf("File doesn't have a thumbnail.\n",argv[2]);
  2455. }
  2456. fclose(fp);
  2457. return -1;
  2458. }
  2459. return 0;
  2460. }
  2461. void ourPreFrame(){
  2462. if(MAIN.GraphNeedsRebuild){ ourRebuildBrushEval(); }
  2463. }
  2464. void ourPushEverything(){
  2465. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");
  2466. laFreeOlderDifferences(0);
  2467. for(OurLayer* ol=Our->Layers.pFirst;ol;ol=ol->Item.pNext){ our_LayerRefreshLocal(ol); }
  2468. }
  2469. void ourPreSave(){
  2470. Our->SaveFailed=0;
  2471. }
  2472. void ourPostSave(){
  2473. if(Our->SaveFailed){
  2474. laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  2475. laEvent e={0}; e.type=LA_MOUSEMOVE;
  2476. our_ShowAllocationError(&e);
  2477. }
  2478. Our->SaveFailed=0;
  2479. }
  2480. void ourCleanUp(){
  2481. while(Our->Layers.pFirst){ our_RemoveLayer(Our->Layers.pFirst,1); }
  2482. while(Our->Brushes.pFirst){ our_RemoveBrush(Our->Brushes.pFirst); }
  2483. free(Our->icc_Clay);free(Our->icc_sRGB);free(Our->icc_LinearClay);free(Our->icc_LinearsRGB);
  2484. tnsDeleteTexture(Our->SmudgeTexture);
  2485. glDeleteShader(Our->CanvasShader); glDeleteProgram(Our->CanvasProgram);
  2486. glDeleteShader(Our->CompositionShader); glDeleteProgram(Our->CompositionProgram);
  2487. arrFree(&Our->Dabs,&Our->MaxDab);
  2488. }
  2489. void ourRegisterEverything(){
  2490. laPropContainer* pc; laKeyMapper* km; laProp* p; laSubProp* sp; laOperatorType* at;
  2491. laCreateOperatorType("OUR_show_splash","Show Splash","Show splash screen",0,0,0,ourinv_ShowSplash,0,0,0);
  2492. laCreateOperatorType("OUR_new_layer","New Layer","Create a new layer",0,0,0,ourinv_NewLayer,0,'+',0);
  2493. laCreateOperatorType("OUR_duplicate_layer","Duplicate Layer","Duplicate a layer",0,0,0,ourinv_DuplicateLayer,0,'⎘',0);
  2494. laCreateOperatorType("OUR_remove_layer","Remove Layer","Remove this layer",0,0,0,ourinv_RemoveLayer,0,U'🗴',0);
  2495. laCreateOperatorType("OUR_move_layer","Move Layer","Remove this layer",0,0,0,ourinv_MoveLayer,0,0,0);
  2496. laCreateOperatorType("OUR_merge_layer","Merge Layer","Merge this layer with the layer below it",ourchk_MergeLayer,0,0,ourinv_MergeLayer,0,0,0);
  2497. laCreateOperatorType("OUR_export_layer","Export Layer","Export this layer",ourchk_ExportLayer,0,0,ourinv_ExportLayer,ourmod_ExportLayer,U'🖫',0);
  2498. at=laCreateOperatorType("OUR_import_layer","Import Layer","Import a PNG into a layer",0,0,ourexit_ImportLayer,ourinv_ImportLayer,ourmod_ImportLayer,U'🗁',0);
  2499. at->UiDefine=ourui_ImportLayer; pc=laDefineOperatorProps(at, 1);
  2500. laAddStringProperty(pc,"icc_name","ICC Name","The name of the icc profile comes with the image",LA_WIDGET_STRING_PLAIN,0,0,0,1,offsetof(OurPNGReadExtra,iccName),0,0,0,0,LA_READ_ONLY);
  2501. laAddIntProperty(pc,"has_profile","Has Profile","If the importing image has a built-in icc profile",0,0,0,0,0,0,0,0,offsetof(OurPNGReadExtra,HasProfile),0,0,0,0,0,0,0,0,0,0,LA_READ_ONLY);
  2502. laAddIntProperty(pc,"has_srgb","Has sRGB","If the importing image has a sRGB tag",0,0,0,0,0,0,0,0,offsetof(OurPNGReadExtra,HassRGB),0,0,0,0,0,0,0,0,0,0,LA_READ_ONLY);
  2503. p=laAddEnumProperty(pc, "input_mode","Input Mode","Interpret input pixels as one of the supported formats",0,0,0,0,0,offsetof(OurPNGReadExtra,InputMode),0,0,0,0,0,0,0,0,0,0);
  2504. laAddEnumItemAs(p,"FLAT","Flat","Read the image as-is and don't do any color space transformations",OUR_PNG_READ_INPUT_FLAT,0);
  2505. laAddEnumItemAs(p,"ICC","Image ICC","Use the image built-in icc profile",OUR_PNG_READ_INPUT_ICC,0);
  2506. laAddEnumItemAs(p,"SRGB","Force sRGB","Interpret the image as sRGB regardless the image metadata",OUR_PNG_READ_INPUT_SRGB,0);
  2507. laAddEnumItemAs(p,"LINEAR_SRGB","Force Linear sRGB","Interpret the image as Linear sRGB regardless the image metadata",OUR_PNG_READ_INPUT_LINEAR_SRGB,0);
  2508. laAddEnumItemAs(p,"CLAY","Force Clay","Interpret the image as Clay (AdobeRGB 1998 compatible) regardless the image metadata",OUR_PNG_READ_INPUT_CLAY,0);
  2509. laAddEnumItemAs(p,"LINEAR_CLAY","Force Linear Clay","Interpret the image as Linear Clay (AdobeRGB 1998 compatible) regardless the image metadata",OUR_PNG_READ_INPUT_LINEAR_CLAY,0);
  2510. p=laAddEnumProperty(pc, "output_mode","Output Mode","Transform the input pixels to one of the supported formats",0,0,0,0,0,offsetof(OurPNGReadExtra,OutputMode),0,0,0,0,0,0,0,0,0,0);
  2511. laAddEnumItemAs(p,"CANVAS","Follow Canvas","Transform the pixels into current canvas interpretation",OUR_PNG_READ_OUTPUT_CANVAS,0);
  2512. laAddEnumItemAs(p,"LINEAR_SRGB","Linear sRGB","Write sRGB pixels values into canvas regardless of the canvas interpretation",OUR_PNG_READ_OUTPUT_LINEAR_SRGB,0);
  2513. laAddEnumItemAs(p,"LINEAR_CLAY","Linear Clay","Write Clay (AdobeRGB 1998 compatible) pixels values into canvas regardless of the canvas interpretation",OUR_PNG_READ_OUTPUT_LINEAR_CLAY,0);
  2514. laAddIntProperty(pc,"offsets","Offsets","Offsets of the imported layer (0 for default)",0,"X,Y",0,0,0,0,0,0,offsetof(OurPNGReadExtra,Offsets),0,0,2,0,0,0,0,0,0,0,0);
  2515. laCreateOperatorType("OUR_new_brush","New Brush","Create a new brush",0,0,0,ourinv_NewBrush,0,'+',0);
  2516. laCreateOperatorType("OUR_remove_brush","Remove Brush","Remove this brush",0,0,0,ourinv_RemoveBrush,0,U'🗴',0);
  2517. laCreateOperatorType("OUR_duplicate_brush","Duplicate Brush","Duplicate this brush",0,0,0,ourinv_DuplicateBrush,0,U'⎘',0);
  2518. laCreateOperatorType("OUR_move_brush","Move Brush","Remove this brush",0,0,0,ourinv_MoveBrush,0,0,0);
  2519. laCreateOperatorType("OUR_brush_quick_switch","Brush Quick Switch","Brush quick switch",0,0,0,ourinv_BrushQuickSwitch,0,0,0);
  2520. laCreateOperatorType("OUR_brush_resize","Brush Resize","Brush resize",0,0,0,ourinv_BrushResize,0,0,0);
  2521. laCreateOperatorType("OUR_action","Action","Doing action on a layer",0,0,0,ourinv_Action,ourmod_Action,0,LA_EXTRA_TO_PANEL);
  2522. laCreateOperatorType("OUR_pick","Pick color","Pick color on the widget",0,0,0,ourinv_PickColor,ourmod_PickColor,0,LA_EXTRA_TO_PANEL);
  2523. at=laCreateOperatorType("OUR_export_image","Export Image","Export the image",ourchk_ExportImage,0,ourexit_ExportImage,ourinv_ExportImage,ourmod_ExportImage,U'🖼',0);
  2524. at->UiDefine=ourui_ExportImage; pc=laDefineOperatorProps(at, 1);
  2525. p=laAddEnumProperty(pc, "bit_depth","Bit Depth","How many bits per channel should be used",0,0,0,0,0,offsetof(OurPNGWriteExtra,BitDepth),0,0,0,0,0,0,0,0,0,0);
  2526. laAddEnumItemAs(p,"D8","8 Bits","Use 8 bits per channel",OUR_EXPORT_BIT_DEPTH_8,0);
  2527. laAddEnumItemAs(p,"D16","16 Bits","Use 16 bits per channel",OUR_EXPORT_BIT_DEPTH_16,0);
  2528. p=laAddEnumProperty(pc, "color_profile","Output Mode","Transform the input pixels to one of the supported formats",0,0,0,0,0,offsetof(OurPNGWriteExtra,ColorProfile),0,0,0,0,0,0,0,0,0,0);
  2529. laAddEnumItemAs(p,"FLAT","Flat","Export pixels in current canvans linear color space",OUR_EXPORT_COLOR_MODE_FLAT,0);
  2530. laAddEnumItemAs(p,"SRGB","sRGB","Convert pixels into non-linear sRGB (Most used)",OUR_EXPORT_COLOR_MODE_SRGB,0);
  2531. laAddEnumItemAs(p,"CLAY","Clay","Convert pixels into non-linear Clay (AdobeRGB 1998 compatible)",OUR_EXPORT_COLOR_MODE_CLAY,0);
  2532. laCreateOperatorType("OUR_toggle_erasing","Toggle Erasing","Toggle erasing",0,0,0,ourinv_ToggleErase,0,0,0);
  2533. laCreateOperatorType("OUR_cycle_sketch","Cycle Sketches","Cycle sketch layer display mode",0,0,0,ourinv_CycleSketch,0,0,0);
  2534. laCreateOperatorType("OUR_crop_to_ref","Crop To Ref","Crop to reference lines",ourchk_CropToRef,0,0,ourinv_CropToRef,0,0,0);
  2535. laCreateOperatorType("OUR_new_pallette","New Pallette","New pallette",0,0,0,ourinv_NewPallette,0,'+',0);
  2536. laCreateOperatorType("OUR_remove_pallette","Remove Pallette","Remove selected pallette",0,0,0,ourinv_RemovePallette,0,U'🗴',0);
  2537. laCreateOperatorType("OUR_pallette_new_color","New Color","New color in this pallette",0,0,0,ourinv_PalletteNewColor,0,'+',0);
  2538. laCreateOperatorType("OUR_pallette_remove_color","Remove Color","Remove this color from the pallette",0,0,0,ourinv_PalletteRemoveColor,0,U'🗴',0);
  2539. laCreateOperatorType("OUR_clear_empty_tiles","Clear Empty Tiles","Clear empty tiles in this image",0,0,0,ourinv_ClearEmptyTiles,0,U'🧹',0);
  2540. laRegisterUiTemplate("panel_canvas", "Canvas", ourui_CanvasPanel, 0, 0,"Our Paint", GL_RGBA16F,25,25);
  2541. laRegisterUiTemplate("panel_thumbnail", "Thumbnail", ourui_ThumbnailPanel, 0, 0, 0, GL_RGBA16F,25,25);
  2542. laRegisterUiTemplate("panel_layers", "Layers", ourui_LayersPanel, 0, 0,0, 0,10,15);
  2543. laRegisterUiTemplate("panel_tools", "Tools", ourui_ToolsPanel, 0, 0,0, 0,10,20);
  2544. laRegisterUiTemplate("panel_brushes", "Brushes", ourui_BrushesPanel, 0, 0,0, 0,10,15);
  2545. laRegisterUiTemplate("panel_color", "Color", ourui_ColorPanel, 0, 0,0, GL_RGBA16F,0,0);
  2546. laRegisterUiTemplate("panel_pallettes", "Pallettes", ourui_PallettesPanel, 0, 0,0, GL_RGBA16F,0,0);
  2547. laRegisterUiTemplate("panel_brush_nodes", "Brush Nodes", ourui_BrushPage, 0, 0,0, 0,25,30);
  2548. laRegisterUiTemplate("panel_notes", "Notes", ourui_NotesPanel, 0, 0,0, 0,15,15);
  2549. pc=laDefineRoot();
  2550. laAddSubGroup(pc,"our","Our","OurPaint main","our_paint",0,0,0,-1,ourget_our,0,0,0,0,0,0,LA_UDF_SINGLE);
  2551. pc=laAddPropertyContainer("our_paint","Our Paint","OurPaint main",0,0,sizeof(OurPaint),0,0,1);
  2552. laAddRawProperty(pc,"thumbnail","Thumbnail","Thumbnail of this file",0,0,ourgetraw_FileThumbnail,oursetraw_FileThumbnail,LA_READ_ONLY);
  2553. laAddSubGroup(pc,"canvas","Canvas","OurPaint canvas","our_canvas",0,0,0,0,0,0,0,0,ourgetstate_Canvas,0,0,LA_UDF_LOCAL);
  2554. laAddSubGroup(pc,"tools","Tools","OurPaint tools","our_tools",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  2555. laAddSubGroup(pc,"preferences","Preferences","OurPaint preferences","our_preferences",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  2556. laAddFloatProperty(pc,"current_color","Current Color","Current color used to paint",0,"R,G,B",0,1,0,0.05,0.8,0,offsetof(OurPaint,CurrentColor),0,0,3,0,0,0,0,0,0,0,LA_PROP_IS_LINEAR_SRGB);
  2557. p=laAddEnumProperty(pc,"tool","Tool","Tool to use on the canvas",0,0,0,0,0,offsetof(OurPaint,Tool),0,ourset_Tool,0,0,0,0,0,0,0,0);
  2558. laAddEnumItemAs(p,"PAINT","Paint","Paint stuff on the canvas",OUR_TOOL_PAINT,U'🖌');
  2559. laAddEnumItemAs(p,"CROP","Cropping","Crop the focused region",OUR_TOOL_CROP,U'🖼');
  2560. laAddEnumItemAs(p,"MOVE","Moving","Moving the layer",OUR_TOOL_MOVE,U'🤚');
  2561. p=laAddEnumProperty(pc,"lock_background","Lock background","Lock background color to prevent accidental changes",0,0,0,0,0,offsetof(OurPaint,LockBackground),0,0,0,0,0,0,0,0,0,0);
  2562. laAddEnumItemAs(p,"NONE","Unlocked","You can change background color",0,0);
  2563. laAddEnumItemAs(p,"LOCK","Locked","Background color is locked to prevent accidental changes",1,U'🔏');
  2564. p=laAddEnumProperty(pc,"erasing","Erasing","Is in erasing mode",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,Erasing),0,0,0,0,0,0,0,0,0,0);
  2565. laAddEnumItemAs(p,"FALSE","Draw","Is drawing mode",0,0);
  2566. laAddEnumItemAs(p,"TRUE","Erase","Is erasing mode",1,0);
  2567. p=laAddEnumProperty(pc, "brush_page","Brush Page","Show brushes in pages",0,0,0,0,0,offsetof(OurPaint,BrushPage),0,ourset_BrushPage,0,0,0,0,0,0,0,0);
  2568. laAddEnumItemAs(p,"ALL","~","Show all brushes",0,'~');
  2569. laAddEnumItemAs(p,"P1","1","Show brush page 1",1,'1');
  2570. laAddEnumItemAs(p,"P2","2","Show brush page 2",2,'2');
  2571. laAddEnumItemAs(p,"P3","3","Show brush page 3",3,'3');
  2572. laAddEnumItemAs(p,"LIST","=","Show brushes as a list",OUR_BRUSH_PAGE_LIST,L'☰');
  2573. pc=laAddPropertyContainer("our_preferences","Our Preferences","OurPaint preferences",0,0,sizeof(OurPaint),0,0,1);
  2574. laPropContainerExtraFunctions(pc,0,ourreset_Preferences,0,0,0);
  2575. p=laAddEnumProperty(pc,"lock_radius","Lock Radius","Lock radius when changing brushes",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,LockRadius),0,0,0,0,0,0,0,0,0,0);
  2576. laAddEnumItemAs(p,"FALSE","No","Don't lock radius",0,0);
  2577. laAddEnumItemAs(p,"TRUE","Yes","Lock radius when changing brushes",1,0);
  2578. p=laAddEnumProperty(pc,"enable_brush_circle","Brush Circle","Enable brush circle when hovering",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,EnableBrushCircle),0,0,0,0,0,0,0,0,0,0);
  2579. laAddEnumItemAs(p,"FALSE","No","Don't show brush circle",0,0);
  2580. laAddEnumItemAs(p,"TRUE","Yes","Show brush circle on hover",1,0);
  2581. p=laAddEnumProperty(pc,"show_brush_name","Show brush name","Show brush name next to the cursor",0,0,0,0,0,offsetof(OurPaint,ShowBrushName),0,0,0,0,0,0,0,0,0,LA_READ_ONLY|LA_UDF_IGNORE);
  2582. laAddEnumItemAs(p,"FALSE","No","Don't show brush name next to the cursor",0,0);
  2583. laAddEnumItemAs(p,"TRUE","Yes","Show brush name next to the cursor",1,0);
  2584. p=laAddEnumProperty(pc,"allow_none_pressure","Allow Non-pressure","Allow non-pressure events, this enables mouse painting.",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,AllowNonPressure),0,0,0,0,0,0,0,0,0,0);
  2585. laAddEnumItemAs(p,"FALSE","No","Don't allow non-pressure device inputs",0,0);
  2586. laAddEnumItemAs(p,"TRUE","Yes","Allow non-pressure device inputs such as a mouse",1,0);
  2587. laAddIntProperty(pc,"bad_event_tolerance","Bad Event Tolerance","Try to recieve more events before painting starts to get around some stylus hardware issue",0,0,0,16,0,1,0,0,offsetof(OurPaint,BadEventsLimit),0,0,0,0,0,0,0,0,0,0,0);
  2588. p=laAddEnumProperty(pc,"show_debug_tiles","Show debug tiles","Whether to show debug tiles",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,ShowTiles),0,ourset_ShowTiles,0,0,0,0,0,0,0,0);
  2589. laAddEnumItemAs(p,"FALSE","No","Don't show debug tiles on the canvas",0,0);
  2590. laAddEnumItemAs(p,"TRUE","Yes","Show debug tiles on the canvas",1,0);
  2591. p=laAddEnumProperty(pc,"export_default_bit_depth","Export Default Bit Depth","Default bit depth when exporting images",0,0,0,0,0,offsetof(OurPaint,DefaultBitDepth),0,0,0,0,0,0,0,0,0,0);
  2592. laAddEnumItemAs(p,"D8","8 Bits","Use 8 bits per channel",OUR_EXPORT_BIT_DEPTH_8,0);
  2593. laAddEnumItemAs(p,"D16","16 Bits","Use 16 bits per channel",OUR_EXPORT_BIT_DEPTH_16,0);
  2594. p=laAddEnumProperty(pc, "export_default_color_profile","Export Default Color Profile","Default color profile to use when exporting images",0,0,0,0,0,offsetof(OurPaint,DefaultColorProfile),0,0,0,0,0,0,0,0,0,0);
  2595. laAddEnumItemAs(p,"FLAT","Flat","Export pixels in current canvans linear color space",OUR_EXPORT_COLOR_MODE_FLAT,0);
  2596. laAddEnumItemAs(p,"SRGB","sRGB","Convert pixels into non-linear sRGB (Most used)",OUR_EXPORT_COLOR_MODE_SRGB,0);
  2597. laAddEnumItemAs(p,"CLAY","Clay","Convert pixels into non-linear Clay (AdobeRGB 1998 compatible)",OUR_EXPORT_COLOR_MODE_CLAY,0);
  2598. laAddIntProperty(pc,"paint_undo_limit","Paint Undo Limit","Undo step limit for painting actions.",0,0," Steps",256,5,1,100,0,offsetof(OurPaint,PaintUndoLimit),0,0,0,0,0,0,0,0,0,0,0);
  2599. laAddFloatProperty(pc,"canvas_default_scale","Canvas Default Scale","Default scale of the canvas",0,0,0,4,0.25,0.1,0.5,0,offsetof(OurPaint,DefaultScale),0,0,0,0,0,0,0,0,0,0,0);
  2600. p=laAddEnumProperty(pc,"spectral_mode","Spectral Brush","Use spectral mixing in brush strokes",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,SpectralMode),0,0,0,0,0,0,0,0,0,0);
  2601. laAddEnumItemAs(p,"NONE","None","Use regular RGB mixing for brushes",0,0);
  2602. laAddEnumItemAs(p,"SPECTRAL","Spectral","Use spectral mixing for brushes",1,0);
  2603. laAddFloatProperty(pc,"smoothness","Smoothness","Smoothness of global brush input",0,0, 0,1,0,0.05,0,0,offsetof(OurPaint,Smoothness),0,0,0,0,0,0,0,0,0,0,0);
  2604. p=laAddEnumProperty(pc,"show_stripes","Visual Reference Stripes","Whether to show visual reference stripes",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurPaint,ShowStripes),0,ourset_ShowStripes,0,0,0,0,0,0,0,0);
  2605. laAddEnumItemAs(p,"FALSE","No","Don't show visual reference stripes",0,0);
  2606. laAddEnumItemAs(p,"TRUE","Yes","Show visual reference stripes at the top and bottom of the canvas",1,0);
  2607. pc=laAddPropertyContainer("our_tools","Our Tools","OurPaint tools",0,0,sizeof(OurPaint),0,0,1);
  2608. laPropContainerExtraFunctions(pc,0,0,0,ourpropagate_Tools,0);
  2609. sp=laAddSubGroup(pc,"brushes","Brushes","Brushes","our_brush",0,0,ourui_Brush,offsetof(OurPaint,CurrentBrush),0,0,0,ourset_CurrentBrush,ourgetstate_Brush,0,offsetof(OurPaint,Brushes),0);
  2610. sp->UiFilter=ourfilter_BrushInPage;
  2611. laAddSubGroup(pc,"current_brush","Current Brush","Current brush","our_brush",0,0,0,offsetof(OurPaint,CurrentBrush),ourget_FirstBrush,0,laget_ListNext,ourset_CurrentBrush,0,0,0,LA_UDF_REFER);
  2612. sp=laAddSubGroup(pc,"pallettes","Pallettes","Pallettes","our_pallette",0,0,ourui_Pallette,offsetof(OurPaint,CurrentPallette),0,0,0,ourset_CurrentPallette,ourgetstate_Pallette,0,offsetof(OurPaint,Pallettes),0);
  2613. //sp->UiFilter=ourfilter_BrushInPage;
  2614. laAddSubGroup(pc,"current_pallette","Current Pallette","Current pallette","our_pallette",0,0,0,offsetof(OurPaint,CurrentPallette),ourget_FirstPallette,0,laget_ListNext,ourset_CurrentPallette,0,0,0,LA_UDF_REFER);
  2615. pc=laAddPropertyContainer("our_brush","Our Brush","OurPaint brush",0,0,sizeof(OurBrush),0,0,2);
  2616. laAddStringProperty(pc,"name","Name","Name of the brush",0,0,0,0,1,offsetof(OurBrush,Name),0,0,0,0,LA_AS_IDENTIFIER);
  2617. laAddIntProperty(pc,"__move","Move Slider","Move Slider",LA_WIDGET_HEIGHT_ADJUSTER,0,0,0,0,0,0,0,0,0,ourset_BrushMove,0,0,0,0,0,0,0,0,LA_UDF_IGNORE);
  2618. laAddIntProperty(pc,"binding","Binding","Keyboard binding for shortcut access of the brush",0,0,0,9,-1,1,0,0,offsetof(OurBrush,Binding),0,0,0,0,0,0,0,0,0,0,0);
  2619. laAddFloatProperty(pc,"size_10","~10","Base size(radius) of the brush (max at 10)",0,0,"px",10,0,1,10,0,offsetof(OurBrush,Size),0,0,0,0,0,0,0,0,0,0,LA_UDF_IGNORE);
  2620. laAddFloatProperty(pc,"size_100","~100","Base size(radius) of the brush (max at 100)",0,0,"px",100,0,1,10,0,offsetof(OurBrush,Size),0,0,0,0,0,0,0,0,0,0,LA_UDF_IGNORE);
  2621. laAddFloatProperty(pc,"size","Size","Base size(radius) of the brush",0,0,"px",1000,0,1,10,0,offsetof(OurBrush,Size),0,0,0,0,0,0,0,0,0,0,0);
  2622. laAddFloatProperty(pc,"transparency","Transparency","Transparency of a dab",0,0,0,1,0,0.05,0.5,0,offsetof(OurBrush,Transparency),0,0,0,0,0,0,0,0,0,0,0);
  2623. laAddFloatProperty(pc,"hardness","Hardness","Hardness of the brush",0,0,0,1,0,0.05,0.95,0,offsetof(OurBrush,Hardness),0,0,0,0,0,0,0,0,0,0,0);
  2624. laAddFloatProperty(pc,"smudge","Smudge","Smudge of the brush",0,0,0,1,0,0.05,0.95,0,offsetof(OurBrush,Smudge),0,0,0,0,0,0,0,0,0,0,0);
  2625. laAddFloatProperty(pc,"dabs_per_size","Dabs Per Size","How many dabs per size of the brush",0,0,0,0,0,0,0,0,offsetof(OurBrush,DabsPerSize),0,0,0,0,0,0,0,0,0,0,0);
  2626. laAddFloatProperty(pc,"smudge_resample_length","Smudge Resample Length","How long of a distance (based on size) should elapse before resampling smudge",0,0,0,0,0,0,0,0,offsetof(OurBrush,SmudgeResampleLength),0,0,0,0,0,0,0,0,0,0,0);
  2627. laAddFloatProperty(pc,"slender","Slender","Slenderness of the brush",0,0, 0,10,0,0.1,0,0,offsetof(OurBrush,Slender),0,0,0,0,0,0,0,0,0,0,0);
  2628. laAddFloatProperty(pc,"angle","Angle","Angle of the brush",0,0, 0,TNS_PI,-TNS_PI,0.1,0,0,offsetof(OurBrush,Angle),0,0,0,0,0,0,0,0,0,0,LA_RAD_ANGLE);
  2629. laAddFloatProperty(pc,"smoothness","Smoothness","Smoothness of the brush",0,0, 0,1,0,0.05,0,0,offsetof(OurBrush,Smoothness),0,0,0,0,0,0,0,0,0,0,0);
  2630. laAddFloatProperty(pc,"force","Force","How hard the brush is pushed against canvas texture",0,0,0,1,0,0.05,0,0,offsetof(OurBrush,Force),0,0,0,0,0,0,0,0,0,0,0);
  2631. laAddFloatProperty(pc,"gunkyness","Gunkyness","How will the brush stick to the canvas texture",0,0, 0,1,-1,0.05,0,0,offsetof(OurBrush,Gunkyness),0,0,0,0,0,0,0,0,0,0,0);
  2632. laAddFloatProperty(pc,"c1","C1","Custom brush input 1",0,0, 0,0,0,0.05,0,0,offsetof(OurBrush,Custom1),0,0,0,0,0,0,0,0,0,0,0);
  2633. laAddFloatProperty(pc,"c2","C2","Custom brush input 2",0,0, 0,0,0,0.05,0,0,offsetof(OurBrush,Custom2),0,0,0,0,0,0,0,0,0,0,0);
  2634. laAddStringProperty(pc,"c1_name","C1 Name","Custom input 1 name",0,0,0,0,1,offsetof(OurBrush,Custom1Name),0,0,0,0,0);
  2635. laAddStringProperty(pc,"c2_name","C2 Name","Custom input 2 name",0,0,0,0,1,offsetof(OurBrush,Custom2Name),0,0,0,0,0);
  2636. p=laAddEnumProperty(pc,"pressure_size","Pressure Size","Use pen pressure to control size",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,PressureSize),0,0,0,0,0,0,0,0,0,0);
  2637. OUR_ADD_PRESSURE_SWITCH(p);
  2638. p=laAddEnumProperty(pc,"pressure_transparency","Pressure Transparency","Use pen pressure to control transparency",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,PressureTransparency),0,0,0,0,0,0,0,0,0,0);
  2639. OUR_ADD_PRESSURE_SWITCH(p);
  2640. p=laAddEnumProperty(pc,"pressure_hardness","Pressure Hardness","Use pen pressure to control hardness",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,PressureHardness),0,0,0,0,0,0,0,0,0,0);
  2641. OUR_ADD_PRESSURE_SWITCH(p);
  2642. p=laAddEnumProperty(pc,"pressure_smudge","Pressure Smudge","Use pen pressure to control smudging",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,PressureSmudge),0,0,0,0,0,0,0,0,0,0);
  2643. OUR_ADD_PRESSURE_SWITCH(p);
  2644. p=laAddEnumProperty(pc,"pressure_force","Pressure Force","Use pen pressure to control dab force",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,PressureForce),0,0,0,0,0,0,0,0,0,0);
  2645. OUR_ADD_PRESSURE_SWITCH(p);
  2646. p=laAddEnumProperty(pc,"twist_angle","Twist Angle","Use pen twist to control dab angle",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,TwistAngle),0,0,0,0,0,0,0,0,0,0);
  2647. laAddEnumItemAs(p,"NONE","None","Not using twist",0,0);
  2648. laAddEnumItemAs(p,"ENABLED","Enabled","Using twist",1,0);
  2649. p=laAddEnumProperty(pc,"use_nodes","Use Nodes","Use nodes to control brush dynamics",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,UseNodes),0,0,0,0,0,0,0,0,0,0);
  2650. p->ElementBytes=2;
  2651. laAddEnumItemAs(p,"NONE","None","Not using nodes",0,0);
  2652. laAddEnumItemAs(p,"ENABLED","Enabled","Using nodes",1,0);
  2653. laAddSubGroup(pc,"rack_page","Rack Page","Nodes rack page of this brush","la_rack_page",0,0,laui_RackPage,offsetof(OurBrush,Rack),0,0,0,0,0,0,0,LA_UDF_SINGLE|LA_HIDE_IN_SAVE);
  2654. p=laAddEnumProperty(pc,"default_as_eraser","Default as eraser","Use this brush as a eraser by default",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,DefaultAsEraser),0,0,0,0,0,0,0,0,0,0);
  2655. laAddEnumItemAs(p,"NONE","None","Default as brush",0,0);
  2656. laAddEnumItemAs(p,"ENABLED","Enabled","Default as eraser",1,0);
  2657. p=laAddEnumProperty(pc, "show_in_pages","Pages","Show in pages",0,0,0,0,0,0,0,0,3,0,ourset_BrushShowInPages,ourget_BrushShowInPages,0,0,0,0);
  2658. laAddEnumItemAs(p,"NONE","None","Don't show brush in this page",0,' ');
  2659. laAddEnumItemAs(p,"SHOWN","Shown","Show brush in this page",1,'*');
  2660. p=laAddEnumProperty(pc,"offset_follow_pen_tilt","Follow Tilt","Brush center visual offset direction follows pen tilt",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0,0,offsetof(OurBrush,OffsetFollowPenTilt),0,0,0,0,0,0,0,0,0,0);
  2661. p->ElementBytes=2;
  2662. laAddEnumItemAs(p,"NONE","None","Fixed angle",0,0);
  2663. laAddEnumItemAs(p,"ENABLED","Enabled","Follow pen tilt",1,0);
  2664. laAddFloatProperty(pc,"visual_offset","Offset","Visual offset of the pen dab from system cursor",0,0,0,20,0,0.1,0,0,offsetof(OurBrush,VisualOffset),0,0,0,0,0,0,0,0,0,0,0);
  2665. laAddFloatProperty(pc,"visual_offset_angle","Angle","Visual offset angle",0,0,0,TNS_PI*2,0,0.01,TNS_PI/4,0,offsetof(OurBrush,VisualOffsetAngle),0,0,0,0,0,0,0,0,0,0,LA_RAD_ANGLE);
  2666. laAddOperatorProperty(pc,"move","Move","Move brush","OUR_move_brush",0,0);
  2667. laAddOperatorProperty(pc,"remove","Remove","Remove brush","OUR_remove_brush",U'🗴',0);
  2668. laAddOperatorProperty(pc,"duplicate","Duplicate","Duplicate brush","OUR_duplicate_brush",U'⎘',0);
  2669. pc=laAddPropertyContainer("our_pallette","Our Pallette","OurPaint pallette",0,0,sizeof(OurColorPallette),0,0,2);
  2670. laAddStringProperty(pc,"name","Name","Name of this pallette",0,0,0,0,1,offsetof(OurColorPallette,Name),0,0,0,0,LA_AS_IDENTIFIER);
  2671. laAddSubGroup(pc,"colors","Colors","Colors in this pallette","our_color_item",0,0,0,-1,0,0,0,ourset_PalletteColor,0,0,offsetof(OurColorPallette,Colors),0);
  2672. pc=laAddPropertyContainer("our_color_item","Our Color Item","OurPaint pallette color item",0,0,sizeof(OurColorItem),0,0,1);
  2673. laAddFloatProperty(pc,"color","Color","Color",LA_WIDGET_FLOAT_COLOR,0,0,0,0,0,0,0,offsetof(OurColorItem,Color),0,0,3,0,0,0,0,0,0,0,LA_PROP_IS_LINEAR_SRGB);
  2674. laAddSubGroup(pc,"parent","Parent","Parent pallette","our_pallette",0,0,0,offsetof(OurColorItem,Parent),0,0,0,0,0,0,0,LA_UDF_REFER|LA_READ_ONLY);
  2675. laAddOperatorProperty(pc,"remove","Remove","Remove this color item","OUR_pallette_remove_color",U'🗴',0);
  2676. pc=laAddPropertyContainer("our_canvas","Our Canvas","OurPaint canvas",0,0,sizeof(OurPaint),ourpost_Canvas,0,1);
  2677. laPropContainerExtraFunctions(pc,0,ourreset_Canvas,0,0,0);
  2678. Our->CanvasSaverDummyProp=laPropContainerManageable(pc, offsetof(OurPaint,CanvasSaverDummyList));
  2679. laAddStringProperty(pc,"identifier","Identifier","Canvas identifier placeholder",0,0,0,0,0,0,0,ourget_CanvasIdentifier,0,0,0);
  2680. laAddStringProperty(pc,"notes","Notes","Notes of this painting",LA_WIDGET_STRING_MULTI,0,0,0,1,offsetof(OurPaint,Notes),0,0,0,0,0);
  2681. laAddIntProperty(pc,"canvas_version","Canvas Version",0,0,0,0,0,0,0,0,0,offsetof(OurPaint,CanvasVersion),ourget_CanvasVersion,0,0,0,0,0,0,0,0,0,LA_READ_ONLY);
  2682. laAddSubGroup(pc,"layers","Layers","Layers","our_layer",0,0,ourui_Layer,offsetof(OurPaint,CurrentLayer),0,0,0,0,0,0,offsetof(OurPaint,Layers),LA_PROP_READ_PROGRESS);
  2683. laAddSubGroup(pc,"current_layer","Current Layer","Current layer","our_layer",0,0,0,offsetof(OurPaint,CurrentLayer),ourget_FirstLayer,0,laget_ListNext,0,0,0,0,LA_UDF_REFER);
  2684. laAddIntProperty(pc,"size","Size","Size of the cropping area",0,"W,H","px",0,0,0,2400,0,offsetof(OurPaint,W),0,0,2,0,0,0,0,ourset_CanvasSize,0,0,0);
  2685. laAddIntProperty(pc,"position","Position","Position of the cropping area",0,"X,Y","px",0,0,0,2400,0,offsetof(OurPaint,X),0,0,2,0,0,0,0,ourset_CanvasPosition,0,0,0);
  2686. laAddFloatProperty(pc,"background_color","Background Color","Background color of the canvas",0,"R,G,B",0,1,0,0.05,0.8,0,offsetof(OurPaint,BackgroundColor),0,0,3,0,0,0,0,ourset_BackgroundColor,0,0,LA_PROP_IS_LINEAR_SRGB);
  2687. p=laAddEnumProperty(pc,"background_type","Background Type","Background texture type",0,0,0,0,0,offsetof(OurPaint,BackgroundType),0,0,0,0,0,0,0,0,0,0);
  2688. laAddEnumItemAs(p,"NONE","None","No textured background",0,0);
  2689. laAddEnumItemAs(p,"CANVAS","Canvas","Background mimics canvas texture",1,0);
  2690. laAddEnumItemAs(p,"PAPER","Paper","Background mimics paper texture",2,0);
  2691. laAddIntProperty(pc,"background_random","Random","Background random pattern value",0,0,0,0,0,0,0,0,offsetof(OurPaint,BackgroundRandom),0,0,0,0,0,0,0,0,0,0,0);
  2692. laAddFloatProperty(pc,"background_factor","Factor","Background effect factor",0,0,0,1,0,0,0,0,offsetof(OurPaint,BackgroundFactor),0,0,0,0,0,0,0,0,0,0,0);
  2693. laAddFloatProperty(pc,"border_alpha","Border Alpha","Alpha of the border region around the canvas",0,0,0,1,0,0.05,0.5,0,offsetof(OurPaint,BorderAlpha),0,0,0,0,0,0,0,ourset_BorderAlpha,0,0,0);
  2694. p=laAddEnumProperty(pc,"show_border","Show Border","Whether to show border on the canvas",0,0,0,0,0,offsetof(OurPaint,ShowBorder),0,ourset_ShowBorder,0,0,0,0,0,0,0,0);
  2695. laAddEnumItemAs(p,"FALSE","No","Dont' show border on the canvas",0,0);
  2696. laAddEnumItemAs(p,"TRUE","Yes","Show border on the canvas",1,0);
  2697. p=laAddEnumProperty(pc,"color_interpretation","Color Interpretation","Interpret the color values on this canvas as in which color space",0,0,0,0,0,offsetof(OurPaint,ColorInterpretation),0,ourset_ColorInterpretation,0,0,0,0,0,0,0,0);
  2698. laAddEnumItemAs(p,"LINEAR_SRGB","Linear sRGB","Interpret the color values as if they are in Linear sRGB color space",OUR_CANVAS_INTERPRETATION_SRGB,0);
  2699. laAddEnumItemAs(p,"LINEAR_CLAY","Linear Clay","Interpret the color values as if they are in Linear Clay color space (AdobeRGB 1998 compatible)",OUR_CANVAS_INTERPRETATION_CLAY,0);
  2700. laAddFloatProperty(pc,"ref_alpha","Ref Alpha","Alpha of the reference lines",0,0,0,1,0,0.05,0.75,0,offsetof(OurPaint,RefAlpha),0,0,0,0,0,0,0,ourset_RefAlpha,0,0,0);
  2701. p=laAddEnumProperty(pc,"ref_mode","Show Reference Lines","Whether to show reference lines",0,0,0,0,0,offsetof(OurPaint,ShowRef),0,ourset_ShowRef,0,0,0,0,0,0,0,0);
  2702. laAddEnumItemAs(p,"NONE","None","Don't show reference lines",0,0);
  2703. laAddEnumItemAs(p,"BORDER","Border","Show reference lines like paper boundaries",1,0);
  2704. laAddEnumItemAs(p,"SPREAD","Spread","Show double page spread",2,0);
  2705. p=laAddEnumProperty(pc,"ref_category","Category","Dimension category of the reference block",0,0,0,0,0,offsetof(OurPaint,RefCategory),0,ourset_RefCategory,0,0,0,0,0,0,0,0);
  2706. laAddEnumItemAs(p,"A","A","A series ISO 216 / DIN 476",0,0);
  2707. laAddEnumItemAs(p,"B","B","B series ISO 216 / DIN 476",1,0);
  2708. laAddEnumItemAs(p,"K","2nK","East-Asian 2nK paper sizes",2,0);
  2709. p=laAddEnumProperty(pc,"ref_size","Size","Reference block size",0,0,0,0,0,offsetof(OurPaint,RefSize),0,ourset_RefSize,0,0,0,0,0,0,0,0);
  2710. #define _STR(a) #a
  2711. #define ADD_SIZE(a) laAddEnumItemAs(p,"SIZE"_STR(a),_STR(a),"SIZE"_STR(a),a,0);
  2712. ADD_SIZE(0);ADD_SIZE(1);ADD_SIZE(2);ADD_SIZE(3);ADD_SIZE(4);ADD_SIZE(5);ADD_SIZE(6);ADD_SIZE(7);
  2713. #undef ADD_SIZE
  2714. #undef _STR
  2715. p=laAddEnumProperty(pc,"ref_orientation","Orientation","Orientation of the reference block",0,0,0,0,0,offsetof(OurPaint,RefOrientation),0,ourset_RefOrientation,0,0,0,0,0,0,0,0);
  2716. laAddEnumItemAs(p,"H","Horizontal","Horizontal",0,L'▭');
  2717. laAddEnumItemAs(p,"V","Vertical","Vertical",1,L'▯');
  2718. laAddFloatProperty(pc,"ref_margins","Margins","Margins of the reference block",0,"L/R,T/B","cm",0,0,0,0,0,offsetof(OurPaint,RefMargins),0,0,2,0,0,0,0,ourset_RefMargins,0,0,0);
  2719. laAddFloatProperty(pc,"ref_paddings","Paddings","Paddings of the reference block",0,"L/R,T/B","cm",0,0,0,0,0,offsetof(OurPaint,RefPaddings),0,0,2,0,0,0,0,ourset_RefPaddings,0,0,0);
  2720. laAddFloatProperty(pc,"ref_middle_margin","Middle Margin","Margin in the middle of the spread",0,0,"cm",0,0,0,0,0,offsetof(OurPaint,RefMargins[2]),0,ourset_RefMiddleMargin,0,0,0,0,0,0,0,0,0);
  2721. laAddIntProperty(pc,"ref_biases","Reference Biases","Position biases when reading reference block",0,0,0,0,0,0,0,0,offsetof(OurPaint,RefBiases),0,0,0,0,0,0,0,0,0,0,0);
  2722. p=laAddEnumProperty(pc,"sketch_mode","Sketch Mode","Show sketch layers differently",0,0,0,0,0,offsetof(OurPaint,SketchMode),0,ourset_ShowSketch,0,0,0,0,0,0,0,0);
  2723. laAddEnumItemAs(p,"NORMAL","Normal","Show sketch layers as normal layers",0,0);
  2724. laAddEnumItemAs(p,"FULL","Full","Show sketch layers in full opacity",1,0);
  2725. laAddEnumItemAs(p,"NONE","None","Show double page spread",2,0);
  2726. pc=laAddPropertyContainer("our_layer","Our Layer","OurPaint layer",0,0,sizeof(OurLayer),0,0,1);
  2727. laPropContainerExtraFunctions(pc,ourbeforefree_Layer,ourbeforefree_Layer,0,0,0);
  2728. laAddStringProperty(pc,"name","Name","Name of the layer",0,0,0,0,1,offsetof(OurLayer,Name),0,0,0,0,LA_AS_IDENTIFIER);
  2729. laAddIntProperty(pc,"__move","Move Slider","Move Slider",LA_WIDGET_HEIGHT_ADJUSTER,0,0,0,0,0,0,0,0,0,ourset_LayerMove,0,0,0,0,0,0,0,0,LA_UDF_IGNORE);
  2730. laAddIntProperty(pc,"offset","Offset","Offset of the layer",0,"X,Y","px",0,0,0,0,0,offsetof(OurLayer,OffsetX),0,0,2,0,0,0,0,ourset_LayerPosition,0,0,0);
  2731. laAddIntProperty(pc,"tile_start","Tile Start","Tile starting position for loading",0,0,0,0,0,0,0,0,0,0,0,2,0,0,ourget_LayerTileStart,0,ourset_LayerTileStart,0,0,LA_UDF_ONLY);
  2732. p=laAddEnumProperty(pc,"lock","Lock","Lock this layer",0,0,0,0,0,offsetof(OurLayer,Lock),0,0,0,0,0,0,0,0,0,0);
  2733. laAddEnumItemAs(p,"NONE","Paintable","You can paint on this layer",0,U'🖌');
  2734. laAddEnumItemAs(p,"LOCK","Locked","This layer is locked from modification",1,U'🔏');
  2735. p=laAddEnumProperty(pc,"hide","Hide","Hide this layer",0,0,0,0,0,offsetof(OurLayer,Hide),0,ourset_LayerHide,0,0,0,0,0,0,0,0);
  2736. laAddEnumItemAs(p,"NONE","Visible","Layer is visible",0,U'🌑');
  2737. laAddEnumItemAs(p,"HIDE","Hidden","Layer is hidden",1,U'🌔');
  2738. laAddFloatProperty(pc,"transparency","Transparency","Alpha of the layer",0,0,0,1,0,0.05,1,0,offsetof(OurLayer,Transparency),0, ourset_LayerAlpha,0,0,0,0,0,0,0,0,0);
  2739. p=laAddEnumProperty(pc,"blend_mode","Blend Mode","How this layer is blended onto the stuff below",0,0,0,0,0,offsetof(OurLayer,BlendMode),0,ourset_LayerBlendMode,0,0,0,0,0,0,0,0);
  2740. laAddEnumItemAs(p,"NORMAL","Normal","Normal alpha blend",OUR_BLEND_NORMAL,0);
  2741. laAddEnumItemAs(p,"ADD","Add","Pixel values are simply added together",OUR_BLEND_ADD,0);
  2742. laAddRawProperty(pc,"image","Image","The image data of this tile",0,0,ourget_LayerImage,ourset_LayerImage,LA_UDF_ONLY);
  2743. laAddOperatorProperty(pc,"move","Move","Move Layer","OUR_move_layer",0,0);
  2744. laAddOperatorProperty(pc,"remove","Remove","Remove layer","OUR_remove_layer",U'🗴',0);
  2745. laAddOperatorProperty(pc,"merge","Merge","Merge layer","OUR_merge_layer",U'🠳',0);
  2746. laAddOperatorProperty(pc,"duplicate","Duplicate","Duplicate layer","OUR_duplicate_layer",U'⎘',0);
  2747. p=laAddEnumProperty(pc,"as_sketch","As Sketch","As sketch layer (for quick toggle)",0,0,0,0,0,offsetof(OurLayer,AsSketch),0,ourset_LayerAsSketch,0,0,0,0,0,0,0,0);
  2748. laAddEnumItemAs(p,"NORMAL","Normal","Layer is normal",0,U'🖌');
  2749. laAddEnumItemAs(p,"SKETCH","Sketch","Layer is a sketch layer",1,U'🖉');
  2750. laCanvasTemplate* ct=laRegisterCanvasTemplate("our_CanvasDraw", "our_canvas", ourextramod_Canvas, our_CanvasDrawCanvas, our_CanvasDrawOverlay, our_CanvasDrawInit, la_CanvasDestroy);
  2751. pc = laCanvasHasExtraProps(ct,sizeof(OurCanvasDraw),2);
  2752. km = &ct->KeyMapper;
  2753. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_MOUSE_WHEEL_DOWN, 0, "direction=out");
  2754. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_MOUSE_WHEEL_UP, 0, "direction=in");
  2755. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, LA_KEY_CTRL, LA_M_MOUSE_DOWN, 0, "mode=mouse;lock=true;");
  2756. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, LA_KEY_ALT, LA_L_MOUSE_DOWN, 0, 0);
  2757. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, 0, LA_M_MOUSE_DOWN, 0, 0);
  2758. laAssignNewKey(km, 0, "OUR_action", LA_KM_SEL_UI_EXTRA, 0, LA_L_MOUSE_DOWN, 0, 0);
  2759. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, 0, LA_R_MOUSE_DOWN, 0, 0);
  2760. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, LA_KEY_CTRL, LA_L_MOUSE_DOWN, 0, 0);
  2761. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_ZOOM_OUT, "direction=out");
  2762. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_ZOOM_IN, "direction=in");
  2763. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_PICK, 0);
  2764. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_MOVE, 0);
  2765. km=&MAIN.KeyMap; char buf[128];
  2766. for(int i=0;i<=9;i++){
  2767. sprintf(buf,"binding=%d",i); laAssignNewKey(km, 0, "OUR_brush_quick_switch", 0, 0, LA_KEY_DOWN, '0'+i, buf);
  2768. }
  2769. laAssignNewKey(km, 0, "OUR_brush_resize", 0, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_BRUSH_SMALLER, "direction=smaller");
  2770. laAssignNewKey(km, 0, "OUR_brush_resize", 0, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_BRUSH_BIGGER, "direction=bigger");
  2771. laAssignNewKey(km, 0, "OUR_toggle_erasing", 0, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_TOGGLE_ERASING, 0);
  2772. laAssignNewKey(km, 0, "OUR_cycle_sketch", 0, 0, LA_SIGNAL_EVENT, OUR_SIGNAL_TOGGLE_SKETCH, 0);
  2773. laNewCustomSignal("our.pick",OUR_SIGNAL_PICK);
  2774. laNewCustomSignal("our.move",OUR_SIGNAL_MOVE);
  2775. laNewCustomSignal("our.toggle_erasing",OUR_SIGNAL_TOGGLE_ERASING);
  2776. laNewCustomSignal("our.toggle_sketch",OUR_SIGNAL_TOGGLE_SKETCH);
  2777. laNewCustomSignal("our.zoom_in",OUR_SIGNAL_ZOOM_IN);
  2778. laNewCustomSignal("our.zoom_out",OUR_SIGNAL_ZOOM_OUT);
  2779. laNewCustomSignal("our.bursh_bigger",OUR_SIGNAL_BRUSH_BIGGER);
  2780. laNewCustomSignal("our.brush_smaller",OUR_SIGNAL_BRUSH_SMALLER);
  2781. laInputMapping* im=MAIN.InputMapping->CurrentInputMapping;
  2782. if(!im) im=laNewInputMapping("Our Paint Default");
  2783. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,",",0,OUR_SIGNAL_ZOOM_OUT);
  2784. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,".",0,OUR_SIGNAL_ZOOM_IN);
  2785. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,"[",0,OUR_SIGNAL_BRUSH_SMALLER);
  2786. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,"]",0,OUR_SIGNAL_BRUSH_BIGGER);
  2787. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,"Space",0,OUR_SIGNAL_MOVE);
  2788. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,"s",0,OUR_SIGNAL_TOGGLE_SKETCH);
  2789. laNewInputMappingEntryP(im,LA_INPUT_DEVICE_KEYBOARD,0,"e",0,OUR_SIGNAL_TOGGLE_ERASING);
  2790. laAssignNewKey(km, 0, "LA_undo", 0, LA_KEY_CTRL, LA_KEY_DOWN, ']', 0);
  2791. laAssignNewKey(km, 0, "LA_redo", 0, LA_KEY_CTRL, LA_KEY_DOWN, '[', 0);
  2792. laSetMenuBarTemplates(ourui_MenuButtons, ourui_ToolExtras, OUR_PAINT_NAME_STRING);
  2793. ourRegisterNodes();
  2794. laManagedSaveProp* msp= laSaveProp("our.canvas");
  2795. laSaveAlongside(msp,"our.thumbnail");
  2796. laSaveProp("our.tools");
  2797. laGetSaverDummy(Our,Our->CanvasSaverDummyProp);
  2798. laAddExtraExtension(LA_FILETYPE_UDF,"ourpaint","ourbrush",0);
  2799. laAddExtraPreferencePath("our.preferences");
  2800. laAddExtraPreferencePage("Our Paint",ourui_OurPreference);
  2801. laSetAboutTemplates(ourui_AboutContent,ourui_AboutVersion,ourui_AboutAuthor);
  2802. laSetFrameCallbacks(ourPreFrame,0,0);
  2803. laSetDiffCallback(ourPushEverything);
  2804. laSetSaveCallback(ourPreSave, ourPostSave);
  2805. laSetCleanupCallback(ourCleanUp);
  2806. ourMakeTranslations();
  2807. }
  2808. int ourInit(){
  2809. Our=memAcquire(sizeof(OurPaint));
  2810. ourRegisterEverything();
  2811. our_InitColorProfiles();
  2812. char error[1024]; int status;
  2813. Our->SmudgeTexture=tnsCreate2DTexture(GL_RGBA16,256,1,0);
  2814. Our->CanvasShader = glCreateShader(GL_COMPUTE_SHADER);
  2815. const GLchar* source1 = OUR_CANVAS_SHADER;
  2816. glShaderSource(Our->CanvasShader, 1, &source1, NULL); glCompileShader(Our->CanvasShader);
  2817. glGetShaderiv(Our->CanvasShader, GL_COMPILE_STATUS, &status);
  2818. if (status == GL_FALSE){
  2819. glGetShaderInfoLog(Our->CanvasShader, sizeof(error), 0, error); printf("Canvas shader error:\n%s", error); glDeleteShader(Our->CanvasShader); return 0;
  2820. }
  2821. Our->CanvasProgram = glCreateProgram();
  2822. glAttachShader(Our->CanvasProgram, Our->CanvasShader); glLinkProgram(Our->CanvasProgram);
  2823. glGetProgramiv(Our->CanvasProgram, GL_LINK_STATUS, &status);
  2824. if (status == GL_FALSE){
  2825. glGetProgramInfoLog(Our->CanvasProgram, sizeof(error), 0, error); printf("Canvas program Linking error:\n%s", error); return 0;
  2826. }
  2827. Our->CompositionShader = glCreateShader(GL_COMPUTE_SHADER);
  2828. const GLchar* source2 = OUR_COMPOSITION_SHADER;
  2829. glShaderSource(Our->CompositionShader, 1, &source2, NULL); glCompileShader(Our->CompositionShader);
  2830. glGetShaderiv(Our->CompositionShader, GL_COMPILE_STATUS, &status);
  2831. if (status == GL_FALSE){
  2832. glGetShaderInfoLog(Our->CompositionShader, sizeof(error), 0, error); printf("Composition shader error:\n%s", error); glDeleteShader(Our->CompositionShader); return 0;
  2833. }
  2834. Our->CompositionProgram = glCreateProgram();
  2835. glAttachShader(Our->CompositionProgram, Our->CompositionShader); glLinkProgram(Our->CompositionProgram);
  2836. glGetProgramiv(Our->CompositionProgram, GL_LINK_STATUS, &status);
  2837. if (status == GL_FALSE){
  2838. glGetProgramInfoLog(Our->CompositionProgram, sizeof(error), 0, error); printf("Composition program Linking error:\n%s", error); return 0;
  2839. }
  2840. Our->uCanvasType=glGetUniformLocation(Our->CanvasProgram,"uCanvasType");
  2841. Our->uCanvasRandom=glGetUniformLocation(Our->CanvasProgram,"uCanvasRandom");
  2842. Our->uCanvasFactor=glGetUniformLocation(Our->CanvasProgram,"uCanvasFactor");
  2843. Our->uImageOffset=glGetUniformLocation(Our->CanvasProgram,"uImageOffset");
  2844. Our->uBrushCorner=glGetUniformLocation(Our->CanvasProgram,"uBrushCorner");
  2845. Our->uBrushCenter=glGetUniformLocation(Our->CanvasProgram,"uBrushCenter");
  2846. Our->uBrushSize=glGetUniformLocation(Our->CanvasProgram,"uBrushSize");
  2847. Our->uBrushHardness=glGetUniformLocation(Our->CanvasProgram,"uBrushHardness");
  2848. Our->uBrushSmudge=glGetUniformLocation(Our->CanvasProgram,"uBrushSmudge");
  2849. Our->uBrushRecentness=glGetUniformLocation(Our->CanvasProgram,"uBrushRecentness");
  2850. Our->uBrushColor=glGetUniformLocation(Our->CanvasProgram,"uBrushColor");
  2851. Our->uBrushSlender=glGetUniformLocation(Our->CanvasProgram,"uBrushSlender");
  2852. Our->uBrushAngle=glGetUniformLocation(Our->CanvasProgram,"uBrushAngle");
  2853. Our->uBrushDirection=glGetUniformLocation(Our->CanvasProgram,"uBrushDirection");
  2854. Our->uBrushForce=glGetUniformLocation(Our->CanvasProgram,"uBrushForce");
  2855. Our->uBrushGunkyness=glGetUniformLocation(Our->CanvasProgram,"uBrushGunkyness");
  2856. Our->uBrushErasing=glGetUniformLocation(Our->CanvasProgram,"uBrushErasing");
  2857. Our->uBrushRoutineSelection=glGetSubroutineUniformLocation(Our->CanvasProgram, GL_COMPUTE_SHADER, "uBrushRoutineSelection");
  2858. Our->RoutineDoDabs=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoDabs");
  2859. Our->RoutineDoSample=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoSample");
  2860. Our->uMixRoutineSelection=glGetSubroutineUniformLocation(Our->CanvasProgram, GL_COMPUTE_SHADER, "uMixRoutineSelection");
  2861. Our->RoutineDoMixNormal=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoMixNormal");
  2862. Our->RoutineDoMixSpectral=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoMixSpectral");
  2863. Our->uBlendMode=glGetUniformLocation(Our->CompositionProgram,"uBlendMode");
  2864. Our->uAlphaTop=glGetUniformLocation(Our->CompositionProgram,"uAlphaTop");
  2865. Our->uAlphaBottom=glGetUniformLocation(Our->CompositionProgram,"uAlphaBottom");
  2866. Our->DefaultScale=0.5;
  2867. Our->X=-2800/2; Our->W=2800;
  2868. Our->Y=2400/2; Our->H=2400;
  2869. Our->BorderAlpha=0.6;
  2870. Our->SpectralMode=1;
  2871. Our->BackgroundType=2;
  2872. Our->BackgroundFactor=1;
  2873. srand(time(0));
  2874. Our->BackgroundRandom=rand()-RAND_MAX/2;
  2875. Our->LockRadius=1;
  2876. Our->EnableBrushCircle=1;
  2877. Our->PaintUndoLimit=100;
  2878. Our->AllowNonPressure=1;
  2879. Our->BadEventsLimit=7;
  2880. Our->PenID=-1;
  2881. Our->EraserID=-1;
  2882. Our->RefAlpha=0.75;
  2883. Our->RefCategory=0;
  2884. Our->RefSize=4;
  2885. tnsVectorSet3(Our->RefMargins,1.5,1.5,1.0);
  2886. tnsVectorSet2(Our->RefPaddings,1.5,1.5);
  2887. tnsEnableShaderv(T->immShader);
  2888. tnsVectorSet3(Our->BackgroundColor,0.2,0.2,0.2);
  2889. our_NewLayer("Our Layer");
  2890. OurBrush* ob=our_NewBrush("Our Brush",15,0.95,9,0.5,0.5,5,0,0,0,0); laset_InstanceUID(ob,"OURBRUSH_Default_Yiming");
  2891. laMarkMemClean(ob); laMarkMemClean(Our->CanvasSaverDummyList.pFirst);
  2892. laAddRootDBInst("our.canvas");
  2893. Our->SplashImage=tnsNewImage(DATA_SPLASH);
  2894. Our->SplashImageHigh=tnsNewImage(DATA_SPLASH_HIGHDPI);
  2895. return 1;
  2896. }