*/}}

ouroperations.c 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  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_InitColorProfiles(){
  67. cmsCIExyYTRIPLE srgb_primaries_pre_quantized = { {0.639998686, 0.330010138, 1.0}, {0.300003784, 0.600003357, 1.0}, {0.150002046, 0.059997204, 1.0} };
  68. cmsCIExyYTRIPLE adobe_primaries_prequantized = { {0.639996511, 0.329996864, 1.0}, {0.210005295, 0.710004866, 1.0}, {0.149997606, 0.060003644, 1.0} };
  69. 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";
  70. our_InitRGBProfile(1,&srgb_primaries_pre_quantized,&Our->icc_LinearsRGB,&Our->iccsize_LinearsRGB,"Copyright Yiming 2022.",manu,"Yiming's linear sRGB icc profile.");
  71. our_InitRGBProfile(0,&srgb_primaries_pre_quantized,&Our->icc_sRGB,&Our->iccsize_sRGB,"Copyright Yiming 2022.",manu,"Yiming's sRGB icc profile.");
  72. manu="ClayRGB chromaticities as given in Adobe RGB (1998) Color Image Encoding, Version 2005-05, https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf";
  73. our_InitRGBProfile(1,&adobe_primaries_prequantized,&Our->icc_LinearClay,&Our->iccsize_LinearClay,"Copyright Yiming 2022.",manu,"Yiming's Linear ClayRGB icc profile.");
  74. our_InitRGBProfile(2,&adobe_primaries_prequantized,&Our->icc_Clay,&Our->iccsize_Clay,"Copyright Yiming 2022.",manu,"Yiming's ClayRGB icc profile.");
  75. }
  76. void ourui_CanvasPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  77. laColumn* c=laFirstColumn(uil);
  78. laUiItem* ui=laShowCanvas(uil,c,0,"our.canvas",0,-1);
  79. laCanvasExtra* ce=ui->Extra; ce->ZoomX=ce->ZoomY=1.0f/Our->DefaultScale;
  80. }
  81. void ourui_Layer(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  82. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.7); cl=laLeftColumn(c,0);cr=laRightColumn(c,1);
  83. laUiItem* b=laBeginRow(uil,cl,0,0);
  84. laShowHeightAdjuster(uil,cl,This,"__move",0);
  85. laShowItemFull(uil,cl,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  86. laShowItemFull(uil,cl,This,"lock",LA_WIDGET_ENUM_CYCLE_ICON,0,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL;
  87. laShowItemFull(uil,cl,This,"hide",LA_WIDGET_ENUM_CYCLE_ICON,0,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL;
  88. laEndRow(uil,b);
  89. laUiItem* b1=laOnConditionToggle(uil,cr,0,0,0,0,0);{ strSafeSet(&b1->ExtraInstructions,"text=☰");
  90. b=laBeginRow(uil,c,0,0);
  91. laShowItem(uil,c,This,"remove")->Flags|=LA_UI_FLAGS_ICON;
  92. laShowSeparator(uil,c)->Expand=1;
  93. laShowItemFull(uil,c,This,"move",0,"direction=up;icon=🡱;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  94. laShowItemFull(uil,c,This,"move",0,"direction=down;icon=🡳;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  95. laEndRow(uil,b);
  96. }laEndCondition(uil,b1);
  97. }
  98. void ourui_LayersPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  99. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.5); cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  100. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.current_layer"));{
  101. laUiItem* b1=laBeginRow(uil,c,0,0);
  102. laShowItem(uil,c,0,"our.canvas.current_layer.name")->Expand=1;
  103. laShowItem(uil,c,0,"OUR_new_layer")->Flags|=LA_UI_FLAGS_ICON;
  104. laEndRow(uil,b1);
  105. laShowItem(uil,cl,0,"our.canvas.current_layer.transparency");
  106. laShowItem(uil,cr,0,"our.canvas.current_layer.blend_mode");
  107. }laElse(uil,b);{
  108. laShowItem(uil,c,0,"OUR_new_layer");
  109. }laEndCondition(uil,b);
  110. laUiItem* lui=laShowItemFull(uil,c,0,"our.canvas.layers",0,0,0,0);
  111. b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.current_layer"));{
  112. laUiItem* b1=laBeginRow(uil,c,0,0);
  113. laShowItem(uil,c,&lui->PP,"remove")->Flags|=LA_UI_FLAGS_ICON;
  114. laShowItem(uil,c,&lui->PP,"merge");
  115. laShowSeparator(uil,c)->Expand=1;
  116. laEndRow(uil,b1);
  117. }laEndCondition(uil,b);
  118. laShowSeparator(uil,c);
  119. b=laBeginRow(uil,c,0,0);
  120. 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");
  121. laEndRow(uil,b);
  122. laShowSeparator(uil,c);
  123. laShowLabel(uil,c,"Background:",0,0);
  124. laUiItem* b2=laOnConditionThat(uil,c,laPropExpression(0,"our.lock_background"));{
  125. laShowItemFull(uil,c,0,"our.lock_background",LA_WIDGET_ENUM_CYCLE,0,0,0)->Flags|=LA_UI_FLAGS_EXIT_WHEN_TRIGGERED;
  126. }laElse(uil,b2);{
  127. b=laBeginRow(uil,c,1,0);
  128. laShowLabel(uil,c,"Color:",0,0);
  129. laShowItemFull(uil,c,0,"our.canvas.background_color",LA_WIDGET_FLOAT_COLOR,0,0,0);
  130. laEndRow(uil,b);
  131. b=laBeginRow(uil,c,1,0);
  132. laShowLabel(uil,c,"Pattern:",0,0);
  133. laShowItemFull(uil,c,0,"our.canvas.background_type",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND;
  134. laEndRow(uil,b);
  135. b=laBeginRow(uil,c,1,0);
  136. laShowItemFull(uil,c,0,"our.canvas.background_random",0,0,0,0);
  137. laShowItemFull(uil,c,0,"our.canvas.background_factor",0,0,0,0);
  138. laEndRow(uil,b);
  139. }laEndCondition(uil,b2);
  140. }
  141. void ourui_Brush(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. laShowItemFull(uil,cl,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  146. laEndRow(uil,b);
  147. laUiItem* b1=laOnConditionToggle(uil,cr,0,0,0,0,0);{ strSafeSet(&b1->ExtraInstructions,"text=☰");
  148. b=laBeginRow(uil,c,0,0);
  149. laShowItem(uil,c,This,"remove")->Flags|=LA_UI_FLAGS_ICON;
  150. laShowItem(uil,c,This,"binding")->Expand=1;
  151. laShowItem(uil,c,This,"show_in_pages")
  152. ->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_CYCLE|LA_UI_FLAGS_HIGHLIGHT|LA_UI_FLAGS_TRANSPOSE|LA_UI_FLAGS_ICON;
  153. laShowItem(uil,c,This,"duplicate")->Flags|=LA_UI_FLAGS_ICON;
  154. laShowItemFull(uil,c,This,"move",0,"direction=up;icon=🡱;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  155. laShowItemFull(uil,c,This,"move",0,"direction=down;icon=🡳;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  156. laEndRow(uil,b);
  157. }laEndCondition(uil,b1);
  158. }
  159. void ourui_BrushSimple(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  160. laColumn* c=laFirstColumn(uil);
  161. laUiItem* b=laBeginRow(uil,c,0,0);
  162. laShowItemFull(uil,c,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  163. laUiItem* b1=laOnConditionThat(uil,c,laGreaterThan(laPropExpression(This,"binding"),laIntExpression(-1)));
  164. laShowItemFull(uil,c,This,"binding",LA_WIDGET_INT_PLAIN,0,0,0)->Flags|=LA_UI_FLAGS_NO_LABEL|LA_TEXT_MONO;
  165. laEndCondition(uil,b1);
  166. laEndRow(uil,b);
  167. }
  168. void ourui_ToolsPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  169. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.5); cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  170. laUiItem* b1, *b2;
  171. #define OUR_BR b1=laBeginRow(uil,c,0,0);
  172. #define OUR_ER laEndRow(uil,b1);
  173. #define OUR_PRESSURE(a) \
  174. b2=laOnConditionThat(uil,c,laNot(laPropExpression(0,"our.tools.current_brush.use_nodes")));\
  175. laShowItemFull(uil,c,0,"our.tools.current_brush." a,0,"text=P",0,0);\
  176. laEndCondition(uil,b2);
  177. laShowItem(uil,c,0,"our.tool")->Flags|=LA_UI_FLAGS_EXPAND;
  178. laUiItem* bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_PAINT)));{
  179. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  180. laShowLabel(uil,cl,"Mode:",0,0);laShowItem(uil,cr,0,"our.erasing");
  181. laShowItem(uil,c,0,"our.tools.current_brush.name");
  182. laShowItem(uil,cl,0,"our.tools.current_brush.use_nodes");
  183. laUiItem* b3=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush.use_nodes"));{
  184. laShowItemFull(uil,cr,0,"LA_panel_activator",0,"text=Edit;panel_id=panel_brush_nodes",0,0);
  185. }laEndCondition(uil,b3);
  186. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.size")->Expand=1; OUR_PRESSURE("pressure_size") OUR_ER
  187. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.transparency")->Expand=1; OUR_PRESSURE("pressure_transparency") OUR_ER
  188. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.hardness")->Expand=1; OUR_PRESSURE("pressure_hardness") OUR_ER
  189. laShowItem(uil,c,0,"our.tools.current_brush.slender");
  190. laShowItem(uil,c,0,"our.tools.current_brush.angle");
  191. laShowItem(uil,c,0,"our.tools.current_brush.dabs_per_size");
  192. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.smudge")->Expand=1; OUR_PRESSURE("pressure_smudge") OUR_ER
  193. laShowItem(uil,c,0,"our.tools.current_brush.smudge_resample_length");
  194. laShowItem(uil,c,0,"our.tools.current_brush.gunkyness");
  195. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.force")->Expand=1; OUR_PRESSURE("pressure_force") OUR_ER
  196. laShowSeparator(uil,c);
  197. laShowItem(uil,c,0,"our.tools.current_brush.smoothness");
  198. laShowSeparator(uil,c);
  199. b2=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush.use_nodes"));
  200. laShowItem(uil,cl,0,"our.tools.current_brush.c1");
  201. laShowItem(uil,cr,0,"our.tools.current_brush.c1_name");
  202. laShowItem(uil,cl,0,"our.tools.current_brush.c2");
  203. laShowItem(uil,cr,0,"our.tools.current_brush.c2_name");
  204. laEndCondition(uil,b2);
  205. laShowSeparator(uil,c);
  206. laShowItem(uil,c,0,"our.tools.current_brush.default_as_eraser");
  207. }laEndCondition(uil,b);
  208. laShowSeparator(uil,c);
  209. laShowLabel(uil,c,"Display:",0,0);
  210. laShowItem(uil,c,0,"our.preferences.enable_brush_circle");
  211. laShowItem(uil,c,0,"our.preferences.show_stripes");
  212. }laEndCondition(uil,bt);
  213. bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_CROP)));{
  214. laShowItemFull(uil,cl,0,"our.canvas.show_border",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0);
  215. laUiItem* b=laOnConditionThat(uil,cl,laPropExpression(0,"our.canvas.show_border"));{
  216. laShowItem(uil,cl,0,"our.canvas.border_alpha");
  217. laShowLabel(uil,cl,"Position:",0,0); laShowItem(uil,cl,0,"our.canvas.position")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  218. laShowLabel(uil,cl,"Size:",0,0); laShowItem(uil,cl,0,"our.canvas.size")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  219. laShowItem(uil,cl,0,"OUR_crop_to_ref");
  220. }laEndCondition(uil,b);
  221. laShowLabel(uil,cr,"Reference:",0,0);
  222. laShowItemFull(uil,cr,0,"our.canvas.ref_mode",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND;
  223. b=laOnConditionThat(uil,cr,laPropExpression(0,"our.canvas.ref_mode"));{
  224. laShowItem(uil,cr,0,"our.canvas.ref_alpha");
  225. laShowItem(uil,cr,0,"our.canvas.ref_category")->Flags|=LA_UI_FLAGS_EXPAND;
  226. laShowItem(uil,cr,0,"our.canvas.ref_size")->Flags|=LA_UI_FLAGS_EXPAND;
  227. laShowItem(uil,cr,0,"our.canvas.ref_orientation")->Flags|=LA_UI_FLAGS_EXPAND;
  228. laShowLabel(uil,cr,"Margins:",0,0); laShowItem(uil,cr,0,"our.canvas.ref_margins")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  229. laShowLabel(uil,cr,"Paddings:",0,0); laShowItem(uil,cr,0,"our.canvas.ref_paddings")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  230. laShowItem(uil,cr,0,"our.canvas.ref_middle_margin");
  231. }laEndCondition(uil,b);
  232. }laEndCondition(uil,bt);
  233. }
  234. void ourui_BrushesPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  235. laColumn* c=laFirstColumn(uil); laUiItem* b1, *b2;
  236. laUiItem* bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_PAINT)));{
  237. laShowItem(uil,c,0,"our.preferences.smoothness");
  238. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  239. laShowItemFull(uil,c,0,"our.tools.current_brush.size",0,0,0,0);
  240. laShowItemFull(uil,c,0,"our.tools.current_brush.size_100",0,0,0,0);
  241. laShowItemFull(uil,c,0,"our.tools.current_brush.size_10",0,0,0,0);
  242. OUR_BR laShowItemFull(uil,c,0,"our.brush_page",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_ICON;
  243. laShowSeparator(uil,c)->Expand=1; laShowItemFull(uil,c,0,"our.preferences.lock_radius",LA_WIDGET_ENUM_HIGHLIGHT,"text=Lock;",0,0); OUR_ER
  244. }laEndCondition(uil,b);
  245. b=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.brush_page"),laIntExpression(OUR_BRUSH_PAGE_LIST)));{
  246. laShowItemFull(uil,c,0,"our.tools.brushes",0,0,0,0);
  247. laShowItem(uil,c,0,"OUR_new_brush");
  248. }laElse(uil,b);{
  249. laUiItem* bui=laShowItemFull(uil,c,0,"our.tools.brushes",0,0,ourui_BrushSimple,0);
  250. bui->SymbolID=2;
  251. }laEndCondition(uil,b);
  252. }laElse(uil,bt);{
  253. laShowLabel(uil,c,"Brush tool not selected",0,0);
  254. }laEndCondition(uil,bt);
  255. }
  256. void ourui_ColorPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  257. laColumn* c=laFirstColumn(uil);
  258. laUiItem* b=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.canvas.color_interpretation"),laIntExpression(OUR_CANVAS_INTERPRETATION_SRGB)));{
  259. laShowItemFull(uil,c,0,"our.current_color",LA_WIDGET_FLOAT_COLOR_HCY,0,0,0);
  260. }laElse(uil,b);{
  261. laShowItemFull(uil,c,0,"our.current_color",LA_WIDGET_FLOAT_COLOR_HCY,0,0,0)->Flags|=LA_UI_FLAGS_COLOR_SPACE_CLAY;
  262. }laEndCondition(uil,b);
  263. b=laBeginRow(uil,c,0,0);
  264. laShowItem(uil,c,0,"our.preferences.spectral_mode");
  265. laShowItem(uil,c,0,"our.current_color")->Expand=1;
  266. laEndRow(uil,b);
  267. }
  268. void ourui_BrushPage(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  269. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.5); cl=laLeftColumn(c,0);cr=laRightColumn(c,15);
  270. laShowItemFull(uil,cr,0,"our.tools.current_brush",LA_WIDGET_COLLECTION_SELECTOR,0,laui_IdentifierOnly,0);
  271. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  272. laShowItemFull(uil,c,0,"our.tools.current_brush.rack_page",LA_WIDGET_COLLECTION_SINGLE,0,0,0)->Flags|=LA_UI_FLAGS_NO_DECAL;
  273. }laEndCondition(uil,b);
  274. }
  275. void ourui_AboutAuthor(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  276. laColumn* c=laFirstColumn(uil); laUiItem* g; laUiList* gu; laColumn* gc;
  277. g = laMakeGroup(uil, c, "Our Paint", 0);
  278. gu = g->Page;{ gc = laFirstColumn(gu);
  279. laShowLabel(gu,gc,"Our Paint is made by Wu Yiming.",0,0)->Flags|=LA_TEXT_LINE_WRAP;
  280. laUiItem* b =laBeginRow(gu,gc,0,0);
  281. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaint;text=Our Paint blog", 0, 0);
  282. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaintlog;text=Dev log", 0, 0);
  283. laEndRow(gu,b);
  284. b=laBeginRow(gu,gc,0,0);
  285. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "icon=$;link=https://www.patreon.com/chengdulittlea;text=Donate", 0, 0);
  286. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "icon=¥;link=http://www.ChengduLittleA.com/donate;text=Donate (China)", 0, 0);
  287. laEndRow(gu,b);
  288. }
  289. g = laMakeGroup(uil, c, "Credits to Sponsors", 0);
  290. gu = g->Page;{ gc = laFirstColumn(gu);
  291. laShowLabel(gu,gc,"- Deathblood",0,0);
  292. laShowLabel(gu,gc,"- Leone Arturo",0,0);
  293. laShowLabel(gu,gc,"- 贵州混混",0,0);
  294. }
  295. }
  296. void ourui_AboutVersion(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  297. laColumn* c=laFirstColumn(uil); laUiItem* g; laUiList* gu; laColumn* gc;
  298. g = laMakeGroup(uil, c, "Our Paint", 0);
  299. gu = g->Page;{
  300. gc = laFirstColumn(gu); char buf[128]; sprintf(buf,"Our Paint %d.%d",OUR_VERSION_MAJOR,OUR_VERSION_MINOR);
  301. laShowLabel(gu,gc,buf,0,0)->Flags|=LA_TEXT_MONO;
  302. laShowLabel(gu, gc, OURPAINT_GIT_BRANCH,0,0)->Flags|=LA_TEXT_MONO;
  303. #ifdef OURPAINT_GIT_HASH
  304. laShowLabel(gu, gc, OURPAINT_GIT_HASH,0,0)->Flags|=LA_TEXT_MONO;
  305. #endif
  306. laShowLabel(gu, gc, "Single canvas implementation.", 0, 0)->Flags|=LA_TEXT_MONO|LA_TEXT_LINE_WRAP;
  307. }
  308. }
  309. void ourui_AboutContent(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  310. laColumn* c=laFirstColumn(uil);
  311. laShowLabel(uil, c, "Our Paint", 0, 0);
  312. laShowLabel(uil, c, "A simple yet flexible node-based GPU painting program.", 0, 0)->Flags|=LA_TEXT_LINE_WRAP;
  313. laShowLabel(uil, c, "(C)Yiming Wu", 0, 0);
  314. }
  315. void ourui_OurPreference(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  316. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  317. laShowLabel(uil,c,"Generic:",0,0);
  318. laShowItem(uil,cl,0,"our.preferences.enable_brush_circle");
  319. laShowItem(uil,cr,0,"our.preferences.show_stripes");
  320. laShowItem(uil,cl,0,"our.preferences.lock_radius");
  321. laShowItem(uil,cr,0,"our.preferences.smoothness");
  322. laShowItem(uil,cl,0,"our.preferences.spectral_mode");
  323. laShowItem(uil,cr,0,"our.preferences.canvas_default_scale");
  324. laShowSeparator(uil,c);
  325. laShowItem(uil,cl,0,"our.preferences.allow_none_pressure");
  326. laShowItem(uil,cr,0,"our.preferences.bad_event_tolerance");
  327. laShowSeparator(uil,c);
  328. laShowLabel(uil,c,"Undo:",0,0);
  329. laShowItem(uil,c,0,"our.preferences.paint_undo_limit");
  330. laShowSeparator(uil,c);
  331. laShowLabel(uil,c,"Exporting Defaults:",0,0);
  332. laShowLabel(uil,cl,"Bit Depth:",0,0); laShowItem(uil,cr,0,"our.preferences.export_default_bit_depth");
  333. laShowLabel(uil,cl,"Color Profile:",0,0); laShowItem(uil,cr,0,"our.preferences.export_default_color_profile");
  334. laShowSeparator(uil,c);
  335. laShowLabel(uil,c,"Developer:",0,0);
  336. laShowItem(uil,cl,0,"our.preferences.show_debug_tiles");
  337. }
  338. void ourui_SplashPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  339. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  340. if(MAIN.CurrentWindow->CW>2500){
  341. laShowImage(uil,c,Our->SplashImageHigh,5)->Flags|=LA_UI_IMAGE_FULL_W;
  342. }else{
  343. laShowImage(uil,c,Our->SplashImage,5)->Flags|=LA_UI_IMAGE_FULL_W;
  344. }
  345. laUiItem* b=laBeginRow(uil,cl,0,0); laShowLabel(uil,cl,OUR_PAINT_NAME_STRING,0,0);
  346. laShowItemFull(uil, cl, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20230808165902;text=Release Notes", 0, 0);
  347. laEndRow(uil,b);
  348. laShowLabel(uil,cl,"Our Paint is a free application.",0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_LINE_WRAP|LA_UI_MIN_WIDTH;
  349. b=laBeginRow(uil,cl,0,0);
  350. laShowLabel(uil, cl, OURPAINT_GIT_BRANCH,0,0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  351. #ifdef OURPAINT_GIT_HASH
  352. laShowLabel(uil, cl, OURPAINT_GIT_HASH,0,0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  353. #endif
  354. laEndRow(uil,b);
  355. laShowLabel(uil,cl," ",0,0);
  356. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=🗩;link=http://www.ChengduLittleA.com/ourpaint;text=Our Paint blog", 0, 0);
  357. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaintlog;text=Development logs", 0, 0);
  358. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=📖;link=http://www.ChengduLittleA.com/ourpaintmanual;text=User Manual", 0, 0);
  359. 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);
  360. laShowLabel(uil,cr," ",0,0);
  361. laShowLabel(uil,cr,"Support the development:",0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_LINE_WRAP|LA_UI_MIN_WIDTH;
  362. b=laBeginRow(uil,cr,1,0);
  363. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=$;link=https://www.patreon.com/chengdulittlea;text=Donate", 0, 0);
  364. laShowItemFull(uil, cr, 0, "LA_open_internet_link", 0, "icon=¥;link=http://www.ChengduLittleA.com/donate;text=Donate (China)", 0, 0);
  365. laEndRow(uil,b);
  366. laShowLabel(uil,cl,"Cover artist:",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  367. b=laBeginRow(uil,cl,0,0);
  368. laShowLabel(uil,cl,"吴奕茗 Wu Yiming",0,0);
  369. laShowItemFull(uil, cl, 0, "LA_open_internet_link", 0, "text=Website;link=http://www.ChengduLittleA.com", 0, 0);
  370. laEndRow(uil,b);
  371. }
  372. void our_EnableSplashPanel(){
  373. laEnableSplashPanel(ourui_SplashPanel,0,100,0,2000,1500,0);
  374. }
  375. void our_CanvasDrawTextures(){
  376. tnsUseImmShader; tnsEnableShaderv(T->immShader); real MultiplyColor[4];
  377. for(OurLayer* l=Our->Layers.pLast;l;l=l->Item.pPrev){
  378. if(l->Hide || l->Transparency==1) continue; real a=1-l->Transparency; tnsVectorSet4(MultiplyColor,a,a,a,a); int any=0;
  379. if(l->BlendMode==OUR_BLEND_NORMAL){ glBlendFunc(GL_ONE,GL_ONE_MINUS_SRC_ALPHA); }
  380. if(l->BlendMode==OUR_BLEND_ADD){ glBlendFunc(GL_ONE,GL_ONE); }
  381. for(int row=0;row<OUR_TILES_PER_ROW;row++){
  382. if(!l->TexTiles[row]) continue;
  383. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  384. if(!l->TexTiles[row][col] || !l->TexTiles[row][col]->Texture) continue;
  385. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  386. real pad=(real)OUR_TILE_SEAM/OUR_TILE_W; int seam=OUR_TILE_SEAM;
  387. 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);
  388. any=1;
  389. }
  390. }
  391. if(any) tnsFlush();
  392. }
  393. glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,GL_ONE,GL_ONE_MINUS_SRC_ALPHA);
  394. }
  395. void our_CanvasDrawTiles(){
  396. OurLayer* l=Our->CurrentLayer; if(!l) return;
  397. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  398. int any=0;
  399. for(int row=0;row<OUR_TILES_PER_ROW;row++){
  400. if(!l->TexTiles[row]) continue;
  401. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  402. if(!l->TexTiles[row][col] || !l->TexTiles[row][col]->Texture) continue;
  403. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  404. //tnsVertex2d(sx, sy); tnsVertex2d(sx+OUR_TILE_W,sy);
  405. //tnsVertex2d(sx+OUR_TILE_W, sy+OUR_TILE_W); tnsVertex2d(sx,sy+OUR_TILE_W);
  406. //tnsColor4dv(laAccentColor(LA_BT_NORMAL));
  407. //tnsPackAs(GL_TRIANGLE_FAN);
  408. tnsVertex2d(sx, sy); tnsVertex2d(sx+OUR_TILE_W,sy);
  409. tnsVertex2d(sx+OUR_TILE_W, sy+OUR_TILE_W); tnsVertex2d(sx,sy+OUR_TILE_W);
  410. tnsColor4dv(laAccentColor(LA_BT_TEXT));
  411. tnsPackAs(GL_LINE_LOOP);
  412. }
  413. }
  414. if(any) tnsFlush();
  415. }
  416. void our_CanvasDrawCropping(OurCanvasDraw* ocd){
  417. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  418. tnsColor4d(0,0,0,Our->BorderAlpha);
  419. tnsVertex2d(-1e6,Our->Y); tnsVertex2d(1e6,Our->Y); tnsVertex2d(-1e6,1e6); tnsVertex2d(1e6,1e6); tnsPackAs(GL_TRIANGLE_FAN);
  420. 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);
  421. 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);
  422. tnsVertex2d(-1e6,Our->Y-Our->H); tnsVertex2d(1e6,Our->Y-Our->H); tnsVertex2d(-1e6,-1e6); tnsVertex2d(1e6,-1e6); tnsPackAs(GL_TRIANGLE_FAN);
  423. if(Our->Tool==OUR_TOOL_CROP){
  424. tnsColor4dv(laAccentColor(LA_BT_TEXT));
  425. 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);
  426. tnsPackAs(GL_LINE_LOOP);
  427. glLineWidth(3); tnsFlush(); glLineWidth(1);
  428. }
  429. }
  430. void our_CanvasGetRefString(char* ref){
  431. int refs=Our->RefSize; int add=0; if(Our->ShowRef==2){ refs++; add=1; }
  432. if(Our->RefCategory==0){ sprintf(ref,"%sA%d",add?"2X":"",refs); }
  433. elif(Our->RefCategory==1){ sprintf(ref,"%sB%d",add?"2X":"",refs); }
  434. elif(Our->RefCategory==2){ sprintf(ref,"%s%dK",add?"2X":"",refs?((int)pow(2,refs-1)):0); }
  435. }
  436. #define OUR_GET_REF_SIZE(W,H) \
  437. { if(Our->RefCategory==0){ W=118.9,H=84.1; } \
  438. elif(Our->RefCategory==1){ W=141.4,H=100.0; } \
  439. elif(Our->RefCategory==2){ W=109.2,H=78.7; } \
  440. for(int i=0;i<Our->RefSize;i++){ if(W>H){ W/=2; }else{ H/=2; } } \
  441. if((Our->RefOrientation && (W>H))||((!Our->RefOrientation) && (W<H))){ real t=H; H=W; W=t; } }
  442. void our_CanvasDrawReferenceBlock(OurCanvasDraw* ocd){
  443. real W,H,W2,H2; char str[128]; our_CanvasGetRefString(str);
  444. OUR_GET_REF_SIZE(W,H); sprintf(str+strlen(str)," %dX%.dmm",(int)W*10,(int)H*10);
  445. real dpc=OUR_DPC; W*=dpc; H*=dpc; W2=W/2; H2=H/2;
  446. real LM=Our->RefMargins[0]*dpc,RM=LM,TM=Our->RefMargins[1]*dpc,BM=TM;
  447. real LP=Our->RefPaddings[0]*dpc,RP=LP,TP=Our->RefPaddings[1]*dpc,BP=TP;
  448. real MM=Our->RefMargins[2]*dpc;
  449. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  450. tnsColor4d(0,0,0,Our->RefAlpha); tnsLineWidth(3.0);
  451. tnsVertex2d(-W2,H2); tnsVertex2d(W2,H2); tnsVertex2d(W2,-H2); tnsVertex2d(-W2,-H2); tnsPackAs(GL_LINE_LOOP);
  452. if(Our->ShowRef==2){
  453. if(Our->RefOrientation){ tnsVertex2d(W2,0); tnsVertex2d(-W2,0); }
  454. else{ tnsVertex2d(0,H2); tnsVertex2d(0,-H2); }tnsPackAs(GL_LINES);
  455. }
  456. tnsColor4d(0,0,0,Our->RefAlpha*0.6); tnsLineWidth(1.0);
  457. tnsVertex2d(-W2+LM,H2-TM); tnsVertex2d(W2-LM,H2-TM); tnsVertex2d(W2-LM,-H2+BM); tnsVertex2d(-W2+LM,-H2+BM); tnsPackAs(GL_LINE_LOOP);
  458. tnsVertex2d(-W2-LP,H2+TP); tnsVertex2d(W2+LP,H2+TP); tnsVertex2d(W2+LP,-H2-BP); tnsVertex2d(-W2-LP,-H2-BP); tnsPackAs(GL_LINE_LOOP);
  459. if(Our->ShowRef==2){
  460. if(Our->RefOrientation){ tnsVertex2d(W2,-MM); tnsVertex2d(-W2,-MM); tnsVertex2d(W2,MM); tnsVertex2d(-W2,MM); }
  461. else{ tnsVertex2d(-MM,H2); tnsVertex2d(-MM,-H2); tnsVertex2d(MM,H2); tnsVertex2d(MM,-H2); }
  462. tnsPackAs(GL_LINES);
  463. }
  464. real tcolor[4]={0,0,0,Our->RefAlpha}; real th=ocd->Base.ZoomX;
  465. tnsLineWidth(3);
  466. tnsDrawStringLCD(str,0,tcolor,-W2,W2,H2+th*LA_RH,LA_TEXT_LCD_16|LA_TEXT_REVERT_Y,th);
  467. tnsLineWidth(1);
  468. tnsFlush();
  469. }
  470. void our_CanvasDrawBrushCircle(OurCanvasDraw* ocd){
  471. if(!Our->CurrentBrush) return; real v[96];
  472. tnsUseImmShader();tnsUseNoTexture();
  473. tnsMakeCircle2d(v,48,ocd->Base.OnX,ocd->Base.OnY,Our->CurrentBrush->Size/ocd->Base.ZoomX+0.5,0);
  474. tnsColor4d(1,1,1,0.3); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  475. tnsMakeCircle2d(v,48,ocd->Base.OnX,ocd->Base.OnY,Our->CurrentBrush->Size/ocd->Base.ZoomX-0.5,0);
  476. tnsColor4d(0,0,0,0.3); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  477. tnsFlush();
  478. }
  479. void our_CanvasDrawInit(laUiItem* ui){
  480. ui->Extra=memAcquireHyper(sizeof(OurCanvasDraw));
  481. laFirstColumn(laAddTabPage(ui, "New Group"));
  482. OurCanvasDraw* ocd=ui->Extra;
  483. ocd->Base.ParentUi=ui;
  484. ocd->Base.HeightCoeff = 10;
  485. ocd->Base.ZoomX = 1;
  486. ocd->Base.ZoomY = 1;
  487. ocd->Base.ImageDrawAlpha = 1;
  488. ocd->Base.ImageDrawBorder = 1;
  489. ocd->Base.AdaptiveLineWidth = 1;
  490. ocd->Base.ClearBackground = 1;
  491. logPrintNew("Our Paint initialization:\n");
  492. int work_grp_cnt[3];
  493. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 0, &work_grp_cnt[0]);
  494. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 1, &work_grp_cnt[1]);
  495. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 2, &work_grp_cnt[2]);
  496. 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]);
  497. int work_grp_size[3];
  498. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 0, &work_grp_size[0]);
  499. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 1, &work_grp_size[1]);
  500. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 2, &work_grp_size[2]);
  501. 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]);
  502. int work_grp_inv;
  503. glGetIntegerv(GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS, &work_grp_inv);
  504. logPrint("GPU max local work group invocations %i\n", work_grp_inv);
  505. }
  506. void our_CanvasDrawCanvas(laBoxedTheme *bt, OurPaint *unused_c, laUiItem* ui){
  507. OurCanvasDraw* ocd=ui->Extra; OurPaint* oc=ui->PP.EndInstance; laCanvasExtra*e=&ocd->Base;
  508. int W, H; W = ui->R - ui->L; H = ui->B - ui->U;
  509. tnsFlush();
  510. if (!e->OffScr || e->OffScr->pColor[0]->Height != ui->B - ui->U || e->OffScr->pColor[0]->Width != ui->R - ui->L){
  511. if (e->OffScr) tnsDelete2DOffscreen(e->OffScr);
  512. e->OffScr = tnsCreate2DOffscreen(GL_RGBA16F, W, H, 0, 0, 0);
  513. }
  514. //our_CANVAS_TEST(bt,ui);
  515. //glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,GL_ONE,GL_ONE);
  516. tnsDrawToOffscreen(e->OffScr,1,0);
  517. tnsViewportWithScissor(0, 0, W, H);
  518. tnsResetViewMatrix();tnsResetModelMatrix();tnsResetProjectionMatrix();
  519. 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);
  520. tnsClearColor(LA_COLOR3(Our->BackgroundColor),1); tnsClearAll();
  521. if(Our->ShowTiles){ our_CanvasDrawTiles(); }
  522. our_CanvasDrawTextures();
  523. if(Our->ShowBorder){ our_CanvasDrawCropping(ocd); }
  524. if(Our->ShowRef){ our_CanvasDrawReferenceBlock(ocd); }
  525. }
  526. void our_CanvasDrawOverlay(laUiItem* ui,int h){
  527. laCanvasExtra *e = ui->Extra; OurCanvasDraw* ocd=e;
  528. laBoxedTheme *bt = (*ui->Type->Theme);
  529. tnsUseImmShader(); tnsEnableShaderv(T->immShader); tnsUniformColorMode(T->immShader,2);
  530. tnsUniformOutputColorSpace(T->immShader, 0);
  531. if(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB){ tnsUniformInputColorSpace(T->immShader, 0); }
  532. elif(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY){ tnsUniformInputColorSpace(T->immShader, 1); }
  533. tnsDraw2DTextureDirectly(e->OffScr->pColor[0], ui->L, ui->U, ui->R - ui->L, ui->B - ui->U);
  534. tnsFlush();
  535. tnsUniformColorMode(T->immShader, 0); tnsUniformInputColorSpace(T->immShader, 0); tnsUniformOutputColorSpace(T->immShader, MAIN.CurrentWindow->OutputColorSpace);
  536. if(Our->EnableBrushCircle && (!ocd->HideBrushCircle)){ our_CanvasDrawBrushCircle(ocd); }
  537. if(!(ui->Flags&LA_UI_FLAGS_NO_OVERLAY)){
  538. if(Our->ShowStripes){ int UH=TNS_MIN2(LA_RH,(ui->B-ui->U)/8); real varr[8]; real carr[16];
  539. tnsUseNoTexture();
  540. tnsVectorSet4(&varr[0], ui->L,ui->B-UH,ui->R,ui->B-UH);
  541. tnsVectorSet4(&varr[4], ui->R,ui->B-2*UH,ui->L,ui->B-2*UH);
  542. tnsVectorSet4(&carr[0], 0,0,0,1); tnsVectorSet4(&carr[4], 1,1,1,1);
  543. tnsVectorSet4(&carr[8], 1,1,1,1); tnsVectorSet4(&carr[12], 0,0,0,1);
  544. tnsVertexArray2d(varr,4); tnsColorArray4d(carr,4);
  545. tnsPackAs(GL_TRIANGLE_FAN);
  546. tnsVertex2d(ui->L,ui->B); tnsVertex2d(ui->R,ui->B); tnsVertex2d(ui->R,ui->B-UH); tnsVertex2d(ui->L,ui->B-UH);
  547. tnsColor4d(0,0,0,1); tnsPackAs(GL_TRIANGLE_FAN);
  548. 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);
  549. tnsColor4d(1,1,1,1); tnsPackAs(GL_TRIANGLE_FAN);
  550. 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};
  551. int count=(ui->R-ui->L)/UH; real sp=(real)(ui->R-ui->L)/(real)count;
  552. for(int i=0;i<count;i++){ real sl=sp*i+ui->L;
  553. tnsVertex2d(sl,ui->U); tnsVertex2d(sl+sp,ui->U); tnsVertex2d(sl+sp,ui->U+UH); tnsVertex2d(sl,ui->U+UH);
  554. tnsColor4dv(&ca[(i%4)*4]); tnsPackAs(GL_TRIANGLE_FAN);
  555. }
  556. }
  557. char buf[128]; sprintf(buf,"%.1lf%%",100.0f/e->ZoomX);
  558. tnsDrawStringAuto(buf,laThemeColor(bt,LA_BT_TEXT),ui->L+bt->LM,ui->R-bt->RM,ui->B-LA_RH-bt->BM,0);
  559. }
  560. la_CanvasDefaultOverlay(ui, h);
  561. }
  562. int ourextramod_Canvas(laOperator *a, laEvent *e){
  563. laUiItem *ui = a->Instance; OurCanvasDraw* ocd=ui->Extra;
  564. if(Our->EnableBrushCircle && (e->Type&LA_MOUSE_EVENT)){ ocd->Base.OnX=e->x; ocd->Base.OnY=e->y; laRedrawCurrentPanel(); }
  565. return LA_RUNNING_PASS;
  566. }
  567. OurLayer* our_NewLayer(char* name){
  568. OurLayer* l=memAcquire(sizeof(OurLayer)); strSafeSet(&l->Name,name); lstPushItem(&Our->Layers, l);
  569. memAssignRef(Our, &Our->CurrentLayer, l);
  570. return l;
  571. }
  572. void ourbeforefree_Layer(OurLayer* l){
  573. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!l->TexTiles[row]) continue;
  574. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!l->TexTiles[row][col]) continue;
  575. if(l->TexTiles[row][col]->Texture) tnsDeleteTexture(l->TexTiles[row][col]->Texture); l->TexTiles[row][col]->Texture=0;
  576. if(l->TexTiles[row][col]->Data) free(l->TexTiles[row][col]->Data); l->TexTiles[row][col]->Data=0;
  577. if(l->TexTiles[row][col]->FullData) free(l->TexTiles[row][col]->FullData); l->TexTiles[row][col]->FullData=0;
  578. if(l->TexTiles[row][col]->CopyBuffer) free(l->TexTiles[row][col]->CopyBuffer); l->TexTiles[row][col]->CopyBuffer=0;
  579. memFree(l->TexTiles[row][col]);
  580. }
  581. memFree(l->TexTiles[row]); l->TexTiles[row]=0;
  582. }
  583. }
  584. void our_RemoveLayer(OurLayer* l, int cleanup){
  585. strSafeDestroy(&l->Name);
  586. if(Our->CurrentLayer==l){ OurLayer* nl=l->Item.pPrev?l->Item.pPrev:l->Item.pNext; memAssignRef(Our, &Our->CurrentLayer, nl); }
  587. lstRemoveItem(&Our->Layers, l);
  588. if(cleanup) ourbeforefree_Layer(l);
  589. memLeave(l);
  590. }
  591. int our_MergeLayer(OurLayer* l){
  592. 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;
  593. glUseProgram(Our->CompositionProgram);
  594. glUniform1i(Our->uBlendMode, l->BlendMode);
  595. glUniform1f(Our->uAlphaTop, 1-l->Transparency);
  596. glUniform1f(Our->uAlphaBottom, 1-ol->Transparency);
  597. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!l->TexTiles[row]) continue;// Should not happen.
  598. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!l->TexTiles[row][col]) continue; OurTexTile*t=l->TexTiles[row][col];
  599. if(!t->Texture) continue;
  600. int tl,tr,tu,tb; our_LayerEnsureTileDirect(ol,row,col);
  601. OurTexTile*ot=ol->TexTiles[row][col];
  602. if((!ot) || (!ot->Texture)) our_LayerEnsureTileDirect(ol,row,col);
  603. glBindImageTexture(0, t->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  604. glBindImageTexture(1, ot->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  605. glDispatchCompute(32,32,1);
  606. 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);
  607. }
  608. }
  609. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  610. if(xmin>xmax||ymin>ymax) return 0;
  611. our_RecordUndo(l,xmin,xmax,ymin,ymax,1,0);
  612. our_RecordUndo(ol,xmin,xmax,ymin,ymax,1,0);
  613. our_RemoveLayer(l,0);
  614. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");
  615. laPushDifferences("Merge layers",0);
  616. return 1;
  617. }
  618. OurBrush* our_NewBrush(char* name, real Size, real Hardness, real DabsPerSize, real Transparency, real Smudge, real SmudgeResampleLength,
  619. int PressureSize, int PressureHardness, int PressureTransparency, int PressureSmudge){
  620. OurBrush* b=memAcquireHyper(sizeof(OurBrush)); strSafeSet(&b->Name,name); lstAppendItem(&Our->Brushes, b);
  621. b->Size=Size; b->Hardness=Hardness; b->DabsPerSize=DabsPerSize; b->Transparency=Transparency; b->Smudge=Smudge;
  622. b->PressureHardness=PressureHardness; b->PressureSize=PressureSize; b->PressureTransparency=PressureTransparency; b->PressureSmudge=PressureSmudge;
  623. b->SmudgeResampleLength = SmudgeResampleLength;
  624. memAssignRef(Our, &Our->CurrentBrush, b);
  625. b->Rack=memAcquire(sizeof(laRackPage)); b->Rack->RackType=LA_RACK_TYPE_DRIVER;
  626. b->Binding=-1;
  627. b->PressureForce=1; b->Force=1;
  628. return b;
  629. }
  630. void our_RemoveBrush(OurBrush* b){
  631. strSafeDestroy(&b->Name); strSafeDestroy(&b->Custom1Name); strSafeDestroy(&b->Custom2Name);
  632. if(Our->CurrentBrush==b){ OurBrush* nb=b->Item.pPrev?b->Item.pPrev:b->Item.pNext; memAssignRef(Our, &Our->CurrentBrush, nb); }
  633. lstRemoveItem(&Our->Brushes, b);
  634. memLeave(b->Rack); b->Rack=0;
  635. memLeave(b);
  636. }
  637. OurBrush* our_DuplicateBrush(OurBrush* b){
  638. OurBrush* nb=memAcquireHyper(sizeof(OurBrush));
  639. memcpy(nb,b,sizeof(OurBrush)); nb->Binding=-1; nb->Name=0; strSafePrint(&nb->Name,"%s Copy",b->Name?b->Name->Ptr:"New Brush");
  640. nb->Rack=laDuplicateRackPage(0,b->Rack);
  641. nb->Item.pNext=nb->Item.pPrev=0;
  642. lstInsertItemAfter(&Our->Brushes,nb,b);
  643. memAssignRef(Our, &Our->CurrentBrush, nb);
  644. return nb;
  645. }
  646. int our_BufferAnythingVisible(uint16_t* buf, int elemcount){
  647. for(int i=0;i<elemcount;i++){
  648. uint16_t* rgba=&buf[i*4]; if(rgba[3]) return 1;
  649. }
  650. return 0;
  651. }
  652. void our_TileEnsureUndoBuffer(OurTexTile* t, real xmin,real xmax, real ymin,real ymax,int OnlyUpdateLocal){
  653. if(!t->Texture) return;
  654. if(OnlyUpdateLocal){
  655. t->cl=0;t->cr=OUR_TILE_W;t->cu=OUR_TILE_W;t->cb=0;
  656. }else{
  657. int _l=floor(xmin),_r=ceil(xmax),_u=ceil(ymax),_b=floor(ymin);
  658. if(t->CopyBuffer) free(t->CopyBuffer); t->CopyBuffer=0; //shouldn't happen
  659. if(_l>=t->r || _r<t->l || _b>=t->u || _u<t->b || _l==_r || _u==_b) return;
  660. 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;
  661. }
  662. int rows=t->cu-t->cb,cols=t->cr-t->cl;
  663. int bufsize=cols*4*rows*sizeof(uint16_t);
  664. t->CopyBuffer=calloc(1,bufsize);
  665. for(int row=0;row<rows;row++){
  666. memcpy(&t->CopyBuffer[row*cols*4],&t->FullData[((+row+t->cb)*OUR_TILE_W+t->cl)*4],sizeof(uint16_t)*4*cols);
  667. }
  668. uint16_t* temp=malloc(bufsize);
  669. tnsBindTexture(t->Texture);
  670. glGetTextureSubImage(t->Texture->GLTexHandle, 0, t->cl, t->cb, 0, cols,rows,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, temp);
  671. for(int row=0;row<rows;row++){
  672. memcpy(&t->FullData[((+row+t->cb)*OUR_TILE_W+t->cl)*4],&temp[row*cols*4],sizeof(uint16_t)*4*cols);
  673. }
  674. free(temp);
  675. }
  676. void our_TileSwapBuffers(OurTexTile* t, uint16_t* data, int IsRedo, int l, int r, int u, int b){
  677. int rows=u-b,cols=r-l; int bufsize=rows*cols*sizeof(uint16_t)*4;
  678. uint16_t* temp=malloc(bufsize);
  679. memcpy(temp,data,bufsize);
  680. for(int row=0;row<rows;row++){
  681. memcpy(&data[row*cols*4],&t->FullData[((+row+b)*OUR_TILE_W+l)*4],sizeof(uint16_t)*4*cols);
  682. memcpy(&t->FullData[((+row+b)*OUR_TILE_W+l)*4],&temp[row*cols*4],sizeof(uint16_t)*4*cols);
  683. }
  684. tnsBindTexture(t->Texture);
  685. glGetError();
  686. uint16_t* use_data=temp;
  687. if(IsRedo){ use_data=data; }
  688. glTexSubImage2D(GL_TEXTURE_2D, 0, l, b, cols,rows,GL_RGBA,GL_UNSIGNED_SHORT,use_data);
  689. free(temp);
  690. }
  691. void ourundo_Tiles(OurUndo* undo){
  692. for(OurUndoTile* ut=undo->Tiles.pFirst;ut;ut=ut->Item.pNext){
  693. our_LayerEnsureTileDirect(undo->Layer,ut->row,ut->col);
  694. our_TileSwapBuffers(undo->Layer->TexTiles[ut->row][ut->col], ut->CopyData, 0, ut->l, ut->r, ut->u, ut->b);
  695. }
  696. laNotifyUsers("our.canvas");
  697. }
  698. void ourredo_Tiles(OurUndo* undo){
  699. for(OurUndoTile* ut=undo->Tiles.pFirst;ut;ut=ut->Item.pNext){
  700. our_LayerEnsureTileDirect(undo->Layer,ut->row,ut->col);
  701. our_TileSwapBuffers(undo->Layer->TexTiles[ut->row][ut->col], ut->CopyData, 0, ut->l, ut->r, ut->u, ut->b);
  702. }
  703. laNotifyUsers("our.canvas");
  704. }
  705. void ourundo_Free(OurUndo* undo,int FromLeft){
  706. OurUndoTile* ut;
  707. while(ut=lstPopItem(&undo->Tiles)){ free(ut->CopyData); memFree(ut); }
  708. memFree(undo);
  709. }
  710. #define OUR_XXYY_TO_COL_ROW_RANGE \
  711. l=(int)(floor(OUR_TILE_CTR+(xmin-OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  712. r=(int)(floor(OUR_TILE_CTR+(xmax+OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  713. u=(int)(floor(OUR_TILE_CTR+(ymax+OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  714. b=(int)(floor(OUR_TILE_CTR+(ymin-OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  715. 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);
  716. #define OUR_XXYY_TO_COL_ROW_ALIGNED \
  717. l=(int)(floor(OUR_TILE_CTR+(xmin)/OUR_TILE_W_USE+0.5));\
  718. r=(int)(floor(OUR_TILE_CTR+(xmax-1)/OUR_TILE_W_USE+0.5));\
  719. u=(int)(floor(OUR_TILE_CTR+(ymax-1)/OUR_TILE_W_USE+0.5));\
  720. b=(int)(floor(OUR_TILE_CTR+(ymin)/OUR_TILE_W_USE+0.5));\
  721. 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);
  722. void our_RecordUndo(OurLayer* ol, real xmin,real xmax, real ymin,real ymax,int Aligned,int Push){
  723. if(xmax<xmin || ymax<ymin) return;
  724. int l,r,u,b;
  725. if(Aligned){ OUR_XXYY_TO_COL_ROW_ALIGNED }else{ OUR_XXYY_TO_COL_ROW_RANGE; }
  726. OurUndo* undo=memAcquire(sizeof(OurUndo)); undo->Layer=ol;
  727. for(int row=b;row<=u;row++){ if(!ol->TexTiles[row]) continue;// Should not happen.
  728. for(int col=l;col<=r;col++){ if(!ol->TexTiles[row][col]) continue; OurTexTile*t=ol->TexTiles[row][col];
  729. our_TileEnsureUndoBuffer(t,xmin,xmax,ymin,ymax,0);
  730. if(!t->CopyBuffer) continue;
  731. OurUndoTile* ut=memAcquire(sizeof(OurUndoTile));
  732. ut->l=t->cl; ut->r=t->cr; ut->u=t->cu; ut->b=t->cb;
  733. ut->CopyData=t->CopyBuffer; t->CopyBuffer=0;
  734. ut->col=col;ut->row=row;
  735. lstAppendItem(&undo->Tiles,ut);
  736. }
  737. }
  738. if(!undo->Tiles.pFirst){ memFree(undo); return; /*unlikely;*/ }
  739. laFreeNewerDifferences();
  740. laRecordCustomDifferences(undo,ourundo_Tiles,ourredo_Tiles,ourundo_Free);
  741. if(Push){ laPushDifferences("Paint",0); laFreeOlderDifferences(Our->PaintUndoLimit); }
  742. }
  743. void our_LayerRefreshLocal(OurLayer* ol){
  744. //OurUndo* undo=memAcquire(sizeof(OurUndo)); undo->Layer=ol;
  745. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  746. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue; OurTexTile*t=ol->TexTiles[row][col];
  747. our_TileEnsureUndoBuffer(t,0,0,0,0,1);
  748. }
  749. }
  750. //if(!undo->Tiles.pFirst){ memFree(undo); return; /*unlikely;*/ }
  751. //laFreeNewerDifferences();
  752. //laRecordCustomDifferences(undo,ourundo_Tiles,ourredo_Tiles,ourundo_Free);
  753. //if(Push){ laPushDifferences("Loaded",0); }
  754. }
  755. void our_LayerEnsureTileDirect(OurLayer* ol, int row, int col){
  756. if(!ol->TexTiles[row]){ol->TexTiles[row]=memAcquireSimple(sizeof(OurTexTile*)*OUR_TILES_PER_ROW);}
  757. if(!ol->TexTiles[row][col]) ol->TexTiles[row][col]=memAcquireSimple(sizeof(OurTexTile));
  758. OurTexTile*t=ol->TexTiles[row][col];
  759. if(t->Texture) return;
  760. t->Texture=tnsCreate2DTexture(GL_RGBA16,OUR_TILE_W,OUR_TILE_W,0);
  761. 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;
  762. 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;
  763. uint16_t initColor[]={0,0,0,0};
  764. glClearTexImage(t->Texture->GLTexHandle, 0, GL_RGBA, GL_UNSIGNED_SHORT, 0);
  765. t->FullData=calloc(OUR_TILE_W*4,OUR_TILE_W*sizeof(uint16_t));
  766. }
  767. void our_LayerEnsureTiles(OurLayer* ol, real xmin,real xmax, real ymin,real ymax, int Aligned, int *tl, int *tr, int* tu, int* tb){
  768. int l,r,u,b;
  769. if(Aligned){ OUR_XXYY_TO_COL_ROW_ALIGNED }else{ OUR_XXYY_TO_COL_ROW_RANGE; }
  770. for(int row=b;row<=u;row++){
  771. for(int col=l;col<=r;col++){
  772. our_LayerEnsureTileDirect(ol,row,col);
  773. }
  774. }
  775. *tl=l; *tr=r; *tu=u; *tb=b;
  776. }
  777. void our_TileTextureToImage(OurTexTile* ot, int SX, int SY, int composite, int BlendMode, real alpha){
  778. if(!ot->Texture) return;
  779. int bufsize=sizeof(uint16_t)*OUR_TILE_W_USE*OUR_TILE_W_USE*4;
  780. ot->Data=malloc(bufsize); int seam=OUR_TILE_SEAM; int width=OUR_TILE_W_USE;
  781. tnsBindTexture(ot->Texture); glPixelStorei(GL_PACK_ALIGNMENT, 2);
  782. glGetTextureSubImage(ot->Texture->GLTexHandle, 0, seam, seam, 0, width, width,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, ot->Data);
  783. if(composite){
  784. for(int row=0;row<OUR_TILE_W_USE;row++){
  785. for(int col=0;col<OUR_TILE_W_USE;col++){
  786. if(BlendMode==OUR_BLEND_NORMAL){
  787. our_CanvasAlphaMix(&Our->ImageBuffer[((SY+row)*Our->ImageW+SX+col)*4], &ot->Data[(row*OUR_TILE_W_USE+col)*4],alpha);
  788. }elif(BlendMode==OUR_BLEND_ADD){
  789. our_CanvasAdd(&Our->ImageBuffer[((SY+row)*Our->ImageW+SX+col)*4], &ot->Data[(row*OUR_TILE_W_USE+col)*4],alpha);
  790. }
  791. }
  792. }
  793. }else{
  794. for(int row=0;row<OUR_TILE_W_USE;row++){
  795. memcpy(&Our->ImageBuffer[((SY+row)*Our->ImageW+SX)*4],&ot->Data[(row*OUR_TILE_W_USE)*4],sizeof(uint16_t)*4*OUR_TILE_W_USE);
  796. }
  797. }
  798. free(ot->Data); ot->Data=0;
  799. }
  800. void our_TileImageToTexture(OurTexTile* ot, int SX, int SY){
  801. if(!ot->Texture) return;
  802. int pl=(SX!=0)?OUR_TILE_SEAM:0, pr=((SX+OUR_TILE_W_USE)!=Our->ImageW)?OUR_TILE_SEAM:0;
  803. int pu=(SY!=0)?OUR_TILE_SEAM:0, pb=((SY+OUR_TILE_W_USE)!=Our->ImageH)?OUR_TILE_SEAM:0;
  804. int bufsize=sizeof(uint16_t)*(OUR_TILE_W+pl+pr)*(OUR_TILE_W+pu+pb)*4;
  805. ot->Data=malloc(bufsize); int width=OUR_TILE_W_USE+pl+pr, height=OUR_TILE_W_USE+pu+pb;
  806. for(int row=0;row<height;row++){
  807. memcpy(&ot->Data[((row)*width)*4],&Our->ImageBuffer[((SY+row-pu)*Our->ImageW+SX-pl)*4],sizeof(uint16_t)*4*width);
  808. }
  809. if(!our_BufferAnythingVisible(ot->Data, bufsize/sizeof(uint16_t)/4)){ tnsDeleteTexture(ot->Texture); ot->Texture=0; }
  810. else{
  811. tnsBindTexture(ot->Texture);
  812. glTexSubImage2D(GL_TEXTURE_2D, 0, OUR_TILE_SEAM-pl, OUR_TILE_SEAM-pu, width, height, GL_RGBA, GL_UNSIGNED_SHORT, ot->Data);
  813. }
  814. free(ot->Data); ot->Data=0;
  815. }
  816. int our_LayerEnsureImageBuffer(OurLayer* ol, int OnlyCalculate){
  817. int l=1000,r=-1000,u=-1000,b=1000; int any=0;
  818. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  819. if(row<b) b=row; if(row>u) u=row;
  820. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col] || !ol->TexTiles[row][col]->Texture) continue;
  821. if(col<l) l=col; if(col>r) r=col; any++;
  822. }
  823. }
  824. if(!any) return 0;
  825. Our->ImageW = OUR_TILE_W_USE*(r-l+1); Our->ImageH = OUR_TILE_W_USE*(u-b+1);
  826. 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;
  827. if(!OnlyCalculate){
  828. if(Our->ImageBuffer) free(Our->ImageBuffer);
  829. Our->ImageBuffer = calloc(Our->ImageW*4,Our->ImageH*sizeof(uint16_t));
  830. }
  831. return 1;
  832. }
  833. int our_CanvasEnsureImageBuffer(){
  834. int x=INT_MAX,y=INT_MAX,w=-INT_MAX,h=-INT_MAX;
  835. for(OurLayer* l=Our->Layers.pFirst;l;l=l->Item.pNext){
  836. our_LayerEnsureImageBuffer(l,1);
  837. if(Our->ImageX<x) x=Our->ImageX; if(Our->ImageY<y) y=Our->ImageY;
  838. if(Our->ImageW>w) w=Our->ImageW; if(Our->ImageH>h) h=Our->ImageH;
  839. }
  840. if(w<0||h<0) return 0;
  841. Our->ImageX=x; Our->ImageY=y; Our->ImageW=w; Our->ImageH=h;
  842. if(Our->ImageBuffer) free(Our->ImageBuffer);
  843. Our->ImageBuffer = calloc(Our->ImageW*4,Our->ImageH*sizeof(uint16_t));
  844. return 1;
  845. }
  846. void our_CanvasFillImageBufferBackground(){
  847. int count=Our->ImageW*Our->ImageH;
  848. real bk[4]; tnsVectorSet3v(bk,Our->BackgroundColor); bk[3]=1;
  849. Our->BColorU16[0]=bk[0]*65535; Our->BColorU16[1]=bk[1]*65535; Our->BColorU16[2]=bk[2]*65535; Our->BColorU16[3]=65535;
  850. 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;
  851. for(int i=0;i<count;i++){
  852. uint16_t* p=&Our->ImageBuffer[i*4]; tnsVectorSet4v(p,Our->BColorU16);
  853. }
  854. }
  855. void our_LayerToImageBuffer(OurLayer* ol, int composite){
  856. if(composite && (ol->Hide || ol->Transparency==1)) return;
  857. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  858. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  859. int sx=ol->TexTiles[row][col]->l+OUR_TILE_SEAM,sy=ol->TexTiles[row][col]->b+OUR_TILE_SEAM;
  860. our_TileTextureToImage(ol->TexTiles[row][col], sx-Our->ImageX, sy-Our->ImageY, composite, ol->BlendMode, 1.0f-ol->Transparency);
  861. }
  862. }
  863. }
  864. void our_LayerToTexture(OurLayer* ol){
  865. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  866. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  867. int sx=ol->TexTiles[row][col]->l+OUR_TILE_SEAM,sy=ol->TexTiles[row][col]->b+OUR_TILE_SEAM;
  868. our_TileImageToTexture(ol->TexTiles[row][col], sx-Our->ImageX, sy-Our->ImageY);
  869. }
  870. }
  871. }
  872. void our_GetFinalDimension(int UseFrame, int* x, int* y, int* w, int* h){
  873. if(UseFrame){ *x=Our->X; *y=Our->Y; *w=Our->W; *h=Our->H; }
  874. else{ *x=Our->ImageX; *y=Our->ImageY; *w=Our->ImageW; *h=Our->ImageH; }
  875. 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);
  876. }
  877. #define GET_FINAL_ROW_TYPE(TYPE,BCOLOR) \
  878. TYPE* our_GetFinalRow_##TYPE(int UseFrame, int row, int x, int y, int w, int h, TYPE* temp){\
  879. if(!UseFrame) return &((TYPE*)Our->ImageBuffer)[Our->ImageW*(Our->ImageH-row-1)*4];\
  880. int userow=(h-row-1)-(Our->ImageY-(y-h));\
  881. if(userow<0 || userow>=Our->ImageH){ for(int i=0;i<w;i++){ tnsVectorSet4v(&temp[i*4],BCOLOR); } return temp; }\
  882. int sstart=x>Our->ImageX?(x-Our->ImageX):0, tstart=x>Our->ImageX?0:(Our->ImageX-x);\
  883. int slen=(x+w>Our->ImageX+Our->ImageW)?(Our->ImageW-sstart):(Our->ImageW-sstart-(Our->ImageX+Our->ImageW-x-w));\
  884. for(int i=0;i<tstart;i++){ tnsVectorSet4v(&temp[i*4],BCOLOR); }\
  885. for(int i=sstart+slen;i<w;i++){ tnsVectorSet4v(&temp[i*4],BCOLOR); }\
  886. memcpy(&temp[tstart*4],&((TYPE*)Our->ImageBuffer)[(Our->ImageW*(userow)+sstart)*4],slen*sizeof(TYPE)*4);\
  887. return temp;\
  888. }
  889. GET_FINAL_ROW_TYPE(uint16_t,Our->BColorU16)
  890. GET_FINAL_ROW_TYPE(uint8_t,Our->BColorU8)
  891. typedef void* (*ourGetFinalRowFunc)(int UseFrame, int row, int x, int y, int w, int h, void* temp);
  892. static void _our_png_write(png_structp png_ptr, png_bytep data, png_size_t length){
  893. OurLayerWrite* LayerWrite=png_get_io_ptr(png_ptr);
  894. arrEnsureLength(&LayerWrite->data,LayerWrite->NextData+length,&LayerWrite->MaxData,sizeof(unsigned char));
  895. memcpy(&LayerWrite->data[LayerWrite->NextData], data, length);
  896. LayerWrite->NextData+=length;
  897. }
  898. void our_ImageConvertForExport(int BitDepth, int ColorProfile){
  899. uint8_t* NewImage;
  900. cmsHTRANSFORM cmsTransform = NULL;
  901. cmsHPROFILE input_buffer_profile = NULL;
  902. cmsHPROFILE output_buffer_profile = NULL;
  903. if(BitDepth==OUR_EXPORT_BIT_DEPTH_16){ return; /* only export 16bit flat */ }
  904. input_buffer_profile=(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY)?
  905. cmsOpenProfileFromMem(Our->icc_LinearClay,Our->iccsize_LinearClay):cmsOpenProfileFromMem(Our->icc_LinearsRGB,Our->iccsize_LinearsRGB);
  906. if(ColorProfile!=OUR_EXPORT_COLOR_MODE_FLAT){
  907. if(ColorProfile==OUR_EXPORT_COLOR_MODE_SRGB){ output_buffer_profile=cmsOpenProfileFromMem(Our->icc_sRGB,Our->iccsize_sRGB); }
  908. elif(ColorProfile==OUR_EXPORT_COLOR_MODE_CLAY){ output_buffer_profile=cmsOpenProfileFromMem(Our->icc_Clay,Our->iccsize_Clay); }
  909. cmsTransform = cmsCreateTransform(input_buffer_profile, TYPE_RGBA_16, output_buffer_profile, TYPE_RGBA_16, INTENT_PERCEPTUAL, 0);
  910. cmsDoTransform(cmsTransform,Our->ImageBuffer,Our->ImageBuffer,Our->ImageW*Our->ImageH);
  911. cmsCloseProfile(input_buffer_profile);cmsCloseProfile(output_buffer_profile); cmsDeleteTransform(cmsTransform);
  912. }
  913. NewImage=calloc(Our->ImageW*sizeof(uint8_t),Our->ImageH*4);
  914. for(int row=0;row<Our->ImageH;row++){
  915. for(int col=0;col<Our->ImageW;col++){ uint8_t* p=&NewImage[(row*Our->ImageW+col)*4]; uint16_t* p0=&Our->ImageBuffer[(row*Our->ImageW+col)*4];
  916. p[0]=((real)p0[0]+0.5)/256; p[1]=((real)p0[1]+0.5)/256; p[2]=((real)p0[2]+0.5)/256; p[3]=((real)p0[3]+0.5)/256;
  917. }
  918. }
  919. free(Our->ImageBuffer); Our->ImageBuffer=NewImage;
  920. }
  921. int our_ImageExportPNG(FILE* fp, int WriteToBuffer, void** buf, int* sizeof_buf, int UseFrame, int BitDepth, int ColorProfile){
  922. if((!fp)&&(!WriteToBuffer)) return 0;
  923. if(!Our->ImageBuffer) return 0;
  924. real bk[4]; tnsVectorSet3v(bk,Our->BackgroundColor); bk[3]=1;
  925. int UseBitDepth,ElemSize; void* use_icc=0; int use_icc_size;
  926. ourGetFinalRowFunc GetFinalRow;
  927. if(BitDepth==OUR_EXPORT_BIT_DEPTH_16){ UseBitDepth=16; ElemSize=sizeof(uint16_t); ColorProfile=OUR_EXPORT_COLOR_MODE_FLAT; GetFinalRow=our_GetFinalRow_uint16_t; }
  928. else{ UseBitDepth=8; ElemSize=sizeof(uint8_t); GetFinalRow=our_GetFinalRow_uint8_t; }
  929. png_structp png_ptr=png_create_write_struct(PNG_LIBPNG_VER_STRING,0,0,0);
  930. png_infop info_ptr = png_create_info_struct(png_ptr);
  931. OurLayerWrite LayerWrite={0};
  932. if(WriteToBuffer){
  933. arrEnsureLength(&LayerWrite.data,0,&LayerWrite.MaxData,sizeof(unsigned char));
  934. png_set_write_fn(png_ptr,&LayerWrite,_our_png_write,0);
  935. }else{
  936. png_init_io(png_ptr, fp);
  937. }
  938. int X,Y,W,H; our_GetFinalDimension(UseFrame, &X,&Y,&W,&H);
  939. 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);
  940. 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); }
  941. elif(ColorProfile==OUR_EXPORT_COLOR_MODE_CLAY){ use_icc=Our->icc_Clay;use_icc_size=Our->iccsize_Clay;tns2LogsRGB(bk);/* should be clay */ }
  942. elif(ColorProfile==OUR_EXPORT_COLOR_MODE_FLAT){
  943. if(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB){use_icc=Our->icc_LinearsRGB;use_icc_size=Our->iccsize_LinearsRGB;}
  944. elif(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY){use_icc=Our->icc_LinearClay;use_icc_size=Our->iccsize_LinearClay;}
  945. }
  946. if(use_icc){ png_set_iCCP(png_ptr,info_ptr,"LA_PROFILE",PNG_COMPRESSION_TYPE_BASE,use_icc,use_icc_size); }
  947. png_write_info(png_ptr, info_ptr);
  948. png_set_swap(png_ptr);
  949. Our->BColorU16[0]=bk[0]*65535; Our->BColorU16[1]=bk[1]*65535; Our->BColorU16[2]=bk[2]*65535; Our->BColorU16[3]=65535;
  950. 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;
  951. char* temp_row=calloc(W,ElemSize*4);
  952. int prog=0,lastprog=0;
  953. for(int i=0;i<H;i++){
  954. char* final=GetFinalRow(UseFrame,i,X,Y,W,H,temp_row);
  955. png_write_row(png_ptr, (png_const_bytep)final);
  956. lastprog=i/1000; if(lastprog!=prog){ prog=lastprog; laShowProgress(-1,(real)i/H); }
  957. }
  958. png_write_end(png_ptr, info_ptr);
  959. png_destroy_write_struct(&png_ptr, &info_ptr);
  960. if(Our->ImageBuffer){ free(Our->ImageBuffer); Our->ImageBuffer=0; }
  961. if(WriteToBuffer){ *buf=LayerWrite.data; *sizeof_buf=LayerWrite.NextData; }
  962. free(temp_row);
  963. return 1;
  964. }
  965. void our_EnsureImageBufferOnRead(OurLayer*l, int W, int H, int UseOffsets, int StartX, int StartY){
  966. int tw=W/OUR_TILE_W_USE, th=H/OUR_TILE_W_USE;
  967. int w=tw*OUR_TILE_W_USE, h=th*OUR_TILE_W_USE;
  968. if(w<W){ tw+=1; w+=OUR_TILE_W_USE; } if(h<H){ th+=1; h+=OUR_TILE_W_USE; }
  969. int ix=UseOffsets?StartX:(-tw/2*OUR_TILE_W_USE-OUR_TILE_W_USE/2);
  970. int iy=UseOffsets?StartY:(th/2*OUR_TILE_W_USE+OUR_TILE_W_USE/2);
  971. int tl,tr,tu,tb;
  972. our_LayerEnsureTiles(l,ix,ix+W,iy-H,iy,1,&tl,&tr,&tu,&tb);
  973. our_LayerEnsureImageBuffer(l, 0);
  974. Our->LoadX = ix-Our->ImageX; Our->LoadY = Our->ImageY+Our->ImageH-iy;
  975. }
  976. static void _our_png_read(png_struct *ps, png_byte *data, png_size_t length){
  977. OurLayerRead *LayerRead = (OurLayerRead*)png_get_io_ptr(ps);
  978. memcpy(data,&LayerRead->data[LayerRead->NextData],length);
  979. LayerRead->NextData+=length;
  980. }
  981. int our_PeekPNG(FILE* fp, int* HasProfile, int* HassRGB, laSafeString** iccName){
  982. png_structp png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,0,0,0); if (!png_ptr) { return 0; }
  983. png_infop info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { return 0; }
  984. png_init_io(png_ptr, fp);
  985. png_read_info(png_ptr, info_ptr);
  986. int srgb_intent = 0;
  987. png_charp icc_profile_name = NULL;
  988. png_uint_32 icc_proflen = 0;
  989. int icc_compression_type = 0;
  990. cmsHPROFILE input_buffer_profile = NULL;
  991. cmsHTRANSFORM cmsTransform = NULL;
  992. cmsToneCurve *cmsToneCurve = NULL;
  993. cmsUInt32Number input_buffer_format = 0;
  994. #if PNG_LIBPNG_VER < 10500 // 1.5.0beta36, according to libpng CHANGES
  995. png_charp icc_profile = NULL;
  996. #else
  997. png_bytep icc_profile = NULL;
  998. #endif
  999. if(png_get_iCCP (png_ptr, info_ptr, &icc_profile_name, &icc_compression_type, &icc_profile, &icc_proflen)) {
  1000. input_buffer_profile = cmsOpenProfileFromMem(icc_profile, icc_proflen);
  1001. if(!input_buffer_profile) { goto cleanup_png_peek; }
  1002. cmsColorSpaceSignature cs_sig = cmsGetColorSpace(input_buffer_profile);
  1003. if (cs_sig != cmsSigRgbData) { logPrint(" png has grayscale iCCP, Our Paint doesn't supported that yet, will load as sRGB.\n");
  1004. cmsCloseProfile(input_buffer_profile); input_buffer_profile = NULL; }
  1005. else{
  1006. char* desc="UNAMED PROFILE";
  1007. cmsUInt32Number len=cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",0,0);
  1008. if(len){ desc=calloc(1,sizeof(char)*len); cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",desc,len); }
  1009. logPrint(" png has iCCP: %s.\n", desc); strSafeSet(iccName, desc); if(len){ free(desc); } *HasProfile=1;
  1010. }
  1011. }elif(png_get_sRGB(png_ptr,info_ptr,&srgb_intent)){
  1012. logPrint(" png is sRGB.\n");
  1013. *HassRGB=1;
  1014. }else{
  1015. // should use png_get_cHRM and png_get_gAMA, but for simplicity we just treat them as srgb,
  1016. logPrint(" png doesn't contain iCCP or sRGB flags, assuming sRGB.\n");
  1017. *HassRGB=0;
  1018. }
  1019. cleanup_png_peek:
  1020. if(input_buffer_profile) cmsCloseProfile(input_buffer_profile);
  1021. if(png_ptr && info_ptr) png_destroy_read_struct(&png_ptr,&info_ptr,0);
  1022. return 1;
  1023. }
  1024. int our_LayerImportPNG(OurLayer* l, FILE* fp, void* buf, int InputProfileMode, int OutputProfileMode, int UseOffsets, int StartX, int StartY){
  1025. int result=0;
  1026. if((!fp&&!buf) || !l) return 0;
  1027. int srgb_intent = 0;
  1028. png_charp icc_profile_name = NULL;
  1029. png_uint_32 icc_proflen = 0;
  1030. int icc_compression_type = 0;
  1031. cmsHPROFILE input_buffer_profile = NULL;
  1032. cmsHPROFILE output_buffer_profile = NULL;
  1033. cmsHTRANSFORM cmsTransform = NULL;
  1034. cmsToneCurve *cmsToneCurve = NULL;
  1035. cmsUInt32Number input_buffer_format = 0;
  1036. #if PNG_LIBPNG_VER < 10500 // 1.5.0beta36, according to libpng CHANGES
  1037. png_charp icc_profile = NULL;
  1038. #else
  1039. png_bytep icc_profile = NULL;
  1040. #endif
  1041. OurLayerRead LayerRead={0};
  1042. png_structp png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,0,0,0); if (!png_ptr) { return 0; }
  1043. png_infop info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { return 0; }
  1044. if (setjmp(png_jmpbuf(png_ptr))) { goto cleanup_png_read; }
  1045. if(buf){
  1046. LayerRead.data=buf; png_set_read_fn(png_ptr, &LayerRead, _our_png_read);
  1047. }else{
  1048. png_init_io(png_ptr, fp);
  1049. }
  1050. png_read_info(png_ptr, info_ptr);
  1051. png_set_swap(png_ptr);
  1052. int UseSRGB=0;
  1053. if(InputProfileMode==1){
  1054. if(png_get_iCCP (png_ptr, info_ptr, &icc_profile_name, &icc_compression_type, &icc_profile, &icc_proflen)) {
  1055. input_buffer_profile = cmsOpenProfileFromMem(icc_profile, icc_proflen);
  1056. if(!input_buffer_profile) { goto cleanup_png_read; }
  1057. cmsColorSpaceSignature cs_sig = cmsGetColorSpace(input_buffer_profile);
  1058. if (cs_sig != cmsSigRgbData) { /*no grayscale icc*/ cmsCloseProfile(input_buffer_profile); input_buffer_profile = NULL; }
  1059. else{
  1060. char* desc="UNAMED PROFILE";
  1061. cmsUInt32Number len=cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",0,0);
  1062. if(len){ desc=calloc(1,sizeof(char)*len); cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",desc,len); free(desc); }
  1063. }
  1064. }
  1065. }
  1066. if (png_get_interlace_type (png_ptr, info_ptr) != PNG_INTERLACE_NONE){ logPrint(" Interlaced png not supported.\n");
  1067. goto cleanup_png_read;
  1068. }
  1069. png_byte ColorType = png_get_color_type(png_ptr, info_ptr);
  1070. png_byte BitDepth = png_get_bit_depth(png_ptr, info_ptr);
  1071. int HasAlpha = ColorType & PNG_COLOR_MASK_ALPHA;
  1072. if (ColorType == PNG_COLOR_TYPE_PALETTE) { png_set_palette_to_rgb(png_ptr); }
  1073. //if (ColorType == PNG_COLOR_TYPE_GRAY && BitDepth < 8) { png_set_expand_gray_1_2_4_to_8(png_ptr); }
  1074. if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { png_set_tRNS_to_alpha(png_ptr); HasAlpha = 1; }
  1075. if (BitDepth<16) { png_set_expand_16(png_ptr); }
  1076. if (!HasAlpha) { png_set_add_alpha(png_ptr, 0xFFFF, PNG_FILLER_AFTER); }
  1077. if (ColorType == PNG_COLOR_TYPE_GRAY || ColorType == PNG_COLOR_TYPE_GRAY_ALPHA) { png_set_gray_to_rgb(png_ptr); }
  1078. png_read_update_info(png_ptr, info_ptr);
  1079. if (png_get_bit_depth(png_ptr, info_ptr)!=16) {
  1080. logPrint(" Can't convert png into 16 bits per channel, aborting.\n"); goto cleanup_png_read;
  1081. }
  1082. if (png_get_color_type(png_ptr, info_ptr) != PNG_COLOR_TYPE_RGB_ALPHA) {
  1083. logPrint(" Can't convert png into RGBA format, aborting.\n"); goto cleanup_png_read;
  1084. }
  1085. if (png_get_channels(png_ptr, info_ptr) != 4) {
  1086. logPrint(" Can't convert png into 4 channel RGBA format, aborting.\n"); goto cleanup_png_read;
  1087. }
  1088. #ifdef CMS_USE_BIG_ENDIAN
  1089. input_buffer_format = TYPE_RGBA_16;
  1090. #else
  1091. input_buffer_format = TYPE_RGBA_16_SE;
  1092. #endif
  1093. int W = png_get_image_width(png_ptr, info_ptr);
  1094. int H = png_get_image_height(png_ptr, info_ptr);
  1095. our_EnsureImageBufferOnRead(l,W,H,UseOffsets,StartX,StartY);
  1096. int prog=0,lastprog=0;
  1097. for(int i=0;i<H;i++){
  1098. png_read_row(png_ptr, &Our->ImageBuffer[((H-i-1+Our->LoadY)*Our->ImageW+Our->LoadX)*4], NULL);
  1099. lastprog=i/1000; if(lastprog!=prog){ prog=lastprog; laShowProgress(-1,(real)i/H); }
  1100. }
  1101. if(InputProfileMode && OutputProfileMode && (InputProfileMode!=OutputProfileMode)){
  1102. void* icc=0; int iccsize=0;
  1103. if(!input_buffer_profile){
  1104. if(InputProfileMode==OUR_PNG_READ_INPUT_SRGB){ icc=Our->icc_sRGB; iccsize=Our->iccsize_sRGB; }
  1105. elif(InputProfileMode==OUR_PNG_READ_INPUT_CLAY){ icc=Our->icc_Clay; iccsize=Our->iccsize_Clay; }
  1106. elif(InputProfileMode==OUR_PNG_READ_INPUT_LINEAR_SRGB){ icc=Our->icc_LinearsRGB; iccsize=Our->iccsize_LinearsRGB; }
  1107. elif(InputProfileMode==OUR_PNG_READ_INPUT_LINEAR_CLAY){ icc=Our->icc_LinearClay; iccsize=Our->iccsize_LinearClay; }
  1108. input_buffer_profile=cmsOpenProfileFromMem(icc, iccsize);
  1109. }
  1110. icc=0; iccsize=0;
  1111. if(OutputProfileMode==OUR_PNG_READ_OUTPUT_LINEAR_SRGB){ icc=Our->icc_LinearsRGB; iccsize=Our->iccsize_LinearsRGB; }
  1112. elif(OutputProfileMode==OUR_PNG_READ_OUTPUT_LINEAR_CLAY){ icc=Our->icc_LinearClay; iccsize=Our->iccsize_LinearClay; }
  1113. output_buffer_profile=cmsOpenProfileFromMem(icc, iccsize);
  1114. if(input_buffer_profile && output_buffer_profile){
  1115. cmsTransform = cmsCreateTransform(input_buffer_profile, TYPE_RGBA_16, output_buffer_profile, TYPE_RGBA_16, INTENT_PERCEPTUAL, 0);
  1116. cmsDoTransform(cmsTransform,Our->ImageBuffer,Our->ImageBuffer,Our->ImageW*Our->ImageH);
  1117. }
  1118. }
  1119. our_LayerToTexture(l);
  1120. result=1;
  1121. cleanup_png_read:
  1122. if(input_buffer_profile) cmsCloseProfile(input_buffer_profile);
  1123. if(output_buffer_profile) cmsCloseProfile(output_buffer_profile);
  1124. if(cmsTransform) cmsDeleteTransform(cmsTransform);
  1125. if(png_ptr && info_ptr) png_destroy_read_struct(&png_ptr,&info_ptr,0);
  1126. if(Our->ImageBuffer){ free(Our->ImageBuffer); Our->ImageBuffer=0; }
  1127. return result;
  1128. }
  1129. void our_UiToCanvas(laCanvasExtra* ex, laEvent*e, real* x, real *y){
  1130. *x = (real)((real)e->x - (real)(ex->ParentUi->R - ex->ParentUi->L) / 2 - ex->ParentUi->L) * ex->ZoomX + ex->PanX;
  1131. *y = (real)((real)(ex->ParentUi->B - ex->ParentUi->U) / 2 - (real)e->y + ex->ParentUi->U) * ex->ZoomY + ex->PanY;
  1132. }
  1133. void our_PaintResetBrushState(OurBrush* b){
  1134. b->BrushRemainingDist = 0; b->SmudgeAccum=0; b->SmudgeRestart=1;
  1135. Our->LastBrushCenter[0]=-1e21;
  1136. }
  1137. real our_PaintGetDabStepDistance(real Size,real DabsPerSize){
  1138. real d=Size/DabsPerSize; if(d<1e-2) d=1e-2; return d;
  1139. }
  1140. int our_PaintGetDabs(OurBrush* b, OurLayer* l, real x, real y, real xto, real yto,
  1141. real last_pressure, real last_orientation, real last_deviation, real pressure, real Orientation, real Deviation,
  1142. int *tl, int *tr, int* tu, int* tb, real* r_xto, real* r_yto){
  1143. if (isnan(x)||isnan(y)||isnan(xto)||isnan(yto)||isinf(x)||isinf(y)||isinf(xto)||isinf(yto)){
  1144. printf("brush input coordinates has nan or inf.\n"); return 0;
  1145. }
  1146. Our->NextDab=0;
  1147. if(!b->EvalDabsPerSize) b->EvalDabsPerSize=b->DabsPerSize;
  1148. real smfac=(1-b->Smoothness/1.1); xto=tnsLinearItp(x,xto,smfac); yto=tnsLinearItp(y,yto,smfac); *r_xto=xto; *r_yto=yto;
  1149. real size=b->Size; real dd=our_PaintGetDabStepDistance(b->EvalSize, b->EvalDabsPerSize); real len=tnsDistIdv2(x,y,xto,yto); real rem=b->BrushRemainingDist;
  1150. if(len>1000){ *r_xto=xto; *r_yto=yto; b->BrushRemainingDist=0; return 0; /* Prevent crazy events causing GPU hang. */ }
  1151. real alllen=len+rem; real uselen=dd,step=0; if(!len)return 0; if(dd>alllen){ b->BrushRemainingDist+=len; return 0; }
  1152. real xmin=FLT_MAX,xmax=-FLT_MAX,ymin=FLT_MAX,ymax=-FLT_MAX;
  1153. b->EvalSize=b->Size; b->EvalHardness=b->Hardness; b->EvalSmudge=b->Smudge; b->EvalSmudgeLength=b->SmudgeResampleLength;
  1154. b->EvalTransparency=b->Transparency; b->EvalDabsPerSize=b->DabsPerSize; b->EvalSlender=b->Slender; b->EvalAngle=b->Angle;
  1155. b->EvalSpeed=tnsDistIdv2(x,y,xto,yto)/b->Size; b->EvalForce=b->Force; b->EvalGunkyness=b->Gunkyness;
  1156. if(Our->ResetBrush){ b->LastX=x; b->LastY=y; b->LastAngle=atan2(yto-y,xto-x); b->EvalStrokeLength=0; Our->ResetBrush=0; }
  1157. real this_angle=atan2(yto-y,xto-x);
  1158. if(b->LastAngle-this_angle>TNS_PI){ this_angle+=(TNS_PI*2); }
  1159. elif(this_angle-b->LastAngle>TNS_PI){ b->LastAngle+=(TNS_PI*2); }
  1160. while(1){ int Repeat=1; OurDab* od;
  1161. for(b->Iteration=0;b->Iteration<Repeat;b->Iteration++){ b->EvalDiscard=0;
  1162. arrEnsureLength(&Our->Dabs,Our->NextDab,&Our->MaxDab,sizeof(OurDab)); od=&Our->Dabs[Our->NextDab]; od->Direction[0]=-1e21;
  1163. real r=tnsGetRatiod(0,len,uselen-rem); od->X=tnsInterpolate(x,xto,r); od->Y=tnsInterpolate(y,yto,r); TNS_CLAMP(r,0,1);
  1164. b->LastX=od->X; b->LastY=od->Y; tnsVectorSet3v(b->EvalColor, Our->CurrentColor);
  1165. if(b->UseNodes){
  1166. b->EvalPressure=tnsInterpolate(last_pressure,pressure,r); b->EvalPosition[0]=od->X; b->EvalPosition[1]=od->Y;
  1167. b->EvalOffset[0]=0; b->EvalOffset[1]=0; b->EvalStrokeAngle=tnsInterpolate(b->LastAngle,this_angle,r);
  1168. b->EvalTilt[0]=tnsInterpolate(last_orientation,Orientation,r); b->EvalTilt[1]=tnsInterpolate(last_deviation,Deviation,r);
  1169. ourEvalBrush(); if(!b->Iteration){ Repeat=b->EvalRepeats;} if(b->EvalDiscard){ continue; }
  1170. 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);
  1171. od->X+=b->EvalOffset[0]; od->Y+=b->EvalOffset[1];
  1172. }
  1173. if(!b->EvalDabsPerSize) b->EvalDabsPerSize=1;
  1174. #define pfac(psw) (((!b->UseNodes)&&psw)?tnsInterpolate(last_pressure,pressure,r):1)
  1175. od->Size = b->EvalSize*pfac(b->PressureSize); od->Hardness = b->EvalHardness*pfac(b->PressureHardness);
  1176. od->Smudge = b->EvalSmudge*pfac(b->PressureSmudge); od->Color[3]=pow(b->EvalTransparency*pfac(b->PressureTransparency),2.718);
  1177. tnsVectorSet3v(od->Color,b->EvalColor); od->Force=b->EvalForce*pfac(b->PressureForce);
  1178. #undef pfac;
  1179. od->Gunkyness = b->EvalGunkyness;
  1180. od->Slender = b->EvalSlender; od->Angle=b->EvalAngle;
  1181. xmin=TNS_MIN2(xmin, od->X-od->Size); xmax=TNS_MAX2(xmax, od->X+od->Size);
  1182. ymin=TNS_MIN2(ymin, od->Y-od->Size); ymax=TNS_MAX2(ymax, od->Y+od->Size);
  1183. if(od->Size>1e-1 && (!b->EvalDiscard)) Our->NextDab++;
  1184. }
  1185. step=our_PaintGetDabStepDistance(od->Size, b->EvalDabsPerSize);
  1186. b->EvalStrokeLength+=step/b->Size; b->EvalStrokeLengthAccum+=step/b->Size; if(b->EvalStrokeLengthAccum>1e6){b->EvalStrokeLengthAccum-=1e6;}
  1187. od->ResampleSmudge=0;
  1188. if(b->Smudge>1e-3){ b->SmudgeAccum+=step;
  1189. if(b->SmudgeAccum>(b->EvalSmudgeLength*od->Size)){ b->SmudgeAccum-=(b->EvalSmudgeLength*od->Size); od->ResampleSmudge=1; }
  1190. od->Recentness=b->SmudgeAccum/b->EvalSmudgeLength/od->Size; TNS_CLAMP(od->Recentness,0,1);
  1191. }else{od->Recentness=0;}
  1192. if(step+uselen<alllen)uselen+=step; else break;
  1193. }
  1194. if(this_angle>TNS_PI*2){ this_angle-=(TNS_PI*2); }
  1195. b->LastAngle=this_angle;
  1196. b->BrushRemainingDist=alllen-uselen;
  1197. if(Our->NextDab) {
  1198. our_LayerEnsureTiles(l,xmin,xmax,ymin,ymax,0,tl,tr,tu,tb);
  1199. 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);
  1200. return 1;
  1201. }
  1202. return 0;
  1203. }
  1204. void our_PaintDoSample(int x, int y, int sx, int sy, int ssize, int last,int begin_stroke){
  1205. glUniform2i(Our->uBrushCorner,x-sx,y-sy);
  1206. glUniform2f(Our->uBrushCenter,x-sx,y-sy);
  1207. glUniform1f(Our->uBrushSize, ssize);
  1208. glUniform1i(Our->uBrushErasing,last?(begin_stroke?2:1):0);
  1209. glDispatchCompute(1,1,1);
  1210. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  1211. }
  1212. void our_PaintDoDab(OurDab* d, int tl, int tr, int tu, int tb){
  1213. int corner[2]; corner[0]=floorf(d->X-d->Size); corner[1]=floorf(d->Y-d->Size);
  1214. real MaxX,MaxY; MaxX=ceil(d->X+d->Size); MaxY=ceil(d->Y+d->Size);
  1215. float center[2]; center[0]=d->X-tl; center[1]=d->Y-tu;
  1216. if(d->Direction[0]<-1e20){
  1217. if(Our->LastBrushCenter[0]<-1e20){ d->Direction[0]=0;d->Direction[1]=0; }
  1218. else{ d->Direction[0]=d->X-Our->LastBrushCenter[0]; d->Direction[1]=d->Y-Our->LastBrushCenter[1]; }
  1219. } tnsVectorSet2(Our->LastBrushCenter,d->X,d->Y);
  1220. if(corner[0]>tr||MaxX<tl||corner[1]>tb||MaxY<tu) return;
  1221. corner[0]=corner[0]-tl; corner[1]=corner[1]-tu;
  1222. glUniform2iv(Our->uBrushCorner,1,corner);
  1223. glUniform2fv(Our->uBrushCenter,1,center);
  1224. glUniform1f(Our->uBrushSize,d->Size);
  1225. glUniform1f(Our->uBrushHardness,d->Hardness);
  1226. glUniform1f(Our->uBrushSmudge,d->Smudge);
  1227. glUniform1f(Our->uBrushSlender,d->Slender);
  1228. glUniform1f(Our->uBrushAngle,d->Angle);
  1229. glUniform2fv(Our->uBrushDirection,1,d->Direction);
  1230. glUniform1f(Our->uBrushForce,d->Force);
  1231. glUniform1f(Our->uBrushGunkyness,d->Gunkyness);
  1232. glUniform1f(Our->uBrushRecentness,d->Recentness);
  1233. glUniform4fv(Our->uBrushColor,1,d->Color);
  1234. glDispatchCompute(ceil(d->Size/16), ceil(d->Size/16), 1);
  1235. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  1236. }
  1237. void our_PaintDoDabs(OurLayer* l,int tl, int tr, int tu, int tb, int Start, int End){
  1238. for(int row=tb;row<=tu;row++){
  1239. for(int col=tl;col<=tr;col++){
  1240. OurTexTile* ott=l->TexTiles[row][col];
  1241. glBindImageTexture(0, ott->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1242. int s[2]; s[0]=l->TexTiles[row][col]->l,s[1]=l->TexTiles[row][col]->b;
  1243. glUniform2iv(Our->uImageOffset,1,s);
  1244. for(int i=Start;i<End;i++){
  1245. our_PaintDoDab(&Our->Dabs[i],s[0],s[0]+OUR_TILE_W,s[1],s[1]+OUR_TILE_W);
  1246. }
  1247. }
  1248. }
  1249. }
  1250. STRUCTURE(OurSmudgeSegement){
  1251. laListItem Item;
  1252. int Start,End,Resample;
  1253. };
  1254. void our_PaintDoDabsWithSmudgeSegments(OurLayer* l,int tl, int tr, int tu, int tb){
  1255. laListHandle Segments={0}; int from=0,to=Our->NextDab; if(!Our->NextDab) return;
  1256. OurSmudgeSegement* oss; unsigned int uniforms[2];
  1257. oss=lstAppendPointerSized(&Segments, 0,sizeof(OurSmudgeSegement));
  1258. for(int i=1;i<to;i++){
  1259. if(Our->Dabs[i].ResampleSmudge){ oss->Start=from; oss->End=i; from=i;
  1260. oss=lstAppendPointerSized(&Segments, 0,sizeof(OurSmudgeSegement)); oss->Resample=1;
  1261. }
  1262. }
  1263. oss->Start=from; oss->End=to;
  1264. if(Our->Dabs[0].ResampleSmudge){ ((OurSmudgeSegement*)Segments.pFirst)->Resample=1; }
  1265. glUseProgram(Our->CanvasProgram);
  1266. glUniform1i(Our->uBrushErasing,Our->Erasing);
  1267. uniforms[Our->uBrushRoutineSelection]=Our->RoutineDoDabs;
  1268. uniforms[Our->uMixRoutineSelection]=Our->SpectralMode?Our->RoutineDoMixSpectral:Our->RoutineDoMixNormal;
  1269. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,2,uniforms);
  1270. glUniform1i(Our->uCanvasType,Our->BackgroundType);
  1271. glUniform1i(Our->uCanvasRandom,Our->BackgroundRandom);
  1272. glUniform1f(Our->uCanvasFactor,Our->BackgroundFactor);
  1273. while(oss=lstPopItem(&Segments)){
  1274. if(oss->Resample || Our->CurrentBrush->SmudgeRestart){
  1275. uniforms[Our->uBrushRoutineSelection]=Our->RoutineDoSample;
  1276. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,2,uniforms);
  1277. int x=Our->Dabs[oss->Start].X, y=Our->Dabs[oss->Start].Y; float usize=Our->Dabs[oss->Start].Size;
  1278. float ssize=(usize>15)?(usize+1.5):(usize*1.1); if(ssize<3) ssize=3;
  1279. 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);
  1280. 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);
  1281. 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);
  1282. 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);
  1283. glBindImageTexture(1, Our->SmudgeTexture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1284. for(int col=colmin;col<=colmax;col++){
  1285. for(int row=rowmin;row<=rowmax;row++){
  1286. glBindImageTexture(0, l->TexTiles[row][col]->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1287. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  1288. our_PaintDoSample(x,y,sx,sy,ssize,(col==colmax)&&(row==rowmax),Our->CurrentBrush->SmudgeRestart);
  1289. }
  1290. }
  1291. Our->CurrentBrush->SmudgeRestart=0;
  1292. uniforms[Our->uBrushRoutineSelection]=Our->RoutineDoDabs;
  1293. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,2,uniforms);
  1294. glUniform1i(Our->uBrushErasing,Our->Erasing);
  1295. }
  1296. //printf("from to %d %d %d\n", oss->Start,oss->End,Our->Dabs[oss->Start].ResampleSmudge);
  1297. our_PaintDoDabs(l,tl,tr,tu,tb,oss->Start,oss->End);
  1298. }
  1299. }
  1300. void ourset_CurrentBrush(void* unused, OurBrush* b);
  1301. void our_EnsureEraser(int EventIsEraser){
  1302. if(EventIsEraser==Our->EventErasing){ return; }
  1303. printf("ev e %d %d\n", Our->EventErasing, Our->Erasing);
  1304. int erasing=Our->Erasing; int num=0;
  1305. if(EventIsEraser && (!Our->EventErasing)){ num=TNS_MAX2(Our->EraserID,num);
  1306. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1307. if(b->Binding==num){ ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break; }
  1308. }
  1309. Our->Erasing=1; Our->EventErasing=1; laNotifyUsers("our.erasing");
  1310. }
  1311. elif((!EventIsEraser) && Our->EventErasing){ num=TNS_MAX2(Our->PenID,num);
  1312. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1313. if(b->Binding==num){ ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break; }
  1314. }
  1315. Our->Erasing=0; Our->EventErasing=0; laNotifyUsers("our.erasing");
  1316. }
  1317. }
  1318. void our_ReadWidgetColor(laCanvasExtra*e,int x,int y){
  1319. float color[4]; real rcolor[3],xyz[3];
  1320. glBindFramebuffer(GL_READ_FRAMEBUFFER, e->OffScr->FboHandle);
  1321. glReadBuffer(GL_COLOR_ATTACHMENT0);
  1322. glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
  1323. glReadPixels(x,y,1,1, GL_RGBA, GL_FLOAT, color);
  1324. color[0]*=color[3];color[1]*=color[3];color[2]*=color[3];tnsVectorSet3v(Our->CurrentColor,color);
  1325. }
  1326. void our_StartCropping(OurCanvasDraw* cd){
  1327. if(cd->CanvasDownX<Our->X){
  1328. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_BL; }
  1329. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_L; }
  1330. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_UL; }
  1331. }elif(cd->CanvasDownX>=Our->X&&cd->CanvasDownX<=Our->X+Our->W){
  1332. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_B; }
  1333. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_CENTER; }
  1334. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_U; }
  1335. }elif(cd->CanvasDownX>Our->X+Our->W){
  1336. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_BR; }
  1337. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_R; }
  1338. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_UR; }
  1339. }
  1340. }
  1341. void our_DoCropping(OurCanvasDraw* cd, real x, real y){
  1342. int dx=x-cd->CanvasLastX, dy=y-cd->CanvasLastY;
  1343. if(cd->AtCrop==OUR_AT_CROP_B||cd->AtCrop==OUR_AT_CROP_BL||cd->AtCrop==OUR_AT_CROP_BR){ Our->H-=dy; }
  1344. 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; }
  1345. 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; }
  1346. if(cd->AtCrop==OUR_AT_CROP_R||cd->AtCrop==OUR_AT_CROP_BR||cd->AtCrop==OUR_AT_CROP_UR){ Our->W+=dx; }
  1347. if(cd->AtCrop==OUR_AT_CROP_CENTER){ Our->Y+=dy; Our->X+=dx; }
  1348. if(Our->W<32) Our->W=32; if(Our->H<32) Our->H=32;
  1349. cd->CanvasLastX+=dx; cd->CanvasLastY+=dy;
  1350. }
  1351. int ourinv_ShowSplash(laOperator* a, laEvent* e){
  1352. our_EnableSplashPanel();return LA_FINISHED;
  1353. }
  1354. int ourinv_NewLayer(laOperator* a, laEvent* e){
  1355. our_NewLayer("Our Layer"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1356. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1357. return LA_FINISHED;
  1358. }
  1359. int ourinv_RemoveLayer(laOperator* a, laEvent* e){
  1360. OurLayer* l=a->This?a->This->EndInstance:0; if(!l) return LA_CANCELED;
  1361. our_RemoveLayer(l,0); laNotifyUsers("our.canvas.layers"); laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1362. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("Remove Layer",0);
  1363. return LA_FINISHED;
  1364. }
  1365. int ourinv_MoveLayer(laOperator* a, laEvent* e){
  1366. OurLayer* l=a->This?a->This->EndInstance:0; if(!l) return LA_CANCELED; int changed=0;
  1367. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1368. if(strSame(direction,"up")&&l->Item.pPrev){ lstMoveUp(&Our->Layers, l); changed=1; }
  1369. elif(l->Item.pNext){ lstMoveDown(&Our->Layers, l); changed=1; }
  1370. if(changed){ laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); laRecordDifferences(0,"our.canvas.layers"); laPushDifferences("Move Layer",0); }
  1371. return LA_FINISHED;
  1372. }
  1373. int ourchk_MergeLayer(laPropPack *This, laStringSplitor *ss){
  1374. OurLayer* l=This->EndInstance; if(!l || !l->Item.pNext) return 0;
  1375. OurLayer* nl=l->Item.pNext; if(l->Lock || l->Transparency==1 || nl->Lock || nl->Transparency==1) return 0;
  1376. return 1;
  1377. }
  1378. int ourinv_MergeLayer(laOperator* a, laEvent* e){
  1379. OurLayer* l=a->This?a->This->EndInstance:0; if(!l || !l->Item.pNext) return LA_CANCELED;
  1380. OurLayer* nl=l->Item.pNext; if(l->Lock || l->Transparency==1 || nl->Lock || nl->Transparency==1) return LA_CANCELED;
  1381. if(our_MergeLayer(l)){ laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); }
  1382. return LA_FINISHED;
  1383. }
  1384. int ourchk_ExportLayer(laPropPack *This, laStringSplitor *ss){
  1385. OurLayer* ol=This?This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return 0; return 1;
  1386. }
  1387. int ourinv_ExportLayer(laOperator* a, laEvent* e){
  1388. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1389. laInvoke(a, "LA_file_dialog", e, 0, "warn_file_exists=true;filter_extensions=png;use_extension=png", 0);
  1390. return LA_RUNNING;
  1391. }
  1392. int ourmod_ExportLayer(laOperator* a, laEvent* e){
  1393. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1394. if (a->ConfirmData){
  1395. if (a->ConfirmData->StrData){
  1396. if(!our_LayerEnsureImageBuffer(ol, 0)) return LA_FINISHED;
  1397. FILE* fp=fopen(a->ConfirmData->StrData,"wb");
  1398. if(!fp) return LA_FINISHED;
  1399. laShowProgress(0,-1);
  1400. our_LayerToImageBuffer(ol, 0);
  1401. laShowProgress(0.5,-1);
  1402. our_ImageExportPNG(fp, 0, 0, 0, 0, OUR_EXPORT_BIT_DEPTH_16, OUR_EXPORT_COLOR_MODE_FLAT);
  1403. laHideProgress();
  1404. fclose(fp);
  1405. }
  1406. return LA_FINISHED;
  1407. }
  1408. return LA_RUNNING;
  1409. }
  1410. int ourinv_ImportLayer(laOperator* a, laEvent* e){
  1411. OurLayer* ol=a->This?a->This->EndInstance:0;
  1412. a->CustomData=memAcquire(sizeof(OurPNGReadExtra));
  1413. laInvoke(a, "LA_file_dialog", e, 0, "filter_extensions=png;use_extension=png", 0);
  1414. return LA_RUNNING;
  1415. }
  1416. int ourmod_ImportLayer(laOperator* a, laEvent* e){
  1417. OurLayer* ol=a->This?a->This->EndInstance:0;
  1418. OurPNGReadExtra* ex=a->CustomData;
  1419. if(!ex->Confirming){
  1420. if (a->ConfirmData){
  1421. if (a->ConfirmData->StrData){
  1422. FILE* fp=fopen(a->ConfirmData->StrData,"rb"); if(!fp) return LA_FINISHED;
  1423. if(!our_PeekPNG(fp,&ex->HasProfile, &ex->HassRGB, &ex->iccName)){ fclose(fp); return LA_FINISHED; }
  1424. else{ ex->Confirming=1; fclose(fp); strSafeSet(&ex->FilePath,a->ConfirmData->StrData);
  1425. if(ex->HasProfile){ex->InputMode=OUR_PNG_READ_INPUT_ICC;}
  1426. else{ ex->InputMode=OUR_PNG_READ_INPUT_SRGB; }
  1427. laEnableOperatorPanel(a,a->This,e->x,e->y,300,200,0,0,0,0,0,0,0,0,e); return LA_RUNNING;
  1428. }
  1429. }
  1430. return LA_FINISHED;
  1431. }
  1432. }else{
  1433. if (a->ConfirmData){
  1434. if (a->ConfirmData->Mode==LA_CONFIRM_OK){
  1435. FILE* fp=fopen(ex->FilePath->Ptr,"rb"); if(!fp) return LA_FINISHED;
  1436. if(!ol) ol=our_NewLayer("Imported");
  1437. int OutMode=ex->OutputMode?ex->OutputMode:((Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB)?OUR_PNG_READ_OUTPUT_LINEAR_SRGB:OUR_PNG_READ_OUTPUT_LINEAR_CLAY);
  1438. our_LayerImportPNG(ol, fp, 0, ex->InputMode, OutMode, 0, 0, 0);
  1439. laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1440. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1441. our_LayerRefreshLocal(ol);
  1442. laHideProgress();
  1443. fclose(fp);
  1444. }
  1445. return LA_FINISHED;
  1446. }
  1447. }
  1448. return LA_RUNNING;
  1449. }
  1450. void ourexit_ImportLayer(laOperator* a, int result){
  1451. OurPNGReadExtra* ex=a->CustomData;
  1452. strSafeDestroy(&ex->FilePath);
  1453. memFree(ex);
  1454. }
  1455. void ourui_ImportLayer(laUiList *uil, laPropPack *This, laPropPack *Operator, laColumn *UNUSED, int context){
  1456. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  1457. laUiItem* b;
  1458. laShowLabel(uil,c,"Select the importing behavior:",0,0);
  1459. laShowLabel(uil,cl,"Input:",0,0); laShowItem(uil,cl,Operator,"input_mode");
  1460. b=laOnConditionThat(uil,c,laNot(laEqual(laPropExpression(Operator,"input_mode"),laIntExpression(OUR_PNG_READ_INPUT_FLAT))));{
  1461. laShowLabel(uil,cr,"Output:",0,0); laShowItem(uil,cr,Operator,"output_mode");
  1462. laShowLabel(uil,cl,"Canvas:",0,0)->Flags|=LA_TEXT_ALIGN_RIGHT; laShowItem(uil,cr,0,"our.canvas.color_interpretation");
  1463. }laEndCondition(uil,b);
  1464. b=laOnConditionThat(uil,c,laPropExpression(Operator,"has_profile"));{
  1465. laShowLabel(uil,c,"Input image has built-in color profile:",0,0);
  1466. laShowItem(uil,cl,Operator,"icc_name")->Flags|=LA_TEXT_MONO;
  1467. }laElse(uil,b);{
  1468. laShowLabel(uil,c,"Input image does not have a built-in color profile.",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  1469. }laEndCondition(uil,b);
  1470. b=laOnConditionThat(uil,c,laPropExpression(Operator,"has_srgb"));{
  1471. laShowLabel(uil,c,"Input image is tagged as sRGB.",0,0);
  1472. }laElse(uil,b);{
  1473. laShowLabel(uil,c,"Input image is not tagged as sRGB.",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  1474. }laEndCondition(uil,b);
  1475. 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);
  1476. }
  1477. int ourchk_ExportImage(laPropPack *This, laStringSplitor *ss){
  1478. OurLayer* ol=This?This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return 0; return 1;
  1479. }
  1480. int ourinv_ExportImage(laOperator* a, laEvent* e){
  1481. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1482. a->CustomData=memAcquire(sizeof(OurPNGWriteExtra));
  1483. laInvoke(a, "LA_file_dialog", e, 0, "warn_file_exists=true;filter_extensions=png;use_extension=png", 0);
  1484. return LA_RUNNING;
  1485. }
  1486. int ourmod_ExportImage(laOperator* a, laEvent* e){
  1487. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1488. OurPNGWriteExtra* ex=a->CustomData;
  1489. if(!ex->Confirming){
  1490. if (a->ConfirmData){
  1491. if (a->ConfirmData->StrData){
  1492. strSafeSet(&ex->FilePath,a->ConfirmData->StrData); ex->Confirming=1;
  1493. ex->ColorProfile=Our->DefaultColorProfile; ex->BitDepth=Our->DefaultBitDepth;
  1494. laEnableOperatorPanel(a,a->This,e->x,e->y,200,200,0,0,0,0,0,0,0,0,e); return LA_RUNNING;
  1495. }
  1496. return LA_FINISHED;
  1497. }
  1498. }else{
  1499. if (a->ConfirmData){
  1500. if (a->ConfirmData->Mode==LA_CONFIRM_OK){
  1501. if(!our_CanvasEnsureImageBuffer()) return LA_FINISHED;
  1502. FILE* fp=fopen(ex->FilePath->Ptr,"wb");
  1503. if(!fp) return LA_FINISHED;
  1504. static int LayerCount=0; static int CurrentLayer=0; LayerCount=lstCountElements(&Our->Layers); CurrentLayer=0;
  1505. our_CanvasFillImageBufferBackground();
  1506. laShowProgress(0,-1);
  1507. for(OurLayer* l=Our->Layers.pLast;l;l=l->Item.pPrev){
  1508. our_LayerToImageBuffer(l, 1);
  1509. CurrentLayer++; laShowProgress((real)CurrentLayer/LayerCount,-1);
  1510. }
  1511. our_ImageConvertForExport(ex->BitDepth, ex->ColorProfile);
  1512. our_ImageExportPNG(fp, 0, 0, 0, Our->ShowBorder, ex->BitDepth, ex->ColorProfile);
  1513. laHideProgress();
  1514. fclose(fp);
  1515. }
  1516. return LA_FINISHED;
  1517. }
  1518. }
  1519. return LA_RUNNING;
  1520. }
  1521. void ourexit_ExportImage(laOperator* a, int result){
  1522. OurPNGWriteExtra* ex=a->CustomData;
  1523. strSafeDestroy(&ex->FilePath);
  1524. memFree(ex);
  1525. }
  1526. void ourui_ExportImage(laUiList *uil, laPropPack *This, laPropPack *Operator, laColumn *UNUSED, int context){
  1527. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  1528. laUiItem* b;
  1529. laShowLabel(uil,c,"Select the exporting behavior:",0,0);
  1530. laShowLabel(uil,cl,"Bit Depth:",0,0); laShowItem(uil,cl,Operator,"bit_depth");
  1531. b=laOnConditionThat(uil,c,laEqual(laPropExpression(Operator,"bit_depth"),laIntExpression(OUR_EXPORT_BIT_DEPTH_16)));{
  1532. 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;
  1533. }laElse(uil,b);{
  1534. laShowLabel(uil,cr,"Color Space:",0,0); laShowItem(uil,cr,Operator,"color_profile");
  1535. }laEndCondition(uil,b);
  1536. laShowLabel(uil,cl,"Canvas Current:",0,0)->Flags|=LA_TEXT_ALIGN_RIGHT; laShowItem(uil,cr,0,"our.canvas.color_interpretation");
  1537. 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);
  1538. }
  1539. int ourinv_NewBrush(laOperator* a, laEvent* e){
  1540. our_NewBrush("Our Brush",15,0.95,9,0.5,0.5,5,0,0,0,0);
  1541. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Add brush",0);
  1542. return LA_FINISHED;
  1543. }
  1544. int ourinv_DuplicateBrush(laOperator* a, laEvent* e){
  1545. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1546. our_DuplicateBrush(b);
  1547. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Duplicate brush",0);
  1548. return LA_FINISHED;
  1549. }
  1550. int ourinv_RemoveBrush(laOperator* a, laEvent* e){
  1551. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1552. our_RemoveBrush(b);
  1553. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Remove brush",0);
  1554. return LA_FINISHED;
  1555. }
  1556. int ourinv_MoveBrush(laOperator* a, laEvent* e){
  1557. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1558. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1559. if(strSame(direction,"up")&&b->Item.pPrev){ lstMoveUp(&Our->Brushes, b); }
  1560. elif(b->Item.pNext){ lstMoveDown(&Our->Brushes, b); }
  1561. laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Move brush",0);
  1562. return LA_FINISHED;
  1563. }
  1564. int ourinv_BrushQuickSwitch(laOperator* a, laEvent* e){
  1565. char* id=strGetArgumentString(a->ExtraInstructionsP,"binding"); if(!id){ return LA_CANCELED; }
  1566. int num; int ret=sscanf(id,"%d",&num); if(ret>9||ret<0){ return LA_CANCELED; }
  1567. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1568. if(b->Binding==num){
  1569. ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break;
  1570. }
  1571. }
  1572. return LA_FINISHED;
  1573. }
  1574. int ourinv_BrushResize(laOperator* a, laEvent* e){
  1575. OurBrush* b=Our->CurrentBrush; if(!b) return LA_CANCELED;
  1576. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1577. if(strSame(direction,"bigger")){ b->Size*=1.25; }else{ b->Size/=1.25; }
  1578. TNS_CLAMP(b->Size,0,1000);
  1579. laNotifyUsers("our.tools.current_brush.size");
  1580. return LA_FINISHED;
  1581. }
  1582. int ourinv_ToggleErase(laOperator* a, laEvent* e){
  1583. OurBrush* b=Our->CurrentBrush; if(!b) return LA_FINISHED;
  1584. if(Our->Erasing){ Our->Erasing=0; }else{ Our->Erasing=1; } laNotifyUsers("our.erasing");
  1585. return LA_FINISHED;
  1586. }
  1587. void our_SmoothGlobalInput(real *x, real *y, int reset){
  1588. if(reset){ Our->LastX=*x; Our->LastY=*y; return; }
  1589. else{
  1590. real smfac=(1-Our->Smoothness/1.1);
  1591. real xto=tnsLinearItp(Our->LastX,*x,smfac), yto=tnsLinearItp(Our->LastY,*y,smfac);
  1592. *x=Our->LastX=xto; *y=Our->LastY=yto;
  1593. }
  1594. }
  1595. int ourinv_Action(laOperator* a, laEvent* e){
  1596. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1597. our_PaintResetBrushState(ob);
  1598. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y); our_SmoothGlobalInput(&x,&y,1);
  1599. ex->CanvasLastX=x;ex->CanvasLastY=y;ex->LastPressure=-1;ex->LastTilt[0]=e->Orientation;ex->LastTilt[1]=e->Deviation;
  1600. ex->CanvasDownX=x; ex->CanvasDownY=y;
  1601. Our->ActiveTool=Our->Tool; Our->CurrentScale = 1.0f/ex->Base.ZoomX;
  1602. Our->xmin=FLT_MAX;Our->xmax=-FLT_MAX;Our->ymin=FLT_MAX;Our->ymax=-FLT_MAX; Our->ResetBrush=1; ex->HideBrushCircle=1;
  1603. Our->PaintProcessedEvents=0; Our->BadEventsGiveUp=0; Our->BadEventCount=0;
  1604. if(Our->ActiveTool==OUR_TOOL_CROP){ if(!Our->ShowBorder) return LA_FINISHED; our_StartCropping(ex); }
  1605. if(l->Hide || l->Transparency==1 || l->Lock){ return LA_FINISHED; }
  1606. Our->LockBackground=1; laNotifyUsers("our.lock_background");
  1607. our_EnsureEraser(e->IsEraser);
  1608. laHideCursor();
  1609. return LA_RUNNING;
  1610. }
  1611. int ourmod_Paint(laOperator* a, laEvent* e){
  1612. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1613. if(e->Type==LA_L_MOUSE_UP || e->Type==LA_R_MOUSE_DOWN || e->Type==LA_ESCAPE_DOWN){
  1614. if(Our->PaintProcessedEvents) our_RecordUndo(l,Our->xmin,Our->xmax,Our->ymin,Our->ymax,0,1);
  1615. ex->HideBrushCircle=0; laShowCursor();
  1616. laEvent* ue; while(ue=lstPopItem(&Our->BadEvents)){ memFree(ue); }
  1617. return LA_FINISHED;
  1618. }
  1619. if(e->Type==LA_MOUSEMOVE||e->Type==LA_L_MOUSE_DOWN){
  1620. if((!e->GoodPressure) && ((!Our->BadEventsGiveUp)||(!Our->AllowNonPressure))){
  1621. laEvent* be=memAcquire(sizeof(laEvent)); memcpy(be,e,sizeof(laEvent)); be->Item.pNext=be->Item.pPrev=0;
  1622. lstAppendItem(&Our->BadEvents,be); Our->BadEventCount++;
  1623. if(Our->BadEventCount>=Our->BadEventsLimit){ Our->BadEventsGiveUp=1; }
  1624. }else{
  1625. Our->PaintProcessedEvents=1; laEvent* UseEvent;real Pressure=e->Pressure,Orientation=-e->Orientation,Deviation=e->Deviation;
  1626. while(1){
  1627. UseEvent=lstPopItem(&Our->BadEvents); if(!UseEvent){ UseEvent=e; }
  1628. real x,y; our_UiToCanvas(&ex->Base,UseEvent,&x,&y); our_SmoothGlobalInput(&x,&y,0);
  1629. int tl,tr,tu,tb; if(ex->LastPressure<0){ ex->LastPressure=Pressure; }
  1630. if(our_PaintGetDabs(ob,l,ex->CanvasLastX,ex->CanvasLastY,x,y,ex->LastPressure,ex->LastTilt[0],ex->LastTilt[1],Pressure,Orientation,Deviation,
  1631. &tl,&tr,&tu,&tb,&ex->CanvasLastX,&ex->CanvasLastY)){
  1632. our_PaintDoDabsWithSmudgeSegments(l,tl,tr,tu,tb);
  1633. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1634. }
  1635. ex->LastPressure=Pressure;ex->LastTilt[0]=Orientation;ex->LastTilt[1]=Deviation;
  1636. if(UseEvent==e){ break; }
  1637. else{ memFree(UseEvent); }
  1638. }
  1639. }
  1640. }
  1641. return LA_RUNNING;
  1642. }
  1643. int ourmod_Crop(laOperator* a, laEvent* e){
  1644. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1645. 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; }
  1646. if(e->Type==LA_MOUSEMOVE||e->Type==LA_L_MOUSE_DOWN){
  1647. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y);
  1648. our_DoCropping(ex,x,y);
  1649. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1650. }
  1651. return LA_RUNNING;
  1652. }
  1653. int ourmod_Action(laOperator* a, laEvent* e){
  1654. OurCanvasDraw *ex = a->This?a->This->EndInstance:0; if(!ex) return LA_CANCELED;
  1655. OurLayer* l=Our->CurrentLayer; OurBrush* ob=Our->CurrentBrush;
  1656. switch(Our->ActiveTool){
  1657. case OUR_TOOL_PAINT: if(!l||!ob) return LA_CANCELED;
  1658. return ourmod_Paint(a,e);
  1659. case OUR_TOOL_CROP:
  1660. return ourmod_Crop(a,e);
  1661. default: return LA_FINISHED;
  1662. }
  1663. return LA_RUNNING;
  1664. }
  1665. int ourinv_PickColor(laOperator* a, laEvent* e){
  1666. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1667. laUiItem* ui=ex->Base.ParentUi; ex->HideBrushCircle=1;
  1668. our_ReadWidgetColor(ex, e->x-ui->L, ui->B-e->y); laNotifyUsers("our.current_color");
  1669. return LA_RUNNING;
  1670. }
  1671. int ourmod_PickColor(laOperator* a, laEvent* e){
  1672. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1673. laUiItem* ui=ex->Base.ParentUi;
  1674. if(e->Type==LA_R_MOUSE_UP || e->Type==LA_L_MOUSE_UP || e->Type==LA_ESCAPE_DOWN){ ex->HideBrushCircle=0; return LA_FINISHED; }
  1675. if(e->Type==LA_MOUSEMOVE||e->Type==LA_R_MOUSE_DOWN){
  1676. our_ReadWidgetColor(ex, e->x-ui->L, ui->B-e->y); laNotifyUsers("our.current_color");
  1677. }
  1678. return LA_RUNNING;
  1679. }
  1680. int ourchk_CropToRef(laPropPack *This, laStringSplitor *ss){ if(Our->ShowRef&&Our->ShowBorder) return 1; return 0; }
  1681. int ourinv_CropToRef(laOperator* a, laEvent* e){
  1682. if((!Our->ShowRef) || (!Our->ShowBorder)) return LA_FINISHED;
  1683. real W,H,W2,H2; OUR_GET_REF_SIZE(W,H)
  1684. real dpc=OUR_DPC; W*=dpc; H*=dpc; W2=W/2; H2=H/2;
  1685. Our->X=-W2; Our->W=W; Our->Y=H2; Our->H=H;
  1686. laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); laNotifyUsers("our.canvas");
  1687. return LA_FINISHED;
  1688. }
  1689. void ourget_CanvasIdentifier(void* unused, char* buf, char** ptr){
  1690. *ptr="Main canvas";
  1691. }
  1692. void* ourget_FirstLayer(void* unused, void* unused1){
  1693. return Our->Layers.pFirst;
  1694. }
  1695. void* ourget_FirstBrush(void* unused, void* unused1){
  1696. return Our->Brushes.pFirst;
  1697. }
  1698. void* ourget_our(void* unused, void* unused1){
  1699. return Our;
  1700. }
  1701. void ourget_LayerTileStart(OurLayer* l, int* xy){
  1702. our_LayerEnsureImageBuffer(l, 1); xy[0]=Our->ImageX; xy[1]=Our->ImageY+Our->ImageH;
  1703. }
  1704. void ourset_LayerTileStart(OurLayer* l, int* xy){
  1705. Our->TempLoadX = xy[0]; Our->TempLoadY = xy[1];
  1706. }
  1707. void* ourget_LayerImage(OurLayer* l, int* r_size, int* r_is_copy){
  1708. static int LayerCount=0; static int CurrentLayer=0;
  1709. void* buf=0; if(!l->Item.pPrev){ LayerCount=lstCountElements(&Our->Layers); CurrentLayer=0; }
  1710. CurrentLayer++; laShowProgress((real)CurrentLayer/LayerCount,-1);
  1711. if(!our_LayerEnsureImageBuffer(l, 0)){ *r_is_copy=0; return 0; }
  1712. our_LayerToImageBuffer(l, 0);
  1713. 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; }
  1714. *r_is_copy=0; return buf;
  1715. }
  1716. void ourset_LayerImage(OurLayer* l, void* data, int size){
  1717. if(!data) return;
  1718. our_LayerImportPNG(l, 0, data, 0, 0, 1, Our->TempLoadX, Our->TempLoadY);
  1719. }
  1720. void ourset_LayerMove(OurLayer* l, int move){
  1721. if(move<0 && l->Item.pPrev){ lstMoveUp(&Our->Layers, l); laNotifyUsers("our.canvas"); }
  1722. elif(move>0 && l->Item.pNext){ lstMoveDown(&Our->Layers, l); laNotifyUsers("our.canvas"); }
  1723. }
  1724. void ourset_LayerAlpha(OurLayer* l, real a){
  1725. l->Transparency=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1726. }
  1727. void ourset_LayerHide(OurLayer* l, int hide){
  1728. l->Hide=hide; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1729. }
  1730. void ourset_LayerBlendMode(OurLayer* l, int mode){
  1731. l->BlendMode=mode; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1732. }
  1733. void ourset_BrushMove(OurBrush* b, int move){
  1734. if(move<0 && b->Item.pPrev){ lstMoveUp(&Our->Brushes, b); laNotifyUsers("our.tools.brushes"); }
  1735. elif(move>0 && b->Item.pNext){ lstMoveDown(&Our->Brushes, b); laNotifyUsers("our.tools.brushes"); }
  1736. }
  1737. void ourset_BackgroundColor(void* unused, real* arr){
  1738. memcpy(Our->BackgroundColor, arr, sizeof(real)*3); laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1739. }
  1740. void ourset_BorderAlpha(void* unused, real a){
  1741. Our->BorderAlpha=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1742. }
  1743. void ourset_Tool(void* unused, int a){
  1744. Our->Tool=a; laNotifyUsers("our.canvas");
  1745. }
  1746. void ourset_ShowBorder(void* unused, int a){
  1747. Our->ShowBorder=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1748. }
  1749. void ourset_ColorInterpretation(void* unused, int a){
  1750. Our->ColorInterpretation=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1751. }
  1752. void ourset_ShowTiles(void* unused, int a){ Our->ShowTiles=a; laNotifyUsers("our.canvas"); }
  1753. void ourset_ShowStripes(void* unused, int a){ Our->ShowStripes=a; laNotifyUsers("our.canvas"); }
  1754. void ourset_CanvasSize(void* unused, int* wh){
  1755. 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);
  1756. }
  1757. void ourset_CanvasPosition(void* unused, int* xy){
  1758. Our->X=xy[0]; Our->Y=xy[1]; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1759. }
  1760. void ourset_LayerPosition(OurLayer* l, int* xy){
  1761. l->OffsetX=xy[0]; l->OffsetY=xy[1]; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1762. }
  1763. void ourreset_Canvas(OurPaint* op){
  1764. while(op->Layers.pFirst){ our_RemoveLayer(op->Layers.pFirst,1); }
  1765. }
  1766. void ourreset_Preferences(OurPaint* op){
  1767. return; //does nothing.
  1768. }
  1769. void ourpropagate_Tools(OurPaint* p, laUDF* udf, int force){
  1770. for(OurBrush* b=p->Brushes.pFirst;b;b=b->Item.pNext){
  1771. if(force || !laget_InstanceActiveUDF(b)){ laset_InstanceUDF(b, udf); }
  1772. }
  1773. }
  1774. void ourset_CurrentBrush(void* unused, OurBrush* b){
  1775. real r; if(Our->LockRadius) r=Our->CurrentBrush?Our->CurrentBrush->Size:15;
  1776. OurBrush* ob=Our->CurrentBrush;
  1777. if(ob){
  1778. if(ob->DefaultAsEraser){ Our->SaveEraserSize=ob->Size; }else{ Our->SaveBrushSize=ob->Size; }
  1779. }
  1780. Our->CurrentBrush=b;
  1781. if(b->DefaultAsEraser){ Our->Erasing=1; Our->EraserID=b->Binding; if(Our->LockRadius) b->Size=Our->SaveEraserSize?Our->SaveEraserSize:r; }
  1782. else{ Our->Erasing=0; Our->PenID=b->Binding; if(Our->LockRadius) b->Size=Our->SaveBrushSize?Our->SaveBrushSize:r; }
  1783. laNotifyUsers("our.tools.current_brush"); laGraphRequestRebuild();
  1784. }
  1785. void ourset_CurrentLayer(void* unused, OurLayer*l){
  1786. memAssignRef(Our, &Our->CurrentLayer, l); laNotifyUsers("our.canvas");
  1787. }
  1788. void ourset_ShowRef(void* unused, int c){ Our->ShowRef=c; laNotifyUsers("our.canvas"); }
  1789. void ourset_RefCategory(void* unused, int c){ Our->RefCategory=c; laNotifyUsers("our.canvas"); }
  1790. void ourset_RefSize(void* unused, int c){ Our->RefSize=c; laNotifyUsers("our.canvas"); }
  1791. void ourset_RefOrientation(void* unused, int c){ Our->RefOrientation=c; laNotifyUsers("our.canvas"); }
  1792. void ourset_RefMargins(void* unused, real* v){ tnsVectorSet2v(Our->RefMargins,v);laNotifyUsers("our.canvas"); }
  1793. void ourset_RefPaddings(void* unused, real* v){ tnsVectorSet2v(Our->RefPaddings,v); laNotifyUsers("our.canvas"); }
  1794. void ourset_RefMiddleMargin(void* unused, real v){ Our->RefMargins[2]=v;laNotifyUsers("our.canvas"); }
  1795. void ourset_RefAlpha(void* unused, real a){
  1796. Our->RefAlpha=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1797. }
  1798. void ourset_BrushPage(void* unused, int a){ Our->BrushPage=a; laNotifyUsers("our.tools.brushes"); }
  1799. void ourset_BrushShowInPages(OurBrush* b, int index, int v){
  1800. int flag=(1<<index); if(v){ b->ShowInPages|=flag; }else{ b->ShowInPages&=(~flag); }
  1801. laNotifyUsers("our.tools.brushes");
  1802. }
  1803. void ourget_BrushShowInPages(OurBrush* b, int* v){
  1804. v[0]=(b->ShowInPages&(1<<0))?1:0;
  1805. v[1]=(b->ShowInPages&(1<<1))?1:0;
  1806. v[2]=(b->ShowInPages&(1<<2))?1:0;
  1807. }
  1808. int ourfilter_BrushInPage(void* Unused, OurBrush* b){
  1809. if((!Our->BrushPage) || Our->BrushPage==OUR_BRUSH_PAGE_LIST) return 1;
  1810. if(Our->BrushPage==1 && (b->ShowInPages&(1<<0))) return 1;
  1811. if(Our->BrushPage==2 && (b->ShowInPages&(1<<1))) return 1;
  1812. if(Our->BrushPage==3 && (b->ShowInPages&(1<<2))) return 1;
  1813. return 0;
  1814. }
  1815. #define OUR_ADD_PRESSURE_SWITCH(p) \
  1816. laAddEnumItemAs(p,"NONE","None","Not using pressure",0,0);\
  1817. laAddEnumItemAs(p,"ENABLED","Enabled","Using pressure",1,0);
  1818. void ourui_MenuButtons(laUiList *uil, laPropPack *pp, laPropPack *actinst, laColumn *extracol, int context){
  1819. laUiList *muil; laColumn *mc,*c = laFirstColumn(uil);
  1820. muil = laMakeMenuPage(uil, c, "File");{
  1821. mc = laFirstColumn(muil);
  1822. laShowLabel(muil, mc, "Our Paint", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1823. laShowItem(muil, mc, 0, "LA_udf_read");
  1824. laShowItemFull(muil, mc, 0, "LA_udf_read",0,"mode=append;text=Append",0,0);
  1825. laShowSeparator(muil,mc);
  1826. laShowItemFull(muil, mc, 0, "LA_managed_save",0,"quiet=true;text=Save;",0,0);
  1827. laShowItem(muil, mc, 0, "LA_managed_save");
  1828. laShowLabel(muil, mc, "Image", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1829. laShowItem(muil, mc, 0, "OUR_export_image");
  1830. laShowLabel(muil, mc, "Layer", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1831. laShowItem(muil, mc, 0, "OUR_import_layer");
  1832. laShowItem(muil, mc, 0, "OUR_export_layer");
  1833. laShowLabel(muil, mc, "Others", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1834. laShowItem(muil, mc, 0, "LA_terminate_program");
  1835. //laui_DefaultMenuButtonsFileEntries(muil,pp,actinst,extracol,0);
  1836. }
  1837. muil = laMakeMenuPage(uil, c, "Edit");{
  1838. mc = laFirstColumn(muil); laui_DefaultMenuButtonsEditEntries(muil,pp,actinst,extracol,0);
  1839. }
  1840. muil = laMakeMenuPage(uil, c, "Options"); {
  1841. mc = laFirstColumn(muil);
  1842. laShowLabel(muil, mc, "Settings", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1843. laShowItemFull(muil, mc, 0, "LA_panel_activator", 0, "panel_id=LAUI_user_preferences;", 0, 0);
  1844. laShowLabel(muil, mc, "Help", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1845. laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=📖;link=http://www.ChengduLittleA.com/ourpaintmanual;text=User Manual", 0, 0);
  1846. laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20230213211750;text=Release Notes", 0, 0);
  1847. 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);
  1848. laShowLabel(muil, mc, "Information", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1849. laShowItemFull(muil, mc, 0, "LA_panel_activator", 0, "panel_id=LAUI_about;text=About;", 0, 0);
  1850. }
  1851. }
  1852. void ourui_ToolExtras(laUiList *uil, laPropPack *pp, laPropPack *actinst, laColumn *extracol, int context){
  1853. laColumn *c = laFirstColumn(uil);
  1854. laShowItemFull(uil,c,0,"our.tool",0,0,0,0)->Flags|=LA_UI_FLAGS_EXPAND|LA_UI_FLAGS_ICON;
  1855. laShowItemFull(uil,c,0,"our.erasing",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0);
  1856. char str[100]; sprintf(str,"text=%s",MAIN.MenuProgramName);
  1857. 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;
  1858. laShowSeparator(uil,c)->Expand=1;
  1859. //laShowLabel(uil, c, MAIN.MenuProgramName, 0, 0)->Expand=1;
  1860. }
  1861. void ourPreFrame(){
  1862. if(MAIN.GraphNeedsRebuild){ ourRebuildBrushEval(); }
  1863. }
  1864. void ourPushEverything(){
  1865. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");
  1866. laFreeOlderDifferences(0);
  1867. for(OurLayer* ol=Our->Layers.pFirst;ol;ol=ol->Item.pNext){ our_LayerRefreshLocal(ol); }
  1868. }
  1869. void ourCleanUp(){
  1870. while(Our->Layers.pFirst){ our_RemoveLayer(Our->Layers.pFirst,1); }
  1871. while(Our->Brushes.pFirst){ our_RemoveBrush(Our->Brushes.pFirst); }
  1872. free(Our->icc_Clay);free(Our->icc_sRGB);free(Our->icc_LinearClay);free(Our->icc_LinearsRGB);
  1873. tnsDeleteTexture(Our->SmudgeTexture);
  1874. glDeleteShader(Our->CanvasShader); glDeleteProgram(Our->CanvasProgram);
  1875. glDeleteShader(Our->CompositionShader); glDeleteProgram(Our->CompositionProgram);
  1876. arrFree(&Our->Dabs,&Our->MaxDab);
  1877. }
  1878. void ourRegisterEverything(){
  1879. laPropContainer* pc; laKeyMapper* km; laProp* p; laSubProp* sp; laOperatorType* at;
  1880. laCreateOperatorType("OUR_show_splash","Show Splash","Show splash screen",0,0,0,ourinv_ShowSplash,0,0,0);
  1881. laCreateOperatorType("OUR_new_layer","New Layer","Create a new layer",0,0,0,ourinv_NewLayer,0,'+',0);
  1882. laCreateOperatorType("OUR_remove_layer","Remove Layer","Remove this layer",0,0,0,ourinv_RemoveLayer,0,U'🗴',0);
  1883. laCreateOperatorType("OUR_move_layer","Move Layer","Remove this layer",0,0,0,ourinv_MoveLayer,0,0,0);
  1884. laCreateOperatorType("OUR_merge_layer","Merge Layer","Merge this layer with the layer below it",ourchk_MergeLayer,0,0,ourinv_MergeLayer,0,0,0);
  1885. laCreateOperatorType("OUR_export_layer","Export Layer","Export this layer",ourchk_ExportLayer,0,0,ourinv_ExportLayer,ourmod_ExportLayer,U'🖫',0);
  1886. at=laCreateOperatorType("OUR_import_layer","Import Layer","Import a PNG into a layer",0,0,ourexit_ImportLayer,ourinv_ImportLayer,ourmod_ImportLayer,U'🗁',0);
  1887. at->UiDefine=ourui_ImportLayer; pc=laDefineOperatorProps(at, 1);
  1888. 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);
  1889. 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);
  1890. 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);
  1891. 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);
  1892. laAddEnumItemAs(p,"FLAT","Flat","Read the image as-is and don't do any color space transformations",OUR_PNG_READ_INPUT_FLAT,0);
  1893. laAddEnumItemAs(p,"ICC","Image ICC","Use the image built-in icc profile",OUR_PNG_READ_INPUT_ICC,0);
  1894. laAddEnumItemAs(p,"SRGB","Force sRGB","Interpret the image as sRGB regardless the image metadata",OUR_PNG_READ_INPUT_SRGB,0);
  1895. laAddEnumItemAs(p,"LINEAR_SRGB","Force Linear sRGB","Interpret the image as Linear sRGB regardless the image metadata",OUR_PNG_READ_INPUT_LINEAR_SRGB,0);
  1896. laAddEnumItemAs(p,"CLAY","Force Clay","Interpret the image as Clay (AdobeRGB 1998 compatible) regardless the image metadata",OUR_PNG_READ_INPUT_CLAY,0);
  1897. 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);
  1898. 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);
  1899. laAddEnumItemAs(p,"CANVAS","Follow Canvas","Transform the pixels into current canvas interpretation",OUR_PNG_READ_OUTPUT_CANVAS,0);
  1900. laAddEnumItemAs(p,"LINEAR_SRGB","Linear sRGB","Write sRGB pixels values into canvas regardless of the canvas interpretation",OUR_PNG_READ_OUTPUT_LINEAR_SRGB,0);
  1901. 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);
  1902. laCreateOperatorType("OUR_new_brush","New Brush","Create a new brush",0,0,0,ourinv_NewBrush,0,'+',0);
  1903. laCreateOperatorType("OUR_remove_brush","Remove Brush","Remove this brush",0,0,0,ourinv_RemoveBrush,0,U'🗴',0);
  1904. laCreateOperatorType("OUR_duplicate_brush","Duplicate Brush","Duplicate this brush",0,0,0,ourinv_DuplicateBrush,0,U'⎘',0);
  1905. laCreateOperatorType("OUR_move_brush","Move Brush","Remove this brush",0,0,0,ourinv_MoveBrush,0,0,0);
  1906. laCreateOperatorType("OUR_brush_quick_switch","Brush Quick Switch","Brush quick switch",0,0,0,ourinv_BrushQuickSwitch,0,0,0);
  1907. laCreateOperatorType("OUR_brush_resize","Brush Resize","Brush resize",0,0,0,ourinv_BrushResize,0,0,0);
  1908. laCreateOperatorType("OUR_action","Action","Doing action on a layer",0,0,0,ourinv_Action,ourmod_Action,0,LA_EXTRA_TO_PANEL);
  1909. laCreateOperatorType("OUR_pick","Pick color","Pick color on the widget",0,0,0,ourinv_PickColor,ourmod_PickColor,0,LA_EXTRA_TO_PANEL);
  1910. at=laCreateOperatorType("OUR_export_image","Export Image","Export the image",ourchk_ExportImage,0,ourexit_ExportImage,ourinv_ExportImage,ourmod_ExportImage,U'🖼',0);
  1911. at->UiDefine=ourui_ExportImage; pc=laDefineOperatorProps(at, 1);
  1912. 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);
  1913. laAddEnumItemAs(p,"D8","8 Bits","Use 8 bits per channel",OUR_EXPORT_BIT_DEPTH_8,0);
  1914. laAddEnumItemAs(p,"D16","16 Bits","Use 16 bits per channel",OUR_EXPORT_BIT_DEPTH_16,0);
  1915. 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);
  1916. laAddEnumItemAs(p,"FLAT","Flat","Export pixels in current canvans linear color space",OUR_EXPORT_COLOR_MODE_FLAT,0);
  1917. laAddEnumItemAs(p,"SRGB","sRGB","Convert pixels into non-linear sRGB (Most used)",OUR_EXPORT_COLOR_MODE_SRGB,0);
  1918. laAddEnumItemAs(p,"CLAY","Clay","Convert pixels into non-linear Clay (AdobeRGB 1998 compatible)",OUR_EXPORT_COLOR_MODE_CLAY,0);
  1919. laCreateOperatorType("OUR_toggle_erasing","Toggle Erasing","Toggle erasing",0,0,0,ourinv_ToggleErase,0,0,0);
  1920. laCreateOperatorType("OUR_crop_to_ref","Crop To Ref","Crop to reference lines",ourchk_CropToRef,0,0,ourinv_CropToRef,0,0,0);
  1921. laRegisterUiTemplate("panel_canvas", "Canvas", ourui_CanvasPanel, 0, 0,"Our Paint", GL_RGBA16F,25,25);
  1922. laRegisterUiTemplate("panel_layers", "Layers", ourui_LayersPanel, 0, 0,0, 0,10,15);
  1923. laRegisterUiTemplate("panel_tools", "Tools", ourui_ToolsPanel, 0, 0,0, 0,10,20);
  1924. laRegisterUiTemplate("panel_brushes", "Brushes", ourui_BrushesPanel, 0, 0,0, 0,10,15);
  1925. laRegisterUiTemplate("panel_color", "Color", ourui_ColorPanel, 0, 0,0, GL_RGBA16F,0,0);
  1926. laRegisterUiTemplate("panel_brush_nodes", "Brush Nodes", ourui_BrushPage, 0, 0,0, 0,25,30);
  1927. pc=laDefineRoot();
  1928. laAddSubGroup(pc,"our","Our","OurPaint main","our_paint",0,0,0,-1,ourget_our,0,0,0,0,0,0,LA_UDF_SINGLE);
  1929. pc=laAddPropertyContainer("our_paint","Our Paint","OurPaint main",0,0,sizeof(OurPaint),0,0,1);
  1930. laAddSubGroup(pc,"canvas","Canvas","OurPaint canvas","our_canvas",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  1931. laAddSubGroup(pc,"tools","Tools","OurPaint tools","our_tools",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  1932. laAddSubGroup(pc,"preferences","Preferences","OurPaint preferences","our_preferences",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  1933. 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);
  1934. 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);
  1935. laAddEnumItemAs(p,"PAINT","Paint","Paint stuff on the canvas",OUR_TOOL_PAINT,U'🖌');
  1936. laAddEnumItemAs(p,"CROP","Cropping","Crop the focused region",OUR_TOOL_CROP,U'🖼');
  1937. 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);
  1938. laAddEnumItemAs(p,"NONE","Unlocked","You can change background color",0,0);
  1939. laAddEnumItemAs(p,"LOCK","Locked","Background color is locked to prevent accidental changes",1,U'🔏');
  1940. 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);
  1941. laAddEnumItemAs(p,"FALSE","Draw","Is drawing mode",0,0);
  1942. laAddEnumItemAs(p,"TRUE","Erase","Is erasing mode",1,0);
  1943. 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);
  1944. laAddEnumItemAs(p,"ALL","~","Show all brushes",0,'~');
  1945. laAddEnumItemAs(p,"P1","1","Show brush page 1",1,'1');
  1946. laAddEnumItemAs(p,"P2","2","Show brush page 2",2,'2');
  1947. laAddEnumItemAs(p,"P3","3","Show brush page 3",3,'3');
  1948. laAddEnumItemAs(p,"LIST","=","Show brushes as a list",OUR_BRUSH_PAGE_LIST,L'☰');
  1949. pc=laAddPropertyContainer("our_preferences","Our Preferences","OurPaint preferences",0,0,sizeof(OurPaint),0,0,1);
  1950. laPropContainerExtraFunctions(pc,0,ourreset_Preferences,0,0,0);
  1951. 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);
  1952. laAddEnumItemAs(p,"FALSE","No","Don't lock radius",0,0);
  1953. laAddEnumItemAs(p,"TRUE","Yes","Lock radius when changing brushes",1,0);
  1954. 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);
  1955. laAddEnumItemAs(p,"FALSE","No","Don't show brush circle",0,0);
  1956. laAddEnumItemAs(p,"TRUE","Yes","Show brush circle on hover",1,0);
  1957. 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);
  1958. laAddEnumItemAs(p,"FALSE","No","Don't allow non-pressure device inputs",0,0);
  1959. laAddEnumItemAs(p,"TRUE","Yes","Allow non-pressure device inputs such as a mouse",1,0);
  1960. 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);
  1961. 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);
  1962. laAddEnumItemAs(p,"FALSE","No","Don't show debug tiles on the canvas",0,0);
  1963. laAddEnumItemAs(p,"TRUE","Yes","Show debug tiles on the canvas",1,0);
  1964. 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);
  1965. laAddEnumItemAs(p,"D8","8 Bits","Use 8 bits per channel",OUR_EXPORT_BIT_DEPTH_8,0);
  1966. laAddEnumItemAs(p,"D16","16 Bits","Use 16 bits per channel",OUR_EXPORT_BIT_DEPTH_16,0);
  1967. 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);
  1968. laAddEnumItemAs(p,"FLAT","Flat","Export pixels in current canvans linear color space",OUR_EXPORT_COLOR_MODE_FLAT,0);
  1969. laAddEnumItemAs(p,"SRGB","sRGB","Convert pixels into non-linear sRGB (Most used)",OUR_EXPORT_COLOR_MODE_SRGB,0);
  1970. laAddEnumItemAs(p,"CLAY","Clay","Convert pixels into non-linear Clay (AdobeRGB 1998 compatible)",OUR_EXPORT_COLOR_MODE_CLAY,0);
  1971. 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);
  1972. 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);
  1973. 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);
  1974. laAddEnumItemAs(p,"NONE","None","Use regular RGB mixing for brushes",0,0);
  1975. laAddEnumItemAs(p,"SPECTRAL","Spectral","Use spectral mixing for brushes",1,0);
  1976. 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);
  1977. 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);
  1978. laAddEnumItemAs(p,"FALSE","No","Don't show visual reference stripes",0,0);
  1979. laAddEnumItemAs(p,"TRUE","Yes","Show visual reference stripes at the top and bottom of the canvas",1,0);
  1980. pc=laAddPropertyContainer("our_tools","Our Tools","OurPaint tools",0,0,sizeof(OurPaint),0,0,1);
  1981. laPropContainerExtraFunctions(pc,0,0,0,ourpropagate_Tools,0);
  1982. sp=laAddSubGroup(pc,"brushes","Brushes","Brushes","our_brush",0,0,ourui_Brush,offsetof(OurPaint,CurrentBrush),0,0,0,ourset_CurrentBrush,0,0,offsetof(OurPaint,Brushes),0);
  1983. sp->UiFilter=ourfilter_BrushInPage;
  1984. 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);
  1985. pc=laAddPropertyContainer("our_brush","Our Brush","OurPaint brush",0,0,sizeof(OurBrush),0,0,2);
  1986. laAddStringProperty(pc,"name","Name","Name of the brush",0,0,0,0,1,offsetof(OurBrush,Name),0,0,0,0,LA_AS_IDENTIFIER);
  1987. 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);
  1988. 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);
  1989. 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);
  1990. 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);
  1991. 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);
  1992. 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);
  1993. 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);
  1994. 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);
  1995. 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);
  1996. 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);
  1997. 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);
  1998. 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);
  1999. 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);
  2000. 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);
  2001. 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);
  2002. 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);
  2003. 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);
  2004. laAddStringProperty(pc,"c1_name","C1 Name","Custom input 1 name",0,0,0,0,1,offsetof(OurBrush,Custom1Name),0,0,0,0,0);
  2005. laAddStringProperty(pc,"c2_name","C2 Name","Custom input 2 name",0,0,0,0,1,offsetof(OurBrush,Custom2Name),0,0,0,0,0);
  2006. 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);
  2007. OUR_ADD_PRESSURE_SWITCH(p);
  2008. 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);
  2009. OUR_ADD_PRESSURE_SWITCH(p);
  2010. 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);
  2011. OUR_ADD_PRESSURE_SWITCH(p);
  2012. 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);
  2013. OUR_ADD_PRESSURE_SWITCH(p);
  2014. 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);
  2015. OUR_ADD_PRESSURE_SWITCH(p);
  2016. 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);
  2017. laAddEnumItemAs(p,"NONE","None","Not using nodes",0,0);
  2018. laAddEnumItemAs(p,"ENABLED","Enabled","Using nodes",1,0);
  2019. 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);
  2020. 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);
  2021. laAddEnumItemAs(p,"NONE","None","Default as brush",0,0);
  2022. laAddEnumItemAs(p,"ENABLED","Enabled","Default as eraser",1,0);
  2023. 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);
  2024. laAddEnumItemAs(p,"NONE","None","Don't show brush in this page",0,' ');
  2025. laAddEnumItemAs(p,"SHOWN","Shown","Show brush in this page",1,'*');
  2026. laAddOperatorProperty(pc,"move","Move","Move brush","OUR_move_brush",0,0);
  2027. laAddOperatorProperty(pc,"remove","Remove","Remove brush","OUR_remove_brush",U'🗴',0);
  2028. laAddOperatorProperty(pc,"duplicate","Duplicate","Duplicate brush","OUR_duplicate_brush",U'⎘',0);
  2029. pc=laAddPropertyContainer("our_canvas","Our Canvas","OurPaint canvas",0,0,sizeof(OurPaint),0,0,1);
  2030. laPropContainerExtraFunctions(pc,0,ourreset_Canvas,0,0,0);
  2031. Our->CanvasSaverDummyProp=laPropContainerManageable(pc, offsetof(OurPaint,CanvasSaverDummyList));
  2032. laAddStringProperty(pc,"identifier","Identifier","Canvas identifier placeholder",0,0,0,0,0,0,0,ourget_CanvasIdentifier,0,0,0);
  2033. 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);
  2034. 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);
  2035. 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);
  2036. 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);
  2037. 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);
  2038. 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);
  2039. laAddEnumItemAs(p,"NONE","None","No textured background",0,0);
  2040. laAddEnumItemAs(p,"CANVAS","Canvas","Background mimics canvas texture",1,0);
  2041. laAddEnumItemAs(p,"PAPER","Paper","Background mimics paper texture",2,0);
  2042. 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);
  2043. 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);
  2044. 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);
  2045. 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);
  2046. laAddEnumItemAs(p,"FALSE","No","Dont' show border on the canvas",0,0);
  2047. laAddEnumItemAs(p,"TRUE","Yes","Show border on the canvas",1,0);
  2048. 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);
  2049. laAddEnumItemAs(p,"LINEAR_SRGB","Linear sRGB","Interpret the color values as if they are in Linear sRGB color space",OUR_CANVAS_INTERPRETATION_SRGB,0);
  2050. 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);
  2051. 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);
  2052. 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);
  2053. laAddEnumItemAs(p,"NONE","None","Don't show reference lines",0,0);
  2054. laAddEnumItemAs(p,"BORDER","Border","Show reference lines like paper boundaries",1,0);
  2055. laAddEnumItemAs(p,"SPREAD","Spread","Show double page spread",2,0);
  2056. 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);
  2057. laAddEnumItemAs(p,"A","A","A series ISO 216 / DIN 476",0,0);
  2058. laAddEnumItemAs(p,"B","B","B series ISO 216 / DIN 476",1,0);
  2059. laAddEnumItemAs(p,"K","2nK","East-Asian 2nK paper sizes",2,0);
  2060. 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);
  2061. #define _STR(a) #a
  2062. #define ADD_SIZE(a) laAddEnumItemAs(p,"SIZE"_STR(a),_STR(a),"SIZE"_STR(a),a,0);
  2063. ADD_SIZE(0);ADD_SIZE(1);ADD_SIZE(2);ADD_SIZE(3);ADD_SIZE(4);ADD_SIZE(5);ADD_SIZE(6);ADD_SIZE(7);
  2064. #undef ADD_SIZE
  2065. #undef _STR
  2066. 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);
  2067. laAddEnumItemAs(p,"H","Horizontal","Horizontal",0,L'▭');
  2068. laAddEnumItemAs(p,"V","Vertical","Vertical",1,L'▯');
  2069. 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);
  2070. 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);
  2071. 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);
  2072. 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);
  2073. pc=laAddPropertyContainer("our_layer","Our Layer","OurPaint layer",0,0,sizeof(OurLayer),0,0,1);
  2074. laPropContainerExtraFunctions(pc,ourbeforefree_Layer,ourbeforefree_Layer,0,0,0);
  2075. laAddStringProperty(pc,"name","Name","Name of the layer",0,0,0,0,1,offsetof(OurLayer,Name),0,0,0,0,LA_AS_IDENTIFIER);
  2076. 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);
  2077. 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);
  2078. 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);
  2079. 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);
  2080. laAddEnumItemAs(p,"NONE","Paintable","You can paint on this layer",0,U'🖌');
  2081. laAddEnumItemAs(p,"LOCK","Locked","This layer is locked from modification",1,U'🔏');
  2082. 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);
  2083. laAddEnumItemAs(p,"NONE","Visible","Layer is visible",0,U'🌑');
  2084. laAddEnumItemAs(p,"HIDE","Hidden","Layer is hidden",1,U'🌔');
  2085. 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);
  2086. 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);
  2087. laAddEnumItemAs(p,"NORMAL","Normal","Normal alpha blend",OUR_BLEND_NORMAL,0);
  2088. laAddEnumItemAs(p,"ADD","Add","Pixel values are simply added together",OUR_BLEND_ADD,0);
  2089. laAddRawProperty(pc,"image","Image","The image data of this tile",0,0,ourget_LayerImage,ourset_LayerImage,LA_UDF_ONLY);
  2090. laAddOperatorProperty(pc,"move","Move","Move Layer","OUR_move_layer",0,0);
  2091. laAddOperatorProperty(pc,"remove","Remove","Remove layer","OUR_remove_layer",U'🗴',0);
  2092. laAddOperatorProperty(pc,"merge","Merge","Merge Layer","OUR_merge_layer",U'🠳',0);
  2093. laCanvasTemplate* ct=laRegisterCanvasTemplate("our_CanvasDraw", "our_canvas", ourextramod_Canvas, our_CanvasDrawCanvas, our_CanvasDrawOverlay, our_CanvasDrawInit, la_CanvasDestroy);
  2094. pc = laCanvasHasExtraProps(ct,sizeof(OurCanvasDraw),2);
  2095. km = &ct->KeyMapper;
  2096. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_MOUSE_WHEEL_DOWN, 0, "direction=out");
  2097. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_MOUSE_WHEEL_UP, 0, "direction=in");
  2098. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_KEY_DOWN, ',', "direction=out");
  2099. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_KEY_DOWN, '.', "direction=in");
  2100. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, LA_KEY_CTRL, LA_M_MOUSE_DOWN, 0, "mode=mouse;lock=true;");
  2101. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, LA_KEY_ALT, LA_L_MOUSE_DOWN, 0, 0);
  2102. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, 0, LA_M_MOUSE_DOWN, 0, 0);
  2103. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, 0, LA_KEY_DOWN, ' ', 0);
  2104. laAssignNewKey(km, 0, "OUR_action", LA_KM_SEL_UI_EXTRA, 0, LA_L_MOUSE_DOWN, 0, 0);
  2105. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, 0, LA_R_MOUSE_DOWN, 0, 0);
  2106. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, LA_KEY_CTRL, LA_L_MOUSE_DOWN, 0, 0);
  2107. km=&MAIN.KeyMap; char buf[128];
  2108. for(int i=0;i<=9;i++){
  2109. sprintf(buf,"binding=%d",i); laAssignNewKey(km, 0, "OUR_brush_quick_switch", 0, 0, LA_KEY_DOWN, '0'+i, buf);
  2110. }
  2111. laAssignNewKey(km, 0, "OUR_brush_resize", 0, 0, LA_KEY_DOWN, '[', "direction=smaller");
  2112. laAssignNewKey(km, 0, "OUR_brush_resize", 0, 0, LA_KEY_DOWN, ']', "direction=bigger");
  2113. laAssignNewKey(km, 0, "OUR_toggle_erasing", 0, 0, LA_KEY_DOWN, 'e', 0);
  2114. laAssignNewKey(km, 0, "LA_undo", 0, LA_KEY_CTRL, LA_KEY_DOWN, ']', 0);
  2115. laAssignNewKey(km, 0, "LA_redo", 0, LA_KEY_CTRL, LA_KEY_DOWN, '[', 0);
  2116. laSetMenuBarTemplates(ourui_MenuButtons, ourui_ToolExtras, OUR_PAINT_NAME_STRING);
  2117. ourRegisterNodes();
  2118. laSaveProp("our.canvas");
  2119. laSaveProp("our.tools");
  2120. laGetSaverDummy(Our,Our->CanvasSaverDummyProp);
  2121. laAddExtraExtension(LA_FILETYPE_UDF,"ourpaint","ourbrush",0);
  2122. laAddExtraPreferencePath("our.preferences");
  2123. laAddExtraPreferencePage("Our Paint",ourui_OurPreference);
  2124. laSetAboutTemplates(ourui_AboutContent,ourui_AboutVersion,ourui_AboutAuthor);
  2125. laSetFrameCallbacks(ourPreFrame,0,0);
  2126. laSetDiffCallback(ourPushEverything);
  2127. laSetCleanupCallback(ourCleanUp);
  2128. ourMakeTranslations();
  2129. }
  2130. int ourInit(){
  2131. Our=memAcquire(sizeof(OurPaint));
  2132. ourRegisterEverything();
  2133. our_InitColorProfiles();
  2134. char error[1024]; int status;
  2135. Our->SmudgeTexture=tnsCreate2DTexture(GL_RGBA16,256,1,0);
  2136. Our->CanvasShader = glCreateShader(GL_COMPUTE_SHADER);
  2137. const GLchar* source1 = OUR_CANVAS_SHADER;
  2138. glShaderSource(Our->CanvasShader, 1, &source1, NULL); glCompileShader(Our->CanvasShader);
  2139. glGetShaderiv(Our->CanvasShader, GL_COMPILE_STATUS, &status);
  2140. if (status == GL_FALSE){
  2141. glGetShaderInfoLog(Our->CanvasShader, sizeof(error), 0, error); printf("Canvas shader error:\n%s", error); glDeleteShader(Our->CanvasShader); return 0;
  2142. }
  2143. Our->CanvasProgram = glCreateProgram();
  2144. glAttachShader(Our->CanvasProgram, Our->CanvasShader); glLinkProgram(Our->CanvasProgram);
  2145. glGetProgramiv(Our->CanvasProgram, GL_LINK_STATUS, &status);
  2146. if (status == GL_FALSE){
  2147. glGetProgramInfoLog(Our->CanvasProgram, sizeof(error), 0, error); printf("Canvas program Linking error:\n%s", error); return 0;
  2148. }
  2149. Our->CompositionShader = glCreateShader(GL_COMPUTE_SHADER);
  2150. const GLchar* source2 = OUR_COMPOSITION_SHADER;
  2151. glShaderSource(Our->CompositionShader, 1, &source2, NULL); glCompileShader(Our->CompositionShader);
  2152. glGetShaderiv(Our->CompositionShader, GL_COMPILE_STATUS, &status);
  2153. if (status == GL_FALSE){
  2154. glGetShaderInfoLog(Our->CompositionShader, sizeof(error), 0, error); printf("Composition shader error:\n%s", error); glDeleteShader(Our->CompositionShader); return 0;
  2155. }
  2156. Our->CompositionProgram = glCreateProgram();
  2157. glAttachShader(Our->CompositionProgram, Our->CompositionShader); glLinkProgram(Our->CompositionProgram);
  2158. glGetProgramiv(Our->CompositionProgram, GL_LINK_STATUS, &status);
  2159. if (status == GL_FALSE){
  2160. glGetProgramInfoLog(Our->CompositionProgram, sizeof(error), 0, error); printf("Composition program Linking error:\n%s", error); return 0;
  2161. }
  2162. Our->uCanvasType=glGetUniformLocation(Our->CanvasProgram,"uCanvasType");
  2163. Our->uCanvasRandom=glGetUniformLocation(Our->CanvasProgram,"uCanvasRandom");
  2164. Our->uCanvasFactor=glGetUniformLocation(Our->CanvasProgram,"uCanvasFactor");
  2165. Our->uImageOffset=glGetUniformLocation(Our->CanvasProgram,"uImageOffset");
  2166. Our->uBrushCorner=glGetUniformLocation(Our->CanvasProgram,"uBrushCorner");
  2167. Our->uBrushCenter=glGetUniformLocation(Our->CanvasProgram,"uBrushCenter");
  2168. Our->uBrushSize=glGetUniformLocation(Our->CanvasProgram,"uBrushSize");
  2169. Our->uBrushHardness=glGetUniformLocation(Our->CanvasProgram,"uBrushHardness");
  2170. Our->uBrushSmudge=glGetUniformLocation(Our->CanvasProgram,"uBrushSmudge");
  2171. Our->uBrushRecentness=glGetUniformLocation(Our->CanvasProgram,"uBrushRecentness");
  2172. Our->uBrushColor=glGetUniformLocation(Our->CanvasProgram,"uBrushColor");
  2173. Our->uBrushSlender=glGetUniformLocation(Our->CanvasProgram,"uBrushSlender");
  2174. Our->uBrushAngle=glGetUniformLocation(Our->CanvasProgram,"uBrushAngle");
  2175. Our->uBrushDirection=glGetUniformLocation(Our->CanvasProgram,"uBrushDirection");
  2176. Our->uBrushForce=glGetUniformLocation(Our->CanvasProgram,"uBrushForce");
  2177. Our->uBrushGunkyness=glGetUniformLocation(Our->CanvasProgram,"uBrushGunkyness");
  2178. Our->uBrushErasing=glGetUniformLocation(Our->CanvasProgram,"uBrushErasing");
  2179. Our->uBrushRoutineSelection=glGetSubroutineUniformLocation(Our->CanvasProgram, GL_COMPUTE_SHADER, "uBrushRoutineSelection");
  2180. Our->RoutineDoDabs=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoDabs");
  2181. Our->RoutineDoSample=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoSample");
  2182. Our->uMixRoutineSelection=glGetSubroutineUniformLocation(Our->CanvasProgram, GL_COMPUTE_SHADER, "uMixRoutineSelection");
  2183. Our->RoutineDoMixNormal=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoMixNormal");
  2184. Our->RoutineDoMixSpectral=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoMixSpectral");
  2185. Our->uBlendMode=glGetUniformLocation(Our->CompositionProgram,"uBlendMode");
  2186. Our->uAlphaTop=glGetUniformLocation(Our->CompositionProgram,"uAlphaTop");
  2187. Our->uAlphaBottom=glGetUniformLocation(Our->CompositionProgram,"uAlphaBottom");
  2188. Our->DefaultScale=0.5;
  2189. Our->X=-2800/2; Our->W=2800;
  2190. Our->Y=2400/2; Our->H=2400;
  2191. Our->BorderAlpha=0.6;
  2192. Our->SpectralMode=1;
  2193. Our->BackgroundType=2;
  2194. Our->BackgroundFactor=1;
  2195. srand(time(0));
  2196. Our->BackgroundRandom=rand()-RAND_MAX/2;
  2197. Our->LockRadius=1;
  2198. Our->EnableBrushCircle=1;
  2199. Our->PaintUndoLimit=100;
  2200. Our->AllowNonPressure=1;
  2201. Our->BadEventsLimit=7;
  2202. Our->PenID=-1;
  2203. Our->EraserID=-1;
  2204. Our->RefAlpha=0.75;
  2205. Our->RefCategory=0;
  2206. Our->RefSize=4;
  2207. tnsVectorSet3(Our->RefMargins,1.5,1.5,1.0);
  2208. tnsVectorSet2(Our->RefPaddings,1.5,1.5);
  2209. tnsEnableShaderv(T->immShader);
  2210. tnsVectorSet3(Our->BackgroundColor,0.2,0.2,0.2);
  2211. our_NewLayer("Our Layer");
  2212. 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");
  2213. laMarkMemClean(ob); laMarkMemClean(Our->CanvasSaverDummyList.pFirst);
  2214. laAddRootDBInst("our.canvas");
  2215. Our->SplashImage=tnsNewImage(DATA_SPLASH);
  2216. Our->SplashImageHigh=tnsNewImage(DATA_SPLASH_HIGHDPI);
  2217. return 1;
  2218. }