*/}}

ouroperations.c 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848
  1. #include "ourpaint.h"
  2. #include "png.h"
  3. #include "lcms2.h"
  4. OurPaint *Our;
  5. extern LA MAIN;
  6. extern tnsMain* T;
  7. const char OUR_CANVAS_SHADER[]="#version 430\n\
  8. layout(local_size_x = 32, local_size_y = 32, local_size_z = 1) in;\n\
  9. layout(rgba16, binding = 0) uniform image2D img;\n\
  10. layout(rgba16, binding = 1) coherent uniform image2D smudge_buckets;\n\
  11. uniform ivec2 uBrushCorner;\n\
  12. uniform vec2 uBrushCenter;\n\
  13. uniform float uBrushSize;\n\
  14. uniform float uBrushHardness;\n\
  15. uniform float uBrushSmudge;\n\
  16. uniform float uBrushSlender;\n\
  17. uniform float uBrushAngle;\n\
  18. uniform float uBrushRecentness;\n\
  19. uniform vec4 uBrushColor;\n\
  20. uniform vec4 uBackgroundColor;\n\
  21. uniform int uBrushErasing;\n\
  22. float atan2(in float y, in float x){\n\
  23. bool s = (abs(x) > abs(y)); return mix(3.1415926535/2.0 - atan(x,y), atan(y,x), s);\n\
  24. }\n\
  25. vec2 rotate(vec2 v, float angle) {\n\
  26. float s = sin(angle); float c = cos(angle);\n\
  27. return mat2(c,-s,s,c) * v;\n\
  28. }\n\
  29. vec4 mix_over(vec4 colora, vec4 colorb){\n\
  30. vec4 c; c.a=colora.a+colorb.a*(1-colora.a);\n\
  31. c.rgb=(colora.rgb+colorb.rgb*(1-colora.a));\n\
  32. return c;\n\
  33. }\n\
  34. int dab(float d, vec4 color, float size, float hardness, float smudge, vec4 smudge_color, vec4 last_color, out vec4 final){\n\
  35. vec4 cc=color;\n\
  36. float fac=1-pow(d/size,1+1/(1-hardness+1e-4));\n\
  37. cc.a=color.a*fac*(1-smudge); cc.rgb=cc.rgb*cc.a;\n\
  38. float erasing=float(uBrushErasing);\n\
  39. cc=cc*(1-erasing);\n\
  40. vec4 c2=mix(last_color,smudge_color,smudge*fac*color.a);\n\
  41. c2=mix_over(cc,c2);\n\
  42. c2=mix(c2,c2*(1-fac*color.a),erasing);\n\
  43. final=c2;\n\
  44. return 1;\n\
  45. }\n\
  46. subroutine void BrushRoutines();\n\
  47. subroutine(BrushRoutines) void DoDabs(){\n\
  48. ivec2 px = ivec2(gl_GlobalInvocationID.xy)+uBrushCorner;\n\
  49. if(px.x<0||px.y<0||px.x>1024||px.y>1024) return;\n\
  50. vec2 fpx=vec2(px);\n\
  51. fpx=uBrushCenter+rotate(fpx-uBrushCenter,uBrushAngle);\n\
  52. fpx.x=uBrushCenter.x+(fpx.x-uBrushCenter.x)*(1+uBrushSlender);\n\
  53. float dd=distance(fpx,uBrushCenter); if(dd>uBrushSize) return;\n\
  54. vec4 dabc=imageLoad(img, px);\n\
  55. vec4 smudgec=mix(imageLoad(smudge_buckets,ivec2(1,0)),imageLoad(smudge_buckets,ivec2(0,0)),uBrushRecentness);\n\
  56. vec4 final_color;\n\
  57. dab(dd,uBrushColor,uBrushSize,uBrushHardness,uBrushSmudge,smudgec,dabc,final_color);\n\
  58. dabc=final_color;\n\
  59. imageStore(img, px, dabc);\n\
  60. }\n\
  61. subroutine(BrushRoutines) void DoSample(){\n\
  62. ivec2 p=ivec2(gl_GlobalInvocationID.xy);\n\
  63. if(p.y!=0) return;\n\
  64. vec2 sp=round(vec2(sin(float(p.x)),cos(float(p.x)))*uBrushSize);\n\
  65. ivec2 px=ivec2(sp)+uBrushCorner; if(px.x<0||px.y<0||px.x>1024||px.y>1024) return;\n\
  66. vec4 color=imageLoad(img, px);\n\
  67. imageStore(smudge_buckets,ivec2(p.x+128,0),color);\n\
  68. memoryBarrier();barrier();\n\
  69. if(uBrushErasing==0 || p.x!=0) return;\n\
  70. color=vec4(0,0,0,0); for(int i=0;i<32;i++){ color=color+imageLoad(smudge_buckets, ivec2(i+128,0)); }\n\
  71. color=color/64+imageLoad(img, uBrushCorner)/2; vec4 oldcolor=imageLoad(smudge_buckets, ivec2(0,0));\n\
  72. imageStore(smudge_buckets,ivec2(1,0),uBrushErasing==2?color:oldcolor);\n\
  73. imageStore(smudge_buckets,ivec2(0,0),color);\n\
  74. }\n\
  75. subroutine uniform BrushRoutines uBrushRoutineSelection;\n\
  76. \n\
  77. void main() {\n\
  78. uBrushRoutineSelection();\n\
  79. }\n\
  80. ";
  81. const char OUR_COMPOSITION_SHADER[]="#version 430\n\
  82. layout(local_size_x = 32, local_size_y = 32, local_size_z = 1) in;\n\
  83. layout(rgba16, binding = 0) uniform image2D top;\n\
  84. layout(rgba16, binding = 1) uniform image2D bottom;\n\
  85. uniform int uMode;\n\
  86. vec4 mix_over(vec4 colora, vec4 colorb){\n\
  87. vec4 c; c.a=colora.a+colorb.a*(1-colora.a);\n\
  88. c.rgb=(colora.rgb+colorb.rgb*(1-colora.a));\n\
  89. return c;\n\
  90. }\n\
  91. void main() {\n\
  92. ivec2 px=ivec2(gl_GlobalInvocationID.xy);\n\
  93. vec4 c1=imageLoad(top,px); vec4 c2=imageLoad(bottom,px);\n\
  94. imageStore(bottom,px,mix_over(c1,c2));\n\
  95. imageStore(top,px,vec4(0,0,0,0));\n\
  96. }";
  97. void our_LayerEnsureTiles(OurLayer* ol, real xmin,real xmax, real ymin,real ymax, int Aligned, int *tl, int *tr, int* tu, int* tb);
  98. void our_LayerEnsureTileDirect(OurLayer* ol, int col, int row);
  99. void our_RecordUndo(OurLayer* ol, real xmin,real xmax, real ymin,real ymax,int Aligned,int Push);
  100. void our_CanvasAlphaMix(uint16_t* target, uint16_t* source){
  101. real a_1=(real)(65535-source[3])/65535;
  102. target[3]=source[3]+target[3]*a_1; target[0]=source[0]+target[0]*a_1; target[1]=source[1]+target[1]*a_1; target[2]=source[2]+target[2]*a_1;
  103. }
  104. void our_InitRGBProfile(int Linear,cmsCIExyYTRIPLE* primaries_pre_quantized, void** ptr, int* psize, char* copyright, char* manufacturer, char* description){
  105. cmsCIExyY d65_srgb_adobe_specs = {0.3127, 0.3290, 1.0};
  106. cmsToneCurve*tonecurve; cmsToneCurve*curve[3];
  107. if(Linear){ tonecurve = cmsBuildGamma (NULL, 1.0f); }
  108. elif(Linear==2){
  109. tonecurve=cmsBuildGamma(NULL,2.19921875);
  110. }else{
  111. cmsFloat64Number srgb_parameters[5] = { 2.4, 1.0 / 1.055, 0.055 / 1.055, 1.0 / 12.92, 0.04045 };
  112. tonecurve=cmsBuildParametricToneCurve(NULL, 4, srgb_parameters);
  113. }
  114. curve[0] = curve[1] = curve[2] = tonecurve;
  115. cmsHPROFILE profile4 = cmsCreateRGBProfile (&d65_srgb_adobe_specs, primaries_pre_quantized, curve);
  116. cmsMLU *copy = cmsMLUalloc(NULL, 1);
  117. cmsMLUsetASCII(copy, "en", "US", copyright);
  118. cmsWriteTag(profile4, cmsSigCopyrightTag, copy);
  119. cmsMLU* manu = cmsMLUalloc(NULL, 1);
  120. cmsMLUsetASCII(manu, "en", "US", manufacturer);
  121. cmsWriteTag(profile4, cmsSigDeviceMfgDescTag, manu);
  122. cmsMLU *desc = cmsMLUalloc(NULL, 1);
  123. cmsMLUsetASCII(desc, "en", "US", description);
  124. cmsWriteTag(profile4, cmsSigProfileDescriptionTag, desc);
  125. cmsSaveProfileToMem(profile4, 0, psize);
  126. (*ptr)=calloc(1,*psize); cmsSaveProfileToMem(profile4, *ptr, psize);
  127. cmsMLUfree(copy); cmsMLUfree(manu); cmsMLUfree(desc); cmsFreeToneCurve(tonecurve); cmsCloseProfile(profile4);
  128. }
  129. void our_InitColorProfiles(){
  130. cmsCIExyYTRIPLE srgb_primaries_pre_quantized = { {0.639998686, 0.330010138, 1.0}, {0.300003784, 0.600003357, 1.0}, {0.150002046, 0.059997204, 1.0} };
  131. cmsCIExyYTRIPLE adobe_primaries_prequantized = { {0.639996511, 0.329996864, 1.0}, {0.210005295, 0.710004866, 1.0}, {0.149997606, 0.060003644, 1.0} };
  132. 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";
  133. our_InitRGBProfile(1,&srgb_primaries_pre_quantized,&Our->icc_LinearsRGB,&Our->iccsize_LinearsRGB,"Copyright Yiming 2022.",manu,"Yiming's linear sRGB icc profile.");
  134. our_InitRGBProfile(0,&srgb_primaries_pre_quantized,&Our->icc_sRGB,&Our->iccsize_sRGB,"Copyright Yiming 2022.",manu,"Yiming's sRGB icc profile.");
  135. manu="ClayRGB chromaticities as given in Adobe RGB (1998) Color Image Encoding, Version 2005-05, https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf";
  136. our_InitRGBProfile(1,&adobe_primaries_prequantized,&Our->icc_LinearClay,&Our->iccsize_LinearClay,"Copyright Yiming 2022.",manu,"Yiming's ClayRGB icc profile.");
  137. our_InitRGBProfile(2,&adobe_primaries_prequantized,&Our->icc_Clay,&Our->iccsize_Clay,"Copyright Yiming 2022.",manu,"Yiming's Linear ClayRGB icc profile.");
  138. }
  139. void ourui_CanvasPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  140. laColumn* c=laFirstColumn(uil);
  141. laUiItem* ui=laShowCanvas(uil,c,0,"our.canvas",0,-1);
  142. }
  143. void ourui_Layer(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  144. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.7); cl=laLeftColumn(c,0);cr=laRightColumn(c,1);
  145. laUiItem* b=laBeginRow(uil,cl,0,0);
  146. laShowHeightAdjuster(uil,cl,This,"__move",0);
  147. laShowItemFull(uil,cl,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  148. laEndRow(uil,b);
  149. laUiItem* b1=laOnConditionToggle(uil,cr,0,0,0,0,0);{ strSafeSet(&b1->ExtraInstructions,"text=☰");
  150. b=laBeginRow(uil,c,0,0);
  151. laShowItem(uil,c,This,"remove")->Flags|=LA_UI_FLAGS_ICON;
  152. laShowSeparator(uil,c)->Expand=1;
  153. laShowItemFull(uil,c,This,"move",0,"direction=up;icon=🡱;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  154. laShowItemFull(uil,c,This,"move",0,"direction=down;icon=🡳;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  155. laEndRow(uil,b);
  156. }laEndCondition(uil,b1);
  157. }
  158. void ourui_LayersPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  159. laColumn* c=laFirstColumn(uil);
  160. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.current_layer"));{
  161. laUiItem* b1=laBeginRow(uil,c,0,0);
  162. laShowItem(uil,c,0,"our.canvas.current_layer.name")->Expand=1;
  163. laShowItem(uil,c,0,"OUR_new_layer")->Flags|=LA_UI_FLAGS_ICON;
  164. laEndRow(uil,b1);
  165. }laElse(uil,b);{
  166. laShowItem(uil,c,0,"OUR_new_layer");
  167. }laEndCondition(uil,b);
  168. laUiItem* lui=laShowItemFull(uil,c,0,"our.canvas.layers",0,0,0,0);
  169. b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.current_layer"));{
  170. laUiItem* b1=laBeginRow(uil,c,0,0);
  171. laShowItem(uil,c,&lui->PP,"remove")->Flags|=LA_UI_FLAGS_ICON;
  172. laShowItem(uil,c,&lui->PP,"merge");
  173. laShowSeparator(uil,c)->Expand=1;
  174. laEndRow(uil,b1);
  175. }laEndCondition(uil,b);
  176. laShowSeparator(uil,c);
  177. b=laBeginRow(uil,c,0,0);
  178. laShowLabel(uil,c,"Background",0,0)->Expand=1;
  179. laShowItemFull(uil,c,0,"our.canvas.background_color",LA_WIDGET_FLOAT_COLOR,0,0,0);
  180. laShowLabel(uil,c,"Color Space",0,0)->Expand=1;
  181. laShowItem(uil,c,0,"our.canvas.color_interpretation");
  182. laEndRow(uil,b);
  183. }
  184. void ourui_Brush(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  185. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.7); cl=laLeftColumn(c,0);cr=laRightColumn(c,1);
  186. laUiItem* b=laBeginRow(uil,cl,0,0);
  187. laShowHeightAdjuster(uil,cl,This,"__move",0);
  188. laShowItemFull(uil,cl,This,"name",LA_WIDGET_STRING_PLAIN,0,0,0)->Expand=1;
  189. laEndRow(uil,b);
  190. laUiItem* b1=laOnConditionToggle(uil,cr,0,0,0,0,0);{ strSafeSet(&b1->ExtraInstructions,"text=☰");
  191. b=laBeginRow(uil,c,0,0);
  192. laShowItem(uil,c,This,"remove")->Flags|=LA_UI_FLAGS_ICON;
  193. laShowItem(uil,c,This,"binding")->Expand=1;
  194. laShowItemFull(uil,c,This,"move",0,"direction=up;icon=🡱;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  195. laShowItemFull(uil,c,This,"move",0,"direction=down;icon=🡳;",0,0)->Flags|=LA_UI_FLAGS_ICON;
  196. laEndRow(uil,b);
  197. }laEndCondition(uil,b1);
  198. }
  199. void ourui_ToolsPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  200. laColumn* c=laFirstColumn(uil); laColumn* cl,*cr; laSplitColumn(uil,c,0.6); cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  201. laUiItem* b1, *b2;
  202. #define OUR_BR b1=laBeginRow(uil,c,0,0);
  203. #define OUR_ER laEndRow(uil,b1);
  204. #define OUR_PRESSURE(a)\
  205. b2=laOnConditionThat(uil,c,laNot(laPropExpression(0,"our.tools.current_brush.use_nodes")));\
  206. laShowItemFull(uil,c,0,"our.tools.current_brush." a,0,"text=P",0,0);\
  207. laEndCondition(uil,b2);
  208. laShowItem(uil,c,0,"our.tool")->Flags|=LA_UI_FLAGS_EXPAND;
  209. laUiItem* bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_PAINT)));{
  210. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  211. laShowLabel(uil,cl,"Mode:",0,0);laShowItem(uil,cr,0,"our.erasing");
  212. laShowItem(uil,c,0,"our.tools.current_brush.name");
  213. laShowItem(uil,cl,0,"our.tools.current_brush.use_nodes");
  214. laUiItem* b3=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush.use_nodes"));{
  215. laShowItemFull(uil,cr,0,"LA_panel_activator",0,"text=Edit;panel_id=panel_brush_nodes",0,0);
  216. }laEndCondition(uil,b3);
  217. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.size")->Expand=1; OUR_PRESSURE("pressure_size") OUR_ER
  218. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.transparency")->Expand=1; OUR_PRESSURE("pressure_transparency") OUR_ER
  219. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.hardness")->Expand=1; OUR_PRESSURE("pressure_hardness") OUR_ER
  220. laShowItem(uil,c,0,"our.tools.current_brush.slender");
  221. laShowItem(uil,c,0,"our.tools.current_brush.angle");
  222. OUR_BR laShowItem(uil,c,0,"our.tools.current_brush.smudge")->Expand=1; OUR_PRESSURE("pressure_smudge") OUR_ER
  223. laShowItem(uil,c,0,"our.tools.current_brush.dabs_per_size");
  224. laShowItem(uil,c,0,"our.tools.current_brush.smudge_resample_length");
  225. laShowItem(uil,c,0,"our.tools.current_brush.smoothness");
  226. laShowItem(uil,c,0,"our.tools.current_brush.default_as_eraser");
  227. }laEndCondition(uil,b);
  228. laShowSeparator(uil,c);
  229. laShowLabel(uil,c,"Display:",0,0);
  230. laShowItem(uil,c,0,"our.preferences.enable_brush_circle");
  231. }laEndCondition(uil,bt);
  232. bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_CROP)));{
  233. laShowItemFull(uil,c,0,"our.canvas.show_border",LA_WIDGET_ENUM_HIGHLIGHT,0,0,0);
  234. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.canvas.show_border"));{
  235. laShowLabel(uil,cl,"Position:",0,0); laShowItem(uil,cr,0,"our.canvas.position")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  236. laShowSeparator(uil,c);
  237. laShowLabel(uil,cl,"Size:",0,0); laShowItem(uil,cr,0,"our.canvas.size")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  238. laShowSeparator(uil,c);
  239. laShowItem(uil,c,0,"our.canvas.border_alpha");
  240. }laEndCondition(uil,b);
  241. }laEndCondition(uil,bt);
  242. }
  243. void ourui_BrushesPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  244. laColumn* c=laFirstColumn(uil); laUiItem* b1, *b2;
  245. laUiItem* bt=laOnConditionThat(uil,c,laEqual(laPropExpression(0,"our.tool"),laIntExpression(OUR_TOOL_PAINT)));{
  246. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  247. laShowItemFull(uil,c,0,"our.tools.current_brush.size",0,0,0,0);
  248. laShowItemFull(uil,c,0,"our.tools.current_brush.size_100",0,0,0,0);
  249. laShowItemFull(uil,c,0,"our.tools.current_brush.size_10",0,0,0,0);
  250. OUR_BR laShowSeparator(uil,c)->Expand=1; laShowItemFull(uil,c,0,"our.preferences.lock_radius",LA_WIDGET_ENUM_HIGHLIGHT,"text=Lock;",0,0); OUR_ER
  251. }laEndCondition(uil,b);
  252. laShowItemFull(uil,c,0,"our.tools.brushes",0,0,0,0);
  253. laShowItem(uil,c,0,"OUR_new_brush");
  254. }laElse(uil,bt);{
  255. laShowLabel(uil,c,"Brush tool not selected",0,0);
  256. }laEndCondition(uil,bt);
  257. }
  258. void ourui_ColorPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  259. laColumn* c=laFirstColumn(uil);
  260. laShowItemFull(uil,c,0,"our.current_color",LA_WIDGET_FLOAT_COLOR_HCY,0,0,0);
  261. laShowItemFull(uil,c,0,"our.current_color",LA_WIDGET_FLOAT_COLOR_HCY,0,0,0)->Flags|=LA_UI_FLAGS_COLOR_SPACE_CLAY;
  262. }
  263. void ourui_BrushPage(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  264. laColumn* c=laFirstColumn(uil);
  265. laShowItemFull(uil,c,0,"our.tools.current_brush",LA_WIDGET_COLLECTION_SELECTOR,0,laui_IdentifierOnly,0);
  266. laUiItem* b=laOnConditionThat(uil,c,laPropExpression(0,"our.tools.current_brush"));{
  267. laShowItemFull(uil,c,0,"our.tools.current_brush.rack_page",LA_WIDGET_COLLECTION_SINGLE,0,0,0)->Extra->HeightCoeff=-1;
  268. }laEndCondition(uil,b);
  269. }
  270. void ourui_AboutAuthor(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  271. laColumn* c=laFirstColumn(uil); laUiItem* g; laUiList* gu; laColumn* gc;
  272. g = laMakeGroup(uil, c, "OurPaint", 0);
  273. gu = g->Page;{
  274. gc = laFirstColumn(gu);
  275. laShowLabel(gu,gc,"OurPaint is made by Wu Yiming.",0,0)->Flags|=LA_TEXT_LINE_WRAP;
  276. laShowItemFull(gu, gc, 0, "LA_open_internet_link", 0, "link=http://www.ChengduLittleA.com/ourpaint;text=OurPaint Blog", 0, 0);
  277. }
  278. }
  279. void ourui_AboutVersion(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  280. laColumn* c=laFirstColumn(uil); laUiItem* g; laUiList* gu; laColumn* gc;
  281. g = laMakeGroup(uil, c, "OurPaint", 0);
  282. gu = g->Page;{
  283. gc = laFirstColumn(gu); char buf[128]; sprintf(buf,"OurPaint %d.%d",OUR_VERSION_MAJOR,OUR_VERSION_MINOR);
  284. laShowLabel(gu,gc,buf,0,0)->Flags|=LA_TEXT_MONO;
  285. }
  286. }
  287. void ourui_AboutContent(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  288. laColumn* c=laFirstColumn(uil);
  289. laShowLabel(uil, c, "OurPaint", 0, 0);
  290. laShowLabel(uil, c, "A simple yet flexible node-based GPU painting program.", 0, 0)->Flags|=LA_TEXT_LINE_WRAP;
  291. laShowLabel(uil, c, "(C)Yiming Wu", 0, 0);
  292. }
  293. void ourui_OurPreference(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  294. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  295. laShowLabel(uil,c,"Generic:",0,0);
  296. laShowItem(uil,cl,0,"our.preferences.enable_brush_circle");
  297. laShowItem(uil,cr,0,"our.preferences.lock_radius");
  298. laShowLabel(uil,c,"Developer:",0,0);
  299. laShowItem(uil,cl,0,"our.preferences.show_debug_tiles");
  300. }
  301. void our_CanvasDrawTextures(){
  302. tnsUseImmShader; tnsEnableShaderv(T->immShader);
  303. for(OurLayer* l=Our->Layers.pLast;l;l=l->Item.pPrev){
  304. int any=0;
  305. for(int row=0;row<OUR_TILES_PER_ROW;row++){
  306. if(!l->TexTiles[row]) continue;
  307. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  308. if(!l->TexTiles[row][col] || !l->TexTiles[row][col]->Texture) continue;
  309. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  310. real pad=(real)OUR_TILE_SEAM/OUR_TILE_W; int seam=OUR_TILE_SEAM;
  311. tnsDraw2DTextureArg(l->TexTiles[row][col]->Texture,sx+seam,sy+OUR_TILE_W-seam,OUR_TILE_W-seam*2,-OUR_TILE_W+seam*2,0,pad,pad,pad,pad);
  312. any=1;
  313. }
  314. }
  315. if(any) tnsFlush();
  316. }
  317. }
  318. void our_CanvasDrawTiles(){
  319. OurLayer* l=Our->CurrentLayer; if(!l) return;
  320. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  321. int any=0;
  322. for(int row=0;row<OUR_TILES_PER_ROW;row++){
  323. if(!l->TexTiles[row]) continue;
  324. for(int col=0;col<OUR_TILES_PER_ROW;col++){
  325. if(!l->TexTiles[row][col] || !l->TexTiles[row][col]->Texture) continue;
  326. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  327. //tnsVertex2d(sx, sy); tnsVertex2d(sx+OUR_TILE_W,sy);
  328. //tnsVertex2d(sx+OUR_TILE_W, sy+OUR_TILE_W); tnsVertex2d(sx,sy+OUR_TILE_W);
  329. //tnsColor4dv(laAccentColor(LA_BT_NORMAL));
  330. //tnsPackAs(GL_TRIANGLE_FAN);
  331. tnsVertex2d(sx, sy); tnsVertex2d(sx+OUR_TILE_W,sy);
  332. tnsVertex2d(sx+OUR_TILE_W, sy+OUR_TILE_W); tnsVertex2d(sx,sy+OUR_TILE_W);
  333. tnsColor4dv(laAccentColor(LA_BT_TEXT));
  334. tnsPackAs(GL_LINE_LOOP);
  335. }
  336. }
  337. if(any) tnsFlush();
  338. }
  339. void our_CanvasDrawCropping(OurCanvasDraw* ocd){
  340. tnsUseImmShader; tnsEnableShaderv(T->immShader); tnsUniformUseTexture(T->immShader,0,0); tnsUseNoTexture();
  341. tnsColor4d(0,0,0,Our->BorderAlpha);
  342. tnsVertex2d(-1e6,Our->Y); tnsVertex2d(1e6,Our->Y); tnsVertex2d(-1e6,1e6); tnsVertex2d(1e6,1e6); tnsPackAs(GL_TRIANGLE_FAN);
  343. 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);
  344. 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);
  345. tnsVertex2d(-1e6,Our->Y-Our->H); tnsVertex2d(1e6,Our->Y-Our->H); tnsVertex2d(-1e6,-1e6); tnsVertex2d(1e6,-1e6); tnsPackAs(GL_TRIANGLE_FAN);
  346. if(Our->Tool==OUR_TOOL_CROP){
  347. tnsColor4dv(laAccentColor(LA_BT_TEXT));
  348. 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);
  349. tnsPackAs(GL_LINE_LOOP);
  350. glLineWidth(3); tnsFlush(); glLineWidth(1);
  351. }
  352. }
  353. void our_CanvasDrawBrushCircle(OurCanvasDraw* ocd){
  354. if(!Our->CurrentBrush) return; real v[96];
  355. tnsUseImmShader();tnsUseNoTexture();
  356. tnsMakeCircle2d(v,48,ocd->Base.OnX,ocd->Base.OnY,Our->CurrentBrush->Size/ocd->Base.ZoomX+0.5,0);
  357. tnsColor4d(1,1,1,0.3); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  358. tnsMakeCircle2d(v,48,ocd->Base.OnX,ocd->Base.OnY,Our->CurrentBrush->Size/ocd->Base.ZoomX-0.5,0);
  359. tnsColor4d(0,0,0,0.3); tnsVertexArray2d(v,48); tnsPackAs(GL_LINE_LOOP);
  360. tnsFlush();
  361. }
  362. void our_CanvasDrawInit(laUiItem* ui){
  363. ui->Extra=memAcquireHyper(sizeof(OurCanvasDraw));
  364. laFirstColumn(laAddTabPage(ui, "New Group"));
  365. OurCanvasDraw* ocd=ui->Extra;
  366. ocd->Base.ParentUi=ui;
  367. ocd->Base.HeightCoeff = 10;
  368. ocd->Base.ZoomX = 1;
  369. ocd->Base.ZoomY = 1;
  370. ocd->Base.ImageDrawAlpha = 1;
  371. ocd->Base.ImageDrawBorder = 1;
  372. ocd->Base.AdaptiveLineWidth = 1;
  373. ocd->Base.ClearBackground = 1;
  374. int work_grp_cnt[3];
  375. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 0, &work_grp_cnt[0]);
  376. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 1, &work_grp_cnt[1]);
  377. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_COUNT, 2, &work_grp_cnt[2]);
  378. printf("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]);
  379. int work_grp_size[3];
  380. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 0, &work_grp_size[0]);
  381. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 1, &work_grp_size[1]);
  382. glGetIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 2, &work_grp_size[2]);
  383. printf("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]);
  384. int work_grp_inv;
  385. glGetIntegerv(GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS, &work_grp_inv);
  386. printf("max local work group invocations %i\n", work_grp_inv);
  387. }
  388. void our_CanvasDrawCanvas(laBoxedTheme *bt, OurPaint *unused_c, laUiItem* ui){
  389. OurCanvasDraw* ocd=ui->Extra; OurPaint* oc=ui->PP.EndInstance; laCanvasExtra*e=&ocd->Base;
  390. int W, H; W = ui->R - ui->L; H = ui->B - ui->U;
  391. tnsFlush();
  392. if (!e->OffScr || e->OffScr->pColor[0]->Height != ui->B - ui->U || e->OffScr->pColor[0]->Width != ui->R - ui->L){
  393. if (e->OffScr) tnsDelete2DOffscreen(e->OffScr);
  394. e->OffScr = tnsCreate2DOffscreen(GL_RGBA16F, W, H, 0, 0);
  395. }
  396. //our_CANVAS_TEST(bt,ui);
  397. glBlendFunc(GL_ONE,GL_ONE_MINUS_SRC_ALPHA);
  398. //glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,GL_ONE,GL_ONE);
  399. tnsDrawToOffscreen(e->OffScr,1,0);
  400. tnsViewportWithScissor(0, 0, W, H);
  401. tnsResetViewMatrix();tnsResetModelMatrix();tnsResetProjectionMatrix();
  402. 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);
  403. tnsClearColor(LA_COLOR3(Our->BackgroundColor),1); tnsClearAll();
  404. if(Our->ShowTiles){ our_CanvasDrawTiles(); }
  405. our_CanvasDrawTextures();
  406. if(Our->ShowBorder){ our_CanvasDrawCropping(ocd); }
  407. glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,GL_ONE,GL_ONE_MINUS_SRC_ALPHA);
  408. }
  409. void our_CanvasDrawOverlay(laUiItem* ui,int h){
  410. laCanvasExtra *e = ui->Extra; OurCanvasDraw* ocd=e;
  411. laBoxedTheme *bt = (*ui->Type->Theme);
  412. tnsUseImmShader(); tnsEnableShaderv(T->immShader); tnsUniformColorMode(T->immShader,2);
  413. tnsUniformOutputColorSpace(T->immShader, 0);
  414. if(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB){ tnsUniformInputColorSpace(T->immShader, 0); }
  415. elif(Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_CLAY){ tnsUniformInputColorSpace(T->immShader, 1); }
  416. tnsDraw2DTextureDirectly(e->OffScr->pColor[0], ui->L, ui->U, ui->R - ui->L, ui->B - ui->U);
  417. tnsFlush();
  418. tnsUniformColorMode(T->immShader, 0); tnsUniformInputColorSpace(T->immShader, 0); tnsUniformOutputColorSpace(T->immShader, MAIN.CurrentWindow->OutputColorSpace);
  419. if(Our->EnableBrushCircle && (!ocd->HideBrushCircle)){ our_CanvasDrawBrushCircle(ocd); }
  420. la_CanvasDefaultOverlay(ui, h);
  421. }
  422. int ourextramod_Canvas(laOperator *a, laEvent *e){
  423. laUiItem *ui = a->Instance; OurCanvasDraw* ocd=ui->Extra;
  424. if(Our->EnableBrushCircle && (e->Type&LA_MOUSE_EVENT)){ ocd->Base.OnX=e->x; ocd->Base.OnY=e->y; laRedrawCurrentPanel(); }
  425. return LA_RUNNING_PASS;
  426. }
  427. OurLayer* our_NewLayer(char* name){
  428. OurLayer* l=memAcquire(sizeof(OurLayer)); strSafeSet(&l->Name,name); lstPushItem(&Our->Layers, l);
  429. memAssignRef(Our, &Our->CurrentLayer, l);
  430. return l;
  431. }
  432. void ourbeforefree_Layer(OurLayer* l){
  433. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!l->TexTiles[row]) continue;
  434. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!l->TexTiles[row][col]) continue;
  435. if(l->TexTiles[row][col]->Texture) tnsDeleteTexture(l->TexTiles[row][col]->Texture); l->TexTiles[row][col]->Texture=0;
  436. if(l->TexTiles[row][col]->Data) free(l->TexTiles[row][col]->Data); l->TexTiles[row][col]->Data=0;
  437. if(l->TexTiles[row][col]->FullData) free(l->TexTiles[row][col]->FullData); l->TexTiles[row][col]->FullData=0;
  438. memFree(l->TexTiles[row][col]);
  439. }
  440. memFree(l->TexTiles[row]); l->TexTiles[row]=0;
  441. }
  442. }
  443. void our_RemoveLayer(OurLayer* l){
  444. strSafeDestroy(&l->Name);
  445. if(Our->CurrentLayer==l){ OurLayer* nl=l->Item.pPrev?l->Item.pPrev:l->Item.pNext; memAssignRef(Our, &Our->CurrentLayer, nl); }
  446. lstRemoveItem(&Our->Layers, l);
  447. ourbeforefree_Layer(l);
  448. memLeave(l);
  449. }
  450. int our_MergeLayer(OurLayer* l){
  451. 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;
  452. glUseProgram(Our->CompositionProgram);
  453. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!l->TexTiles[row]) continue;// Should not happen.
  454. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!l->TexTiles[row][col]) continue; OurTexTile*t=l->TexTiles[row][col];
  455. int tl,tr,tu,tb; our_LayerEnsureTileDirect(ol,row,col);
  456. OurTexTile*ot=ol->TexTiles[row][col]; if(!ot) continue;
  457. glBindImageTexture(0, t->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  458. glBindImageTexture(1, ot->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  459. glDispatchCompute(32,32,1);
  460. 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);
  461. }
  462. }
  463. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  464. if(xmin>xmax||ymin>ymax) return 0;
  465. our_RecordUndo(l,xmin,xmax,ymin,ymax,1,0);
  466. our_RecordUndo(ol,xmin,xmax,ymin,ymax,1,0);
  467. our_RemoveLayer(l);
  468. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");
  469. laPushDifferences("Merge layers",0);
  470. return 1;
  471. }
  472. OurBrush* our_NewBrush(char* name, real Size, real Hardness, real DabsPerSize, real Transparency, real Smudge, real SmudgeResampleLength,
  473. int PressureSize, int PressureHardness, int PressureTransparency, int PressureSmudge){
  474. OurBrush* b=memAcquireHyper(sizeof(OurBrush)); strSafeSet(&b->Name,name); lstAppendItem(&Our->Brushes, b);
  475. b->Size=Size; b->Hardness=Hardness; b->DabsPerSize=DabsPerSize; b->Transparency=Transparency; b->Smudge=Smudge;
  476. b->PressureHardness=PressureHardness; b->PressureSize=PressureSize; b->PressureTransparency=PressureTransparency; b->PressureSmudge=PressureSmudge;
  477. b->SmudgeResampleLength = SmudgeResampleLength;
  478. memAssignRef(Our, &Our->CurrentBrush, b);
  479. b->Rack=memAcquireHyper(sizeof(laRackPage)); b->Rack->RackType=LA_RACK_TYPE_DRIVER;
  480. b->Binding=-1;
  481. return b;
  482. }
  483. void our_RemoveBrush(OurBrush* b){
  484. strSafeDestroy(&b->Name);
  485. if(Our->CurrentBrush==b){ OurBrush* nb=b->Item.pPrev?b->Item.pPrev:b->Item.pNext; memAssignRef(Our, &Our->CurrentBrush, nb); }
  486. lstRemoveItem(&Our->Brushes, b);
  487. memLeave(b->Rack); b->Rack=0;
  488. memLeave(b);
  489. }
  490. int our_BufferAnythingVisible(uint16_t* buf, int elemcount){
  491. for(int i=0;i<elemcount;i++){
  492. uint16_t* rgba=&buf[i*4]; if(rgba[3]) return 1;
  493. }
  494. return 0;
  495. }
  496. void our_TileEnsureUndoBuffer(OurTexTile* t, real xmin,real xmax, real ymin,real ymax,int OnlyUpdateLocal){
  497. if(!t->Texture) return;
  498. if(OnlyUpdateLocal){
  499. t->cl=0;t->cr=OUR_TILE_W;t->cu=OUR_TILE_W;t->cb=0;
  500. }else{
  501. int _l=floor(xmin),_r=ceil(xmax),_u=ceil(ymax),_b=floor(ymin);
  502. if(t->CopyBuffer) free(t->CopyBuffer); t->CopyBuffer=0; //shouldn't happen
  503. if(_l>=t->r || _r<t->l || _b>=t->u || _u<t->b || _l==_r || _u==_b) return;
  504. 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;
  505. }
  506. int rows=t->cu-t->cb,cols=t->cr-t->cl;
  507. int bufsize=cols*4*rows*sizeof(uint16_t);
  508. t->CopyBuffer=calloc(1,bufsize);
  509. for(int row=0;row<rows;row++){
  510. memcpy(&t->CopyBuffer[row*cols*4],&t->FullData[((+row+t->cb)*OUR_TILE_W+t->cl)*4],sizeof(uint16_t)*4*cols);
  511. }
  512. uint16_t* temp=malloc(bufsize);
  513. tnsBindTexture(t->Texture);
  514. glGetTextureSubImage(t->Texture->GLTexHandle, 0, t->cl, t->cb, 0, cols,rows,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, temp);
  515. for(int row=0;row<rows;row++){
  516. memcpy(&t->FullData[((+row+t->cb)*OUR_TILE_W+t->cl)*4],&temp[row*cols*4],sizeof(uint16_t)*4*cols);
  517. }
  518. }
  519. void our_TileSwapBuffers(OurTexTile* t, uint16_t* data, int IsRedo, int l, int r, int u, int b){
  520. int rows=u-b,cols=r-l; int bufsize=rows*cols*sizeof(uint16_t)*4;
  521. uint16_t* temp=malloc(bufsize);
  522. memcpy(temp,data,bufsize);
  523. for(int row=0;row<rows;row++){
  524. memcpy(&data[row*cols*4],&t->FullData[((+row+b)*OUR_TILE_W+l)*4],sizeof(uint16_t)*4*cols);
  525. memcpy(&t->FullData[((+row+b)*OUR_TILE_W+l)*4],&temp[row*cols*4],sizeof(uint16_t)*4*cols);
  526. }
  527. tnsBindTexture(t->Texture);
  528. glGetError();
  529. uint16_t* use_data=temp;
  530. if(IsRedo){ use_data=data; }
  531. glTexSubImage2D(GL_TEXTURE_2D, 0, l, b, cols,rows,GL_RGBA,GL_UNSIGNED_SHORT,use_data);
  532. free(temp);
  533. }
  534. void ourundo_Tiles(OurUndo* undo){
  535. for(OurUndoTile* ut=undo->Tiles.pFirst;ut;ut=ut->Item.pNext){
  536. our_LayerEnsureTileDirect(undo->Layer,ut->row,ut->col);
  537. our_TileSwapBuffers(undo->Layer->TexTiles[ut->row][ut->col], ut->CopyData, 0, ut->l, ut->r, ut->u, ut->b);
  538. }
  539. laNotifyUsers("our.canvas");
  540. }
  541. void ourredo_Tiles(OurUndo* undo){
  542. for(OurUndoTile* ut=undo->Tiles.pFirst;ut;ut=ut->Item.pNext){
  543. our_LayerEnsureTileDirect(undo->Layer,ut->row,ut->col);
  544. our_TileSwapBuffers(undo->Layer->TexTiles[ut->row][ut->col], ut->CopyData, 0, ut->l, ut->r, ut->u, ut->b);
  545. }
  546. laNotifyUsers("our.canvas");
  547. }
  548. void ourundo_Free(OurUndo* undo,int FromLeft){
  549. OurUndoTile* ut;
  550. while(ut=lstPopItem(&undo->Tiles)){ free(ut->CopyData); memFree(ut); }
  551. memFree(undo);
  552. }
  553. #define OUR_XXYY_TO_COL_ROW_RANGE\
  554. l=(int)(floor(OUR_TILE_CTR+(xmin-OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  555. r=(int)(floor(OUR_TILE_CTR+(xmax+OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  556. u=(int)(floor(OUR_TILE_CTR+(ymax+OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  557. b=(int)(floor(OUR_TILE_CTR+(ymin-OUR_TILE_SEAM)/OUR_TILE_W_USE+0.5));\
  558. 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);
  559. #define OUR_XXYY_TO_COL_ROW_ALIGNED\
  560. l=(int)(floor(OUR_TILE_CTR+(xmin)/OUR_TILE_W_USE+0.5));\
  561. r=(int)(floor(OUR_TILE_CTR+(xmax-1)/OUR_TILE_W_USE+0.5));\
  562. u=(int)(floor(OUR_TILE_CTR+(ymax-1)/OUR_TILE_W_USE+0.5));\
  563. b=(int)(floor(OUR_TILE_CTR+(ymin)/OUR_TILE_W_USE+0.5));\
  564. 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);
  565. void our_RecordUndo(OurLayer* ol, real xmin,real xmax, real ymin,real ymax,int Aligned,int Push){
  566. if(xmax<xmin || ymax<ymin) return;
  567. int l,r,u,b;
  568. if(Aligned){ OUR_XXYY_TO_COL_ROW_ALIGNED }else{ OUR_XXYY_TO_COL_ROW_RANGE; }
  569. OurUndo* undo=memAcquire(sizeof(OurUndo)); undo->Layer=ol;
  570. for(int row=b;row<=u;row++){ if(!ol->TexTiles[row]) continue;// Should not happen.
  571. for(int col=l;col<=r;col++){ if(!ol->TexTiles[row][col]) continue; OurTexTile*t=ol->TexTiles[row][col];
  572. our_TileEnsureUndoBuffer(t,xmin,xmax,ymin,ymax,0);
  573. if(!t->CopyBuffer) continue;
  574. OurUndoTile* ut=memAcquire(sizeof(OurUndoTile));
  575. ut->l=t->cl; ut->r=t->cr; ut->u=t->cu; ut->b=t->cb;
  576. ut->CopyData=t->CopyBuffer; t->CopyBuffer=0;
  577. ut->col=col;ut->row=row;
  578. lstAppendItem(&undo->Tiles,ut);
  579. }
  580. }
  581. if(!undo->Tiles.pFirst){ memFree(undo); return; /*unlikely;*/ }
  582. laFreeNewerDifferences();
  583. laRecordCustomDifferences(undo,ourundo_Tiles,ourredo_Tiles,ourundo_Free);
  584. if(Push){ laPushDifferences("Paint",0); }
  585. }
  586. void our_LayerRefreshLocal(OurLayer* ol){
  587. //OurUndo* undo=memAcquire(sizeof(OurUndo)); undo->Layer=ol;
  588. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  589. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue; OurTexTile*t=ol->TexTiles[row][col];
  590. our_TileEnsureUndoBuffer(t,0,0,0,0,1);
  591. }
  592. }
  593. //if(!undo->Tiles.pFirst){ memFree(undo); return; /*unlikely;*/ }
  594. //laFreeNewerDifferences();
  595. //laRecordCustomDifferences(undo,ourundo_Tiles,ourredo_Tiles,ourundo_Free);
  596. //if(Push){ laPushDifferences("Loaded",0); }
  597. }
  598. void our_LayerEnsureTileDirect(OurLayer* ol, int row, int col){
  599. if(!ol->TexTiles[row]){ol->TexTiles[row]=memAcquireSimple(sizeof(OurTexTile*)*OUR_TILES_PER_ROW);}
  600. if(ol->TexTiles[row][col]) return;
  601. ol->TexTiles[row][col]=memAcquireSimple(sizeof(OurTexTile));
  602. OurTexTile*t=ol->TexTiles[row][col];
  603. t->Texture=tnsCreate2DTexture(GL_RGBA16,OUR_TILE_W,OUR_TILE_W,0);
  604. 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;
  605. 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;
  606. uint16_t initColor[]={0,0,0,0};
  607. glClearTexImage(t->Texture->GLTexHandle, 0, GL_RGBA, GL_UNSIGNED_SHORT, 0);
  608. t->FullData=calloc(OUR_TILE_W*4,OUR_TILE_W*sizeof(uint16_t));
  609. }
  610. void our_LayerEnsureTiles(OurLayer* ol, real xmin,real xmax, real ymin,real ymax, int Aligned, int *tl, int *tr, int* tu, int* tb){
  611. int l,r,u,b;
  612. if(Aligned){ OUR_XXYY_TO_COL_ROW_ALIGNED }else{ OUR_XXYY_TO_COL_ROW_RANGE; }
  613. for(int row=b;row<=u;row++){
  614. for(int col=l;col<=r;col++){
  615. our_LayerEnsureTileDirect(ol,row,col);
  616. }
  617. }
  618. *tl=l; *tr=r; *tu=u; *tb=b;
  619. }
  620. void our_TileTextureToImage(OurTexTile* ot, int SX, int SY, int composite){
  621. if(!ot->Texture) return;
  622. int bufsize=sizeof(uint16_t)*OUR_TILE_W_USE*OUR_TILE_W_USE*4;
  623. ot->Data=malloc(bufsize); int seam=OUR_TILE_SEAM; int width=OUR_TILE_W_USE;
  624. tnsBindTexture(ot->Texture); glPixelStorei(GL_PACK_ALIGNMENT, 2);
  625. glGetTextureSubImage(ot->Texture->GLTexHandle, 0, seam, seam, 0, width, width,1, GL_RGBA, GL_UNSIGNED_SHORT, bufsize, ot->Data);
  626. if(composite){
  627. for(int row=0;row<OUR_TILE_W_USE;row++){
  628. for(int col=0;col<OUR_TILE_W_USE;col++){
  629. our_CanvasAlphaMix(&Our->ImageBuffer[((SY+row)*Our->ImageW+SX+col)*4], &ot->Data[(row*OUR_TILE_W_USE+col)*4]);
  630. }
  631. }
  632. }else{
  633. for(int row=0;row<OUR_TILE_W_USE;row++){
  634. 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);
  635. }
  636. }
  637. free(ot->Data); ot->Data=0;
  638. }
  639. void our_TileImageToTexture(OurTexTile* ot, int SX, int SY){
  640. if(!ot->Texture) return;
  641. int pl=(SX!=0)?OUR_TILE_SEAM:0, pr=((SX+OUR_TILE_W_USE)!=Our->ImageW)?OUR_TILE_SEAM:0;
  642. int pu=(SY!=0)?OUR_TILE_SEAM:0, pb=((SY+OUR_TILE_W_USE)!=Our->ImageH)?OUR_TILE_SEAM:0;
  643. int bufsize=sizeof(uint16_t)*(OUR_TILE_W+pl+pr)*(OUR_TILE_W+pu+pb)*4;
  644. ot->Data=malloc(bufsize); int width=OUR_TILE_W_USE+pl+pr, height=OUR_TILE_W_USE+pu+pb;
  645. for(int row=0;row<height;row++){
  646. memcpy(&ot->Data[((row)*width)*4],&Our->ImageBuffer[((SY+row-pu)*Our->ImageW+SX-pl)*4],sizeof(uint16_t)*4*width);
  647. }
  648. if(!our_BufferAnythingVisible(ot->Data, bufsize/sizeof(uint16_t)/4)){ tnsDeleteTexture(ot->Texture); ot->Texture=0; }
  649. else{
  650. tnsBindTexture(ot->Texture);
  651. glTexSubImage2D(GL_TEXTURE_2D, 0, OUR_TILE_SEAM-pl, OUR_TILE_SEAM-pu, width, height, GL_RGBA, GL_UNSIGNED_SHORT, ot->Data);
  652. }
  653. free(ot->Data); ot->Data=0;
  654. }
  655. int our_LayerEnsureImageBuffer(OurLayer* ol, int OnlyCalculate){
  656. int l=1000,r=-1000,u=-1000,b=1000; int any=0;
  657. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  658. if(row<b) b=row; if(row>u) u=row;
  659. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  660. if(col<l) l=col; if(col>r) r=col; any++;
  661. }
  662. }
  663. if(!any) return 0;
  664. Our->ImageW = OUR_TILE_W_USE*(r-l+1); Our->ImageH = OUR_TILE_W_USE*(u-b+1);
  665. 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;
  666. if(!OnlyCalculate){
  667. if(Our->ImageBuffer) free(Our->ImageBuffer);
  668. Our->ImageBuffer = calloc(Our->ImageW*4,Our->ImageH*sizeof(uint16_t));
  669. }
  670. return 1;
  671. }
  672. int our_CanvasEnsureImageBuffer(){
  673. int x=INT_MAX,y=INT_MAX,w=-INT_MAX,h=-INT_MAX;
  674. for(OurLayer* l=Our->Layers.pFirst;l;l=l->Item.pNext){
  675. our_LayerEnsureImageBuffer(l,1);
  676. if(Our->ImageX<x) x=Our->ImageX; if(Our->ImageY<y) y=Our->ImageY;
  677. if(Our->ImageW>w) w=Our->ImageW; if(Our->ImageH>h) h=Our->ImageH;
  678. }
  679. if(w<0||h<0) return 0;
  680. Our->ImageX=x; Our->ImageY=y; Our->ImageW=w; Our->ImageH=h;
  681. if(Our->ImageBuffer) free(Our->ImageBuffer);
  682. Our->ImageBuffer = calloc(Our->ImageW*4,Our->ImageH*sizeof(uint16_t));
  683. return 1;
  684. }
  685. void our_CanvasFillImageBufferBackground(){
  686. int count=Our->ImageW*Our->ImageH;
  687. Our->BColorU16[0]=Our->BackgroundColor[0]*65535; Our->BColorU16[1]=Our->BackgroundColor[1]*65535;
  688. Our->BColorU16[2]=Our->BackgroundColor[2]*65535; Our->BColorU16[3]=65535;
  689. for(int i=0;i<count;i++){
  690. uint16_t* p=&Our->ImageBuffer[i*4]; tnsVectorSet4v(p,Our->BColorU16);
  691. }
  692. }
  693. void our_LayerToImageBuffer(OurLayer* ol, int composite){
  694. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  695. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  696. int sx=ol->TexTiles[row][col]->l+OUR_TILE_SEAM,sy=ol->TexTiles[row][col]->b+OUR_TILE_SEAM;
  697. our_TileTextureToImage(ol->TexTiles[row][col], sx-Our->ImageX, sy-Our->ImageY, composite);
  698. }
  699. }
  700. }
  701. void our_LayerToTexture(OurLayer* ol){
  702. for(int row=0;row<OUR_TILES_PER_ROW;row++){ if(!ol->TexTiles[row]) continue;
  703. for(int col=0;col<OUR_TILES_PER_ROW;col++){ if(!ol->TexTiles[row][col]) continue;
  704. int sx=ol->TexTiles[row][col]->l+OUR_TILE_SEAM,sy=ol->TexTiles[row][col]->b+OUR_TILE_SEAM;
  705. our_TileImageToTexture(ol->TexTiles[row][col], sx-Our->ImageX, sy-Our->ImageY);
  706. }
  707. }
  708. }
  709. void our_GetFinalDimension(int UseFrame, int* x, int* y, int* w, int* h){
  710. if(UseFrame){ *x=Our->X; *y=Our->Y; *w=Our->W; *h=Our->H; }
  711. else{ *x=Our->ImageX; *y=Our->ImageY; *w=Our->ImageW; *h=Our->ImageH; }
  712. 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);
  713. }
  714. uint16_t* our_GetFinalRow(int UseFrame, int row, int x, int y, int w, int h, uint16_t* temp){
  715. if(!UseFrame) return &Our->ImageBuffer[Our->ImageW*(Our->ImageH-row-1)*4];
  716. int userow=(h-row-1)-(Our->ImageY-(y-h));
  717. if(userow<0 || userow>=Our->ImageH){ for(int i=0;i<w;i++){ tnsVectorSet4v(&temp[i*4],Our->BColorU16); } return temp; }
  718. int sstart=x>Our->ImageX?x-Our->ImageX:0, tstart=x>Our->ImageX?0:Our->ImageX-x;
  719. int slen=(x+w>Our->ImageX+Our->ImageW)?(Our->ImageW-sstart):(Our->ImageW-sstart-(Our->ImageX+Our->ImageW-x-w));
  720. for(int i=0;i<sstart;i++){ tnsVectorSet4v(&temp[i*4],Our->BColorU16); }
  721. for(int i=sstart+slen;i<w;i++){ tnsVectorSet4v(&temp[i*4],Our->BColorU16); }
  722. memcpy(&temp[tstart*4],&Our->ImageBuffer[(Our->ImageW*(userow)+sstart)*4],slen*sizeof(uint16_t)*4);
  723. return temp;
  724. }
  725. static void _our_png_write(png_structp png_ptr, png_bytep data, png_size_t length){
  726. OurLayerWrite* LayerWrite=png_get_io_ptr(png_ptr);
  727. arrEnsureLength(&LayerWrite->data,LayerWrite->NextData+length,&LayerWrite->MaxData,sizeof(unsigned char));
  728. memcpy(&LayerWrite->data[LayerWrite->NextData], data, length);
  729. LayerWrite->NextData+=length;
  730. }
  731. int our_ImageExportPNG(FILE* fp, int WriteToBuffer, void** buf, int* sizeof_buf, int UseFrame){
  732. if((!fp)&&(!WriteToBuffer)) return 0;
  733. if(!Our->ImageBuffer) return 0;
  734. png_structp png_ptr=png_create_write_struct(PNG_LIBPNG_VER_STRING,0,0,0);
  735. png_infop info_ptr = png_create_info_struct(png_ptr);
  736. OurLayerWrite LayerWrite={0};
  737. if(WriteToBuffer){
  738. arrEnsureLength(&LayerWrite.data,0,&LayerWrite.MaxData,sizeof(unsigned char));
  739. png_set_write_fn(png_ptr,&LayerWrite,_our_png_write,0);
  740. }else{
  741. png_init_io(png_ptr, fp);
  742. }
  743. int X,Y,W,H; our_GetFinalDimension(UseFrame, &X,&Y,&W,&H);
  744. png_set_IHDR(png_ptr, info_ptr,W,H,16,PNG_COLOR_TYPE_RGBA,PNG_INTERLACE_NONE,PNG_COMPRESSION_TYPE_BASE,PNG_FILTER_TYPE_BASE);
  745. // Should not set gamma, we should set either srgb chunk or iccp. Gimp bug: https://gitlab.gnome.org/GNOME/gimp/-/issues/5363
  746. // But we still include a gamma 1.0 for convenience in OurPaint internal layer reading.
  747. //png_set_gAMA(png_ptr,info_ptr,0.45455);
  748. //png_set_sRGB(png_ptr,info_ptr,PNG_sRGB_INTENT_PERCEPTUAL);
  749. //png_set_iCCP(png_ptr,info_ptr,"LA_PROFILE",PNG_COMPRESSION_TYPE_BASE,Our->icc_sRGB,Our->iccsize_sRGB);
  750. png_set_iCCP(png_ptr,info_ptr,"LA_PROFILE",PNG_COMPRESSION_TYPE_BASE,Our->icc_LinearsRGB,Our->iccsize_LinearsRGB);
  751. png_set_gAMA(png_ptr,info_ptr,1.0);
  752. // Don't set alpha mode for internal data so read and write would be the same.
  753. png_write_info(png_ptr, info_ptr);
  754. png_set_swap(png_ptr);
  755. uint16_t* temp_row=calloc(W,sizeof(uint16_t)*4);
  756. for(int i=0;i<H;i++){
  757. uint16_t* final=our_GetFinalRow(UseFrame,i,X,Y,W,H,temp_row);
  758. png_write_row(png_ptr, (png_const_bytep)final);
  759. }
  760. png_write_end(png_ptr, info_ptr);
  761. png_destroy_write_struct(&png_ptr, &info_ptr);
  762. free(Our->ImageBuffer); Our->ImageBuffer=0;
  763. if(WriteToBuffer){ *buf=LayerWrite.data; *sizeof_buf=LayerWrite.NextData; }
  764. return 1;
  765. }
  766. void our_EnsureImageBufferOnRead(OurLayer*l, int W, int H, int UseOffsets, int StartX, int StartY){
  767. int tw=W/OUR_TILE_W_USE, th=H/OUR_TILE_W_USE;
  768. int w=tw*OUR_TILE_W_USE, h=th*OUR_TILE_W_USE;
  769. if(w<W){ tw+=1; w+=OUR_TILE_W_USE; } if(h<H){ th+=1; h+=OUR_TILE_W_USE; }
  770. int ix=UseOffsets?StartX:(-tw/2*OUR_TILE_W_USE-OUR_TILE_W_USE/2);
  771. int iy=UseOffsets?StartY:(th/2*OUR_TILE_W_USE+OUR_TILE_W_USE/2);
  772. int tl,tr,tu,tb;
  773. our_LayerEnsureTiles(l,ix,ix+W,iy-H,iy,1,&tl,&tr,&tu,&tb);
  774. our_LayerEnsureImageBuffer(l, 0);
  775. Our->LoadX = ix-Our->ImageX; Our->LoadY = Our->ImageY+Our->ImageH-iy;
  776. }
  777. static void _our_png_read(png_struct *ps, png_byte *data, png_size_t length){
  778. OurLayerRead *LayerRead = (OurLayerRead*)png_get_io_ptr(ps);
  779. memcpy(data,&LayerRead->data[LayerRead->NextData],length);
  780. LayerRead->NextData+=length;
  781. }
  782. int our_PeekPNG(FILE* fp, int* HasProfile, int* HassRGB, laSafeString** iccName){
  783. png_structp png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,0,0,0); if (!png_ptr) { return 0; }
  784. png_infop info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { return 0; }
  785. png_init_io(png_ptr, fp);
  786. png_read_info(png_ptr, info_ptr);
  787. int srgb_intent = 0;
  788. png_charp icc_profile_name = NULL;
  789. png_uint_32 icc_proflen = 0;
  790. int icc_compression_type = 0;
  791. cmsHPROFILE input_buffer_profile = NULL;
  792. cmsHTRANSFORM cmsTransform = NULL;
  793. cmsToneCurve *cmsToneCurve = NULL;
  794. cmsUInt32Number input_buffer_format = 0;
  795. #if PNG_LIBPNG_VER < 10500 // 1.5.0beta36, according to libpng CHANGES
  796. png_charp icc_profile = NULL;
  797. #else
  798. png_bytep icc_profile = NULL;
  799. #endif
  800. if(png_get_iCCP (png_ptr, info_ptr, &icc_profile_name, &icc_compression_type, &icc_profile, &icc_proflen)) {
  801. input_buffer_profile = cmsOpenProfileFromMem(icc_profile, icc_proflen);
  802. if(!input_buffer_profile) { goto cleanup_png_peek; }
  803. cmsColorSpaceSignature cs_sig = cmsGetColorSpace(input_buffer_profile);
  804. if (cs_sig != cmsSigRgbData) { logPrint(" png has grayscale iCCP, OurPaint doesn't supported that yet, will load as sRGB.\n");
  805. cmsCloseProfile(input_buffer_profile); input_buffer_profile = NULL; }
  806. else{
  807. char* desc="UNAMED PROFILE";
  808. cmsUInt32Number len=cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",0,0);
  809. if(len){ desc=calloc(1,sizeof(char)*len); cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",desc,len); }
  810. logPrint(" png has iCCP: %s.\n", desc); strSafeSet(iccName, desc); if(len){ free(desc); }
  811. }
  812. }elif(png_get_sRGB(png_ptr,info_ptr,&srgb_intent)){
  813. logPrint(" png is sRGB.\n");
  814. *HassRGB=1;
  815. }else{
  816. // should use png_get_cHRM and png_get_gAMA, but for simplicity we just treat them as srgb,
  817. logPrint(" png doesn't contain iCCP or sRGB flags, assuming sRGB.\n");
  818. *HassRGB=0;
  819. }
  820. cleanup_png_peek:
  821. if(input_buffer_profile) cmsCloseProfile(input_buffer_profile);
  822. if(png_ptr && info_ptr) png_destroy_read_struct(&png_ptr,&info_ptr,0);
  823. return 1;
  824. }
  825. int our_LayerImportPNG(OurLayer* l, FILE* fp, void* buf, int InputProfileMode, int OutputProfileMode, int UseOffsets, int StartX, int StartY){
  826. int result=0;
  827. if((!fp&&!buf) || !l) return 0;
  828. int srgb_intent = 0;
  829. png_charp icc_profile_name = NULL;
  830. png_uint_32 icc_proflen = 0;
  831. int icc_compression_type = 0;
  832. cmsHPROFILE input_buffer_profile = NULL;
  833. cmsHPROFILE output_buffer_profile = NULL;
  834. cmsHTRANSFORM cmsTransform = NULL;
  835. cmsToneCurve *cmsToneCurve = NULL;
  836. cmsUInt32Number input_buffer_format = 0;
  837. #if PNG_LIBPNG_VER < 10500 // 1.5.0beta36, according to libpng CHANGES
  838. png_charp icc_profile = NULL;
  839. #else
  840. png_bytep icc_profile = NULL;
  841. #endif
  842. OurLayerRead LayerRead={0};
  843. png_structp png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,0,0,0); if (!png_ptr) { return 0; }
  844. png_infop info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { return 0; }
  845. if (setjmp(png_jmpbuf(png_ptr))) { goto cleanup_png_read; }
  846. if(buf){
  847. LayerRead.data=buf; png_set_read_fn(png_ptr, &LayerRead, _our_png_read);
  848. }else{
  849. png_init_io(png_ptr, fp);
  850. }
  851. png_read_info(png_ptr, info_ptr);
  852. png_set_swap(png_ptr);
  853. int UseSRGB=0;
  854. if(InputProfileMode==1){
  855. if(png_get_iCCP (png_ptr, info_ptr, &icc_profile_name, &icc_compression_type, &icc_profile, &icc_proflen)) {
  856. input_buffer_profile = cmsOpenProfileFromMem(icc_profile, icc_proflen);
  857. if(!input_buffer_profile) { goto cleanup_png_read; }
  858. cmsColorSpaceSignature cs_sig = cmsGetColorSpace(input_buffer_profile);
  859. if (cs_sig != cmsSigRgbData) { /*no grayscale icc*/ cmsCloseProfile(input_buffer_profile); input_buffer_profile = NULL; }
  860. else{
  861. char* desc="UNAMED PROFILE";
  862. cmsUInt32Number len=cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",0,0);
  863. if(len){ desc=calloc(1,sizeof(char)*len); cmsGetProfileInfoASCII(input_buffer_profile,cmsInfoDescription,"en","US",desc,len); free(desc); }
  864. }
  865. }
  866. }
  867. if (png_get_interlace_type (png_ptr, info_ptr) != PNG_INTERLACE_NONE){ logPrint(" Interlaced png not supported.\n");
  868. goto cleanup_png_read;
  869. }
  870. png_byte ColorType = png_get_color_type(png_ptr, info_ptr);
  871. png_byte BitDepth = png_get_bit_depth(png_ptr, info_ptr);
  872. int HasAlpha = ColorType & PNG_COLOR_MASK_ALPHA;
  873. if (ColorType == PNG_COLOR_TYPE_PALETTE) { png_set_palette_to_rgb(png_ptr); }
  874. //if (ColorType == PNG_COLOR_TYPE_GRAY && BitDepth < 8) { png_set_expand_gray_1_2_4_to_8(png_ptr); }
  875. if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { png_set_tRNS_to_alpha(png_ptr); HasAlpha = 1; }
  876. if (BitDepth<16) { png_set_expand_16(png_ptr); }
  877. if (!HasAlpha) { png_set_add_alpha(png_ptr, 0xFFFF, PNG_FILLER_AFTER); }
  878. if (ColorType == PNG_COLOR_TYPE_GRAY || ColorType == PNG_COLOR_TYPE_GRAY_ALPHA) { png_set_gray_to_rgb(png_ptr); }
  879. png_read_update_info(png_ptr, info_ptr);
  880. if (png_get_bit_depth(png_ptr, info_ptr)!=16) {
  881. logPrint(" Can't convert png into 16 bits per channel, aborting.\n"); goto cleanup_png_read;
  882. }
  883. if (png_get_color_type(png_ptr, info_ptr) != PNG_COLOR_TYPE_RGB_ALPHA) {
  884. logPrint(" Can't convert png into RGBA format, aborting.\n"); goto cleanup_png_read;
  885. }
  886. if (png_get_channels(png_ptr, info_ptr) != 4) {
  887. logPrint(" Can't convert png into 4 channel RGBA format, aborting.\n"); goto cleanup_png_read;
  888. }
  889. #ifdef CMS_USE_BIG_ENDIAN
  890. input_buffer_format = TYPE_RGBA_16;
  891. #else
  892. input_buffer_format = TYPE_RGBA_16_SE;
  893. #endif
  894. int W = png_get_image_width(png_ptr, info_ptr);
  895. int H = png_get_image_height(png_ptr, info_ptr);
  896. our_EnsureImageBufferOnRead(l,W,H,UseOffsets,StartX,StartY);
  897. for(int i=0;i<H;i++){
  898. png_read_row(png_ptr, &Our->ImageBuffer[((H-i-1+Our->LoadY)*Our->ImageW+Our->LoadX)*4], NULL);
  899. }
  900. if(InputProfileMode && OutputProfileMode && (InputProfileMode!=OutputProfileMode)){
  901. void* icc=0; int iccsize=0;
  902. if(!input_buffer_profile){
  903. if(InputProfileMode==OUR_PNG_READ_INPUT_SRGB){ icc=Our->icc_sRGB; iccsize=Our->iccsize_sRGB; }
  904. elif(InputProfileMode==OUR_PNG_READ_INPUT_CLAY){ icc=Our->icc_Clay; iccsize=Our->iccsize_Clay; }
  905. elif(InputProfileMode==OUR_PNG_READ_INPUT_LINEAR_SRGB){ icc=Our->icc_LinearsRGB; iccsize=Our->iccsize_LinearsRGB; }
  906. elif(InputProfileMode==OUR_PNG_READ_INPUT_LINEAR_CLAY){ icc=Our->icc_LinearClay; iccsize=Our->iccsize_LinearClay; }
  907. input_buffer_profile=cmsOpenProfileFromMem(icc, iccsize);
  908. }
  909. icc=0; iccsize=0;
  910. if(OutputProfileMode==OUR_PNG_READ_OUTPUT_LINEAR_SRGB){ icc=Our->icc_LinearsRGB; iccsize=Our->iccsize_LinearsRGB; }
  911. elif(OutputProfileMode==OUR_PNG_READ_OUTPUT_LINEAR_CLAY){ icc=Our->icc_LinearClay; iccsize=Our->iccsize_LinearClay; }
  912. output_buffer_profile=cmsOpenProfileFromMem(icc, iccsize);
  913. if(input_buffer_profile && output_buffer_profile){
  914. cmsTransform = cmsCreateTransform(input_buffer_profile, TYPE_RGBA_16, output_buffer_profile, TYPE_RGBA_16, INTENT_PERCEPTUAL, 0);
  915. cmsDoTransform(cmsTransform,Our->ImageBuffer,Our->ImageBuffer,Our->ImageW*Our->ImageH);
  916. }
  917. }
  918. our_LayerToTexture(l);
  919. result=1;
  920. cleanup_png_read:
  921. if(input_buffer_profile) cmsCloseProfile(input_buffer_profile);
  922. if(output_buffer_profile) cmsCloseProfile(output_buffer_profile);
  923. if(cmsTransform) cmsDeleteTransform(cmsTransform);
  924. if(png_ptr && info_ptr) png_destroy_read_struct(&png_ptr,&info_ptr,0);
  925. if(Our->ImageBuffer) free(Our->ImageBuffer); Our->ImageBuffer=0;
  926. return result;
  927. }
  928. void our_UiToCanvas(laCanvasExtra* ex, laEvent*e, real* x, real *y){
  929. *x = (real)((real)e->x - (real)(ex->ParentUi->R - ex->ParentUi->L) / 2 - ex->ParentUi->L) * ex->ZoomX + ex->PanX;
  930. *y = (real)((real)(ex->ParentUi->B - ex->ParentUi->U) / 2 - (real)e->y + ex->ParentUi->U) * ex->ZoomY + ex->PanY;
  931. }
  932. void our_PaintResetBrushState(OurBrush* b){
  933. b->BrushRemainingDist = 0; b->SmudgeAccum=0; b->SmudgeRestart=1;
  934. }
  935. real our_PaintGetDabStepDistance(real Size,real DabsPerSize){
  936. real d=Size/DabsPerSize; if(d<1e-2) d=1e-2; return d;
  937. }
  938. int our_PaintGetDabs(OurBrush* b, OurLayer* l, real x, real y, real xto, real yto,
  939. real last_pressure, real last_angle_x, real last_angle_y, real pressure, real angle_x, real angle_y,
  940. int *tl, int *tr, int* tu, int* tb, real* r_xto, real* r_yto){
  941. Our->NextDab=0;
  942. if(!b->EvalDabsPerSize) b->EvalDabsPerSize=b->DabsPerSize;
  943. real smfac=(1-b->Smoothness/1.1); xto=tnsLinearItp(x,xto,smfac); yto=tnsLinearItp(y,yto,smfac); *r_xto=xto; *r_yto=yto;
  944. real size=b->Size; real dd=our_PaintGetDabStepDistance(b->EvalSize, b->EvalDabsPerSize); real len=tnsDistIdv2(x,y,xto,yto); real rem=b->BrushRemainingDist;
  945. real alllen=len+rem; real uselen=dd,step=0; if(!len)return 0; if(dd>alllen){ b->BrushRemainingDist+=len; return 0; }
  946. real xmin=FLT_MAX,xmax=-FLT_MAX,ymin=FLT_MAX,ymax=-FLT_MAX;
  947. b->EvalSize=b->Size; b->EvalHardness=b->Hardness; b->EvalSmudge=b->Smudge; b->EvalSmudgeLength=b->SmudgeResampleLength;
  948. b->EvalTransparency=b->Transparency; b->EvalDabsPerSize=b->DabsPerSize; b->EvalSlender=b->Slender; b->EvalAngle=b->Angle;
  949. b->EvalSpeed=tnsDistIdv2(x,y,xto,yto)/b->Size;
  950. if(Our->ResetBrush){ b->LastX=x; b->LastY=y; b->LastAngle=atan2(yto-y,xto-x); b->EvalStrokeLength=0; Our->ResetBrush=0; }
  951. real this_angle=atan2(yto-y,xto-x);
  952. while(1){
  953. arrEnsureLength(&Our->Dabs,Our->NextDab,&Our->MaxDab,sizeof(OurDab)); OurDab* od=&Our->Dabs[Our->NextDab];
  954. real r=tnsGetRatiod(0,len,uselen-rem); od->X=tnsInterpolate(x,xto,r); od->Y=tnsInterpolate(y,yto,r); TNS_CLAMP(r,0,1);
  955. b->LastX=od->X; b->LastY=od->Y; tnsVectorSet3v(b->EvalColor, Our->CurrentColor);
  956. if(b->UseNodes){
  957. b->EvalPressure=tnsInterpolate(last_pressure,pressure,r); b->EvalPosition[0]=od->X; b->EvalPosition[1]=od->Y;
  958. b->EvalOffset[0]=0; b->EvalOffset[1]=0; b->EvalStrokeAngle=tnsInterpolate(b->LastAngle,this_angle,r);
  959. b->EvalTilt[0]=tnsInterpolate(last_angle_x,angle_x,r); b->EvalTilt[1]=tnsInterpolate(last_angle_y,angle_y,r);
  960. ourEvalBrush();
  961. 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);
  962. od->X+=b->EvalOffset[0]; od->Y+=b->EvalOffset[1];
  963. }
  964. if(!b->EvalDabsPerSize) b->EvalDabsPerSize=1;
  965. #define pfac(psw) (((!b->UseNodes)&&psw)?tnsInterpolate(last_pressure,pressure,r):1)
  966. od->Size = b->EvalSize*pfac(b->PressureSize); od->Hardness = b->EvalHardness*pfac(b->PressureHardness);
  967. od->Smudge = b->EvalSmudge*pfac(b->PressureSmudge); od->Color[3]=pow(b->EvalTransparency*pfac(b->PressureTransparency),2.718);
  968. tnsVectorSet3v(od->Color,b->EvalColor);
  969. #undef pfac;
  970. od->Slender = b->EvalSlender; od->Angle=b->EvalAngle;
  971. xmin=TNS_MIN2(xmin, od->X-od->Size); xmax=TNS_MAX2(xmax, od->X+od->Size);
  972. ymin=TNS_MIN2(ymin, od->Y-od->Size); ymax=TNS_MAX2(ymax, od->Y+od->Size);
  973. if(od->Size>1e-1) Our->NextDab++;
  974. step=our_PaintGetDabStepDistance(od->Size, b->EvalDabsPerSize);
  975. b->EvalStrokeLength+=step/b->Size; b->EvalStrokeLengthAccum+=step/b->Size; if(b->EvalStrokeLengthAccum>1e6){b->EvalStrokeLengthAccum-=1e6;}
  976. od->ResampleSmudge=0;
  977. if(b->Smudge>1e-3){ b->SmudgeAccum+=step;
  978. if(b->SmudgeAccum>(b->EvalSmudgeLength*od->Size)){ b->SmudgeAccum-=(b->EvalSmudgeLength*od->Size); od->ResampleSmudge=1; }
  979. od->Recentness=b->SmudgeAccum/b->EvalSmudgeLength/od->Size;
  980. }else{od->Recentness=0;}
  981. if(step+uselen<alllen)uselen+=step; else break;
  982. }
  983. b->LastAngle=this_angle;
  984. b->BrushRemainingDist=alllen-uselen;
  985. if(Our->NextDab) {
  986. our_LayerEnsureTiles(l,xmin,xmax,ymin,ymax,0,tl,tr,tu,tb);
  987. 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);
  988. return 1;
  989. }
  990. return 0;
  991. }
  992. void our_PaintDoSample(int x, int y, int sx, int sy, int ssize, int last,int begin_stroke){
  993. glUniform2i(Our->uBrushCorner,x-sx,y-sy);
  994. glUniform2f(Our->uBrushCenter,x-sx,y-sy);
  995. glUniform1f(Our->uBrushSize, ssize);
  996. glUniform1i(Our->uBrushErasing,last?(begin_stroke?2:1):0);
  997. glDispatchCompute(1,1,1);
  998. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  999. }
  1000. void our_PaintDoDab(OurDab* d, int tl, int tr, int tu, int tb){
  1001. int corner[2]; corner[0]=floorf(d->X-d->Size); corner[1]=floorf(d->Y-d->Size);
  1002. real MaxX,MaxY; MaxX=ceil(d->X+d->Size); MaxY=ceil(d->Y+d->Size);
  1003. if(corner[0]>tr||MaxX<tl||corner[1]>tb||MaxY<tu) return;
  1004. corner[0]=corner[0]-tl; corner[1]=corner[1]-tu;
  1005. float center[2]; center[0]=d->X-tl; center[1]=d->Y-tu;
  1006. glUniform2iv(Our->uBrushCorner,1,corner);
  1007. glUniform2fv(Our->uBrushCenter,1,center);
  1008. glUniform1f(Our->uBrushSize,d->Size);
  1009. glUniform1f(Our->uBrushHardness,d->Hardness);
  1010. glUniform1f(Our->uBrushSmudge,d->Smudge);
  1011. glUniform1f(Our->uBrushSlender,d->Slender);
  1012. glUniform1f(Our->uBrushAngle,d->Angle);
  1013. glUniform1f(Our->uBrushRecentness,d->Recentness);
  1014. glUniform4fv(Our->uBrushColor,1,d->Color);
  1015. glDispatchCompute(ceil(d->Size/16), ceil(d->Size/16), 1);
  1016. glMemoryBarrier(GL_SHADER_IMAGE_ACCESS_BARRIER_BIT);
  1017. }
  1018. void our_PaintDoDabs(OurLayer* l,int tl, int tr, int tu, int tb, int Start, int End){
  1019. for(int row=tb;row<=tu;row++){
  1020. for(int col=tl;col<=tr;col++){
  1021. OurTexTile* ott=l->TexTiles[row][col];
  1022. glBindImageTexture(0, ott->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1023. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  1024. for(int i=Start;i<End;i++){
  1025. our_PaintDoDab(&Our->Dabs[i],sx,sx+OUR_TILE_W,sy,sy+OUR_TILE_W);
  1026. }
  1027. }
  1028. }
  1029. }
  1030. STRUCTURE(OurSmudgeSegement){
  1031. laListItem Item;
  1032. int Start,End,Resample;
  1033. };
  1034. void our_PaintDoDabsWithSmudgeSegments(OurLayer* l,int tl, int tr, int tu, int tb){
  1035. laListHandle Segments={0}; int from=0,to=Our->NextDab; if(!Our->NextDab) return;
  1036. OurSmudgeSegement* oss;
  1037. oss=lstAppendPointerSized(&Segments, 0,sizeof(OurSmudgeSegement));
  1038. for(int i=1;i<to;i++){
  1039. if(Our->Dabs[i].ResampleSmudge){ oss->Start=from; oss->End=i; from=i;
  1040. oss=lstAppendPointerSized(&Segments, 0,sizeof(OurSmudgeSegement)); oss->Resample=1;
  1041. }
  1042. }
  1043. oss->Start=from; oss->End=to;
  1044. if(Our->Dabs[0].ResampleSmudge){ ((OurSmudgeSegement*)Segments.pFirst)->Resample=1; }
  1045. glUseProgram(Our->CanvasProgram);
  1046. glUniform1i(Our->uBrushErasing,Our->Erasing);
  1047. while(oss=lstPopItem(&Segments)){
  1048. if(oss->Resample || Our->CurrentBrush->SmudgeRestart){
  1049. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,1,&Our->RoutineDoSample);
  1050. int x=Our->Dabs[oss->Start].X, y=Our->Dabs[oss->Start].Y; float ssize=Our->Dabs[oss->Start].Size+1.5;
  1051. 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);
  1052. 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);
  1053. 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);
  1054. 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);
  1055. glBindImageTexture(1, Our->SmudgeTexture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1056. for(int col=colmin;col<=colmax;col++){
  1057. for(int row=rowmin;row<=rowmax;row++){
  1058. glBindImageTexture(0, l->TexTiles[row][col]->Texture->GLTexHandle, 0, GL_FALSE, 0, GL_READ_WRITE, GL_RGBA16);
  1059. int sx=l->TexTiles[row][col]->l,sy=l->TexTiles[row][col]->b;
  1060. our_PaintDoSample(x,y,sx,sy,ssize,(col==colmax)&&(row==rowmax),Our->CurrentBrush->SmudgeRestart);
  1061. }
  1062. }
  1063. Our->CurrentBrush->SmudgeRestart=0;
  1064. glUniformSubroutinesuiv(GL_COMPUTE_SHADER,1,&Our->RoutineDoDabs);
  1065. glUniform1i(Our->uBrushErasing,Our->Erasing);
  1066. }
  1067. //printf("from to %d %d %d\n", oss->Start,oss->End,Our->Dabs[oss->Start].ResampleSmudge);
  1068. our_PaintDoDabs(l,tl,tr,tu,tb,oss->Start,oss->End);
  1069. }
  1070. }
  1071. void our_EnsureEraser(int EventIsEraser){
  1072. if(EventIsEraser==Our->EventErasing){ return; }
  1073. printf("ev e %d %d\n", Our->EventErasing, Our->Erasing);
  1074. int erasing=Our->Erasing; int num=0;
  1075. if(EventIsEraser && (!Our->EventErasing)){ num=TNS_MAX2(Our->EraserID,num);
  1076. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1077. if(b->Binding==num){ ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break; }
  1078. }
  1079. Our->Erasing=1; Our->EventErasing=1; laNotifyUsers("our.erasing");
  1080. }
  1081. elif((!EventIsEraser) && Our->EventErasing){ num=TNS_MAX2(Our->PenID,num);
  1082. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1083. if(b->Binding==num){ ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break; }
  1084. }
  1085. Our->Erasing=0; Our->EventErasing=0; laNotifyUsers("our.erasing");
  1086. }
  1087. }
  1088. void our_ReadWidgetColor(laCanvasExtra*e,int x,int y){
  1089. uint8_t color[4];
  1090. glBindFramebuffer(GL_READ_FRAMEBUFFER, e->OffScr->FboHandle);
  1091. glReadBuffer(GL_COLOR_ATTACHMENT0);
  1092. glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
  1093. glReadPixels(x,y,1,1, GL_RGBA, GL_UNSIGNED_BYTE, color);
  1094. real a=(real)color[3]/255;
  1095. Our->CurrentColor[0]=(real)color[0]/255*a;
  1096. Our->CurrentColor[1]=(real)color[1]/255*a;
  1097. Our->CurrentColor[2]=(real)color[2]/255*a;
  1098. //tns2LinearsRGB(Our->CurrentColor);
  1099. }
  1100. void our_StartCropping(OurCanvasDraw* cd){
  1101. if(cd->CanvasDownX<Our->X){
  1102. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_BL; }
  1103. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_L; }
  1104. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_UL; }
  1105. }elif(cd->CanvasDownX>=Our->X&&cd->CanvasDownX<=Our->X+Our->W){
  1106. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_B; }
  1107. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_CENTER; }
  1108. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_U; }
  1109. }elif(cd->CanvasDownX>Our->X+Our->W){
  1110. if(cd->CanvasDownY<Our->Y-Our->H){ cd->AtCrop=OUR_AT_CROP_BR; }
  1111. elif(cd->CanvasDownY>=Our->Y-Our->H&&cd->CanvasDownY<=Our->Y){ cd->AtCrop=OUR_AT_CROP_R; }
  1112. elif(cd->CanvasDownY>Our->Y){ cd->AtCrop=OUR_AT_CROP_UR; }
  1113. }
  1114. }
  1115. void our_DoCropping(OurCanvasDraw* cd, real x, real y){
  1116. int dx=x-cd->CanvasLastX, dy=y-cd->CanvasLastY;
  1117. if(cd->AtCrop==OUR_AT_CROP_B||cd->AtCrop==OUR_AT_CROP_BL||cd->AtCrop==OUR_AT_CROP_BR){ Our->H-=dy; }
  1118. 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; }
  1119. 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; }
  1120. if(cd->AtCrop==OUR_AT_CROP_R||cd->AtCrop==OUR_AT_CROP_BR||cd->AtCrop==OUR_AT_CROP_UR){ Our->W+=dx; }
  1121. if(cd->AtCrop==OUR_AT_CROP_CENTER){ Our->Y+=dy; Our->X+=dx; }
  1122. if(Our->W<32) Our->W=32; if(Our->H<32) Our->H=32;
  1123. cd->CanvasLastX+=dx; cd->CanvasLastY+=dy;
  1124. }
  1125. int ourinv_NewLayer(laOperator* a, laEvent* e){
  1126. our_NewLayer("Our Layer"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1127. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1128. return LA_FINISHED;
  1129. }
  1130. int ourinv_RemoveLayer(laOperator* a, laEvent* e){
  1131. OurLayer* l=a->This?a->This->EndInstance:0; if(!l) return LA_CANCELED;
  1132. our_RemoveLayer(l); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1133. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("Remove Layer",0);
  1134. return LA_FINISHED;
  1135. }
  1136. int ourinv_MoveLayer(laOperator* a, laEvent* e){
  1137. OurLayer* l=a->This?a->This->EndInstance:0; if(!l) return LA_CANCELED; int changed=0;
  1138. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1139. if(strSame(direction,"up")&&l->Item.pPrev){ lstMoveUp(&Our->Layers, l); changed=1; }
  1140. elif(l->Item.pNext){ lstMoveDown(&Our->Layers, l); changed=1; }
  1141. if(changed){ laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); laRecordDifferences(0,"our.canvas.layers"); laPushDifferences("Move Layer",0); }
  1142. return LA_FINISHED;
  1143. }
  1144. int ourchk_MergeLayer(laPropPack *This, laStringSplitor *ss){
  1145. OurLayer* l=This->EndInstance; if(!l || !l->Item.pNext) return 0; return 1;
  1146. }
  1147. int ourinv_MergeLayer(laOperator* a, laEvent* e){
  1148. OurLayer* l=a->This?a->This->EndInstance:0; if(!l || !l->Item.pNext) return LA_CANCELED;
  1149. if(our_MergeLayer(l)){ laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst); }
  1150. return LA_FINISHED;
  1151. }
  1152. int ourchk_ExportLayer(laPropPack *This, laStringSplitor *ss){
  1153. OurLayer* ol=This?This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return 0; return 1;
  1154. }
  1155. int ourinv_ExportLayer(laOperator* a, laEvent* e){
  1156. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1157. laInvoke(a, "LA_file_dialog", e, 0, "warn_file_exists=true;filter_extensions=png;use_extension=png", 0);
  1158. return LA_RUNNING;
  1159. }
  1160. int ourmod_ExportLayer(laOperator* a, laEvent* e){
  1161. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1162. if (a->ConfirmData){
  1163. if (a->ConfirmData->StrData){
  1164. if(!our_LayerEnsureImageBuffer(ol, 0)) return LA_FINISHED;
  1165. FILE* fp=fopen(a->ConfirmData->StrData,"wb");
  1166. if(!fp) return LA_FINISHED;
  1167. our_LayerToImageBuffer(ol, 0);
  1168. our_ImageExportPNG(fp, 0, 0, 0, 0);
  1169. fclose(fp);
  1170. }
  1171. return LA_FINISHED;
  1172. }
  1173. return LA_RUNNING;
  1174. }
  1175. int ourinv_ImportLayer(laOperator* a, laEvent* e){
  1176. OurLayer* ol=a->This?a->This->EndInstance:0;
  1177. a->CustomData=memAcquire(sizeof(OurPNGReadExtra));
  1178. laInvoke(a, "LA_file_dialog", e, 0, "filter_extensions=png;use_extension=png", 0);
  1179. return LA_RUNNING;
  1180. }
  1181. int ourmod_ImportLayer(laOperator* a, laEvent* e){
  1182. OurLayer* ol=a->This?a->This->EndInstance:0;
  1183. OurPNGReadExtra* ex=a->CustomData;
  1184. if(!ex->Confirming){
  1185. if (a->ConfirmData){
  1186. if (a->ConfirmData->StrData){
  1187. FILE* fp=fopen(a->ConfirmData->StrData,"rb"); if(!fp) return LA_FINISHED;
  1188. if(!our_PeekPNG(fp,&ex->HasProfile, &ex->HassRGB, &ex->iccName)){ fclose(fp); return LA_FINISHED; }
  1189. else{ ex->Confirming=1; fclose(fp); strSafeSet(&ex->FilePath,a->ConfirmData->StrData);
  1190. if(ex->HasProfile){ex->InputMode=OUR_PNG_READ_INPUT_ICC;}
  1191. else{ ex->InputMode=OUR_PNG_READ_INPUT_SRGB; }
  1192. laEnableOperatorPanel(a,a->This,e->x,e->y,300,200,0,0,0,0,0,0,0,0,e); return LA_RUNNING;
  1193. }
  1194. }
  1195. return LA_FINISHED;
  1196. }
  1197. }else{
  1198. if (a->ConfirmData){
  1199. if (a->ConfirmData->Mode==LA_CONFIRM_OK){
  1200. FILE* fp=fopen(ex->FilePath->Ptr,"rb"); if(!fp) return LA_FINISHED;
  1201. if(!ol) ol=our_NewLayer("Imported");
  1202. int OutMode=ex->OutputMode?ex->OutputMode:((Our->ColorInterpretation==OUR_CANVAS_INTERPRETATION_SRGB)?OUR_PNG_READ_OUTPUT_LINEAR_SRGB:OUR_PNG_READ_OUTPUT_LINEAR_CLAY);
  1203. our_LayerImportPNG(ol, fp, 0, ex->InputMode, OutMode, 0, 0, 0);
  1204. laNotifyUsers("our.canvas"); laNotifyUsers("our.canvas.layers"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1205. laRecordDifferences(0,"our.canvas.layers");laRecordDifferences(0,"our.canvas.current_layer");laPushDifferences("New Layer",0);
  1206. our_LayerRefreshLocal(ol);
  1207. memFree(ex);
  1208. fclose(fp);
  1209. }
  1210. return LA_FINISHED;
  1211. }
  1212. }
  1213. return LA_RUNNING;
  1214. }
  1215. void ourui_ImportLayer(laUiList *uil, laPropPack *This, laPropPack *Operator, laColumn *UNUSED, int context){
  1216. laColumn* c = laFirstColumn(uil),*cl,*cr; laSplitColumn(uil,c,0.5);cl=laLeftColumn(c,0);cr=laRightColumn(c,0);
  1217. laUiItem* b;
  1218. laShowLabel(uil,c,"Select the importing behavior:",0,0);
  1219. laShowLabel(uil,cl,"Input:",0,0); laShowItem(uil,cl,Operator,"input_mode");
  1220. b=laOnConditionThat(uil,c,laNot(laEqual(laPropExpression(Operator,"input_mode"),laIntExpression(OUR_PNG_READ_INPUT_FLAT))));{
  1221. laShowLabel(uil,cr,"Output:",0,0); laShowItem(uil,cr,Operator,"output_mode");
  1222. laShowLabel(uil,cl,"Canvas:",0,0)->Flags|=LA_TEXT_ALIGN_RIGHT; laShowItem(uil,cr,0,"our.canvas.color_interpretation");
  1223. }laEndCondition(uil,b);
  1224. b=laOnConditionThat(uil,c,laPropExpression(Operator,"has_profile"));{
  1225. laShowLabel(uil,c,"Input image has built-in color profile:",0,0);
  1226. laShowItem(uil,cl,Operator,"icc_name")->Flags|=LA_TEXT_MONO;
  1227. }laElse(uil,b);{
  1228. laShowLabel(uil,c,"Input image does not have a built-in color profile.",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  1229. }laEndCondition(uil,b);
  1230. b=laOnConditionThat(uil,c,laPropExpression(Operator,"has_srgb"));{
  1231. laShowLabel(uil,c,"Input image is tagged as sRGB.",0,0);
  1232. }laElse(uil,b);{
  1233. laShowLabel(uil,c,"Input image is not tagged as sRGB.",0,0)->Flags|=LA_UI_FLAGS_DISABLED;
  1234. }laEndCondition(uil,b);
  1235. 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);
  1236. }
  1237. int ourchk_ExportImage(laPropPack *This, laStringSplitor *ss){
  1238. OurLayer* ol=This?This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return 0; return 1;
  1239. }
  1240. int ourinv_ExportImage(laOperator* a, laEvent* e){
  1241. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1242. laInvoke(a, "LA_file_dialog", e, 0, "warn_file_exists=true;", 0);
  1243. return LA_RUNNING;
  1244. }
  1245. int ourmod_ExportImage(laOperator* a, laEvent* e){
  1246. OurLayer* ol=a->This?a->This->EndInstance:0; if(!ol) ol=Our->CurrentLayer; if(!ol) return LA_FINISHED;
  1247. if (a->ConfirmData){
  1248. if (a->ConfirmData->StrData){
  1249. if(!our_CanvasEnsureImageBuffer()) return LA_FINISHED;
  1250. FILE* fp=fopen(a->ConfirmData->StrData,"wb");
  1251. if(!fp) return LA_FINISHED;
  1252. our_CanvasFillImageBufferBackground();
  1253. for(OurLayer* l=Our->Layers.pLast;l;l=l->Item.pPrev){
  1254. our_LayerToImageBuffer(ol, 1);
  1255. }
  1256. our_ImageExportPNG(fp, 0, 0, 0, Our->ShowBorder);
  1257. fclose(fp);
  1258. }
  1259. return LA_FINISHED;
  1260. }
  1261. return LA_RUNNING;
  1262. }
  1263. int ourinv_NewBrush(laOperator* a, laEvent* e){
  1264. our_NewBrush("Our Brush",15,0.95,9,0.5,0.5,5,0,0,0,0);
  1265. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Add brush",0);
  1266. return LA_FINISHED;
  1267. }
  1268. int ourinv_RemoveBrush(laOperator* a, laEvent* e){
  1269. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1270. our_RemoveBrush(b);
  1271. laNotifyUsers("our.tools.current_brush"); laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Remove brush",0);
  1272. return LA_FINISHED;
  1273. }
  1274. int ourinv_MoveBrush(laOperator* a, laEvent* e){
  1275. OurBrush* b=a->This?a->This->EndInstance:0; if(!b) return LA_CANCELED;
  1276. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1277. if(strSame(direction,"up")&&b->Item.pPrev){ lstMoveUp(&Our->Brushes, b); }
  1278. elif(b->Item.pNext){ lstMoveDown(&Our->Brushes, b); }
  1279. laNotifyUsers("our.tools.brushes"); laRecordInstanceDifferences(Our,"our_tools"); laPushDifferences("Move brush",0);
  1280. return LA_FINISHED;
  1281. }
  1282. void ourset_CurrentBrush(void* unused, OurBrush* b);
  1283. int ourinv_BrushQuickSwitch(laOperator* a, laEvent* e){
  1284. char* id=strGetArgumentString(a->ExtraInstructionsP,"binding"); if(!id){ return LA_CANCELED; }
  1285. int num; int ret=sscanf(id,"%d",&num); if(ret>9||ret<0){ return LA_CANCELED; }
  1286. for(OurBrush* b=Our->Brushes.pFirst;b;b=b->Item.pNext){
  1287. if(b->Binding==num){
  1288. ourset_CurrentBrush(Our,b); laNotifyUsers("our.tools.brushes"); break;
  1289. }
  1290. }
  1291. return LA_FINISHED;
  1292. }
  1293. int ourinv_BrushResize(laOperator* a, laEvent* e){
  1294. OurBrush* b=Our->CurrentBrush; if(!b) return LA_CANCELED;
  1295. char* direction=strGetArgumentString(a->ExtraInstructionsP,"direction");
  1296. if(strSame(direction,"bigger")){ b->Size*=1.1; }else{ b->Size/=1.1; }
  1297. TNS_CLAMP(b->Size,0,1000);
  1298. laNotifyUsers("our.tools.current_brush.size");
  1299. return LA_FINISHED;
  1300. }
  1301. int ourinv_Action(laOperator* a, laEvent* e){
  1302. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1303. our_PaintResetBrushState(ob);
  1304. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y); ex->CanvasLastX=x;ex->CanvasLastY=y;ex->LastPressure=-1;ex->LastTilt[0]=e->AngleX;ex->LastTilt[1]=e->AngleY;
  1305. ex->CanvasDownX=x; ex->CanvasDownY=y;
  1306. Our->ActiveTool=Our->Tool; Our->CurrentScale = 1.0f/ex->Base.ZoomX;
  1307. Our->xmin=FLT_MAX;Our->xmax=-FLT_MAX;Our->ymin=FLT_MAX;Our->ymax=-FLT_MAX; Our->ResetBrush=1; ex->HideBrushCircle=1;
  1308. if(Our->ActiveTool==OUR_TOOL_CROP){ if(!Our->ShowBorder) return LA_FINISHED; our_StartCropping(ex); }
  1309. our_EnsureEraser(e->IsEraser);
  1310. laHideCursor();
  1311. return LA_RUNNING;
  1312. }
  1313. int ourmod_Paint(laOperator* a, laEvent* e){
  1314. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1315. if(e->Type==LA_L_MOUSE_UP || e->Type==LA_R_MOUSE_DOWN || e->Type==LA_ESCAPE_DOWN){
  1316. our_RecordUndo(l,Our->xmin,Our->xmax,Our->ymin,Our->ymax,0,1); ex->HideBrushCircle=0; laShowCursor();
  1317. return LA_FINISHED;
  1318. }
  1319. if(e->Type==LA_MOUSEMOVE||e->Type==LA_L_MOUSE_DOWN){
  1320. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y);
  1321. int tl,tr,tu,tb; if(ex->LastPressure<0){ ex->LastPressure=e->Pressure; }
  1322. if(our_PaintGetDabs(ob,l,ex->CanvasLastX,ex->CanvasLastY,x,y,
  1323. ex->LastPressure,ex->LastTilt[0],ex->LastTilt[1],e->Pressure,e->AngleX,e->AngleY,&tl,&tr,&tu,&tb,&ex->CanvasLastX,&ex->CanvasLastY)){
  1324. our_PaintDoDabsWithSmudgeSegments(l,tl,tr,tu,tb);
  1325. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1326. }
  1327. ex->LastPressure=e->Pressure;ex->LastTilt[0]=e->AngleX;ex->LastTilt[1]=e->AngleY;
  1328. }
  1329. return LA_RUNNING;
  1330. }
  1331. int ourmod_Crop(laOperator* a, laEvent* e){
  1332. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1333. 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; }
  1334. if(e->Type==LA_MOUSEMOVE||e->Type==LA_L_MOUSE_DOWN){
  1335. real x,y; our_UiToCanvas(&ex->Base,e,&x,&y);
  1336. our_DoCropping(ex,x,y);
  1337. laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1338. }
  1339. return LA_RUNNING;
  1340. }
  1341. int ourmod_Action(laOperator* a, laEvent* e){
  1342. OurCanvasDraw *ex = a->This?a->This->EndInstance:0; if(!ex) return LA_CANCELED;
  1343. switch(Our->ActiveTool){
  1344. case OUR_TOOL_PAINT: OurLayer* l=Our->CurrentLayer; OurBrush* ob=Our->CurrentBrush; if(!l||!ob) return LA_CANCELED;
  1345. return ourmod_Paint(a,e);
  1346. case OUR_TOOL_CROP:
  1347. return ourmod_Crop(a,e);
  1348. default: return LA_FINISHED;
  1349. }
  1350. return LA_RUNNING;
  1351. }
  1352. int ourinv_PickColor(laOperator* a, laEvent* e){
  1353. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1354. laUiItem* ui=ex->Base.ParentUi; ex->HideBrushCircle=1;
  1355. our_ReadWidgetColor(ex, e->x-ui->L, ui->B-e->y); laNotifyUsers("our.current_color");
  1356. return LA_RUNNING;
  1357. }
  1358. int ourmod_PickColor(laOperator* a, laEvent* e){
  1359. OurLayer* l=Our->CurrentLayer; OurCanvasDraw *ex = a->This?a->This->EndInstance:0; OurBrush* ob=Our->CurrentBrush; if(!l||!ex||!ob) return LA_CANCELED;
  1360. laUiItem* ui=ex->Base.ParentUi;
  1361. if(e->Type==LA_R_MOUSE_UP || e->Type==LA_L_MOUSE_UP || e->Type==LA_ESCAPE_DOWN){ ex->HideBrushCircle=0; return LA_FINISHED; }
  1362. if(e->Type==LA_MOUSEMOVE||e->Type==LA_R_MOUSE_DOWN){
  1363. our_ReadWidgetColor(ex, e->x-ui->L, ui->B-e->y); laNotifyUsers("our.current_color");
  1364. }
  1365. return LA_RUNNING;
  1366. }
  1367. void ourget_CanvasIdentifier(void* unused, char* buf, char** ptr){
  1368. *ptr="Main canvas";
  1369. }
  1370. void* ourget_FirstLayer(void* unused, void* unused1){
  1371. return Our->Layers.pFirst;
  1372. }
  1373. void* ourget_FirstBrush(void* unused, void* unused1){
  1374. return Our->Brushes.pFirst;
  1375. }
  1376. void* ourget_our(void* unused, void* unused1){
  1377. return Our;
  1378. }
  1379. void ourget_LayerTileStart(OurLayer* l, int* xy){
  1380. our_LayerEnsureImageBuffer(l, 1); xy[0]=Our->ImageX; xy[1]=Our->ImageY+Our->ImageH;
  1381. }
  1382. void ourset_LayerTileStart(OurLayer* l, int* xy){
  1383. Our->TempLoadX = xy[0]; Our->TempLoadY = xy[1];
  1384. }
  1385. void* ourget_LayerImage(OurLayer* l, int* r_size, int* r_is_copy){
  1386. void* buf=0;
  1387. if(!our_LayerEnsureImageBuffer(l, 0)){ *r_is_copy=0; return 0; }
  1388. our_LayerToImageBuffer(l, 0);
  1389. if(our_ImageExportPNG(0,1,&buf,r_size, 0)){ *r_is_copy=1; return buf; }
  1390. *r_is_copy=0; return buf;
  1391. }
  1392. void ourset_LayerImage(OurLayer* l, void* data, int size){
  1393. if(!data) return;
  1394. our_LayerImportPNG(l, 0, data, 0, 0, 1, Our->TempLoadX, Our->TempLoadY);
  1395. }
  1396. void ourset_LayerMove(OurLayer* l, int move){
  1397. if(move<0 && l->Item.pPrev){ lstMoveUp(&Our->Layers, l); laNotifyUsers("our.canvas"); }
  1398. elif(move>0 && l->Item.pNext){ lstMoveDown(&Our->Layers, l); laNotifyUsers("our.canvas"); }
  1399. }
  1400. void ourset_BrushMove(OurBrush* b, int move){
  1401. if(move<0 && b->Item.pPrev){ lstMoveUp(&Our->Brushes, b); laNotifyUsers("our.tools.brushes"); }
  1402. elif(move>0 && b->Item.pNext){ lstMoveDown(&Our->Brushes, b); laNotifyUsers("our.tools.brushes"); }
  1403. }
  1404. void ourset_BackgroundColor(void* unused, real* arr){
  1405. memcpy(Our->BackgroundColor, arr, sizeof(real)*3); laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1406. }
  1407. void ourset_BorderAlpha(void* unused, real a){
  1408. Our->BorderAlpha=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1409. }
  1410. void ourset_Tool(void* unused, int a){
  1411. Our->Tool=a; laNotifyUsers("our.canvas");
  1412. }
  1413. void ourset_ShowBorder(void* unused, int a){
  1414. Our->ShowBorder=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1415. }
  1416. void ourset_ColorInterpretation(void* unused, int a){
  1417. Our->ColorInterpretation=a; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1418. }
  1419. void ourset_ShowTiles(void* unused, int a){
  1420. Our->ShowTiles=a; laNotifyUsers("our.canvas");
  1421. }
  1422. void ourset_CanvasSize(void* unused, int* wh){
  1423. 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);
  1424. }
  1425. void ourset_CanvasPosition(void* unused, int* xy){
  1426. Our->X=xy[0]; Our->Y=xy[1]; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1427. }
  1428. void ourset_LayerPosition(OurLayer* l, int* xy){
  1429. l->OffsetX=xy[0]; l->OffsetY=xy[1]; laNotifyUsers("our.canvas"); laMarkMemChanged(Our->CanvasSaverDummyList.pFirst);
  1430. }
  1431. void ourreset_Canvas(OurPaint* op){
  1432. while(op->Layers.pFirst){ our_RemoveLayer(op->Layers.pFirst); }
  1433. }
  1434. void ourreset_Preferences(OurPaint* op){
  1435. return; //does nothing.
  1436. }
  1437. void ourpropagate_Tools(OurPaint* p, laUDF* udf, int force){
  1438. for(OurBrush* b=p->Brushes.pFirst;b;b=b->Item.pNext){
  1439. if(force || !laget_InstanceActiveUDF(b)){ laset_InstanceUDF(b, udf); }
  1440. }
  1441. }
  1442. void ourset_CurrentBrush(void* unused, OurBrush* b){
  1443. real r; if(Our->LockRadius) r=Our->CurrentBrush?Our->CurrentBrush->Size:15;
  1444. Our->CurrentBrush=b; if(b && Our->LockRadius) b->Size=r;
  1445. if(b->DefaultAsEraser){ Our->Erasing=1; Our->EraserID=b->Binding; }else{ Our->Erasing=0; Our->PenID=b->Binding; }
  1446. laNotifyUsers("our.tools.current_brush"); laDriverRequestRebuild();
  1447. }
  1448. void ourset_CurrentLayer(void* unused, OurLayer*l){
  1449. memAssignRef(Our, &Our->CurrentLayer, l); laNotifyUsers("our.canvas");
  1450. }
  1451. #define OUR_ADD_PRESSURE_SWITCH(p)\
  1452. laAddEnumItemAs(p,"NONE","None","Not using pressure",0,0);\
  1453. laAddEnumItemAs(p,"ENABLED","Enabled","Using pressure",1,0);
  1454. void ourui_MenuButtons(laUiList *uil, laPropPack *pp, laPropPack *actinst, laColumn *extracol, int context){
  1455. laUiList *muil; laColumn *mc,*c = laFirstColumn(uil);
  1456. muil = laMakeMenuPage(uil, c, "File");{
  1457. mc = laFirstColumn(muil);
  1458. laShowLabel(muil, mc, "OurPaint", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1459. laShowItem(muil, mc, 0, "LA_udf_read");
  1460. laShowItemFull(muil, mc, 0, "LA_managed_save",0,"quiet=true;text=Save;",0,0);
  1461. laShowItem(muil, mc, 0, "LA_managed_save");
  1462. laShowLabel(muil, mc, "Image", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1463. laShowItem(muil, mc, 0, "OUR_export_image");
  1464. laShowLabel(muil, mc, "Layer", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1465. laShowItem(muil, mc, 0, "OUR_export_layer");
  1466. laShowItem(muil, mc, 0, "OUR_import_layer");
  1467. laShowLabel(muil, mc, "Others", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
  1468. laShowItem(muil, mc, 0, "LA_terminate_program");
  1469. //laui_DefaultMenuButtonsFileEntries(muil,pp,actinst,extracol,0);
  1470. }
  1471. muil = laMakeMenuPage(uil, c, "Edit");{
  1472. mc = laFirstColumn(muil); laui_DefaultMenuButtonsEditEntries(muil,pp,actinst,extracol,0);
  1473. }
  1474. muil = laMakeMenuPage(uil, c, "Options"); {
  1475. mc = laFirstColumn(muil); laui_DefaultMenuButtonsOptionEntries(muil,pp,actinst,extracol,0);
  1476. }
  1477. }
  1478. void ourPreFrame(){
  1479. if(MAIN.Drivers->NeedRebuild){ ourRebuildBrushEval(); }
  1480. }
  1481. void ourPushEverything(){
  1482. laFreeOlderDifferences(0);
  1483. for(OurLayer* ol=Our->Layers.pFirst;ol;ol=ol->Item.pNext){ our_LayerRefreshLocal(ol); }
  1484. }
  1485. void ourRegisterEverything(){
  1486. laPropContainer* pc; laKeyMapper* km; laProp* p; laOperatorType* at;
  1487. laCreateOperatorType("OUR_new_layer","New Layer","Create a new layer",0,0,0,ourinv_NewLayer,0,'+',0);
  1488. laCreateOperatorType("OUR_remove_layer","Remove Layer","Remove this layer",0,0,0,ourinv_RemoveLayer,0,L'🗴',0);
  1489. laCreateOperatorType("OUR_move_layer","Move Layer","Remove this layer",0,0,0,ourinv_MoveLayer,0,0,0);
  1490. laCreateOperatorType("OUR_merge_layer","Merge Layer","Merge this layer with the layer below it",ourchk_MergeLayer,0,0,ourinv_MergeLayer,0,0,0);
  1491. laCreateOperatorType("OUR_export_layer","Export Layer","Export this layer",ourchk_ExportLayer,0,0,ourinv_ExportLayer,ourmod_ExportLayer,L'🖫',0);
  1492. at=laCreateOperatorType("OUR_import_layer","Import Layer","Import a PNG into a layer",0,0,0,ourinv_ImportLayer,ourmod_ImportLayer,L'🗁',0);
  1493. at->UiDefine=ourui_ImportLayer; pc=laDefineOperatorProps(at, 1);
  1494. 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);
  1495. 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);
  1496. 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);
  1497. 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);
  1498. laAddEnumItemAs(p,"FLAT","Flat","Read the image as-is and don't do any color space transformations",OUR_PNG_READ_INPUT_FLAT,0);
  1499. laAddEnumItemAs(p,"ICC","Image ICC","Use the image built-in icc profile",OUR_PNG_READ_INPUT_ICC,0);
  1500. laAddEnumItemAs(p,"SRGB","Force sRGB","Interpret the image as sRGB regardless the image metadata",OUR_PNG_READ_INPUT_SRGB,0);
  1501. laAddEnumItemAs(p,"LINEAR_SRGB","Force Linear sRGB","Interpret the image as Linear sRGB regardless the image metadata",OUR_PNG_READ_INPUT_LINEAR_SRGB,0);
  1502. laAddEnumItemAs(p,"CLAY","Force Clay","Interpret the image as Clay (AdobeRGB 1998 compatible) regardless the image metadata",OUR_PNG_READ_INPUT_CLAY,0);
  1503. 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);
  1504. 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);
  1505. laAddEnumItemAs(p,"CANVAS","Follow Canvas","Transform the pixels into current canvas interpretation",OUR_PNG_READ_OUTPUT_CANVAS,0);
  1506. laAddEnumItemAs(p,"LINEAR_SRGB","Linear sRGB","Write sRGB pixels values into canvas regardless of the canvas interpretation",OUR_PNG_READ_OUTPUT_LINEAR_SRGB,0);
  1507. 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);
  1508. #define OUR_PNG_READ_OUTPUT_CANVAS 0
  1509. #define OUR_PNG_READ_OUTPUT_LINEAR_SRGB OUR_PNG_READ_INPUT_SRGB
  1510. #define OUR_PNG_READ_OUTPUT_LINEAR_CLAY OUR_PNG_READ_INPUT_LINEAR_CLAY
  1511. laCreateOperatorType("OUR_new_brush","New Brush","Create a new brush",0,0,0,ourinv_NewBrush,0,'+',0);
  1512. laCreateOperatorType("OUR_remove_brush","Remove Brush","Remove this brush",0,0,0,ourinv_RemoveBrush,0,L'🗴',0);
  1513. laCreateOperatorType("OUR_move_brush","Move Brush","Remove this brush",0,0,0,ourinv_MoveBrush,0,0,0);
  1514. laCreateOperatorType("OUR_brush_quick_switch","Brush Quick Switch","Brush quick switch",0,0,0,ourinv_BrushQuickSwitch,0,0,0);
  1515. laCreateOperatorType("OUR_brush_resize","Brush Resize","Brush resize",0,0,0,ourinv_BrushResize,0,0,0);
  1516. laCreateOperatorType("OUR_action","Action","Doing action on a layer",0,0,0,ourinv_Action,ourmod_Action,0,LA_EXTRA_TO_PANEL);
  1517. laCreateOperatorType("OUR_pick","Pick color","Pick color on the widget",0,0,0,ourinv_PickColor,ourmod_PickColor,0,LA_EXTRA_TO_PANEL);
  1518. laCreateOperatorType("OUR_export_image","Export Image","Export the image",ourchk_ExportImage,0,0,ourinv_ExportImage,ourmod_ExportImage,L'🖼',0);
  1519. laRegisterUiTemplate("panel_canvas", "Canvas", ourui_CanvasPanel, 0, 0,"Our Paint", GL_RGBA16F);
  1520. laRegisterUiTemplate("panel_layers", "Layers", ourui_LayersPanel, 0, 0,0, 0);
  1521. laRegisterUiTemplate("panel_tools", "Tools", ourui_ToolsPanel, 0, 0,0, 0);
  1522. laRegisterUiTemplate("panel_brushes", "Brushes", ourui_BrushesPanel, 0, 0,0, 0);
  1523. laRegisterUiTemplate("panel_color", "Color", ourui_ColorPanel, 0, 0,0, 0);
  1524. laRegisterUiTemplate("panel_brush_nodes", "Brush Nodes", ourui_BrushPage, 0, 0,0, 0);
  1525. pc=laDefineRoot();
  1526. laAddSubGroup(pc,"our","Our","OurPaint main","our_paint",0,0,0,-1,ourget_our,0,0,0,0,0,0,LA_UDF_SINGLE);
  1527. pc=laAddPropertyContainer("our_paint","Our Paint","OurPaint main",0,0,sizeof(OurPaint),0,0,1);
  1528. laAddSubGroup(pc,"canvas","Canvas","OurPaint canvas","our_canvas",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  1529. laAddSubGroup(pc,"tools","Tools","OurPaint tools","our_tools",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  1530. laAddSubGroup(pc,"preferences","Preferences","OurPaint preferences","our_preferences",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  1531. laAddFloatProperty(pc,"current_color","Current Color","Current color used to paint",0,0,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);
  1532. 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);
  1533. laAddEnumItemAs(p,"PAINT","Paint","Paint stuff on the canvas",OUR_TOOL_PAINT,L'🖌');
  1534. laAddEnumItemAs(p,"CROP","Cropping","Crop the focused region",OUR_TOOL_CROP,L'🖼');
  1535. 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);
  1536. laAddEnumItemAs(p,"FALSE","Draw","Is drawing mode",0,0);
  1537. laAddEnumItemAs(p,"TRUE","Erase","Is erasing mode",1,0);
  1538. pc=laAddPropertyContainer("our_preferences","Our Preferences","OurPaint preferences",0,0,sizeof(OurPaint),0,0,1);
  1539. laPropContainerExtraFunctions(pc,0,ourreset_Preferences,0,0,0);
  1540. 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);
  1541. laAddEnumItemAs(p,"FALSE","No","Dont' lock radius",0,0);
  1542. laAddEnumItemAs(p,"TRUE","Yes","Lock radius when changing brushes",1,0);
  1543. 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);
  1544. laAddEnumItemAs(p,"FALSE","No","Dont' show brush circle",0,0);
  1545. laAddEnumItemAs(p,"TRUE","Yes","Show brush circle on hover",1,0);
  1546. 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);
  1547. laAddEnumItemAs(p,"FALSE","No","Dont' show debug tiles on the canvas",0,0);
  1548. laAddEnumItemAs(p,"TRUE","Yes","Show debug tiles on the canvas",1,0);
  1549. pc=laAddPropertyContainer("our_tools","Our Tools","OurPaint tools",0,0,sizeof(OurPaint),0,0,1);
  1550. laPropContainerExtraFunctions(pc,0,0,0,ourpropagate_Tools,0);
  1551. 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);
  1552. 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);
  1553. pc=laAddPropertyContainer("our_brush","Our Brush","OurPaint brush",0,0,sizeof(OurBrush),0,0,2);
  1554. laAddStringProperty(pc,"name","Name","Name of the layer",0,0,0,0,1,offsetof(OurBrush,Name),0,0,0,0,LA_AS_IDENTIFIER);
  1555. 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,0);
  1556. 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);
  1557. 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);
  1558. 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);
  1559. 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);
  1560. 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);
  1561. 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);
  1562. 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);
  1563. 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);
  1564. 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);
  1565. 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);
  1566. 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);
  1567. 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);
  1568. 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);
  1569. OUR_ADD_PRESSURE_SWITCH(p);
  1570. 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);
  1571. OUR_ADD_PRESSURE_SWITCH(p);
  1572. 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);
  1573. OUR_ADD_PRESSURE_SWITCH(p);
  1574. 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);
  1575. OUR_ADD_PRESSURE_SWITCH(p);
  1576. 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);
  1577. laAddEnumItemAs(p,"NONE","None","Not using nodes",0,0);
  1578. laAddEnumItemAs(p,"ENABLED","Enabled","Using nodes",1,0);
  1579. 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);
  1580. 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);
  1581. laAddEnumItemAs(p,"NONE","None","Default as brush",0,0);
  1582. laAddEnumItemAs(p,"ENABLED","Enabled","Default as eraser",1,0);
  1583. laAddOperatorProperty(pc,"move","Move","Move brush","OUR_move_brush",0,0);
  1584. laAddOperatorProperty(pc,"remove","Remove","Remove brush","OUR_remove_brush",L'🗴',0);
  1585. pc=laAddPropertyContainer("our_canvas","Our Canvas","OurPaint canvas",0,0,sizeof(OurPaint),0,0,1);
  1586. laPropContainerExtraFunctions(pc,0,ourreset_Canvas,0,0,0);
  1587. Our->CanvasSaverDummyProp=laPropContainerManageable(pc, offsetof(OurPaint,CanvasSaverDummyList));
  1588. laAddStringProperty(pc,"identifier","Identifier","Canvas identifier placeholder",0,0,0,0,0,0,0,ourget_CanvasIdentifier,0,0,0);
  1589. laAddSubGroup(pc,"layers","Layers","Layers","our_layer",0,0,ourui_Layer,offsetof(OurPaint,CurrentLayer),0,0,0,0,0,0,offsetof(OurPaint,Layers),0);
  1590. 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);
  1591. laAddIntProperty(pc,"size","Size","Size of the cropping area",0,"X,Y","px",0,0,0,2400,0,offsetof(OurPaint,W),0,0,2,0,0,0,0,ourset_CanvasSize,0,0,0);
  1592. 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);
  1593. laAddFloatProperty(pc,"background_color","Background Color","Background color of the canvas",0,0,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);
  1594. 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);
  1595. 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);
  1596. laAddEnumItemAs(p,"FALSE","No","Dont' show border on the canvas",0,0);
  1597. laAddEnumItemAs(p,"TRUE","Yes","Show border on the canvas",1,0);
  1598. 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);
  1599. laAddEnumItemAs(p,"LINEAR_SRGB","Linear sRGB","Interpret the color values as if they are in Linear sRGB color space",OUR_CANVAS_INTERPRETATION_SRGB,0);
  1600. 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);
  1601. pc=laAddPropertyContainer("our_layer","Our Layer","OurPaint layer",0,0,sizeof(OurLayer),0,0,1);
  1602. laPropContainerExtraFunctions(pc,ourbeforefree_Layer,ourbeforefree_Layer,0,0,0);
  1603. laAddStringProperty(pc,"name","Name","Name of the layer",0,0,0,0,1,offsetof(OurLayer,Name),0,0,0,0,LA_AS_IDENTIFIER);
  1604. 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,0);
  1605. 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);
  1606. 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);
  1607. laAddRawProperty(pc,"image","Image","The image data of this tile",0,0,ourget_LayerImage,ourset_LayerImage,LA_UDF_ONLY);
  1608. laAddOperatorProperty(pc,"move","Move","Move Layer","OUR_move_layer",0,0);
  1609. laAddOperatorProperty(pc,"remove","Remove","Remove layer","OUR_remove_layer",L'🗴',0);
  1610. laAddOperatorProperty(pc,"merge","Merge","Merge Layer","OUR_merge_layer",L'🠳',0);
  1611. laCanvasTemplate* ct=laRegisterCanvasTemplate("our_CanvasDraw", "our_canvas", ourextramod_Canvas, our_CanvasDrawCanvas, our_CanvasDrawOverlay, our_CanvasDrawInit, la_CanvasDestroy);
  1612. pc = laCanvasHasExtraProps(ct,sizeof(OurCanvasDraw),2);
  1613. km = &ct->KeyMapper;
  1614. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_MOUSE_WHEEL_DOWN, 0, "direction=out");
  1615. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_MOUSE_WHEEL_UP, 0, "direction=in");
  1616. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_KEY_DOWN, ',', "direction=out");
  1617. laAssignNewKey(km, 0, "LA_2d_view_zoom", LA_KM_SEL_UI_EXTRA, 0, LA_KEY_DOWN, '.', "direction=in");
  1618. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, LA_KEY_ALT, LA_L_MOUSE_DOWN, 0, 0);
  1619. laAssignNewKey(km, 0, "LA_2d_view_move", LA_KM_SEL_UI_EXTRA, 0, LA_M_MOUSE_DOWN, 0, 0);
  1620. laAssignNewKey(km, 0, "OUR_action", LA_KM_SEL_UI_EXTRA, 0, LA_L_MOUSE_DOWN, 0, 0);
  1621. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, 0, LA_R_MOUSE_DOWN, 0, 0);
  1622. laAssignNewKey(km, 0, "OUR_pick", LA_KM_SEL_UI_EXTRA, LA_KEY_CTRL, LA_L_MOUSE_DOWN, 0, 0);
  1623. km=&MAIN.KeyMap; char buf[128];
  1624. for(int i=0;i<=9;i++){
  1625. sprintf(buf,"binding=%d",i); laAssignNewKey(km, 0, "OUR_brush_quick_switch", 0, 0, LA_KEY_DOWN, '0'+i, buf);
  1626. }
  1627. laAssignNewKey(km, 0, "OUR_brush_resize", 0, 0, LA_KEY_DOWN, '[', "direction=smaller");
  1628. laAssignNewKey(km, 0, "OUR_brush_resize", 0, 0, LA_KEY_DOWN, ']', "direction=bigger");
  1629. laSetMenuBarTemplates(ourui_MenuButtons, laui_DefaultMenuExtras, "OurPaint v0.1");
  1630. ourRegisterNodes();
  1631. laSaveProp("our.canvas");
  1632. laSaveProp("our.tools");
  1633. laGetSaverDummy(Our,Our->CanvasSaverDummyProp);
  1634. laAddExtraExtension(LA_FILETYPE_UDF,"ourpaint","ourbrush",0);
  1635. laAddExtraPreferencePath("our.preferences");
  1636. laAddExtraPreferencePage("OurPaint",ourui_OurPreference);
  1637. laSetAboutTemplates(ourui_AboutContent,ourui_AboutVersion,ourui_AboutAuthor);
  1638. laSetFrameCallbacks(ourPreFrame,0,0);
  1639. laSetDiffCallback(ourPushEverything);
  1640. }
  1641. int ourInit(){
  1642. Our=memAcquire(sizeof(OurPaint));
  1643. ourRegisterEverything();
  1644. our_InitColorProfiles();
  1645. char error[1024]; int status;
  1646. Our->SmudgeTexture=tnsCreate2DTexture(GL_RGBA16,256,1,0);
  1647. Our->CanvasShader = glCreateShader(GL_COMPUTE_SHADER);
  1648. const GLchar* source1 = OUR_CANVAS_SHADER;
  1649. glShaderSource(Our->CanvasShader, 1, &source1, NULL); glCompileShader(Our->CanvasShader);
  1650. glGetShaderiv(Our->CanvasShader, GL_COMPILE_STATUS, &status);
  1651. if (status == GL_FALSE){
  1652. glGetShaderInfoLog(Our->CanvasShader, sizeof(error), 0, error); printf("Canvas shader error:\n%s", error); glDeleteShader(Our->CanvasShader); return 0;
  1653. }
  1654. Our->CanvasProgram = glCreateProgram();
  1655. glAttachShader(Our->CanvasProgram, Our->CanvasShader); glLinkProgram(Our->CanvasProgram);
  1656. glGetProgramiv(Our->CanvasProgram, GL_LINK_STATUS, &status);
  1657. if (status == GL_FALSE){
  1658. glGetProgramInfoLog(Our->CanvasProgram, sizeof(error), 0, error); printf("Canvas program Linking error:\n%s", error); return 0;
  1659. }
  1660. Our->CompositionShader = glCreateShader(GL_COMPUTE_SHADER);
  1661. const GLchar* source2 = OUR_COMPOSITION_SHADER;
  1662. glShaderSource(Our->CompositionShader, 1, &source2, NULL); glCompileShader(Our->CompositionShader);
  1663. glGetShaderiv(Our->CompositionShader, GL_COMPILE_STATUS, &status);
  1664. if (status == GL_FALSE){
  1665. glGetShaderInfoLog(Our->CompositionShader, sizeof(error), 0, error); printf("Composition shader error:\n%s", error); glDeleteShader(Our->CompositionShader); return 0;
  1666. }
  1667. Our->CompositionProgram = glCreateProgram();
  1668. glAttachShader(Our->CompositionProgram, Our->CompositionShader); glLinkProgram(Our->CompositionProgram);
  1669. glGetProgramiv(Our->CompositionProgram, GL_LINK_STATUS, &status);
  1670. if (status == GL_FALSE){
  1671. glGetProgramInfoLog(Our->CompositionProgram, sizeof(error), 0, error); printf("Composition program Linking error:\n%s", error); return 0;
  1672. }
  1673. Our->uBrushCorner=glGetUniformLocation(Our->CanvasProgram,"uBrushCorner");
  1674. Our->uBrushCenter=glGetUniformLocation(Our->CanvasProgram,"uBrushCenter");
  1675. Our->uBrushSize=glGetUniformLocation(Our->CanvasProgram,"uBrushSize");
  1676. Our->uBrushHardness=glGetUniformLocation(Our->CanvasProgram,"uBrushHardness");
  1677. Our->uBrushSmudge=glGetUniformLocation(Our->CanvasProgram,"uBrushSmudge");
  1678. Our->uBrushRecentness=glGetUniformLocation(Our->CanvasProgram,"uBrushRecentness");
  1679. Our->uBrushColor=glGetUniformLocation(Our->CanvasProgram,"uBrushColor");
  1680. Our->uBrushSlender=glGetUniformLocation(Our->CanvasProgram,"uBrushSlender");
  1681. Our->uBrushAngle=glGetUniformLocation(Our->CanvasProgram,"uBrushAngle");
  1682. Our->uBrushErasing=glGetUniformLocation(Our->CanvasProgram,"uBrushErasing");
  1683. Our->uBrushRoutineSelection=glGetSubroutineUniformLocation(Our->CanvasProgram, GL_COMPUTE_SHADER, "uBrushRoutineSelection");
  1684. Our->RoutineDoDabs=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoDabs");
  1685. Our->RoutineDoSample=glGetSubroutineIndex(Our->CanvasProgram, GL_COMPUTE_SHADER, "DoSample");
  1686. Our->uMode=glGetUniformLocation(Our->CompositionProgram,"uMode");
  1687. Our->X=-2800/2; Our->W=2800;
  1688. Our->Y=2400/2; Our->H=2400;
  1689. Our->BorderAlpha=0.6;
  1690. Our->LockRadius=1;
  1691. Our->EnableBrushCircle=1;
  1692. Our->PenID=-1;
  1693. Our->EraserID=-1;
  1694. tnsEnableShaderv(T->immShader);
  1695. tnsVectorSet3(Our->BackgroundColor,0.2,0.2,0.2);
  1696. our_NewLayer("Our Layer");
  1697. 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");
  1698. laMarkMemClean(ob); laMarkMemClean(Our->CanvasSaverDummyList.pFirst);
  1699. laAddRootDBInst("our.canvas");
  1700. return 1;
  1701. }