Subversion Repositories wimsdev

Rev

Rev 16722 | Rev 16828 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
15111 schaersvoo 1
/*27/7/2013 version  0.01
7614 schaersvoo 2
"Inspired" by FLY program: http://martin.gleeson.com/fly
3
*********************************************************************************
4
* J.M. Evers 7/2013                                                             *
5
* This is all just amateur scriblings... So no copyrights.                      *
6
* This source code file, and compiled objects derived from it,                  *
7
* can be used and distributed without restriction, including for commercial use *
15111 schaersvoo 8
* No warrenty whatsoever                                                        *
7614 schaersvoo 9
*********************************************************************************
10
*/
15734 schaersvoo 11
#define VERSION         "0.5"
7848 bpr 12
#include "canvasdraw.h"
15348 bpr 13
void *tmp_buffer;
14
FILE    *js_include_file;
7614 schaersvoo 15
/******************************************************************************
16
**  Internal Functions
17
******************************************************************************/
18
void    add_to_buffer(char *tmp); /* add tmp_buffer to the buffer */
19
void    sync_input(FILE *infile);/* proceed with inputfile */
14078 bpr 20
void    reset();/* reset some global variables like "use_filled", "use_dashed" */
7614 schaersvoo 21
int     get_token(FILE *infile); /* read next char until EOL*/
8225 bpr 22
/*
7614 schaersvoo 23
int     x2px(double x);
24
int     y2px(double y);
8225 bpr 25
*/
15111 schaersvoo 26
double  px2x(int x);
27
double  px2y(int y);
7906 schaersvoo 28
double  get_real(FILE *infile,int last); /* read a value; calculation and symbols allowed */
7614 schaersvoo 29
char    *str_replace ( const char *word, const char *sub_word, const char *rep_word );
15111 schaersvoo 30
char    *get_color(FILE *infile,int last); /* read hex-color or colorname -> hex */
7906 schaersvoo 31
char    *get_string(FILE *infile,int last); /* get the string at the end of a command */
7614 schaersvoo 32
char    *get_string_argument(FILE *infile,int last); /* the same, but with "comma" as  separator */
15111 schaersvoo 33
char    *convert_hex2rgb(char *hexcolor);
7614 schaersvoo 34
void    make_js_include(int canvas_root_id);
35
void    check_string_length(int length);/* checks if the length of string argument of command is correct */
15111 schaersvoo 36
FILE    *js_include_file;
7614 schaersvoo 37
FILE    *get_file(int *line_number, char **filename);
15111 schaersvoo 38
FILE    *infile;    /* will be stdin */
7614 schaersvoo 39
/******************************************************************************
40
** global
41
******************************************************************************/
42
int finished = FALSE;/* main variable for signalling the end of the fly-script ; if finished = 1 ; write to stdout or canvasz */
43
int line_number = 1;/* used in canvas_error() ; keep track of line number in canvasdraw/fly - script */
44
/* set some variables to avoid trouble (NaN) in case of syntax and other usage errors */
45
int xsize = 320;
46
int ysize = 320;
47
double xmin = 0.0;
48
double xmax = 320.0;
49
double ymin = 0.0;
50
double ymax = 320.0;
11893 schaersvoo 51
double tmax = 0;
52
double tmin = 0;
7614 schaersvoo 53
/* flag to indicate parsing of line status */
8224 bpr 54
int done = FALSE;
7614 schaersvoo 55
int type; /* eg command number */
15111 schaersvoo 56
int onclick = 0;
57
/*
15116 bpr 58
 
59
1 = onclick ;
60
2 = draggable ;
61
3 = click+slideable ;
62
4 = slideable without click
15111 schaersvoo 63
5 = draggable + slideable
64
*/
14208 schaersvoo 65
char *slider_type="0";
15111 schaersvoo 66
char *my_sliders = "[-1]";
67
int use_slider = -1;
68
int last_slider = 0;
69
double double_data[MAX_INT+1];
70
int int_data[MAX_INT+1];
71
int dragstuff[MAX_DRAGSTUFF];
72
int js_function[MAX_JS_FUNCTIONS]; /* javascript functions include objects on demand basis: only once per object type */
73
double affine_matrix[] = {1,0,0,1,0,0};
7785 schaersvoo 74
int use_affine = FALSE;
7614 schaersvoo 75
int use_rotate = FALSE;
14078 bpr 76
int use_filled = 0; /* 0:no fill, 1:fill,2=grid?,3=hatch?,4=diamond?,5=dot?,6=image? */
77
int use_dashed = FALSE; /* dashing not natively supported in firefox, for now... */
15111 schaersvoo 78
double angle = 0.0;
7614 schaersvoo 79
char buffer[MAX_BUFFER];/* contains js-functions with arguments ... all other basic code is directly printed into js-include file */
9329 schaersvoo 80
char *getfile_cmd = "";
15111 schaersvoo 81
int reply_format = 0;
82
unsigned int canvas_root_id;
83
char *css_class;
84
int font_size;
85
char *draw_type;
86
int jsplot_cnt = -1;     /* keepint track on the curve identity */
87
int input_cnt = 0;
88
int dashtype[2] = { 4 , 4 }; /* just line_px and space_px: may have more arguments...if needed in future */
89
char *function_label = "[\"f(x)=\",\"g(x)=\",\"h(x)=\"]";
90
int drag_type = -1;/* 0,1,2: xy,x,y */
91
int use_offset = 0;/* use_offset only for text shape objects... 0=none;1=yoffset;2=xoffset;3=xyoffset;4=centered*/
92
int linegraph_cnt = 0; /* identifier for command 'linegraph' ; multiple line graphs may be plotted in a single plot*/
93
int barchart_cnt = 0; /* identifier for command 'barchart' ; multiple charts may be plotted in a single plot*/
94
int legend_cnt = -1; /* to allow multiple legends to be used, for multiple piecharts etc  */
95
int use_axis = FALSE;
96
int use_axis_numbering = -1;
97
int no_reset = FALSE;
98
 
7614 schaersvoo 99
/******************************************************************************
100
** Main Program
101
******************************************************************************/
102
int main(int argc, char *argv[]){
14066 bpr 103
    /* need unique id for every call to canvasdraw: rand(); is too slow...will result in many identical id's */
12104 schaersvoo 104
    struct timeval tv;struct timezone tz;gettimeofday(&tv, &tz);
15111 schaersvoo 105
    canvas_root_id = (unsigned int) tv.tv_usec;
7614 schaersvoo 106
    infile = stdin;/* read flyscript via stdin */
107
    int i,c;
15111 schaersvoo 108
    for(i=0;i<MAX_DRAGSTUFF;i++){dragstuff[i] = 0;}
7614 schaersvoo 109
    for(i=0;i<MAX_INT;i++){int_data[i]=0;double_data[i]=0;}
14066 bpr 110
    int use_snap = 0; /* 0 = none 1=grid: 2=x-grid: 3=y-grid: 4=snap to points */
8448 schaersvoo 111
    int print_drag_params_only_once = FALSE;/* avoid multiple useless identical lines about javascript precision and use_dragdrop */
7614 schaersvoo 112
    int line_width = 1;
113
    int decimals = 2;
15111 schaersvoo 114
    int use_dragstuff = 0;
8365 schaersvoo 115
    int precision = 100; /* 10 = 1;100=2;1000=3 decimal display for mouse coordinates or grid coordinate.May be redefined before every object */
15111 schaersvoo 116
    int use_userdraw = 0; /* 0=none,1=userdraw,2=multidraw flag to indicate user interaction */
9329 schaersvoo 117
    int use_tooltip = -1; /* 1= tooltip 2= popup window*/
15601 schaersvoo 118
    int use_parametric = FALSE;/* will be reset after parametric plotting */
7614 schaersvoo 119
    char *tooltip_text = "Click here";
120
    char *temp = ""; /* */
121
    char *bgcolor = "";/* used for background of canvas_div ; default is tranparent */
122
    char *stroke_color = "255,0,0";
14208 schaersvoo 123
    char *fill_color = "255,255,255";
15313 schaersvoo 124
    char *font_family = "12px Arial"; /* commands xaxistext,yaxistext,legend,text/textup/string/stringup may us this */
7614 schaersvoo 125
    char *font_color = "#00000";
15111 schaersvoo 126
    draw_type = "points";
7614 schaersvoo 127
    char *fly_font = "normal";
15111 schaersvoo 128
    css_class = "none";
7614 schaersvoo 129
    char *flytext = "";
11006 schaersvoo 130
    int canvas_type = DRAG_CANVAS; /* to use a specific canvas  for filling etc */
7614 schaersvoo 131
    int pixelsize = 1;
11763 schaersvoo 132
    int fill_cnt = 0;
15111 schaersvoo 133
    int use_zoom = 0;
15313 schaersvoo 134
    font_size = 12;/* this may lead to problems when using something like <code>fontfamily Italic 24px Arial</code> the ''fontsize`` value is not substituted into fontfamily !! */
8388 schaersvoo 135
    int fly_font_size = 12; /*fly_font_size is relative to this... */
7614 schaersvoo 136
    for(i=0;i<MAX_JS_FUNCTIONS;i++){js_function[i]=0;}
8365 schaersvoo 137
    int arrow_head = 8; /* size in px needed for arrow based  userdraw:  "userdraw arrow,color" */
7833 schaersvoo 138
    int crosshair_size = 5; /* size in px*/
8365 schaersvoo 139
    int plot_steps = 250;/* the js-arrays with x_data_points and y_data_points will have size 250 each: use with care !!! use jscurve when precise plots are required  */
14066 bpr 140
    int found_size_command = 0; /* 1 = found size ; 2 = found xrange; 3 = found yrange: just to flag an error message */
15111 schaersvoo 141
    int object_cnt = 0; /*counter to identify the "onclick" ojects ; 0 is first object set onclick: reply[object_cnt]=1 when clicked ; otherwise reply[object_cnt]=0 ; object_cnt is only increased when another object is set  again */
7614 schaersvoo 142
    int clock_cnt = 0; /* counts the amount of clocks used -> unique object clock%d */
9433 schaersvoo 143
    int boxplot_cnt = 0;
15111 schaersvoo 144
    int drawxml_cnt = 0;
11890 schaersvoo 145
    int numberline_cnt = 0;
8074 schaersvoo 146
    int reply_precision = 100; /* used for precision of student answers / drawings */
15111 schaersvoo 147
    char *rotation_center = "null";/* needs to be removed... but is used for canvas CTX based rotation*/
148
    double rotationcenter[] = {0,0}; /* use for recalculating x/y values on rotation() */
11893 schaersvoo 149
    int use_animate = 0; /* used for jscurve / js parametric  */
7823 schaersvoo 150
    int use_input_xy = 0; /* 1= input fields 2= textarea 3=calc y value*/
8365 schaersvoo 151
    size_t string_length = 0; /* measure the size of the user input fly-string */
152
    double stroke_opacity = 0.8; /* use some opacity as default */
14208 schaersvoo 153
    double fill_opacity = 0.5;/* use some opacity as default */
7614 schaersvoo 154
    char *URL = "http://localhost/images";
155
    memset(buffer,'\0',MAX_BUFFER);
156
    void *tmp_buffer = "";
157
    /* default writing a unzipped js-include file into wims getfile directory */
158
    char *w_wims_session = getenv("w_wims_session");
12104 schaersvoo 159
    if(  w_wims_session == NULL || *w_wims_session == 0 ){canvas_error("Hmmm, your wims environment does not exist...\nCanvasdraw should be used within wims.");}
7614 schaersvoo 160
    int L0=strlen(w_wims_session) + 21;
161
    char *getfile_dir = my_newmem(L0); /* create memory to fit string precisely */
162
    snprintf(getfile_dir,L0, "../sessions/%s/getfile",w_wims_session);/* string will fit precisely  */
163
    mode_t process_mask = umask(0); /* check if file exists */
164
    int result = mkdir(getfile_dir, S_IRWXU | S_IRWXG | S_IRWXO);
165
    if( result == 0 || errno == EEXIST ){
166
     umask(process_mask); /* be sure to set correct permission */
8224 bpr 167
     char *w_session = getenv("w_session");
7614 schaersvoo 168
     int L1 = (int) (strlen(w_session)) + find_number_of_digits(canvas_root_id) + 48;
12104 schaersvoo 169
     getfile_cmd = my_newmem(L1); /* create memory to fit string precisely */
8224 bpr 170
     snprintf(getfile_cmd,L1,"wims.cgi?session=%s&cmd=getfile&special_parm=%d.js",w_session,canvas_root_id);/* extension ".gz" is MANDATORY for webserver */
13306 obado 171
    /* write the include tag to html page:<script src="wims.cgi?session=%s&cmd=getfile&special_parm=11223344_js"></script> */
7614 schaersvoo 172
    /* now write file into getfile dir*/
14066 bpr 173
    char *w_wims_home = getenv("w_wims_home"); /* "/home/users/wims": we need absolute path for location */
7614 schaersvoo 174
    int L2 = (int) (strlen(w_wims_home)) + (int) (strlen(w_wims_session)) + find_number_of_digits(canvas_root_id) + 23;
175
    char *location = my_newmem(L2); /* create memory to fit string precisely */
176
    snprintf(location,L2,"%s/sessions/%s/getfile/%d.js",w_wims_home,w_wims_session,canvas_root_id);/*absolute path */
177
    js_include_file = fopen(location,"w");/* open the file location for writing */
14066 bpr 178
    /* check on opening...if nogood: mount readonly? disk full? permissions not set correctly? */
179
    if(js_include_file == NULL){ canvas_error("SHOULD NOT HAPPEN: could not write to javascript include file...check your system logfiles !" );}
7614 schaersvoo 180
 
181
/* ----------------------------------------------------- */
11997 schaersvoo 182
 
7614 schaersvoo 183
/* while more lines to process */
184
 
185
    while(!finished){
9329 schaersvoo 186
        if(line_number>1 && found_size_command == 0 && use_tooltip != 2 ){canvas_error("command \"size xsize,ysize\" needs to come first ! ");}
7614 schaersvoo 187
        type = get_token(infile);
188
        done = FALSE;
189
        /*
9385 schaersvoo 190
        @ canvasdraw
15116 bpr 191
        @ Canvasdraw will try use the same basic syntax structure as flydraw
15711 schaersvoo 192
        @ General syntax <ul><li>The transparency of all objects can be controlled by command <a href="#opacity">opacity [0-255],[0,255]</a></li><li>line width of any object can be controlled by command <a href="#linewidth">linewidth int</a></li><li>any may be dashed by using keyword <a href="#dashed">dashed</a> before the object command.<br />the dashing type can be controled by command <a href="#dashtype">dashtype int,int</a>please note: dashing may have different spacing depending on the angle of the line<br />see https://wimsedu.info/?topic=dashed-arrows-not-dashed-in-canvasdraw</li><li>a fillable object can be set fillable by starting the object command with an ''f`` (like ''frect``,''fcircle``,''ftriangle`` ...) or by using the keyword <a href="#filled">filled</a> before the object command.<br />The fill colour of ''non_userdraw`` objects will be the stroke colour...(flydraw harmonization 19/10/2013)<br />non-solid filling (grid,hatch,diamond,dot,text) is provided using command <a href="#fillpattern">fillpattern a_pattern</a><br />note: do not use a <b>f</b> with this non-solid pattern filling !<br />for <a href="#filltoborder">filltoborder x0,y0,color</a> or <a href="#filltoborder">fill x0,y0,color</a> type filling (eg fill a region around x0,y0 with color until a border is encountered),<br />there are non-solid pattern fill analogues:<ul><li><a href="#gridfill">gridfill x,y,dx,dy,color</a></li><li><a href="#hatchfill">hatchfill x,y,dx,dy,color</a></li><li><a href="#diamondfill">diamondfill x,y,dx,dy,color</a></li><li><a href="#dotfill">dotfill x,y,dx,dy,color</a></li><li><a href="#textfill">textfill x,y,color,sometext_or_char</a></li></ul></li><li>all draggable objects may have a <a href="#slider">slider</a> for translation / rotation; several objects may be translated / rotated by a single slider</li> <li> a draggable object can be set draggable by a preceding command <a href="#drag">drag x/y/xy</a><br />The translation can be read by javascript:read_dragdrop();The replyformat is: object_number : x-orig : y-orig : x-drag : y-drag<br />The x-orig/y-orig will be returned in maximum precision (javascript float)...<br />the x-drag/y-drag will be returned in defined ''precision`` number of decimals<br />Multiple objects may be set draggable / clickable (no limit)<br /> not all flydraw objects may be dragged / clicked<br />Only draggable / clickable objects will be scaled on <a href="#zoom">zoom</a> and will be translated in case of panning.</li><li> a ''onclick object`` can be set ''clickable`` by the preceding keyword <a href="#onclick">onclick</a><br />not all flydraw objects can be set clickable</li><li><b>remarks using a '';`` as command separator</b>. Commands with only numeric or colour arguments may be using a '';`` as command separator (instead of a new line). Commands with a string argument may not use a '';`` as command separator !<br />these exceptions are not really straight forward... so keep this in mind.</li><li>almost every <a href="#userdraw">userdraw object,color</a> or <a href="#multidraw">multidraw</a> command ''family`` may be combined with keywords <a href="#snaptogrid">"snaptogrid | xsnaptogrid | ysnaptogrid | snaptofunction</a> or command <code>snaptopoints x1,y1,x2,y2,...</code></li><li>every draggable | onclick object may be combined with keywords <a href="#snaptogrid">snaptogrid | xsnaptogrid | ysnaptogrid | snaptofunction</a> or command <code>snaptopoints x1,y1,x2,y2,...</code></li><li>almost every command for a single object has a multiple objects counterpart:<br /><ul>general syntax rule:<li><code>object x1,y1,...,color</code></li><li><code>objects color,x1,y1,...</code></li></ul><li>All inputfields or textareas generated, can be styled individually using command <a href="#css">css some_css</a><br/>the fontsize used for labeling these elements can be controlled by command <a href="#fontsize">fontsize int</a> <br />command <code>fontfamily</code> is <b>not</b> active for these elements</li></ul>
15304 schaersvoo 193
        @ If needed multiple interactive scripts (*) may be used in a single webpage.<br />A function <code>read_canvas()</code> and / or <code>read_dragdrop()</code> can read all interactive userdata from these images.<br />The global array <code>canvas_scripts</code>will contain all unique random "canvas_root_id" of the included scripts.<br />The included local javascript "read" functions ''read_canvas%d()`` and ''read_dragdrop%d()`` will have this ''%d = canvas_root_id``<br /> e.g. canvas_scripts[0] will be the random id of the first script in the page and will thus provide a function<br /><code>fun = eval("read_canvas"+canvas_scripts[0])</code> to read user based drawings / inputfield in this first image.<br />The read_dragdrop is analogue.<br />If the default reply formatting is not suitable, use command <a href='#replyformat'>replyformat</a> to format the replies for an individual canvas script,<br />To read all user interactions from all included canvas scripts, use something like:<br /><code>function read_all_canvas_images(){<br />&nbsp;var script_len = canvas_scripts.length;<br />&nbsp;var draw_reply = "";<br />&nbsp;var found_result = false;<br />&nbsp;for(var p = 0 ; p < script_len ; p++){<br />&nbsp;&nbsp;var fun = eval("read_canvas"+canvas_scripts[p]);<br />&nbsp;&nbsp;if( typeof fun === 'function'){<br />&nbsp;&nbsp;&nbsp;var result = fun();<br />&nbsp;&nbsp;&nbsp;if( result&nbsp;&nbsp;&& result.length != 0){<br />&nbsp;&nbsp;&nbsp;&nbsp;if(script_len == 1 ){.return result;};<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;found_result = true;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;draw_reply = draw_reply + result + "newline";<br />&nbsp;&nbsp;&nbsp;&nbsp;};<br />&nbsp;&nbsp;&nbsp;};<br />&nbsp;&nbsp;};<br />&nbsp;if( found_result ){return draw_reply;}else{return null;};<br />};</code> <br />(*) Note: the speed advantage over <em>canvas-do-it-all</em> libraries is reduced to zero, when multiple canvasdraw scripts are present in a single page...<br />For example a typical canvasdraw script is between 5 and 40 kB...a large library like JSXgraph is approx 600 kB<br />In these cases it would be much faster to load a static general HTML5 canvas javascript draw library and parse it multiple raw fly instructions !<br />
15111 schaersvoo 194
        @ Canvasdraw can be used to paint a html5 bitmap image<br />by generating a tailor-made javascript include file: providing only the js-functionality needed to perform the job.<br />thus ensuring a minimal strain on the client browser <br />(unlike some popular ''canvas-do-it-all`` libraries, who have proven to be not suitable for low-end computers found in schools...)
195
        @ You can check the javascript reply format in the wims tool <a href="http://localhost/wims/wims.cgi?lang=en&module=tool/directexec">direct exec</a>
196
        @ For usage within OEF (without anstype ''draw``), something like this (a popup function plotter) will work:<br /><code>\\text{popup_grapher=wims(exec canvasdraw <br />popup<br />size 400,400<br />xrange -10,10<br />yrange -10,10<br />axis<br />axisnumbering<br />opacity 100,100<br />grid 2,2,grey,2,2,6,black<br />snaptogrid<br />linewidth 2<br />jsplot red,5*sin(1/x)<br />strokecolor green<br />functionlabel f(x)=<br />userinput function<br />mouse blue,22<br />)<br />}<br />\\statement{<br />\\popup_grapher<br />}</code>.
14379 bpr 197
        @ Be aware that older browsers will probably not work correctly<br />no effort has been undertaken to add glue code for older browsers !! <br />in any case it is not wise to use older browsers...not just for canvasdraw.
15111 schaersvoo 198
        @ Be aware that combining several different objects and interactivity may lead to problems.
14379 bpr 199
        @ If you find flaws, errors or other incompatibilities -not those mentioned in this document- send <a href='mailto:jm.evers-at-schaersvoorde.nl'>me</a> an email with screenshots and the generated javascript include file.
15633 bpr 200
        @ There is limited support for touch devices: touchstart, touchmove and touchend in commands <a href="#userdraw">userdraw primitives </a>, <a href="#multidraw">multidraw primitives </a>, <a href="#protractor">protractor</a>, <a href="#ruler">ruler</a> and probably a few others... <br />Only single finger gestures are supported (for now).<br />The use of a special pen is advised for interactive drawing on touch devices.<br />For more accurate user-interaction (numeric, eg keyboard driven drawings) with canvasdraw on touch devices: use the command family <a href="#userinput_xy">userinput</a>.
7614 schaersvoo 201
        */
202
        switch(type){
15111 schaersvoo 203
        case END:finished = 1;done = TRUE;break;
204
        case 0:sync_input(infile);break;
11806 schaersvoo 205
        case AFFINE:
7614 schaersvoo 206
        /*
11806 schaersvoo 207
         @ affine a,b,c,d,tx,ty
208
         @ defines a transformation matrix for subsequent objects
14066 bpr 209
         @ use keyword <a href='#killaffine'>killaffine</a> to end the transformation...the next objects will be drawn in the original x/y-range
210
         @ a: Scales the drawings horizontally
211
         @ b: Skews the drawings horizontally
212
         @ c: Skews the drawings vertically
213
         @ d: Scales the drawings vertically
11806 schaersvoo 214
         @ tx: Moves the drawings horizontally in xrange coordinate system
215
         @ ty: Moves the drawings vertically in yrange coordinate system
14078 bpr 216
         @ the data precision may be set by preceding command ''precision int``
15541 schaersvoo 217
         @ <b>note</b>: not all affine operations on canvasdraw objects will be identical to flydraw's behaviour. Make sure to check !
15111 schaersvoo 218
         @%affine%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%#use larger linewith to improve selecting a draggable object !%linewidth 4%drag xy%frect 0,5,3,3,red%affine cos(pi/4),sin(pi/4),-cos(pi/2),sin(pi/2),-5,-5%drag xy%frect 0,5,3,3,red
15313 schaersvoo 219
         @%affine+latex%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%strokecolor blue%fontfamily 42px Arial%centered%drag xy%latex 5,5,\\frac{123}{\\pi^{234}}%affine cos(pi/4),sin(pi/4),-cos(pi/2),sin(pi/2),-5,-5%drag xy%latex 5,5,\\frac{123}{\\pi^{234}}
7614 schaersvoo 220
        */
11806 schaersvoo 221
            for(i = 0 ; i<6;i++){
7614 schaersvoo 222
                switch(i){
15111 schaersvoo 223
                    case 0: affine_matrix[0] = get_real(infile,0);break;
224
                    case 1: affine_matrix[1] = get_real(infile,0);break;
225
                    case 2: affine_matrix[2] = get_real(infile,0);break;
226
                    case 3: affine_matrix[3] = get_real(infile,0);break;
227
                    case 4: affine_matrix[4] = get_real(infile,0);break;
228
                    case 5: affine_matrix[5] = get_real(infile,1);
11806 schaersvoo 229
                        use_affine = TRUE;
230
                        break;
7614 schaersvoo 231
                    default: break;
232
                }
233
            }
11806 schaersvoo 234
        break;
14394 schaersvoo 235
        case ALLOW_DUPLICATES:
236
        /*
14393 schaersvoo 237
         @ duplicates || allowdups
238
         @ keyword (no arguments)
15645 bpr 239
         @ only useful in case of a <a href="#multidraw">multidraw</a> student reply.
240
         @ only useful in default <a href="#replyformat">replyformat</a> (eg in case of a not specified replyformat).
14396 bpr 241
         @ if set, duplicate (x:y) coordinates will not be removed from the student reply.
15645 bpr 242
         @ technical: a javascript variable "allow_duplicate_answer = 1;" is declared.
243
         @ default for command multidraw is: removal of duplicates.
14393 schaersvoo 244
        */
15111 schaersvoo 245
        fprintf(js_include_file,"var allow_duplicate_answers = 1;");
14393 schaersvoo 246
        break;
11806 schaersvoo 247
        case ANGLE:
7614 schaersvoo 248
        /*
11806 schaersvoo 249
         @ angle xc,yc,width,start_angle,end_angle,color
250
         @ width is in x-range
14208 schaersvoo 251
         @ angles are in degrees
252
         @ not compatible with ''flydraw``
11806 schaersvoo 253
         @ will zoom in/out
15690 schaersvoo 254
         @ may be set onclick or drag&amp;drop
14208 schaersvoo 255
         @ if angle size is controlled by command <a href='#slider'>slider</a>, use radians to set limits of slider
15111 schaersvoo 256
         @ ''angle`` and <a href="#arc">arc</a>  are exceptions in case of sliders...they are always active (e.g. not click-activated)
12110 schaersvoo 257
         @%angle%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor orange%angle 0,0,4,10,135,blue
15111 schaersvoo 258
         @%angle_slider%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 3%strokecolor blue%slider -2*pi,2*pi,260,28,angle active degree,blue arrow%arrow 0,0,8,0,8,blue%fillpattern diamond%angle 0,0,2,0,0,blue%killslider%strokecolor red%slider -2*pi,2*pi,260,28,angle active radian,red arrow%arrow 0,1,8,1,8,red%fillpattern dot%angle 0,1,2,0,0,red
7614 schaersvoo 259
        */
11806 schaersvoo 260
            for(i=0;i<7;i++){
7614 schaersvoo 261
                switch(i){
11806 schaersvoo 262
                    case 0:double_data[0] = get_real(infile,0);break; /* x-values */
15111 schaersvoo 263
                    case 1:double_data[1] = get_real(infile,0);
264
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
15116 bpr 265
                    if(use_affine == TRUE ){ transform(2,2);}
15111 schaersvoo 266
                    break; /* y-values */
14208 schaersvoo 267
                    case 2:double_data[2] = get_real(infile,0);break; /* width x-range ! */
15111 schaersvoo 268
                    case 3:double_data[3] = 0.0174532925*(get_real(infile,0) - angle);break; /* start angle in degrees -> radians  */
269
                    case 4:double_data[4] = 0.0174532925*(get_real(infile,0) - angle);break; /* end angle in degrees -> radians */
11806 schaersvoo 270
                    case 5:stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 271
                        if( use_slider != -1 ){ onclick = 3; }/* always active in case of slider */
272
                        decimals = find_number_of_digits(precision);
273
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,17,[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[2],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
274
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
275
                        snprintf(tmp_buffer,string_length,  "dragstuff.addShape(new Shape(%d,%d,%d,%d,17,[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[2],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
276
                        add_to_buffer(tmp_buffer);
277
                        dragstuff[17] = 1;
278
                        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
279
                        if(onclick != 0){object_cnt++;}/* object_cnt++;*/
11806 schaersvoo 280
                    break;
7614 schaersvoo 281
                }
282
            }
283
            break;
8386 schaersvoo 284
 
11806 schaersvoo 285
        case ANIMATE:
7614 schaersvoo 286
        /*
11930 schaersvoo 287
         @ animate
11893 schaersvoo 288
         @ keyword
15111 schaersvoo 289
         @ if set, it will animate a point on a curve
290
         @ all other canvas object or group of objects (like lines,circles,rects,points...images,svg,latex,mathml etc)<br />may be animated using command <a href='#slider'>slider</a> with keyword 'anim'
14071 bpr 291
         @ the animated point is a filled rectangle ; adjust colour with command <code>fillcolor colorname/hexnumber</code>
11893 schaersvoo 292
         @ use linewidth to adjust size of the points
14078 bpr 293
         @ will animate a point on -only- the next <a href='#jsplot'>jsplot/jscurve command</a>. Only a single call to <code>animate</code> is allowed...in case of multiple <code>animate</code> keywords, only the last one is valid
15111 schaersvoo 294
         @ only usable in combination with command <a href='#jsplot'>jsplot</a> (normal functions or parametric)
13957 schaersvoo 295
         @ moves repeatedly from <a href='#xrange'>xmin to xmax</a> or in case of a parametric function from <a href='#trange'>tmin to tmax</a>
15650 reyssat 296
         @ use commands <a href='#multilinewidth'>multilinewidth</a>, <a href='#multistrokecolor'>multistrokecolor</a> etc in case of multiple animated functions.<br />use multiple functions as argument in a single call to <a href='#jsplot'>jsplot color,fun1,fun2,fun3...fun_n</a>
13939 bpr 297
         @%animate_1%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 100%linewidth 4%fillcolor red%animate%trange -2*pi,2*pi%linewidth 1%opacity 255,50%canvastype 100%fill 1.2,1.2,red%canvastype 101%fill -1.2,-1.2,blue%jsplot blue,7*cos(x),5*sin(2*x)
298
         @%animate_2%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 100%linewidth 4%fillcolor red%animate%trange -2*pi,2*pi%linewidth 1%opacity 255,50%canvastype 100%fill 1.2,1.2,red%canvastype 101%fill -1.2,-1.2,blue%multistrokecolors blue,blue,green,green,orange,orange%multilinewidth 2,2,3,3,1,1%jsplot blue,7*cos(x),5*sin(2*x),9*sin(x),5*cos(x),x^2,x
7614 schaersvoo 299
        */
13512 schaersvoo 300
            use_animate++;
301
            if( use_animate == 1 ){
302
            fprintf(js_include_file,"\nvar trace_canvas  = create_canvas%d(%d,xsize,ysize);\
303
            var trace_ctx = trace_canvas.getContext('2d');\
304
            trace_ctx.fillStyle = 'rgba(%s,%f)';\
305
            trace_ctx.strokeStyle = 'rgba(%s,%f)';\
306
            trace_ctx.lineWidth = %d;var anim_pos = 0;\n\
307
            function animate_this(){\
308
             var sync;\
309
             var synchrone = Math.floor(animation_steps/animation_funs);\
310
             trace_ctx.clearRect(0,0,xsize,ysize);\
311
             for(var p=0; p<animation_funs;p++){\
312
              sync = p*synchrone;\
313
              trace_ctx.fillRect(x_anim_points[sync+anim_pos]-%d, y_anim_points[sync+anim_pos]-%d,%d,%d);\
314
             };\
315
             setTimeout(function(){\
316
              requestAnimationFrame(animate_this);  anim_pos++;}, 50\
317
             );\
318
             if(anim_pos >= animation_steps){anim_pos = 0;};\
319
             };",canvas_root_id,ANIMATE_CANVAS,fill_color,fill_opacity,stroke_color,stroke_opacity,line_width,line_width,line_width,2*line_width,2*line_width);
320
            }
321
            else
322
            {
13514 schaersvoo 323
                canvas_error("animate can only be used once<br />multiple curves may be animated using something like:<br />jsplot red,sin(x),cos(x),x^2,sin(2*x)");
13512 schaersvoo 324
            }
7614 schaersvoo 325
            break;
8386 schaersvoo 326
 
11806 schaersvoo 327
        case ARC:
7614 schaersvoo 328
        /*
11997 schaersvoo 329
         @ arc xc,yc,x-width,y-height,start_angle,end_angle,color
15690 schaersvoo 330
         @ may be set ''onclick`` or ''drag xy``
14208 schaersvoo 331
         @ compatible with ''flydraw``
332
         @ attention: width &amp; height in x/y-range
15690 schaersvoo 333
         @ for arrow hats on an arc, see  command <a href='#arcarrow'>arcarrow or arrowarc</a>
14208 schaersvoo 334
         @ better use command <a href='#angle'>angle</a> for use with a <a href='#slider'>slider</a>
15111 schaersvoo 335
         @%arc%size 400,400%xrange -10,10%yrange -10,10%arc 0,0,4,4,10,135,red
13961 schaersvoo 336
         @%arc_filled%size 400,400%xrange -10,10%yrange -10,10%opacity 255,60%filled%fillcolor green%arc 0,0,4,4,10,135,red
7614 schaersvoo 337
        */
11806 schaersvoo 338
            for(i=0;i<7;i++){
339
                switch(i){
340
                    case 0:double_data[0] = get_real(infile,0);break; /* x-values */
15111 schaersvoo 341
                    case 1:double_data[1] = get_real(infile,0);
342
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
343
                    if(use_affine == TRUE ){ transform(4,2);}
344
                    break; /* y-values */
11806 schaersvoo 345
                    case 2:double_data[2] = get_real(infile,0);break; /* width x-range no pixels ! */
15111 schaersvoo 346
                    case 3:double_data[3] = get_real(infile,0);
347
                    break; /* height y-range no pixels ! */
348
                    case 4:double_data[4] = get_real(infile,0) - angle ;break; /* start angle in degrees */
349
                    case 5:double_data[5] = get_real(infile,0) - angle;break; /* end angle in degrees */
11806 schaersvoo 350
                    case 6:stroke_color = get_color(infile,1);/* name or hex color */
351
                    /* in Shape library:
352
                        x[0] = x[1] = xc = double_data[0]
353
                        y[0] = y[1] = yc = double_data[1]
354
                        w[0] = width = double_data[2]
355
                        w[1] = height = double_data[3]
356
                        h[0] = start_angle = double_data[4]
357
                        h[1] = end_angle = double_data[5]
358
                    */
15111 schaersvoo 359
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 360
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 361
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,12,[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],decimals,double_data[5],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
362
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
363
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,12,[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],decimals,double_data[5],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
364
                        add_to_buffer(tmp_buffer);reset();
365
                        dragstuff[12] = 1;
366
                        if(onclick != 0){object_cnt++;}
367
                        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 368
                    break;
369
                }
370
            }
7614 schaersvoo 371
            break;
15690 schaersvoo 372
        case ARCARROW:
373
        /*
374
         @ arrowarc xc,yc,x-width,y-height,start_angle,end_angle,color,type
15715 schaersvoo 375
         @ alternative: arcarrow
15690 schaersvoo 376
         @ uses same syntax as <a href='#arc'>arc</a>
377
         @ for arrow hat: type = 1 : right<br />type = 2 : left<br />type = 3 : left&amp;right
378
         @ if the default arrow hat/head is not satisfactory , the size of the arrow may be set with command <a href='#arrowhead'>arrowhead</a>
379
         @ no other arrow types are implemented...yet
380
         @ may be set draggable or onclick
381
         @ attention: when width ad height are very different, the arrow hat is not drawn correctly. This is a flaw and not a feature...(for now: too much calculations to correct)
382
         @%arcarrow%size 400,400%xrange -10,10%yrange -10,10%noreset%onclick%arcarrow 0,0,7,7,50,275,blue,3%arcarrow 0,0,8,8,50,275,red,2%arcarrow 0,0,9,9,50,275,green,1
383
        */
384
            for(i=0;i<8;i++){
385
                switch(i){
386
                    case 0:double_data[0] = get_real(infile,0);break; /* x-values */
387
                    case 1:double_data[1] = get_real(infile,0);
388
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
389
                    if(use_affine == TRUE ){ transform(4,2);}
390
                    break; /* y-values */
391
                    case 2:double_data[2] = get_real(infile,0);break; /* width x-range no pixels ! */
392
                    case 3:double_data[3] = get_real(infile,0);
393
                    break; /* height y-range no pixels ! */
394
                    case 4:double_data[4] = get_real(infile,0) - angle ;break; /* start angle in degrees */
395
                    case 5:double_data[5] = get_real(infile,0) - angle;break; /* end angle in degrees */
396
                    case 6:stroke_color = get_color(infile,0);/* name or hex color */
397
                    break;
398
                    case 7:int_data[0] = (int) get_real(infile,1);
399
                        switch(int_data[0]){
400
                         case 1: int_data[1] = 24;break; /* right */
401
                         case 2: int_data[1] = 25;break; /* left */
402
                         case 3: int_data[1] = 26;break; /* left&right */
403
                         default:int_data[1] = 24;break;
404
                        }
405
                        if(int_data[0] == 1 ){int_data[1] = 24;}
406
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
407
                        decimals = find_number_of_digits(precision);
408
                        string_length = 1 + snprintf(NULL,0,"var arrow_head = %d;dragstuff.addShape(new Shape(%d,%d,%d,%d,%d,[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",arrow_head,drag_type,object_cnt,onclick,use_snap,int_data[1],decimals,double_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],decimals,double_data[5],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
409
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
410
                        snprintf(tmp_buffer,string_length,"var arrow_head = %d;dragstuff.addShape(new Shape(%d,%d,%d,%d,%d,[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],[%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",arrow_head,drag_type,object_cnt,onclick,use_snap,int_data[1],decimals,double_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],decimals,double_data[5],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
411
                        add_to_buffer(tmp_buffer);
412
                        dragstuff[int_data[1]] = 1;
413
                        if(onclick != 0){object_cnt++;}
414
                        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
415
                        js_function[JS_ARROWHEAD] = 1;
416
                        reset();
417
                }
418
            }
419
            break;
11806 schaersvoo 420
        case ARROW:
7614 schaersvoo 421
        /*
11806 schaersvoo 422
        @ arrow x1,y1,x2,y2,h,color
15715 schaersvoo 423
        @ alternative: vector
14379 bpr 424
        @ draw a single headed arrow / vector from (x1:y1) to (x2:y2)<br />with arrowhead size h in px and in color ''color``
14077 bpr 425
        @ use command <code>linewidth int</code> to adjust thickness of the arrow
9406 schaersvoo 426
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
13957 schaersvoo 427
        @%arrow_drag%size 400,400%xrange -10,10%yrange -10,10%cursor move%linewidth 2%drag xy%arrow 0,0,4,3,8,blue%drag xy%arrow 0,0,-4,3,8,green%drag xy%arrow 0,0,4,-3,8,orange%drag xy%arrow 0,0,-4,-3,8,cyan
428
        @%arrow_click%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%%onclick%arrow 0,0,4,4,8,blue%onclick%arrow 0,0,-4,5,8,green%onclick%arrow 0,0,4,-6,8,orange%onclick%arrow 0,0,-4,-2,8,cyan
7614 schaersvoo 429
        */
11806 schaersvoo 430
            for(i=0;i<6;i++){
7614 schaersvoo 431
                switch(i){
432
                    case 0: double_data[0] = get_real(infile,0);break; /* x */
433
                    case 1: double_data[1] = get_real(infile,0);break; /* y */
11806 schaersvoo 434
                    case 2: double_data[2] = get_real(infile,0);break; /* x */
435
                    case 3: double_data[3] = get_real(infile,0);break; /* y */
436
                    case 4: arrow_head = (int) get_real(infile,0);break;/* h */
437
                    case 5: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 438
                            if(use_rotate == TRUE ){rotate(4,angle,rotationcenter,2);}
439
                            if(use_affine == TRUE ){ transform(4,2);}
440
                            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
441
                            decimals = find_number_of_digits(precision);
442
                            string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,8,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
443
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
444
                            snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,8,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
445
                            if(onclick != 0){object_cnt++;}
446
                            /* object_cnt++;*/
447
                            add_to_buffer(tmp_buffer);reset();
448
                            dragstuff[8] = 1;
449
                            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
450
                            break;
11806 schaersvoo 451
                }
452
            }
453
            break;
8386 schaersvoo 454
 
11806 schaersvoo 455
        case ARROWS:
7614 schaersvoo 456
        /*
11806 schaersvoo 457
        @ arrows color,head (px),x1,y1,x2,y2...x_n,y_n
15715 schaersvoo 458
        @ alternative: vectors
15111 schaersvoo 459
        @ draw single headed arrows / vectors from (x1:y1) to (x2:y2) ... (x3:y3) to (x4:y4) etc ... in color 'color'
14071 bpr 460
        @ use command <code>linewidth int</code> to adjust thickness of the arrow
11806 schaersvoo 461
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually
13957 schaersvoo 462
        @%arrows_click%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%onclick%arrows red,8,0,0,4,3,0,0,2,4,0,0,-2,4,0,0,-3,-4,0,0,3,-2%
463
        @%arrows_drag%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag xy%arrows red,8,0,0,4,3,0,0,2,4,0,0,-2,4,0,0,-3,-4,0,0,3,-2%
14208 schaersvoo 464
        @%arrows_drag_slider%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag xy%# Click arrow(s) to activate %slider 0,2*pi,300,30,angle degrees,Rotate%slider -5,5*pi,300,30,x display,move in x-direction%slider -10,10*pi,300,30,y display,move in y-direction%arrows red,8,0,0,4,3,0,0,2,4,0,0,-2,4,0,0,-3,-4,0,0,3,-2%
7614 schaersvoo 465
        */
466
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
467
            fill_color = stroke_color;
11806 schaersvoo 468
            arrow_head = (int) get_real(infile,0);/* h */
7614 schaersvoo 469
            i=0;
470
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 471
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
7614 schaersvoo 472
                if(i%2 == 0 ){
473
                    double_data[i] = get_real(infile,0); /* x */
474
                }
475
                else
476
                {
477
                    double_data[i] = get_real(infile,1); /* y */
478
                }
479
                i++;
480
            }
15111 schaersvoo 481
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
482
            if( use_affine == TRUE ){ transform(i-1,2);}
483
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
7614 schaersvoo 484
            decimals = find_number_of_digits(precision);
11806 schaersvoo 485
            for(c = 0 ; c < i-1 ; c = c+4){
15111 schaersvoo 486
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,8,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
487
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
488
                snprintf(tmp_buffer,string_length,  "dragstuff.addShape(new Shape(%d,%d,%d,%d,8,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
489
                add_to_buffer(tmp_buffer);
490
                if(onclick != 0){object_cnt++;}/* object_cnt++; */
7614 schaersvoo 491
            }
15111 schaersvoo 492
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
493
            dragstuff[8] = 1;
7614 schaersvoo 494
            reset();
495
            break;
8386 schaersvoo 496
 
11806 schaersvoo 497
        case ARROW2:
7614 schaersvoo 498
        /*
11806 schaersvoo 499
        @ arrow2 x1,y1,x2,y2,h,color
14071 bpr 500
        @ draw a double headed arrow/vector from (x1:y1) to (x2:y2)<br />with arrowhead size h in px and in color ''color``
501
        @ use command <code>arrowhead int</code> to adjust the arrow head size
502
        @ use command <code>linewidth int</code> to adjust thickness of the arrow
9406 schaersvoo 503
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 504
        @%arrow2%size 400,400%xrange -10,10%yrange -10,10%drag xy%arrow2 0,0,4,3,8,blue%
7614 schaersvoo 505
        */
11806 schaersvoo 506
            for(i=0;i<6;i++){
7614 schaersvoo 507
                switch(i){
508
                    case 0: double_data[0] = get_real(infile,0);break; /* x */
509
                    case 1: double_data[1] = get_real(infile,0);break; /* y */
11806 schaersvoo 510
                    case 2: double_data[2] = get_real(infile,0);break; /* x */
511
                    case 3: double_data[3] = get_real(infile,0);break; /* y */
512
                    case 4: arrow_head = (int) get_real(infile,0);break;/* h */
513
                    case 5: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 514
                        if(use_rotate == TRUE ){rotate(4,angle,rotationcenter,2);}
515
                        if( use_affine == 1 ){ transform(4,2);}
516
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 517
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 518
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,10,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
519
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
520
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,10,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
521
                        add_to_buffer(tmp_buffer);
522
                        if(onclick != 0){object_cnt++;}/* object_cnt++;*/
523
                        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
524
                        dragstuff[10] = 1;
11806 schaersvoo 525
                        reset();
526
                        break;
527
                }
528
            }
529
            break;
8386 schaersvoo 530
 
11806 schaersvoo 531
        case ARROWS2:
7614 schaersvoo 532
        /*
11806 schaersvoo 533
        @ arrows2 color,head (px),x1,y1,x2,y2...x_n,y_n
14071 bpr 534
        @ draw double headed arrows / vectors from (x1:y1) to (x2:y2) ... (x3:y3) to (x4:y4) etc ... in color ''color``
535
        @ use command <code>linewidth int</code> to adjust thickness of the arrows
11806 schaersvoo 536
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually
12107 schaersvoo 537
        @%arrows2%size 400,400%xrange -10,10%yrange -10,10%onclick%arrows2 red,8,0,0,4,3,1,1,2,4,2,2,-2,4,3,3,-3,-4,0,0,3,-2%
7614 schaersvoo 538
        */
539
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
540
            fill_color = stroke_color;
11806 schaersvoo 541
            arrow_head = (int) get_real(infile,0);/* h */
7614 schaersvoo 542
            i=0;
543
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 544
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
7614 schaersvoo 545
                if(i%2 == 0 ){
546
                    double_data[i] = get_real(infile,0); /* x */
547
                }
548
                else
549
                {
550
                    double_data[i] = get_real(infile,1); /* y */
551
                }
552
                i++;
553
            }
15111 schaersvoo 554
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
555
            if( use_affine == 1 ){ transform(i-1,2);}
556
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
557
 
8224 bpr 558
            decimals = find_number_of_digits(precision);
11806 schaersvoo 559
            for(c = 0 ; c < i-1 ; c = c+4){
15111 schaersvoo 560
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,10,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
561
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
562
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,10,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],arrow_head,arrow_head,arrow_head,arrow_head,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
563
                add_to_buffer(tmp_buffer);
564
                if(onclick != 0){object_cnt++;}/* object_cnt++; */
7614 schaersvoo 565
            }
15111 schaersvoo 566
            dragstuff[10] = 1;
567
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 568
            reset();
569
            break;
11806 schaersvoo 570
        case ARROWHEAD:
9427 schaersvoo 571
        /*
11806 schaersvoo 572
        @ arrowhead int
573
        @ default 8 (pixels)
9427 schaersvoo 574
        */
11806 schaersvoo 575
            arrow_head = (int) (get_real(infile,1));
576
            break;
577
 
578
        case AUDIO:
579
        /*
580
        @ audio x,y,w,h,loop,visible,audiofile location
14066 bpr 581
        @ x,y: left top corner of audio element (in xrange / yrange)
582
        @ w,y: width and height in pixels
583
        @ loop: 0 or 1 ( 1 = loop audio fragment)
584
        @ visible: 0 or 1 (1 = show controls)
11806 schaersvoo 585
        @ audio format may be in *.mp3 or *.ogg
14066 bpr 586
        @ If you are using *.mp3: be aware that FireFox will not (never) play this ! (Pattented format)
587
        @ if you are using *.ogg: be aware that Microsoft based systems not support it natively
11806 schaersvoo 588
        @ To avoid problems supply both types (mp3 and ogg) of audiofiles.<br />the program will use both as source tag
589
        */
15111 schaersvoo 590
            js_function[DRAW_AUDIO] = 1;
11806 schaersvoo 591
            for(i=0;i<7;i++){
592
                switch(i){
593
                    case 0: int_data[0] = x2px(get_real(infile,0)); break; /* x in x/y-range coord system -> pixel */
594
                    case 1: int_data[1] = y2px(get_real(infile,0)); break; /* y in x/y-range coord system  -> pixel */
595
                    case 2: int_data[2] = (int) (get_real(infile,0)); break; /* pixel width */
596
                    case 3: int_data[3] = (int) (get_real(infile,0)); break; /* height pixel height */
597
                    case 4: int_data[4] = (int) (get_real(infile,0)); if(int_data[4] != TRUE){int_data[4] = FALSE;} break; /* loop boolean */
598
                    case 5: int_data[5] = (int) (get_real(infile,0)); if(int_data[5] != TRUE){int_data[5] = FALSE;} break; /* visible boolean */
599
                    case 6:
600
                    temp = get_string(infile,1);
601
                    if( strstr(temp,".mp3") != 0 ){ temp = str_replace(temp,".mp3","");}
602
                    if( strstr(temp,".ogg") != 0 ){ temp = str_replace(temp,".ogg","");}
14208 schaersvoo 603
                    string_length = 1 + snprintf(NULL,0,  "draw_audio(%d,%d,%d,%d,%d,%d,%d,\"%s.ogg\",\"%s.mp3\");\n",canvas_root_id,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],temp,temp);
604
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 605
                    snprintf(tmp_buffer,string_length,"draw_audio(%d,%d,%d,%d,%d,%d,%d,\"%s.ogg\",\"%s.mp3\");\n",canvas_root_id,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],temp,temp);
606
                    add_to_buffer(tmp_buffer);
607
                    break;
608
                    default:break;
9427 schaersvoo 609
                }
11806 schaersvoo 610
            }
611
            reset();
612
            break;
613
 
614
 
615
        case AXIS_NUMBERING:
616
        /*
617
            @ axisnumbering
618
            @ keyword (no arguments required)
14246 bpr 619
            @ for special numbering of x-axis or y-axis see grid related commands <a href="#axis">axis</a> <a href="#xaxis">xaxis</a>, <a href="#xaxisup">xaxisup</a>, <a href="#noxaxis">noxaxis</a>, <a href="#yaxis">yaxis</a>, <a href="#yaxisup">yaxisup</a>, <a href="#noyaxis">noyaxis</a>
11806 schaersvoo 620
            @ to be used before command grid (see <a href="#grid">command grid</a>)
621
        */
11891 schaersvoo 622
            use_axis_numbering++;
11806 schaersvoo 623
            break;
624
        case AXIS:
625
        /*
626
            @ axis
627
            @ keyword (no arguments required)
628
            @ to be used before command grid (see <a href="#grid">command grid</a>)
629
 
630
        */
631
            use_axis = TRUE;
632
            break;
633
 
634
        case BARCHART:
635
        /*
636
        @ barchart x_1:y_1:color_1:x_2:y_2:color_2:...x_n:y_n:color_n
14066 bpr 637
        @ may <b>only</b> to be used together with command <a href='#grid'>grid</a>
638
        @ can be used together with freestyle x-axis/y-axis texts: see commands <a href='#xaxis'>xaxis</a>,<a href='#xaxisup'>xaxisup</a> and <a href='#yaxis'>yaxis</a>
639
        @ use command <a href='#legend'>legend</a> to provide an optional legend in right-top-corner
11806 schaersvoo 640
        @ multiple barchart command may be used in a single script
14066 bpr 641
        @ also see command <a href='#piechart'>piechart</a>
642
        @ note: your arguments are not checked by canvasdraw: use your javascript console in case of trouble...
15313 schaersvoo 643
        @%barchart%size 400,400%xrange -1,10%yrange -2,14%legend legend Z:legend A:this is B:C:D:E:F:G:H:X%legendcolors green:red:orange:lightblue:cyan:gold:purple:darkred:yellow:lightgreen%xaxis 0:Z:1:A:2:B:3:C:4:D:5:E:6:F:7:G:8:H:9:X%noyaxis%precision 1%fontfamily bold 15px Arial%grid 1,1,white%barchart 0:5.5:green:2:5.5:red:4:6.5:orange:6:8:lightblue:8:11:cyan:1:5.5:gold:3:9:purple:5:4:darkred:7:7:yellow:9:1:lightgreen%mouse red,14
11806 schaersvoo 644
        */
645
            temp = get_string(infile,1);
646
            if( strstr( temp,":" ) != 0 ){ temp = str_replace(temp,":","\",\""); }
647
            fprintf(js_include_file,"var barchart_%d = [\"%s\"];",barchart_cnt,temp);
648
            barchart_cnt++;
649
            reset();
650
            break;
651
 
652
        case BEZIER:
653
        /*
654
        @ bezier color,x_start,y_start,x_first,y_first,x_second,y_second,x_end,y_end
655
        @ draw a bezier curve between points, starting from (x_start:y_start)
656
        @ can <b>not</b> be dragged or set onclick
657
        */
15111 schaersvoo 658
            js_function[DRAW_BEZIER] = 1;
11806 schaersvoo 659
            decimals = find_number_of_digits(precision);
660
            for(i = 0 ; i < 9; i++){
661
                switch(i){
662
                    case 0: stroke_color = get_color(infile,0);break;
663
                    case 1: double_data[0] = get_real(infile,0);break;/* start x */
664
                    case 2: double_data[1] = get_real(infile,0);break;/* start y */
665
                    case 3: double_data[2] = get_real(infile,0);break;/*The x-coordinate of the first Bézier control point */
666
                    case 4: double_data[3] = get_real(infile,0);break;/*The y-coordinate of the first Bézier control point */
667
                    case 5: double_data[4] = get_real(infile,0);break;/*The x-coordinate of the second Bézier control point */
668
                    case 6: double_data[5] = get_real(infile,0);break;/*The y-coordinate of the second Bézier control point */
669
                    case 7: double_data[6] = get_real(infile,0);break;/*The x-coordinate of the Bézier end point */
670
                    case 8: double_data[7] = get_real(infile,1);/*The y-coordinate of the Bézier end point */
15111 schaersvoo 671
                        if(use_rotate == TRUE ){rotate(8,angle,rotationcenter,2);}
672
                        if(use_affine == TRUE ){ transform(2,5);}
673
                        string_length = 1 + snprintf(NULL,0,"draw_bezier(%d,%d,[%f,%f,%f,%f,%f,%f,%f,%f],\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.2f);",STATIC_CANVAS,line_width,double_data[0],double_data[1],double_data[2],double_data[3],double_data[4],double_data[5],double_data[6],double_data[7],fill_color,fill_opacity,stroke_color,stroke_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle);
14208 schaersvoo 674
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 675
                        snprintf(tmp_buffer,string_length,"draw_bezier(%d,%d,[%f,%f,%f,%f,%f,%f,%f,%f],\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.2f);",STATIC_CANVAS,line_width,double_data[0],double_data[1],double_data[2],double_data[3],double_data[4],double_data[5],double_data[6],double_data[7],fill_color,fill_opacity,stroke_color,stroke_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle);
11806 schaersvoo 676
                        add_to_buffer(tmp_buffer);
677
                        break;
678
                    default: break;
9427 schaersvoo 679
                }
680
            }
681
            reset();
682
            break;
11806 schaersvoo 683
 
684
 
685
        case BGCOLOR:
9427 schaersvoo 686
        /*
11806 schaersvoo 687
         @ bgcolor colorname or #hex
688
         @ use this color as background of the "div" containing the canvas(es)
12110 schaersvoo 689
         @%bgcolor%size 400,400%xrange -10,10%yrange -10,10%bgcolor lightblue
9427 schaersvoo 690
        */
11806 schaersvoo 691
        /* [255,255,255]*/
692
            bgcolor = get_string(infile,1);
693
            if(strstr(bgcolor,"#") == NULL){ /* convert colorname -> #ff00ff */
694
                int found = 0;
695
                for( i = 0; i < NUMBER_OF_COLORNAMES ; i++ ){
696
                    if( strcmp( colors[i].name , bgcolor ) == 0 ){
697
                        bgcolor = colors[i].hex;
698
                        found = 1;
699
                        break;
700
                    }
9427 schaersvoo 701
                }
14066 bpr 702
                if(found == 0){canvas_error("your bgcolor is not in my rgb.txt data list: use hexcolor...something like #a0ffc4");}
11806 schaersvoo 703
            }
13970 obado 704
            fprintf(js_include_file,"/* set background color of canvas div */\ncanvas_div.style.backgroundColor = \"%s\";canvas_div.style.opacity = %f;\n",bgcolor,fill_opacity);
11806 schaersvoo 705
            break;
706
 
707
        case BGIMAGE:
708
        /*
709
         @ bgimage image_location
14071 bpr 710
         @ use an image as background; technical: we use the background of ''canvas_div``
11806 schaersvoo 711
         @ the background image will be resized to match "width = xsize" and "height = ysize"
12110 schaersvoo 712
         @%bgimage%size 400,400%xrange -10,10%yrange -10,10%bgimage https://wims.unice.fr/wims/gifs/en.gif
11806 schaersvoo 713
        */
714
        URL = get_string(infile,1);
13970 obado 715
        fprintf(js_include_file,"/* set background image to canvas div */\ncanvas_div.style.backgroundImage = \"url(%s)\";canvas_div.style.backgroundSize = \"%dpx %dpx\";\n",URL,xsize,ysize);
11806 schaersvoo 716
            break;
717
 
718
        case BLINK:
719
        /*
720
         @ blink time(seconds)
721
         @ NOT IMPLEMETED -YET
722
        */
723
            break;
724
 
725
        case BOXPLOT:
726
        /*
727
        @ boxplot x_or_y,box-height_or_box-width,position,min,Q1,median,Q3,max
14066 bpr 728
        @ example:<br /><code>xrange 0,300<br />yrange 0,10<br />boxplot x,4,8,120,160,170,220,245</code><br />meaning: create a boxplot in x-direction, with height 4 (in yrange) and centered around line y=8
729
        @ example:<br /><code>xrange 0,10<br />yrange 0,300<br />boxplot y,4,8,120,160,170,220,245</code><br />meaning: create a boxplot in y-direction, with width 4 (in xrange) and centered around line x=8
730
        @ use command <a href='#filled'>filled</a> to fill the box<br /><b>note:</b> the strokecolor is used for filling Q1, the fillcolor is used for filling Q3
731
        @ use command <a href='#fillpattern'>fillpattern some_pattern</a> to use a (diamond for Q1, hatch for Q3) pattern.
732
        @ use command <a href='#opacity'>opacity</a> to adjust fill_opacity of stroke and fill colours
14379 bpr 733
        @ use command <a href='#legend'>legend</a> to automatically create a legend <br />unicode allowed in legend<br />use command <a href='#fontfamily'>fontfamily</a> to set the font of the legend.
11806 schaersvoo 734
        @ there is no limit to the number of boxplots used.
14078 bpr 735
        @ can <b>not</b> be set draggable and <a href='#onclick'>onclick</a> is not ready yet
14066 bpr 736
        @ use keyword <a href="#userboxplot">userboxplot</a> before command boxplot, if a pupil must draw a boxplot (using his own min,Q1,median,Q3,max data)
737
        @ use keyword <a href="#userboxplotdata">userboxplotdata</a> before command boxplot, if a pupil must generate the data by some means.
738
        @ use command <a href="#boxplotdata">boxplotdata</a> when the boxplot should be drawn from wims-generated raw statistical date
12110 schaersvoo 739
        @%boxplot_1%size 400,400%xrange 0,300%yrange 0,10%opacity 120,50%filled%fillcolor orange%strokecolor blue%linewidth 2%boxplot x,4,8,120,160,170,220,245
740
        @%boxplot_2%size 400,400%xrange 0,10%yrange 0,300%opacity 120,50%filled%fillcolor orange%strokecolor blue%linewidth 2%boxplot y,4,8,120,160,170,220,245
13958 schaersvoo 741
        @%boxplot_3%size 400,400%xrange 0,100%yrange 0,10%fillpattern hatch%linewidth 3%fillcolor red%strokecolor green%boxplot x,1,2,4,14,27,39,66%strokecolor blue%boxplot x,1,4,15,45,50,66,87%strokecolor red%boxplot x,1,6,45,70,80,90,100%strokecolor orange%boxplot x,1,8,28,38,48,56,77%mouse red,16
11806 schaersvoo 742
        */
15111 schaersvoo 743
            js_function[DRAW_BOXPLOT] = 1;
11806 schaersvoo 744
            for(i=0;i<8;i++){
745
                switch(i){
746
                    case 0: temp = get_string_argument(infile,0);
747
                            if( strstr(temp,"x") != 0){int_data[0] = 1;}else{int_data[0] = 0;} break; /* x or y */
748
                    case 1: double_data[0] = get_real(infile,0);break;/* height | width  */
749
                    case 2:
750
                    if( js_function[DRAW_JSBOXPLOT] == 0 ){
751
                     double_data[1] = get_real(infile,0);
752
                     fprintf(js_include_file,"var boxplot_source = 0;\n");/* we use given min,Q1,median,Q3,max */
753
                    }
754
                    else
755
                    {
756
                     double_data[1] = get_real(infile,1);
757
                     double_data[2] = 1;
758
                     double_data[3] = 1;
759
                     double_data[4] = 1;
760
                     double_data[5] = 1;
761
                     double_data[6] = 1;
762
                     double_data[7] = 1;
763
                     i=8;
764
                    }
765
                    break;/* center value x or y */
766
                    case 3: double_data[2] = get_real(infile,0); break;/* min */
767
                    case 4: double_data[3] = get_real(infile,0); break;/* Q1 */
768
                    case 5: double_data[4] = get_real(infile,0); break;/* median */
769
                    case 6: double_data[5] = get_real(infile,0); break;/* Q3 */
770
                    case 7: double_data[6] = get_real(infile,1); break;/* max */
771
                    default:break;
9427 schaersvoo 772
                }
773
            }
774
            decimals = find_number_of_digits(precision);
11806 schaersvoo 775
            /*function draw_boxplot(canvas_type,xy,hw,cxy,data,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype0,dashtype1)*/
14208 schaersvoo 776
            string_length = 1 + snprintf(NULL,0,  "draw_boxplot(%d,%d,%.*f,%.*f,[%.*f,%.*f,%.*f,%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d);\n",BOXPLOT_CANVAS+boxplot_cnt,int_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],decimals,double_data[5],decimals,double_data[6],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1]);
11806 schaersvoo 777
            check_string_length(string_length);
14208 schaersvoo 778
            tmp_buffer = my_newmem(string_length);
11806 schaersvoo 779
            snprintf(tmp_buffer,string_length,  "draw_boxplot(%d,%d,%.*f,%.*f,[%.*f,%.*f,%.*f,%.*f,%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d);\n",BOXPLOT_CANVAS+boxplot_cnt,int_data[0],decimals,double_data[0],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],decimals,double_data[4],decimals,double_data[5],decimals,double_data[6],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1]);
780
            add_to_buffer(tmp_buffer);
781
            boxplot_cnt++;
782
            reset();
783
        break;
784
        case BOXPLOTDATA:
785
        /*
786
        @ boxplotdata some_data
15111 schaersvoo 787
        @ 'some_data' are a list of numbers separated by a comma "," (items)
14071 bpr 788
        @ only be used before command <code>boxplot</code>: the command <a href="#boxplot">boxplot</a> will provide the boxplot drawing of the data.
11806 schaersvoo 789
        @ xrange 0,100<br />yrange 0,10<br />boxplotdata 11,22,13,15,23,43,12,12,14,2,45,32,44,13,21,24,13,19,35,21,24,23<br />boxplot x,4,5
790
        @ note: wims will not check your data input | format. use js-error console to debug any problems.
14071 bpr 791
        @ a javascript function <code>statistics()</code> will parse the data and calculate the values [min,Q1,median,Q3,max] and hand them to the boxplot draw function.
792
        @ only a single call to <code>boxplotdata</code> can be made. If multiple boxplots should be present in a single canvas, then use multiple calls to command <a href='#boxplot'>boxplot</a>
13959 bpr 793
        @%boxplotdata%size 400,400%xrange 0,100%yrange 0,10%strokecolor orange%fillpattern hatch%linewidth 3%strokecolor green%boxplotdata 11,22,13,15,23,43,12,12,14,2,45,32,44,13,21,24,13,19,35,21,24,23%boxplot x,2,2%mouse red,16
11806 schaersvoo 794
        */
15111 schaersvoo 795
            js_function[DRAW_JSBOXPLOT] = 1;
796
            js_function[DRAW_BOXPLOT] = 1;
11806 schaersvoo 797
            fprintf(js_include_file,"var boxplot_source = 1;var jsboxplot_data = [%s];\n",get_string(infile,1));
798
 
799
        break;
800
 
801
        case CANVASTYPE:
802
         canvas_type = (int) (get_real(infile,1));
803
        /*
804
        @ canvastype TYPE
14246 bpr 805
        @ for now only useful before commands filltoborder / floodfill / clickfill etc operations<br />Only the images of this TYPE will be scanned and filled
11806 schaersvoo 806
        @ default value of TYPE is DRAG_CANVAS e.g. 5 (all clickable / draggable object are in this canvas)
807
        @ use another TYPE, if you know what you are doing...
15309 schaersvoo 808
        @ other possible canvasses (e.g. transparent PNG pictures, xsize &times; ysize on top of each other)<ul><li> EXTERNAL_IMAGE_CANVAS 0</li><li> BG_CANVAS         1</li><li> STATIC_CANVAS        2</li><li> MOUSE_CANVAS 3</li><li> GRID_CANVAS  4</li><li> DRAG_CANVAS  5</li><li> DRAW_CANVAS  6</li><li> TEXT_CANVAS  7</li><li> CLOCK_CANVAS 8</li><li> ANIMATE_CANVAS       9</li><li> TRACE_CANVAS 10</li><li>BOXPLOT_CANVAS 11</li><li> JSPLOT_CANVAS     100, will increase with every call</li><li> FILL_CANVAS 200, will increase with every call</li><li> USERDRAW_JSPLOT 300, will increase with every call</li><li>CLICKFILL_CANVAS 400, will increase with every call/click</li><li>BOXPLOT_CANVAS 500, will increase with every call</li></ul>
11806 schaersvoo 809
        */
810
        break;
811
 
15111 schaersvoo 812
        case CENTERED:
813
         use_offset = 4;
814
         /*
815
         @ centered
816
         @ keyword ; to place the text centered (in width and height) on the text coordinates(x:y)
817
         @ may be used for text exactly centered on its (x;y)
818
         @ use <a href="#fontfamily">fontfamily</a> for setting the font
819
         @ may be active for commands <a href="#text">text</a> and <a href="#string">string</a> (e.g. objects in the ''drag/drop/onclick-library``)
15313 schaersvoo 820
         @%centered%size 400,400%xrange -10,10%yrange -10,10%fontfamily 12pt Arial%string blue,-9,-9,no offset%point -9,-9,red%centered%string blue,-6,-6,centered%point -6,-6,red%xoffset%string blue,-3,-3,xoffset%point -3,-3,red%yoffset%string blue,0,0,yoffset%point 0,0,red%xyoffset%string blue,3,3,xyoffset%point 3,3,red%resetoffset%string blue,6,6,resetoffset%point 6,6,red
15111 schaersvoo 821
        */
822
        break;
823
 
11806 schaersvoo 824
        case CENTERSTRING:
825
        /*
826
         @ centerstring color,y-value,the text string
827
         @ title color,y-value,the text string
828
         @ draw a string centered on the canvas at y = y-value
14071 bpr 829
         @ can not be set ''onclick`` or ''drag xy`` (...)
14162 bpr 830
         @ unicode supported: <code>centerstring red,5,\\u2232</code>
15313 schaersvoo 831
         @ use a command like <code>fontfamily italic 24pt Arial</code> to set fonts on browser that support font change
12110 schaersvoo 832
         @%centerstring%size 400,400%xrange -10,10%yrange -10,10%bgcolor lightblue%fontfamily italic 22pt Courier%centerstring blue,7,the center
11806 schaersvoo 833
        */
15111 schaersvoo 834
            js_function[DRAW_CENTERSTRING] = 1;
11806 schaersvoo 835
            for(i=0;i<3;i++){
836
                switch(i){
837
                    case 0: stroke_color = get_color(infile,0);break;/* name or hex color */
838
                    case 1: double_data[0] = get_real(infile,0);break; /* y in xrange*/
839
                    case 2: temp = get_string_argument(infile,1);
840
                            /* draw_text = function(canvas_type,y,font_family,stroke_color,stroke_opacity,text) */
841
                            decimals = find_number_of_digits(precision);
15111 schaersvoo 842
                            string_length = 1 + snprintf(NULL,0,"draw_centerstring(%d,%.*f,\"%s\",\"%s\",%.2f,\"%s\");\n",canvas_root_id,decimals,double_data[0],font_family,stroke_color,stroke_opacity,temp);
14208 schaersvoo 843
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 844
                            snprintf(tmp_buffer,string_length,"draw_centerstring(%d,%.*f,\"%s\",\"%s\",%.2f,\"%s\");\n",canvas_root_id,decimals,double_data[0],font_family,stroke_color,stroke_opacity,temp);
845
                            add_to_buffer(tmp_buffer);
846
                            break;
847
                    default:break;
848
                }
9427 schaersvoo 849
            }
850
            break;
15111 schaersvoo 851
        case CHEMTEX:
852
        /*
15116 bpr 853
        chemtex
854
        keyword...needs to be the first command in the script (even before the ''size`` command)
855
        only for KaTeX enabled typesetting !
856
        will include 80kB large js-library for chemisty typesetting
857
        using <a href="http://85.148.206.56/wims/download/katex.for.wims.tar.gz">KaTeX</a> : <code>katex x,y,\\ce{ chemistry tex code} like : \\ce{ Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2- }</code>
858
        using MathJaX : <code>latex x,y,\\ce{ chemistry tex code} like : \\ce{ Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2- }</code>
859
        see https://mhchem.github.io/MathJax-mhchem/
15313 schaersvoo 860
        %chemtex_katex_mathjax%chemtex%size 400,400%xrange -10,10%yrange -10,10%snaptogrid%fontfamily 22px Arial%strokecolor red%drag xy%centered%latex 0,8,\\ce{Hg^2+}%drag xy%centered%latex 0,4,\\ce{\\xrightarrow{\\text{I}^{-}}}%drag xy%centered%latex 0,0,\\ce{HgI2}%centered%drag xy%latex 0,-4,\\ce{\\xrightarrow{\\text{I}^{-}}}%drag xy%centered%latex 0,-8,\\ce{[Hg^{II}I4]^2-}
15111 schaersvoo 861
        */
862
         found_size_command = 1;
863
          fprintf(stdout,"\n<script src=\"scripts/js/KaTeX/mhchem.js\" defer></script>\n");
864
        break;
8386 schaersvoo 865
 
866
        case CIRCLE:
8299 schaersvoo 867
        /*
8386 schaersvoo 868
        @ circle xc,yc,width (2*r in pixels),color
15111 schaersvoo 869
        @ use command <code>fcircle xc,yc,d,color</code>
15715 schaersvoo 870
        @ alternative: disk
15111 schaersvoo 871
        @ use command <code>fillcolor color</code> to set the fillcolor
14071 bpr 872
        @ may be set <a href='#drag'>draggable</a> / <a href='#onclick'>onclick</a>
15111 schaersvoo 873
        @ will shrink / expand on zoom out / zoom in
12110 schaersvoo 874
        @%circle%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 255,50%drag xy%circle 0,0,60,red%zoom red
8299 schaersvoo 875
        */
8386 schaersvoo 876
            for(i=0;i<4;i++){
877
                switch(i){
878
                    case 0: double_data[0] = get_real(infile,0);break; /* x */
879
                    case 1: double_data[1] = get_real(infile,0);break; /* y */
14066 bpr 880
                    case 2: double_data[2] = px2x((get_real(infile,0))/2) - px2x(0);break; /* for zoom in/out: radius in 'dx' xrange*/
8386 schaersvoo 881
                    case 3: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 882
                        if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
883
                        if(use_affine == TRUE ){ transform(2,2);}
884
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
8386 schaersvoo 885
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 886
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,13,[%.*f],[%.*f],[%.3f],[%.3f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],double_data[2],double_data[2],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
887
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
888
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,13,[%.*f],[%.*f],[%.3f],[%.3f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],double_data[2],double_data[2],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
889
                        add_to_buffer(tmp_buffer);
890
                        if(onclick != 0){object_cnt++;}/* object_cnt++;*/
891
                        dragstuff[13] = 1;
892
                        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8386 schaersvoo 893
                        reset();
894
                        break;
895
                    default : break;
896
                }
897
            }
898
            break;
899
 
900
        case CIRCLES:
901
        /*
902
        @ circles color,xc1,yc1,r1,xc2,yc2,r2...xc_n,yc_n,r_n
9383 schaersvoo 903
        @ <b>attention</b> r = radius in x-range (!)
14071 bpr 904
        @ use keyword <code>filled</code> or command <code>fcircles</code> to produce solid circles
15715 schaersvoo 905
        @ alternative: disks
14071 bpr 906
        @ use command <code>fillcolor color</code> to set the fillcolor
907
        @ may be set <a href='#drag'>draggable</a> / <a href='#onclick'>onclick</a> (individually)
8386 schaersvoo 908
        @ will shrink / expand on zoom out / zoom in
14208 schaersvoo 909
        @%circles_drag%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 255,50%drag xy%circles blue,0,0,2,2,2,3,-3,-3,3,3,3,4,3,-4,2%zoom red
910
        @%circles_onclick%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 255,50%onclick%circles blue,0,0,2,2,2,3,-3,-3,3,3,3,4,3,-4,2%zoom red
911
        @%circles_drag_slider%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag xy%# Click circles(s) to activate%opacity 200,50%fillcolor orange%rotationcenter 2,3%slider 0,2*pi,300,30,angle degrees,Rotate%slider -5,5*pi,300,30,x display,move in x-direction%slider -10,10*pi,300,30,y display,move in y-direction%fcircles blue,0,0,0.5,2,2,1,-3,-3,1.5,3,3,0.5,3,-4,0.5
8386 schaersvoo 912
        */
8299 schaersvoo 913
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
914
            fill_color = stroke_color;
8386 schaersvoo 915
            i=1;
8299 schaersvoo 916
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 917
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8386 schaersvoo 918
                switch (i%3){
919
                 case 1:double_data[i-1] = get_real(infile,0);break; /* x */
920
                 case 2:double_data[i-1] = get_real(infile,0);break; /* y */
921
                 case 0:double_data[i-1] = get_real(infile,1);break; /* r */
8299 schaersvoo 922
                }
923
                i++;
924
            }
15111 schaersvoo 925
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,3);}
926
            if(use_affine == TRUE ){ transform(i-1,3);}
927
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
928
 
8299 schaersvoo 929
            decimals = find_number_of_digits(precision);
8386 schaersvoo 930
            for(c = 0 ; c < i-1 ; c = c+3){
15111 schaersvoo 931
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,13,[%.*f],[%.*f],[%.3f],[%.3f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],double_data[c+2],double_data[c+2],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
932
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
933
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,13,[%.*f],[%.*f],[%.3f],[%.3f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],double_data[c+2],double_data[c+2],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
934
                add_to_buffer(tmp_buffer);
935
                if(onclick != 0){object_cnt++;}/* object_cnt++; */
8299 schaersvoo 936
            }
937
            reset();
15111 schaersvoo 938
            dragstuff[13] = 1;
939
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8299 schaersvoo 940
            break;
11806 schaersvoo 941
        case CLEARBUTTON:
942
        /*
943
         @ clearbutton value
15715 schaersvoo 944
         @ alternative: delete
945
         @ alternative: erase
15111 schaersvoo 946
         @ adds a button to clear the <a href="#userdraw">userdraw</a> canvas with text ''value``
947
         @ <b>attention</b> command <code>clearbutton</code> is incompatible with <a href="#multidraw">multidraw</a> based drawings<br/>(in <code>multidraw</code> there is always a remove_object_button for every draw primitive)
948
         @ normally <a href="#userdraw">userdraw</a> primitives have the option to use middle/right mouse button on<br /> a point of the object to remove this specific object...this clear button will remove all drawings
14071 bpr 949
         @ uses the tooltip placeholder div element: may not be used with command <code>intooltip</code>
15111 schaersvoo 950
         @ use command <a href="#css">css</a> to style the button...
951
         @ the clearbutton will have id="canvas_scripts[%d]" ; starting with %d=0 for the first script<br />to change the style of all ''clearbutton`` of all included canvasdraw scripts, use something like<br /><code>if(document.getElementById("clearbutton"+canvas_scripts[0])){<br />&nbsp;var p = 0;<br />&nbsp;while(document.getElementById("clearbutton"+canvas_scripts[p])){<br />&nbsp;&nbsp;document.getElementById("clearbutton"+canvas_scripts[p]).className="some_class_name";<br />&nbsp;&nbsp;&lt;!&minus;&minus;</code> or <code>document.getElementById("clearbutton"+canvas_scripts[p]).setAttribute("style","some_style"); &minus;&minus;&gt;<br />&nbsp;&nbsp;p++;<br />&nbsp;};<br />};</code>
13935 bpr 952
         @%clearbutton%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 255,50%userdraw circles,red%clearbutton Remove All
11806 schaersvoo 953
        */
954
        if(reply_format == 29){/* eg multidraw is selected */
14054 schaersvoo 955
        // canvas_error("command clearbutton incompatible with multidraw...only suitable for userdraw");
11806 schaersvoo 956
        }
15111 schaersvoo 957
          add_clear_button(css_class,get_string(infile,1));
11806 schaersvoo 958
        break;
8386 schaersvoo 959
 
11806 schaersvoo 960
        case CLOCK:
7614 schaersvoo 961
        /*
11806 schaersvoo 962
        @ clock x,y,r(px),H,M,S,type hourglass,interactive [ ,H_color,M_color,S_color,background_color,foreground_color ]
14071 bpr 963
        @ use command <code>opacity stroke-opacity,fill-opacity</code> to adjust foreground (stroke) and background (fill) transparency
14066 bpr 964
        @ type hourglass:<br />type = 0: only segments<br />type = 1: only numbers<br />type = 2: numbers and segments
11806 schaersvoo 965
        @ colors are optional: if not defined, default values will be used<br />default colours: clock 0,0,60,4,35,45,1,2<br />custom colours: clock 0,0,60,4,35,45,1,2,,,,yellow,red<br />custom colours: clock 0,0,60,4,35,45,1,2,white,green,blue,black,yellow
966
        @ if you don't want a seconds hand (or minutes...), just make it invisible by using the background color of the hourglass...
14162 bpr 967
        @ interactive <ul><li>0: not interactive, just clock(s)</li><li>1: function read_canvas() will read all active clocks in H:M:S format<br />The active clock(s) can be adjusted by pupils</li><li>2: function read_canvas() will return the clicked clock <br />(like multiplechoice; first clock in script in nr. 0 )</li><li>3: no prefab buttons...create your own buttons (or other means) to make the clock(s) adjustable by javascript function set_clock(num,type,diff)<br />wherein: num = clock id (starts with 0) ; type = 1 (hours) ; type = 2 (minutes) ; type = 3 (seconds) <br />and diff = the increment of 'type' (positive or negative)</li></ul>
11806 schaersvoo 968
        @ canvasdraw will not check validity of colornames...the javascript console is your best friend
969
        @ no combinations with other reply_types allowed, for now
14077 bpr 970
        @ if interactive is set to ''1``, 6 buttons per clock will be displayed for adjusting a clock (H+ M+ S+ H- M- S-)<br /> set_clock(clock_id,type,incr) <br />first clock has clock_id=0 ; type: H=1,M=2,S=3 ; incr: increment integer
971
        @ note: if you need multiple -interactive- clocks on a webpage, use multiple ''clock`` commands in a single script !<br />and <i>not multiple canvas scripts</i> in a single page
14066 bpr 972
        @ note: clocks will not zoom or pan, when using command <a href='#zoom'>zoom</a>
12110 schaersvoo 973
        @%clock_1%size 400,400%xrange -10,10%yrange -10,10%clock 0,0,120,4,35,45,0,0,red,green,blue,lightgrey,black
974
        @%clock_2%size 400,400%xrange -10,10%yrange -10,10%clock 0,0,120,4,35,45,1,1,red,green,blue,lightgrey,black
975
        @%clock_3%size 400,400%xrange -10,10%yrange -10,10%clock -5,0,80,4,35,45,2,2,red,green,blue,lightgrey,black%clock 5,0,80,3,15,65,2,2,red,green,blue,lightgrey,black
976
        @%clock_4%size 400,400%xrange -10,10%yrange -10,10%clock 0,0,120,4,35,45,0,0,red,green,blue,lightgrey,black
977
        @%clock_5%size 400,400%xrange -10,10%yrange -10,10%clock 0,0,120,4,35,45,1,1,red,green,blue,lightgrey,black
978
        @%clock_6%size 400,400%xrange -10,10%yrange -10,10%clock -5,0,80,4,35,45,2,2,red,green,blue,lightgrey,black%clock 5,0,80,8,55,15,2,2,red,green,blue,lightgrey,black
979
        @%clock_7%size 400,400%xrange -10,10%yrange -10,10%clock 0,0,120,4,35,45,2,0,red,green,blue,lightgrey,black
7614 schaersvoo 980
        */
15111 schaersvoo 981
            js_function[DRAW_CLOCK] = 1;
982
            js_function[INTERACTIVE] = 1;
11806 schaersvoo 983
 
984
        /*    var clock = function(xc,yc,radius,H,M,S,h_color,m_color,s_color,bg_color,fg_color) */
985
            for(i=0;i<9;i++){
986
             switch(i){
987
              case 0: int_data[0] = x2px(get_real(infile,0)); break; /* xc */
988
              case 1: int_data[1] = y2px(get_real(infile,0)); break; /* yc */
989
              case 2: int_data[2] = get_real(infile,0);break;/* radius in px */
990
              case 3: int_data[3] = get_real(infile,0);break;/* hours */
991
              case 4: int_data[4] = get_real(infile,0);break;/* minutes */
992
              case 5: int_data[5] = get_real(infile,0);break;/* seconds */
993
              case 6: int_data[6] = get_real(infile,0);if(int_data[6] < 0 || int_data[6] > 2){canvas_error("hourglass can be 0,1 or 2");}break;/* type hourglass */
994
              case 7: int_data[7] = (int)(get_real(infile,1));/* interactive 0,1,2*/
995
                switch(int_data[7]){
996
                    case 0:break;
997
                    case 1:if(clock_cnt == 0){
998
                           if( reply_format == 0 ){
999
                            reply_format = 18; /* user sets clock */
14208 schaersvoo 1000
                            /* string_length = 1 + snprintf(NULL,0,"set_clock = function(num,type,diff){var name = eval(\"clocks\"+num);switch(type){case 1:name.H = parseInt(name.H+diff);break;case 2:name.M = parseInt(name.M+diff);break;case 3:name.S = parseInt(name.S+diff);break;default: break;};name = clock(name.xc,name.yc,name.radius,name.H,name.M,name.S,name.type,name.interaction,name.H_color,name.M_color,name.S_color,name.bg_color,name.fg_color);};\n");
1001
                               check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 1002
                               snprintf(tmp_buffer,string_length,"set_clock = function(num,type,diff){var name = eval(\"clocks\"+num);switch(type){case 1:name.H = parseInt(name.H+diff);break;case 2:name.M = parseInt(name.M+diff);break;case 3:name.S = parseInt(name.S+diff);break;default: break;};name = clock(name.xc,name.yc,name.radius,name.H,name.M,name.S,name.type,name.interaction,name.H_color,name.M_color,name.S_color,name.bg_color,name.fg_color);};\n");
1003
                               add_to_buffer(tmp_buffer);
1004
                           */
1005
                            fprintf(js_include_file,"set_clock = function(num,type,diff){if(wims_status == \"done\"){return;};var name = eval(\"clocks\"+num);switch(type){case 1:name.H = parseInt(name.H+diff);break;case 2:name.M = parseInt(name.M+diff);break;case 3:name.S = parseInt(name.S+diff);break;default: break;};name = new clock(name.xc,name.yc,name.radius,name.H,name.M,name.S,name.type,name.interaction,name.H_color,name.M_color,name.S_color,name.bg_color,name.fg_color);};\n");
1006
                           }
1007
                           else
1008
                           {
1009
                            canvas_error("interactive clock may not be used together with other reply_types...");
1010
                           }
1011
                          }
15111 schaersvoo 1012
                          fprintf(stdout,"<p style=\"text-align:center\"><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,1,1)\" value=\"H+\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,2,1)\" value=\"M+\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,3,1)\" value=\"S+\" /><br /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,1,-1)\" value=\"H&minus;\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,2,-1)\" value=\"M&minus;\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,3,-1)\" value=\"S&minus;\" /></p>",css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt);
11806 schaersvoo 1013
                    break;
1014
                    case 3:if(clock_cnt == 0){
1015
                            if( reply_format == 0 ){
1016
                             reply_format = 18; /* user sets clock */
1017
                             fprintf(js_include_file,"set_clock = function(num,type,diff){if(wims_status == \"done\"){return;};var name = eval(\"clocks\"+num);switch(type){case 1:name.H = parseInt(name.H+diff);break;case 2:name.M = parseInt(name.M+diff);break;case 3:name.S = parseInt(name.S+diff);break;default: break;};name = new clock(name.xc,name.yc,name.radius,name.H,name.M,name.S,name.type,1,name.H_color,name.M_color,name.S_color,name.bg_color,name.fg_color);};\n");
1018
                            }
1019
                            else
1020
                            {
1021
                             canvas_error("interactive clock may not be used together with other reply_types...");
1022
                            }
1023
                           }
1024
                            /*
15111 schaersvoo 1025
                            fprintf(stdout,"<p style=\"text-align:center\"><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,1,1)\" value=\"H+\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,2,1)\" value=\"M+\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,3,1)\" value=\"S+\" /><br /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,1,-1)\" value=\"H&minus;\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,2,-1)\" value=\"M&minus;\" /><input class=\"%s\" type=\"button\" onclick=\"javascript:set_clock(%d,3,-1)\" value=\"S&minus;\" /></p>",css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt,css_class,clock_cnt);
11806 schaersvoo 1026
                           */
1027
                    break;
1028
                    case 2:if( reply_format == 0 ){
1029
                                reply_format = 19; /* "onclick */
15111 schaersvoo 1030
                                js_function[INTERACTIVE] = 1;
1031
                                fprintf(js_include_file,"\n/* begin onclick handler for clocks */\nvar reply = new Array();canvas_div.addEventListener( 'mousedown', user_click,false);\n\nfunction user_click(evt){if(evt.button == 1){var canvas_rect = clock_canvas.getBoundingClientRect();var x = evt.clientX - canvas_rect.left;var y = evt.clientY - canvas_rect.top;var p = 0;var name;var t = true;while(t){try{name = eval('clocks'+p);if( x < name.xc + name.radius && x > name.xc - name.radius ){if( y < name.yc + name.radius && y > name.yc - name.radius ){reply[0] = p;name = new clock(name.xc,name.yc,name.radius,name.H,name.M,name.S,name.type,name.interaction,name.H_color,name.M_color,name.S_color,\"lightblue\",name.fg_color);};}else{clock_ctx.clearRect(name.xc-name.radius,name.yc-name.radius,name.xc+name.radius,name.yc+name.radius);name = new clock(name.xc,name.yc,name.radius,name.H,name.M,name.S,name.type,name.interaction,name.H_color,name.M_color,name.S_color,name.bg_color,name.fg_color);};p++;}catch(e){t=false;};};};};\n");
11806 schaersvoo 1032
                            }
1033
                            else
1034
                            {
1035
                                if( reply_format != 19){
1036
                                   canvas_error("clickable clock(s) may not be used together with other reply_types...");
1037
                                 }
1038
                            }
1039
                     break;
1040
                     default: canvas_error("interactive must be set 0,1 or 2");break;
1041
                }
1042
                break;
1043
                case 8:
14078 bpr 1044
                        if(clock_cnt == 0 ){ /* set opacity's just once .... it should be a argument to clock(), for now it's OK */
11806 schaersvoo 1045
                            fprintf(js_include_file,"var clock_bg_opacity = %.2f;var clock_fg_opacity = %.2f;",fill_opacity,stroke_opacity);
1046
                        }
1047
                        temp = get_string(infile,3);/* optional colors, like: ,,red,,blue*/
1048
                        if( strstr( temp,",") != 0 ){ temp = str_replace(temp,",","\",\""); }
1049
                        else{
1050
                        /* h_color,m_color,s_color,bg_color,fg_color */
11991 schaersvoo 1051
                        temp = ",black\",\"black\",\"black\",\"white\",\"black";}
14208 schaersvoo 1052
                        string_length = 1 + snprintf(NULL,0,"clocks%d = new clock(%d,%d,%d,%d,%d,%d,%d,%d,\"%s\");\n",clock_cnt,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],temp);
1053
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 1054
                        snprintf(tmp_buffer,string_length,"clocks%d = new clock(%d,%d,%d,%d,%d,%d,%d,%d,\"%s\");\n",clock_cnt,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],temp);
1055
                        add_to_buffer(tmp_buffer);
1056
                        fprintf(js_include_file,"var clocks%d;",clock_cnt);
1057
                        clock_cnt++;
1058
                        break;
1059
                default:break;
1060
             }
1061
            }
1062
            break;
1063
 
1064
 
1065
        case COLORPALETTE:
1066
        /*
1067
         @ colorpalette color_name_1,color_name_2,...,color_name_8
1068
         @ opacity will be the same for all colors and is set by command <a href="#opacity">opacity [0-255],[0-255]</a>
14066 bpr 1069
         @ can be used with command <a href='#userdraw'>userdraw clickfill,color</a> when more than one fillcolor is wanted.<br />in that case use for example <a href='#replyformat'>replyformat 10</a> ... reply=x1:y1:color1,x2:y2:color2...<br />the pupil can choose from the given colors by clicking small coloured buttons.<br /> the click coordinates and corresponding fillcolor will be stored in read_canvas()...when using the appropriate replyformat.<br />the first color of the palette is color=0
14077 bpr 1070
         @ make sure to include the ''remove button`` by using command <a href='#clearbutton'>clearbutton some_text</a>
11806 schaersvoo 1071
        */
1072
            if( use_tooltip == 1 ){canvas_error("command 'colorpalette' is incompatible with command 'intooltip tip_text'");}
1073
            fprintf(js_include_file,"var multifillcolors = [];var palettecolors = [");
1074
            while( ! done ){
1075
                temp = get_color(infile,1);
1076
                fprintf(js_include_file,"\"%s\",",temp);
1077
            }
1078
            fprintf(js_include_file,"];");/* add black to avoid trouble with dangling comma... */
15111 schaersvoo 1079
            add_color_palette(css_class);
11806 schaersvoo 1080
            break;
13829 bpr 1081
 
15111 schaersvoo 1082
        case COMMENT:
1083
            sync_input(infile);
1084
            break;
1085
 
1086
 
11806 schaersvoo 1087
        case COPY:
1088
        /*
1089
        @ copy x,y,x1,y1,x2,y2,[filename URL]
1090
        @ The image may be "bitmap" or "SVG"
1091
        @ Insert the region from (x1,y1) to (x2,y2) (in pixels) of [filename] to (x,y) in x/y-range
1092
        @ If x1=y1=x2=y2=-1, the whole [filename URL] is copied.
1093
        @ [filename] is the URL of the image
15111 schaersvoo 1094
        @ <em>TODO:move special image functions to generic 'dragstuff' library</em>
1095
        @ URL is normal URL of network reachable image file location
1096
        @ if command <a href="#drag">drag x/y/xy</a> is set before command ''copy``, the images will be draggable<br />javascript function read_canvas(); will return the x/y coordinate data in xrange/yrange of all -including non draggable- images<br />the command drag is only valid for the next image<br />draggable / non-draggable images may be mixed<br />may be used together with preceding keywords ''snaptogrid``, ''xsnaptogrid``, ''ysnaptogrid`` or <code>snaptopoints x1,y1,x2,y2...</code>.
1097
        @ if keyword <a href="#onclick">onclick</a> is set before command ''copy`` the image(s) is clickable (marked with a green rectangle around the image)<br />use 'read_dragdrop' to get the number of the clicked image(s)<br />use command 'clearbutton some_text' to reset the reply/click array.<br />example: 4 images; student clicked on image 2 and 3: reply = 0,1,1,0<br />after clicking the clear button: reply = 0,0,0,0<br />May be mixed with commands ''drag x|y|xy`` (use javascript read_canvas to get the new coordinates
1098
        @ ''onclick`` for external images may be mixed with canvas generated stuff (like lines,curves, embeded XML etc)
11806 schaersvoo 1099
        @ you may draw / userdraw / drag other stuff on top of an "imported" image
15633 bpr 1100
        @ the use of a slider is not possible: if needed, use command <a href='#html'>html x,y,&lt;img src=my_image.svg /&gt; </a>
14077 bpr 1101
        @ use keyword <a href='#centered'>centered</a> before command ''copy`` to place image center at given coordinates.
13967 schaersvoo 1102
        @%copy_onclick%size 400,400%xrange -10,10%yrange -10,10%onclick%copy -5,5,-1,-1,-1,-1,gifs/fr.gif%onclick%copy 5,5,-1,-1,-1,-1,gifs/en.gif%onclick%copy 5,-5,-1,-1,-1,-1,gifs/it.gif%onclick%copy -5,-5,-1,-1,-1,-1,gifs/cn.gif
14066 bpr 1103
        @%copy_drag_xy%size 400,400%xrange -10,10%yrange -10,10%# attention: left mouse click on the image will activate dragging...%# keep left mouse button pressed while moving the image !%drag xy%copy -5,5,-1,-1,-1,-1,gifs/fr.gif%drag xy%copy 5,5,-1,-1,-1,-1,gifs/en.gif%drag xy%copy 5,-5,-1,-1,-1,-1,gifs/it.gif%drag xy%copy -5,-5,-1,-1,-1,-1,gifs/cn.gif
1104
        @%copy_drag_xy_snaptogrid%size 400,400%xrange -10,10%yrange -10,10%grid 2,2,grey%# attention: left mouse click on the image will activate dragging...%# keep left mouse button pressed while moving the image !%drag xy%# a function read_canvas_images() %copy -6,6,-1,-1,-1,-1,gifs/fr.gif%snaptogrid%drag xy%copy 6,6,-1,-1,-1,-1,gifs/en.gif%snaptogrid%drag xy%copy 6,-6,-1,-1,-1,-1,gifs/it.gif%snaptogrid%drag xy%copy -6,-6,-1,-1,-1,-1,gifs/cn.gif
11806 schaersvoo 1105
        */
1106
            for(i = 0 ; i<7;i++){
7614 schaersvoo 1107
                switch(i){
15111 schaersvoo 1108
                    case 0: double_data[0]=get_real(infile,0);break; /* x left top corner in x/y range  */
1109
                    case 1: double_data[1]=get_real(infile,0);break; /* y left top corner in x/y range */
11806 schaersvoo 1110
                    case 2: int_data[2]=(int)(get_real(infile,0));break;/* x1 in px of external image */
1111
                    case 3: int_data[3]=(int)(get_real(infile,0));break;/* y1 in px of external image */
1112
                    case 4: int_data[4]=(int)(get_real(infile,0));break;/* x2 --> width  */
1113
                    case 5: int_data[5]=(int)(get_real(infile,0)) ;break;/* y2 --> height */
1114
                    case 6: URL = get_string(infile,1);
15111 schaersvoo 1115
                            if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
1116
                            if(use_affine == TRUE ){transform(2,2);}
1117
                            int_data[0] = x2px(double_data[0]);
1118
                            int_data[1] = y2px(double_data[1]);
11806 schaersvoo 1119
                            int_data[6] = int_data[4] - int_data[2];/* swidth & width (if not scaling )*/
1120
                            int_data[7] = int_data[5] - int_data[3];/* sheight & height (if not scaling )*/
15111 schaersvoo 1121
                            if( onclick == 0 ){ /* no mouse needed static image copy  */
1122
                             if(js_function[DRAW_EXTERNAL_IMAGE] == 0){/* create canvas just once */
1123
                              fprintf(js_include_file,"var image_copy_canvas = create_canvas%d(%d,xsize,ysize);",canvas_root_id,STATIC_IMAGE_CANVAS);
1124
                              js_function[DRAW_EXTERNAL_IMAGE] = 1;
1125
                             }
1126
                             string_length = 1 + snprintf(NULL,0,  "draw_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[2],int_data[3],int_data[6],int_data[7],int_data[0],int_data[1],int_data[6],int_data[7],use_offset,int_data[10]);
1127
                             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1128
                             snprintf(tmp_buffer,string_length,    "draw_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[2],int_data[3],int_data[6],int_data[7],int_data[0],int_data[1],int_data[6],int_data[7],use_offset,int_data[10]);
11806 schaersvoo 1129
                            }
15111 schaersvoo 1130
                            else /* onclick or drag & drop external copy images */
11806 schaersvoo 1131
                            {
15111 schaersvoo 1132
                             js_function[DRAG_EXTERNAL_IMAGE] = 1;
1133
                             string_length = 1 + snprintf(NULL,0,  "drag_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[2],int_data[3],int_data[6],int_data[7],int_data[0],int_data[1],int_data[6],int_data[7],onclick,object_cnt,use_offset,use_snap,int_data[10]);
1134
                             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15116 bpr 1135
                             snprintf(tmp_buffer,string_length,    "drag_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[2],int_data[3],int_data[6],int_data[7],int_data[0],int_data[1],int_data[6],int_data[7],onclick,object_cnt,use_offset,use_snap,int_data[10]);
11806 schaersvoo 1136
                            }
14038 schaersvoo 1137
                            add_to_buffer(tmp_buffer);
11806 schaersvoo 1138
                            break;
7614 schaersvoo 1139
                    default: break;
1140
                }
1141
            }
15111 schaersvoo 1142
            reset();
7614 schaersvoo 1143
            break;
11806 schaersvoo 1144
/*
1145
HTML5 specs:
1146
context.drawImage(img,sx,sy,swidth,sheight,x,y,width,height);
1147
img     Specifies the image, canvas, or video element to use
14066 bpr 1148
sx      The x coordinate where to start clipping: x1 = int_data[0]
1149
sy      The y coordinate where to start clipping: x2 = int_data[1]
1150
swidth  The width of the clipped image: int_data[2] - int_data[0]
1151
sheight The height of the clipped image: int_data[3] - int_data[1]
1152
x       The x coordinate where to place the image on the canvas: dx1 = int_data[4]
1153
y       The y coordinate where to place the image on the canvas: dy1 = int_data[5]
1154
width   The width of the image to use (stretch or reduce the image): dx2 - dx1 = int_data[6]
1155
height  The height of the image to use (stretch or reduce the image): dy2 - dy1 = int_data[7]
11806 schaersvoo 1156
*/
1157
        case COPYRESIZED:
1158
        /*
15111 schaersvoo 1159
        @ copyresized x1,y2,x2,y2,dx1,dy1,dx2,dy2,image_file_url
11806 schaersvoo 1160
        @ The image may be any "bitmap" or "SVG"
1161
        @ Insert the region from (x1,y1) to (x2,y2) (in pixels) of [ filename], <br />possibly resized,<br />to the region of (dx1,dy1) to (dx2,dy2) in x/y-range
14066 bpr 1162
        @ (dx1:dy1) must be left top corner; (dx2:dy2) must be right bottom corner of inserted image
11806 schaersvoo 1163
        @ If x1=y1=x2=y2=-1, the whole [filename / URL ] is copied and resized.
15111 schaersvoo 1164
        @ URL is normal URL of network reachable image file location<br />(as seen from public_html-root or network reachable 'http://some_server/my_images/test.gif'<br />(eg no special wims paths are searched !!)
1165
        @ if command <a href="#drag">drag x/y/xy</a> is set before command ''copy``, the images will be draggable<br />javascript function read_canvas(); will return the x/y coordinate data in xrange/yrange of all -including non draggable- images<br />the command drag is only valid for the next image<br />draggable / non-draggable images may be mixed<br />may be used together with preceding keywords ''snaptogrid``,''xsnaptogrid``,''ysnaptogrid`` or <code>snaptopoints x1,y1,x2,y2...</code>
1166
        @ if keyword <a href="#onclick">onclick</a> is set before command ''copy`` the image(s) is clickable (marked with a green rectangle around the image)<br />use ''read_dragdrop`` to get the number of the clicked image(s)<br />use command 'clearbutton some_text' to reset the reply/click array.<br />example: 4 images; student clicked on image 2 and 3: reply = 0,1,1,0<br />after clicking the clear button: reply = 0,0,0,0<br />May be mixed with commands ''drag x|y|xy`` (use javascript read_canvas to get the new coordinates
1167
        @ ''onclick`` for external images may be mixed with canvas generated stuff (like lines,curves etc)
1168
        @ you may draw / userdraw / drag stuff on top of an "imported" image
1169
        @ when set draggable, there will be special function 'read_canvas_images()'<br />now dragging external images may be combined with 'read_canvas()' from <a href='#userdraw'>userdraw</a> or <a href='#multidraw'>multidraw</a><br />set command <a href='#precision'>precision</a> before command ''copy``
1170
        @ use keyword <a href='#centered'>centered</a> before command 'copyresized' to place image center at given coordinates.
1171
        @ <em>TODO:move special image functions to generic 'dragstuff' library</em>
11806 schaersvoo 1172
        */
1173
            for(i = 0 ; i<9;i++){
1174
                switch(i){
1175
                    case 0: int_data[0] = (int)(get_real(infile,0));break; /* x1 */
1176
                    case 1: int_data[1] = (int)(get_real(infile,0));break; /* y1 */
1177
                    case 2: int_data[2] = (int)(get_real(infile,0));break;/* x2 */
1178
                    case 3: int_data[3] = (int)(get_real(infile,0));break;/* y2 */
1179
                    case 4: int_data[4] = x2px(get_real(infile,0));break;/* dx1 */
1180
                    case 5: int_data[5] = y2px(get_real(infile,0));break;/* dy1 */
1181
                    case 6: int_data[6] = x2px(get_real(infile,0));break;/* dx2 */
1182
                    case 7: int_data[7] = y2px(get_real(infile,0));break;/* dy2 */
1183
                    case 8: URL = get_string(infile,1);
15111 schaersvoo 1184
                            if( int_data[1] == -1 ){ int_data[10] = 1; }else{int_data[10] = 0; }/* resized / not resized */
11806 schaersvoo 1185
                            /* flag error when wrong diagonal:  copyresized -1,-1,-1,-1,0,0,7,7,testfig.gif */
1186
                            if( int_data[7] < int_data[5] || int_data[6] < int_data[4]){
15633 bpr 1187
                                canvas_error("in copyresized,  use:<br />left top corner (dx1:dy1) and right bottom corner (dx2:dy2) ! ");
11806 schaersvoo 1188
                            }
1189
                            int_data[2] = abs(int_data[2] - int_data[0]);/* swidth */
1190
                            int_data[3] = abs(int_data[3] - int_data[1]);/* sheight */
1191
                            int_data[6] = abs(int_data[6] - int_data[4]);/* width */
1192
                            int_data[7] = abs(int_data[7] - int_data[5]);/* height */
15111 schaersvoo 1193
                            if( onclick == 0 ){ /* no mouse needed static image copy  */
1194
                             if(js_function[DRAW_EXTERNAL_IMAGE] == 0){
1195
                              fprintf(js_include_file,"var image_copy_canvas = create_canvas%d(%d,xsize,ysize);",canvas_root_id,STATIC_IMAGE_CANVAS);
1196
                              js_function[DRAW_EXTERNAL_IMAGE] = 1;
1197
                             }
1198
                             string_length = 1 + snprintf(NULL,0,  "draw_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],use_offset,int_data[10]);
1199
                             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1200
                             snprintf(tmp_buffer,string_length,    "draw_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],use_offset,int_data[10]);
11806 schaersvoo 1201
                            }
15111 schaersvoo 1202
                            else /* onclick or drag & drop external copy images */
11806 schaersvoo 1203
                            {
15111 schaersvoo 1204
                             js_function[DRAG_EXTERNAL_IMAGE] = 1;
1205
                             string_length = 1 + snprintf(NULL,0,  "drag_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],onclick,object_cnt,use_offset,use_snap,int_data[10]);
1206
                             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15116 bpr 1207
                             snprintf(tmp_buffer,string_length,    "drag_external_image(\"%s\",%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d);\n",URL,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],onclick,object_cnt,use_offset,use_snap,int_data[10]);
15111 schaersvoo 1208
                             object_cnt++;
11806 schaersvoo 1209
                            }
14038 schaersvoo 1210
                            add_to_buffer(tmp_buffer);
11806 schaersvoo 1211
                            break;
1212
                    default: break;
1213
                }
1214
            }
14038 schaersvoo 1215
            reset();
11806 schaersvoo 1216
            break;
8386 schaersvoo 1217
 
11806 schaersvoo 1218
        case CROSSHAIR:
8386 schaersvoo 1219
        /*
11806 schaersvoo 1220
        @ crosshair x,y,color
14379 bpr 1221
        @ draw a single crosshair point at (x;y) in color ''color``
1222
        @ use command <code>crosshairsize int</code> and / or <code>linewidth int</code> to adjust
11806 schaersvoo 1223
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 1224
        @%crosshair%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%linewidth 2%onclick%crosshair 0,0,red%linewidth 1%onclick%crosshair 1,1,blue%linewidth 3%onclick%crosshair 3,3,green%linewidth 4%xrosshair 4,4,orange
11806 schaersvoo 1225
        */
1226
            for(i=0;i<3;i++){
1227
                switch(i){
1228
                    case 0: double_data[0] = get_real(infile,0);break; /* x */
1229
                    case 1: double_data[1] = get_real(infile,0);break; /* y */
1230
                    case 2: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 1231
                        if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
1232
                        if(use_affine == TRUE ){ transform(2,2);}
1233
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 1234
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 1235
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,7,[%.*f],[%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],crosshair_size,crosshair_size,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1236
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1237
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,7,[%.*f],[%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],crosshair_size,crosshair_size,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1238
                        add_to_buffer(tmp_buffer);
1239
                        if(onclick != 0){object_cnt++;}
1240
                        /* object_cnt++ */
11806 schaersvoo 1241
                        reset();
15111 schaersvoo 1242
                        dragstuff[7] = 1;
11806 schaersvoo 1243
                        break;
1244
                    default:break;
1245
                }
1246
            }
15111 schaersvoo 1247
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 1248
            break;
1249
 
1250
        case CROSSHAIRS:
1251
        /*
1252
        @ crosshairs color,x1,y1,x2,y2,...,x_n,y_n
14077 bpr 1253
        @ draw multiple crosshair points at given coordinates in color ''color``
14246 bpr 1254
        @ use command <code>crosshairsize int</code> and / or <code>linewidth int</code> to adjust
9406 schaersvoo 1255
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually (!)
12107 schaersvoo 1256
        @%crosshairs_1%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%snaptogrid%linewidth 2%drag xy%crosshairs red,0,0,1,1,2,2,3,3%drag x%crosshairs blue,0,1,1,2,2,3,3,4
1257
        @%crosshairs_2%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%linewidth 2%onclick%crosshairs red,0,0,1,1,2,2,3,3%onclick%crosshairs blue,0,1,1,2,2,3,3,4
1258
*/
8386 schaersvoo 1259
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
1260
            fill_color = stroke_color;
1261
            i=0;
1262
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 1263
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8386 schaersvoo 1264
                if(i%2 == 0 ){
1265
                    double_data[i] = get_real(infile,0); /* x */
1266
                }
1267
                else
1268
                {
1269
                    double_data[i] = get_real(infile,1); /* y */
1270
                }
1271
                i++;
1272
            }
15111 schaersvoo 1273
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
1274
            if(use_affine == TRUE ){ transform(i-1,2);}
1275
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
8386 schaersvoo 1276
            decimals = find_number_of_digits(precision);
11806 schaersvoo 1277
            for(c=0 ; c < i-1 ; c = c+2){
15111 schaersvoo 1278
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,7,[%.*f],[%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],crosshair_size,crosshair_size,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1279
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1280
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,7,[%.*f],[%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],crosshair_size,crosshair_size,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1281
                add_to_buffer(tmp_buffer);
1282
                if(onclick != 0){object_cnt++;}/* object_cnt++; */
8386 schaersvoo 1283
            }
15111 schaersvoo 1284
            dragstuff[7] = 1;
1285
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8386 schaersvoo 1286
            reset();
1287
            break;
1288
 
11806 schaersvoo 1289
        case CROSSHAIRSIZE:
7614 schaersvoo 1290
        /*
11806 schaersvoo 1291
        @ crosshairsize int
1292
        @ default 8 (px)
7614 schaersvoo 1293
        */
11806 schaersvoo 1294
            crosshair_size = (int) (get_real(infile,1));
1295
            break;
15111 schaersvoo 1296
        case CSS:
1297
        /*
1298
        @ css css_class
1299
        @ may be used before any ''style-able`` html object (like inputfields or buttons) or some html objects that are generated by some canvasdraw commands
1300
        @ in case of <a href="#multidraw">multidraw</a> this command must be a table css class, for example "wimstable"
1301
        @%css%size 400,400%xrange -10,10%yrange -10,10%css wims_button_help%input 0,0,10,1,Hello
1302
        */
1303
            css_class = get_string(infile,1);
1304
            break;
11806 schaersvoo 1305
 
1306
        case CURSOR:
1307
        /*
14086 bpr 1308
        @ cursor some CSS cursor_style
15715 schaersvoo 1309
        @ alternative: pointer
13956 schaersvoo 1310
        @ style can be any valid CSS property value
1311
        @ choose from these types:<br />alias,all-scroll,auto,cell,context-menu,col-resize,copy,crosshair,default,e-resize,<br />ew-resize,grab,grabbing,help,move,n-resize,ne-resize,nesw-resize,ns-resize,nw-resize,<br />nwse-resize,no-drop,none,not-allowed,pointer,progress,row-resize,s-resize,se-resize,<br />sw-resize,text,url(myBall.cur),auto,vertical-text,w-resize,wait,zoom-in,zoom-out,initial
1312
        @ note: wims will not check the validity of your cursor declaration
1313
        @%cursor_css%size 400,400%xrange -10,10%yrange -10,10%cursor move%linewidth 3%drag xy%opacity 200,75%fcircles blue,-5,5,3,-4,-2,6,0,0,5,3,4,2,4,-5,4
11806 schaersvoo 1314
        */
1315
            fprintf(js_include_file,"canvas_div%d.style.cursor = \"%s\";",canvas_root_id,get_string(infile,1));
1316
            break;
1317
 
1318
        case CURVE:
1319
        /*
1320
         @ curve color,formula(x)
15715 schaersvoo 1321
         @ alternative: plot
15601 schaersvoo 1322
         @ use command <a href="#trange">trange</a> in parametric functions before <b>every</b> command curve / plot <code>trange -pi,pi<br />curve color,formula1(t),formula2(t)</code><br />A next parametric curve will only be correctly plot when trange is set again !<br/>this is a design flaw and not a feature...
14086 bpr 1323
         @ use command <a href="#precision">precision</a> to increase the number of digits of the plotted points
14066 bpr 1324
         @ use command <a href="#plotsteps">plotsteps</a> to increase / decrease the amount of plotted points (default 150)
11806 schaersvoo 1325
         @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
14379 bpr 1326
         @ if you need a plot beyond xrange / yrange, use <a href="#jsplot">jsplot</a> (command ''curve`` will only calculate points within the xrange)
12107 schaersvoo 1327
         @%curve%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%xlabel x-axis%ylabel y-axis%precision 1%grid 2,2,grey,2,2,6,grey%precision 1000%curve red,4*sqrt(x)%curve green,2*sqrt(abs(x)%curve blue,3*1/sqrt(x)%curve orange,4*sin(4/x)%dashed%curve red,4*cos(x)
11806 schaersvoo 1328
        */
15111 schaersvoo 1329
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
1330
 
11806 schaersvoo 1331
            if( use_parametric == TRUE ){ /* parametric color,fun1(t),fun2(t)*/
1332
                use_parametric = FALSE;
1333
                stroke_color = get_color(infile,0);
1334
                char *fun1 = get_string_argument(infile,0);
1335
                char *fun2 = get_string_argument(infile,1);
1336
                if( strlen(fun1) == 0 || strlen(fun2) == 0 ){canvas_error("parametric functions are NOT OK !");}
15601 schaersvoo 1337
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,9,%s,[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,eval_parametric(xsize,ysize,fun1,fun2,xmin,xmax,ymin,ymax,tmin,tmax,plot_steps,precision,rotationcenter),2*line_width,2*line_width,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
15116 bpr 1338
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15601 schaersvoo 1339
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,9,%s,[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,eval_parametric(xsize,ysize,fun1,fun2,xmin,xmax,ymin,ymax,tmin,tmax,plot_steps,precision,rotationcenter),2*line_width,2*line_width,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
15111 schaersvoo 1340
                add_to_buffer(tmp_buffer);
11806 schaersvoo 1341
            }
1342
            else
1343
            {
1344
                stroke_color = get_color(infile,0);
1345
                char *fun1 = get_string_argument(infile,1);
1346
                if( strlen(fun1) == 0 ){canvas_error("function is NOT OK !");}
15601 schaersvoo 1347
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,9,%s,[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,eval(xsize,ysize,fun1,xmin,xmax,ymin,ymax,plot_steps,precision,rotationcenter),line_width,line_width,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
15116 bpr 1348
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15601 schaersvoo 1349
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,9,%s,[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,eval(xsize,ysize,fun1,xmin,xmax,ymin,ymax,plot_steps,precision,rotationcenter),line_width,line_width,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
15111 schaersvoo 1350
                add_to_buffer(tmp_buffer);
11806 schaersvoo 1351
            }
15111 schaersvoo 1352
            if(onclick != 0){object_cnt++;}/* object_cnt++; */
1353
            dragstuff[9] = 1;
1354
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 1355
            reset();
1356
            break;
15116 bpr 1357
 
14038 schaersvoo 1358
    case CURVEDARROW:
1359
    /*
1360
    @ curvedarrow x1,y1,xc,yc,x2,y2,color
15111 schaersvoo 1361
    @ draw a single headed curved arrow from (x1:y1) in direction of (xc:yc) to point (x2:y2)<br /> note: the curve will <b>not go through</b> point (xc:yc)
14038 schaersvoo 1362
    @ use command <a href='#arrowhead'>arrowhead</a> to set the size of the arrow head.
15111 schaersvoo 1363
    @ use command <code>linewidth int</code> to adjust thickness of the arrow
1364
    @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
14038 schaersvoo 1365
    @%curvedarrow_drag%size 400,400%xrange -10,10%yrange -10,10%cursor move%linewidth 2%drag xy%curvedarrow -5,0,0,10,5,0,blue
1366
    @%curvedarrow_click%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%%onclick%curvedarrow -5,0,0,-10,5,0,blue%onclick%curvedarrow -8,0,0,5,8,3,green
11806 schaersvoo 1367
 
14029 schaersvoo 1368
h[0] = arrowhead
14066 bpr 1369
h[1] = type: 1 = single 2=double arrow
15111 schaersvoo 1370
function Shape(object_cnt,onclick,direction,type,x,y,w,h,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype0,dashtype1,use_rotate,angle,text,font_size,font_family,use_slider,rotation_center,use_offset)
14038 schaersvoo 1371
    */
15111 schaersvoo 1372
        for(i=0;i<7;i++){
14038 schaersvoo 1373
            switch(i){
1374
                case 0: double_data[0] = get_real(infile,0);break; /* x1 */
1375
                case 1: double_data[1] = get_real(infile,0);break; /* y1 */
1376
                case 2: double_data[2] = get_real(infile,0);break; /* xc */
1377
                case 3: double_data[3] = get_real(infile,0);break; /* yc */
1378
                case 4: double_data[4] = get_real(infile,0);break; /* y3 */
1379
                case 5: double_data[5] = get_real(infile,0);break; /* y3 */
1380
                case 6: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 1381
                if(use_rotate == TRUE ){rotate(6,angle,rotationcenter,2);}
1382
                if(use_affine == TRUE ){ transform(6,2);}
1383
                if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
14038 schaersvoo 1384
                decimals = find_number_of_digits(precision);
15111 schaersvoo 1385
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,1,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1386
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1387
                snprintf(tmp_buffer,string_length,  "dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,1,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1388
                add_to_buffer(tmp_buffer);
1389
                if(onclick != 0){object_cnt++;}/* object_cnt++;*/
1390
                reset();
14038 schaersvoo 1391
            break;
1392
            }
15111 schaersvoo 1393
        }
1394
        dragstuff[21] = 1;
1395
        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
1396
        break;
14029 schaersvoo 1397
 
14038 schaersvoo 1398
    case CURVEDARROW2:
1399
    /*
1400
    @ curvedarrow2 x1,y1,xc,yc,x2,y2,color
14248 bpr 1401
    @ draw a double headed curved arrow from (x1:y1) in direction of (xc:yc) to point (x2:y2)<br /> note: the curve will <b>not go through</b> point (xc:yc)
14038 schaersvoo 1402
    @ use command <a href='#arrowhead'>arrowhead</a> to set the size of the arrow head.
14077 bpr 1403
    @ use command <code>linewidth int</code> to adjust thickness of the arrow
14038 schaersvoo 1404
    @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
1405
    @%curvedarrow_drag%size 400,400%xrange -10,10%yrange -10,10%cursor move%linewidth 2%drag xy%curvedarrow2 -5,0,0,10,5,0,blue
1406
    @%curvedarrow_click%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%%onclick%cuvedarrow2 -5,0,0,-10,5,0,blue%onclick%curvedarrow -8,0,0,5,8,3,green
14029 schaersvoo 1407
 
1408
h[0] = arrowhead
14066 bpr 1409
h[1] = type: 1 = single 2=double arrow
15111 schaersvoo 1410
function Shape(object_cnt,onclick,direction,type,x,y,w,h,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype0,dashtype1,use_rotate,angle,text,font_size,font_family,use_slider,rotation_center,use_offset)
14038 schaersvoo 1411
    */
15111 schaersvoo 1412
        for(i=0;i<7;i++){
14038 schaersvoo 1413
            switch(i){
1414
                case 0: double_data[0] = get_real(infile,0);break; /* x1 */
1415
                case 1: double_data[1] = get_real(infile,0);break; /* y1 */
1416
                case 2: double_data[2] = get_real(infile,0);break; /* xc */
1417
                case 3: double_data[3] = get_real(infile,0);break; /* yc */
1418
                case 4: double_data[4] = get_real(infile,0);break; /* y3 */
1419
                case 5: double_data[5] = get_real(infile,0);break; /* y3 */
1420
                case 6: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 1421
                if(use_rotate == TRUE ){rotate(6,angle,rotationcenter,2);}
1422
                if(use_affine == TRUE ){ transform(6,2);}
1423
                if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
14038 schaersvoo 1424
                decimals = find_number_of_digits(precision);
15111 schaersvoo 1425
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,2,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1426
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1427
                snprintf(tmp_buffer,string_length,  "dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,2,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1428
                add_to_buffer(tmp_buffer);
1429
                if(onclick != 0){object_cnt++;}/* object_cnt++;*/
1430
                dragstuff[21] = 1;
1431
                if(use_dragstuff == 0 ){ use_dragstuff = 1; }
1432
                reset();
1433
                break;
14038 schaersvoo 1434
            }
15111 schaersvoo 1435
        }
1436
        break;
14038 schaersvoo 1437
    case CURVEDARROWS:
1438
    /*
14248 bpr 1439
    @ curvedarrows color,x1,y1,xc,yc,x2,y2,...,x_(n-1),y_(n-1),xc,yc,x_n,y_n
1440
    @ draw curved arrows from (x1:y1) in direction of (xc:yc) to point (x2:y2), etc<br /> note: the curve will <b>not go through</b> point (xc:yc)
14038 schaersvoo 1441
    @ use command <a href='#arrowhead'>arrowhead</a> to set the size of the arrow head.
14077 bpr 1442
    @ use command <code>linewidth int</code> to adjust thickness of the arrow
14038 schaersvoo 1443
    @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
1444
    @%curvedarrows_drag%size 400,400%xrange -10,10%yrange -10,10%cursor move%linewidth 2%drag xy%curvedarrows red,-8,0,0,8,8,0,-5,5,0,-10,6,3
1445
    @%curvedarrows_click%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%%onclick%curvedarrows red,-8,0,0,8,8,0,-5,5,0,-10,6,3
14029 schaersvoo 1446
 
14030 schaersvoo 1447
h[0] = arrowhead
14066 bpr 1448
h[1] = type: 1 = single 2=double arrow
15111 schaersvoo 1449
function Shape(object_cnt,onclick,direction,type,x,y,w,h,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype0,dashtype1,use_rotate,angle,text,font_size,font_family,use_slider,rotation_center,use_offset)
14038 schaersvoo 1450
    */
1451
        stroke_color = get_color(infile,0);/* name or hex color */
1452
        i = 0;
1453
        decimals = find_number_of_digits(precision);
15111 schaersvoo 1454
        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
14038 schaersvoo 1455
        while( ! done ){
15111 schaersvoo 1456
         if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
1457
         double_data[0] = get_real(infile,0); /* x1 */
1458
         double_data[1] = get_real(infile,0); /* y1 */
1459
         double_data[2] = get_real(infile,0); /* xc */
1460
         double_data[3] = get_real(infile,0); /* yc */
1461
         double_data[4] = get_real(infile,0); /* x3 */
1462
         double_data[5] = get_real(infile,1); /* y3 */
1463
         string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,1,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1464
         check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1465
         snprintf(tmp_buffer,string_length,  "dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,1,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1466
         add_to_buffer(tmp_buffer);
1467
         if(onclick != 0){object_cnt++;}
1468
         i = i + 6;
1469
        }
1470
        if(use_rotate == TRUE ){rotate(i-6,angle,rotationcenter,2);}
1471
        if(use_affine == TRUE ){ transform(i-6,2);}
1472
        dragstuff[21] = 1;
1473
        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
1474
        reset();
1475
        break;
14030 schaersvoo 1476
 
14038 schaersvoo 1477
    case CURVEDARROWS2:
1478
    /*
1479
    @ curvedarrows2 color,x1,y1,xc,yc,x2,y2,...x_(n-1),y_(n-1),xc,yc,x_n,y_n
14248 bpr 1480
    @ draw double headed curved arrows from (x1:y1) in direction of (xc:yc) to point (x2:y2), etc. <br /> note: the curve will <b>not go through</b> point (xc:yc)
14038 schaersvoo 1481
    @ use command <a href='#arrowhead'>arrowhead</a> to set the size of the arrow head.
14077 bpr 1482
    @ use command <code>linewidth int</code> to adjust thickness of the arrow
14038 schaersvoo 1483
    @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
1484
    @%curvedarrows2_drag%size 400,400%xrange -10,10%yrange -10,10%cursor move%linewidth 2%drag xy%curvedarrows2 red,-8,0,0,8,8,0,-5,5,0,-10,6,3
1485
    @%curvedarrows2_click%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%%onclick%curvedarrow -5,0,0,-10,5,0,blue%onclick%curvedarrows2 red,-8,0,0,8,8,0,-5,5,0,-10,6,3
14030 schaersvoo 1486
 
1487
h[0] = arrowhead
14066 bpr 1488
h[1] = type: 1 = single 2=double arrow
15111 schaersvoo 1489
function Shape(object_cnt,onclick,direction,type,x,y,w,h,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype0,dashtype1,use_rotate,angle,text,font_size,font_family,use_slider,rotation_center,use_offset)
14038 schaersvoo 1490
    */
1491
        stroke_color = get_color(infile,0);/* name or hex color */
1492
        i = 0;
1493
        decimals = find_number_of_digits(precision);
15111 schaersvoo 1494
        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
14038 schaersvoo 1495
        while( ! done ){
15111 schaersvoo 1496
         if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
1497
         double_data[0] = get_real(infile,0); /* x1 */
1498
         double_data[1] = get_real(infile,0); /* y1 */
1499
         double_data[2] = get_real(infile,0); /* xc */
1500
         double_data[3] = get_real(infile,0); /* yc */
1501
         double_data[4] = get_real(infile,0); /* x3 */
1502
         double_data[5] = get_real(infile,1); /* y3 */
1503
         string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,2,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1504
         check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1505
         snprintf(tmp_buffer,string_length,  "dragstuff.addShape(new Shape(%d,%d,%d,%d,21,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],arrow_head,arrow_head,arrow_head,2,line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1506
         add_to_buffer(tmp_buffer);
1507
         if(onclick != 0){object_cnt++;}
1508
         i = i + 6;
1509
        }
1510
        if(use_rotate == TRUE ){rotate(i-6,angle,rotationcenter,2);}
1511
        if(use_affine == TRUE ){ transform(i-6,2);}
1512
        dragstuff[21] = 1;
1513
        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
1514
        reset();
1515
        break;
15116 bpr 1516
 
11806 schaersvoo 1517
        case DASHED:
1518
        /*
1519
        @ dashed
1520
        @ keyword (no arguments required)
1521
        @ next object will be drawn with a dashed line
1522
        @ change dashing scheme by using command <a href="#dashtype">dashtype</a>
12107 schaersvoo 1523
        @%dashed%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%line -5,-5,-5,5,red%dashtype 1,1%dline -4,-5,-4,5,green%dashtype 2,2%dline -3,-5,-3,5,blue%dashtype 3,3%dline 0,-5,0,5,orange%dashtype 4,4%dline 3,-5,3,5,brown
11806 schaersvoo 1524
        */
1525
            use_dashed = TRUE;
1526
            break;
1527
 
1528
        case DASHTYPE:
1529
        /*
1530
        @ dashtype line_width_px,space_width_px
1531
        @ every indiviual object may have its own dashtype, if needed...
1532
        @ When keyword <a href='#dashed'>dashed</a> is set, the objects will be drawn with this dashtype
14086 bpr 1533
        @ default value <code>dashtype 2,2</code> e.g. 2px line and 2px space
13957 schaersvoo 1534
        @ HTML5 canvas specification supports more arguments (dashing schemes) ... but not all modern browsers are yet capable
13949 schaersvoo 1535
        @%dashtype%size 400,400%xrange -10,10%yrange -10,10%dashtype 1,1%dhline 0,9,red%dashtype 2,2%dhline 0,8,red%dashtype 4,4%dhline 0,7,red%dashtype 6,6%dhline 0,6,red%dashtype 8,8%dhline 0,5,red%dashtype 10,10%dhline 0,4,red%dashtype 1,2%dhline 0,3,red%dashtype 2,4%dhline 0,2,red%dashtype 3,6%dhline 0,1,red%dashtype 4,8%dhline 0,0,red%linewidth 2%dashtype 1,1%dhline 0,-9,red%dashtype 2,2%dhline 0,-8,red%dashtype 4,4%dhline 0,-7,red%dashtype 6,6%dhline 0,-6,red%dashtype 8,8%dhline 0,-5,red%dashtype 10,10%dhline 0,-4,red%dashtype 1,2%dhline 0,-3,red%dashtype 2,4%dhline 0,-2,red%dashtype 4,8%dhline 0,-1,red
11806 schaersvoo 1536
        */
1537
            for(i=0;i<2;i++){
1538
                switch(i){
1539
                    case 0 : dashtype[0] = (int) line_width*( get_real(infile,0)) ; break;
1540
                    case 1 : dashtype[1] = (int) line_width*( get_real(infile,1)) ; break;
1541
                }
1542
            }
1543
        break;
1544
 
1545
        case DIAMONDFILL:
1546
        /*
1547
        @ diamondfill x0,y0,dx,dy,color
1548
        @ x0,y0 in xrange / yrange
1549
        @ distances dx,dy in pixels
13936 bpr 1550
        @ there is also a command <a href="#userdraw">userdraw diamondfill,color</a>
12110 schaersvoo 1551
        @%diamondfill%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%circles red,-4,0,6,4,0,6%linewidth 1%diamondfill 0,0,5,8,blue%diamondfill 0,7,8,8,lightgreen
11806 schaersvoo 1552
        */
15111 schaersvoo 1553
            js_function[DRAW_DIAMONDFILL] = 1;
11820 schaersvoo 1554
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
1555
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 1556
             add_js_filltoborder(canvas_type);
11820 schaersvoo 1557
            }
1558
            decimals = find_number_of_digits(precision);
7614 schaersvoo 1559
            for(i=0;i<5;i++){
1560
                switch(i){
11820 schaersvoo 1561
                    case 0: double_data[0] = get_real(infile,0); break; /* x */
14032 schaersvoo 1562
                    case 1: double_data[1] = get_real(infile,0); break; /* y  */
11820 schaersvoo 1563
                    case 2: int_data[0] = (int) (get_real(infile,0)); break; /* dx pixel */
1564
                    case 3: int_data[1] = (int) (get_real(infile,0)); break; /* dy pixel*/
11806 schaersvoo 1565
                    case 4: stroke_color = get_color(infile,1);
15111 schaersvoo 1566
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
1567
                    if(use_affine == TRUE ){ transform(2,2);}
11806 schaersvoo 1568
                    /* draw_hatchfill(ctx,x0,y0,dx,dy,linewidth,color,opacity,xsize,ysize) */
14208 schaersvoo 1569
                    string_length = 1 + snprintf(NULL,0,  "draw_diamondfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",STATIC_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
1570
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11820 schaersvoo 1571
                    snprintf(tmp_buffer,string_length,"draw_diamondfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",STATIC_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
11806 schaersvoo 1572
                    add_to_buffer(tmp_buffer);
11820 schaersvoo 1573
                    fill_cnt++;
15111 schaersvoo 1574
                    reset();
11806 schaersvoo 1575
                    break;
1576
                    default:break;
1577
                }
1578
            }
1579
        break;
8224 bpr 1580
 
11806 schaersvoo 1581
        case DOTFILL:
1582
        /*
1583
        @ dotfill x0,y0,dx,dy,color
1584
        @ x0,y0 in xrange / yrange
1585
        @ distances dx,dy in pixels
1586
        @ radius of dots is linewidth
13936 bpr 1587
        @ there is also a command <a href="#userdraw">userdraw dotfill,color</a>
12110 schaersvoo 1588
        @%dotfill%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%circles red,-4,0,6,4,0,6%dotfill 0,0,5,8,blue%dotfill 0,7,8,8,lightgreen
11806 schaersvoo 1589
        */
15111 schaersvoo 1590
            js_function[DRAW_DOTFILL] = 1;
11817 schaersvoo 1591
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
1592
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 1593
             add_js_filltoborder(canvas_type);
11817 schaersvoo 1594
            }
1595
            decimals = find_number_of_digits(precision);
11806 schaersvoo 1596
            for(i=0;i<5;i++){
1597
                switch(i){
11817 schaersvoo 1598
                    case 0: double_data[0] = get_real(infile,0); break; /* x in px */
1599
                    case 1: double_data[1] = get_real(infile,0); break; /* y in py */
1600
                    case 2: int_data[0] = (int) (get_real(infile,0)); break; /* dx pixel */
1601
                    case 3: int_data[1] = (int) (get_real(infile,0)); break; /* dy pixel*/
11806 schaersvoo 1602
                    case 4: stroke_color = get_color(infile,1);
15111 schaersvoo 1603
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
1604
                    if(use_affine == TRUE ){ transform(2,2);}
11806 schaersvoo 1605
                    /* draw_dotfill(ctx,x0,y0,dx,dy,radius,color,opacity,xsize,ysize) */
14208 schaersvoo 1606
                    string_length = 1 + snprintf(NULL,0,  "draw_dotfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",FILL_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
1607
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11817 schaersvoo 1608
                    snprintf(tmp_buffer,string_length,"draw_dotfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",FILL_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
11806 schaersvoo 1609
                    add_to_buffer(tmp_buffer);
11817 schaersvoo 1610
                    fill_cnt++;
15111 schaersvoo 1611
                    reset();
7614 schaersvoo 1612
                    break;
11806 schaersvoo 1613
                    default:break;
7614 schaersvoo 1614
                }
1615
            }
11806 schaersvoo 1616
        break;
1617
 
1618
        case DRAG:
1619
        /*
1620
         @ drag [x][y][xy]
1621
         @ the next object will be draggable in x / y / xy direction
14077 bpr 1622
         @ the displacement can be read by <code>javascript:read_dragdrop();</code>
15111 schaersvoo 1623
         @ the precision (default 2 decimals) in the student reply may be set with command <a href="#precision">precision</a>.<br />Use this 'precision' command before this command 'drag x|y|xy' !
14078 bpr 1624
         @ <a href='#onclick'>onclick</a> and ''drag x|y|xy`` may be combined (for different objects: a single object can either be onclick or drag, not both )
14077 bpr 1625
         @ ''multi_objects`` will be numbered in the given x/y-sequence (example: points red,0,0,1,1,2,2,3,3: point (0:0) is object_number 1)
15313 schaersvoo 1626
         @ <b>attention</b>: static objects and ''onclick/drag`` objects of the same type (like point,circle,etc) with the same coordinates (e.g. objects that overlap) will give problems in the ''recognition algorithm``) in this example<br /> <code>linewidth 4<br />point 0,0,red<br />drag xy<br />point 0,0,blue</code><br />the red point will not be recognised as draggable ! in the example<br /><code>linewidth 4<br />drag xy<br />point 0,0,red<br />drag xy<br />point 0,0,blue</code><br />both points will be recognised
14066 bpr 1627
         @ the answer is: drag_or_onclick_object_number : Xorg : Yorg : Xnew : Ynew<br />wherein object_number is the sequence number of the draggable &amp; onclick objects in your script.<br />Only draggable & onclick objects will have an object_number (e.g things like point,crosshair,line,segment,circle,rect,triangle...etc)
15650 reyssat 1628
         @ use keyword <a href='#snaptogrid'>snaptogrid</a>, <a href='#xsnaptogrid'>xsnaptogrid</a>, <a href='#ysnaptogrid'>ysnaptogrid</a> or command <a href='#snaptopoints'>snaptopoints x1,y1,x2,y2,...</a> to switch from free to discrete movement
11806 schaersvoo 1629
         @ in case of external images (commands copy / copyresized) the external image can be set draggable ; always xy. <br />The function javascript;read_canvas() will return the xy-coordinates of all images.
13829 bpr 1630
         @%drag_x%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 200,40%drag x%linewidth 2%circles blue,-5,0,3,0,0,2,5,0,4,0,4,3,0,-3,4
1631
         @%drag_y%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 200,40%drag y%linewidth 2%circles blue,-5,0,3,0,0,2,5,0,4,0,4,3,0,-3,4
1632
         @%drag_xy%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor lightblue%opacity 200,40%drag xy%linewidth 2%circles blue,-5,0,3,0,0,2,5,0,4,0,4,3,0,-3,4
11806 schaersvoo 1633
        */
1634
            temp = get_string(infile,1);
1635
            if(strstr(temp,"xy") != NULL ){
1636
                drag_type = 0;
1637
            }
1638
            else
1639
            {
1640
                if(strstr(temp,"x") != NULL ){
1641
                    drag_type = 1;
1642
                }
1643
                else
1644
                {
1645
                    drag_type = 2;
1646
                }
1647
            }
1648
            /* assuming all drag&drop coordinates the same precision: so set only once */
1649
            if( print_drag_params_only_once == FALSE ){
15111 schaersvoo 1650
             fprintf(js_include_file,"dragdrop_precision = %d;use_dragdrop_reply = true;",precision);
11806 schaersvoo 1651
             print_drag_params_only_once = TRUE;
1652
            }
1653
            onclick = 2;
1654
            /* if(use_userdraw == TRUE ){canvas_error("\"drag & drop\" may not be combined with \"userdraw\" or \"pan and zoom\" \n");} */
15111 schaersvoo 1655
            use_dragstuff = 2;
1656
            js_function[INTERACTIVE] = 1;
7614 schaersvoo 1657
            break;
8386 schaersvoo 1658
 
11806 schaersvoo 1659
        case ELLIPSE:
8351 schaersvoo 1660
        /*
11806 schaersvoo 1661
        @ ellipse xc,yc,radius_x,radius_y,color
15111 schaersvoo 1662
        @ ellipses with center xc/yc and radius in x/y-range etc (this differs from flydraw syntax!)
11806 schaersvoo 1663
        @ radius_x and radius_y are in pixels
9406 schaersvoo 1664
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
11806 schaersvoo 1665
        @ will shrink / expand on zoom out / zoom in
13949 schaersvoo 1666
        @%ellipse%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor orange%opacity 200,40%linewidth 3%drag xy%ellipse 0,0,6,4,green%zoom blue
8351 schaersvoo 1667
        */
11806 schaersvoo 1668
            for(i=0;i<5;i++){
1669
                switch(i){
1670
                    case 0:double_data[0] = get_real(infile,0);break; /* x-values */
1671
                    case 1:double_data[1] = get_real(infile,0);break; /* y-values */
14066 bpr 1672
                    case 2:double_data[2] = get_real(infile,0);break; /* rx -> px */
1673
                    case 3:double_data[3] = get_real(infile,0);break; /* ry -> px */
11806 schaersvoo 1674
                    case 4:stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 1675
                        if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,4);}
1676
                        if(use_affine == TRUE ){ transform(2,4);}
1677
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 1678
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 1679
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,3,[%.*f],[%.*f],[%.*f],[%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1680
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1681
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,3,[%.*f],[%.*f],[%.*f],[%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],decimals,double_data[2],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1682
                        add_to_buffer(tmp_buffer);
1683
                        if(onclick != 0){object_cnt++;}/* object_cnt++; */
1684
                        dragstuff[3] = 1;
1685
                        if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 1686
                        reset();
1687
                    break;
1688
                }
1689
            }
1690
            break;
13829 bpr 1691
 
12110 schaersvoo 1692
        case ELLIPSES:
1693
        /*
1694
        @ ellipses color,xc1,yc1,radius_x1,radius_y1,xc2,yc2,radius_x2,radius_y2,xc3,yc3,radius_x3,radius_y3,...
15111 schaersvoo 1695
        @ ellipses with center and radius in x/y-range etc (this differs from flydraw syntax!)
12110 schaersvoo 1696
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
1697
        @ will shrink / expand on zoom out / zoom in
13949 schaersvoo 1698
        @%ellipses%size 400,400%xrange -10,10%yrange -10,10%filled%fillcolor orange%opacity 200,40%linewidth 3%onclick%ellipses red,-3,0,2,4,0,0,4,2,3,0,6,2
12110 schaersvoo 1699
        */
13829 bpr 1700
 
15111 schaersvoo 1701
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
12110 schaersvoo 1702
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
1703
            fill_color = stroke_color;
1704
            i=1;
1705
            while( ! done ){     /* get next item until EOL*/
1706
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
1707
                switch (i%4){
1708
                 case 1:double_data[i-1] = get_real(infile,0);break; /* x */
1709
                 case 2:double_data[i-1] = get_real(infile,0);break; /* y */
1710
                 case 3:double_data[i-1] = get_real(infile,0);break; /* rx */
1711
                 case 0:double_data[i-1] = get_real(infile,1);break; /* ry */
1712
                 default: break;
1713
                }
1714
                i++;
1715
            }
15111 schaersvoo 1716
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,4);}
1717
            if(use_affine == TRUE ){ transform(i-1,4);}
12110 schaersvoo 1718
            decimals = find_number_of_digits(precision);
1719
            for(c = 0 ; c < i-1 ; c = c+4){
15111 schaersvoo 1720
             string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,3,[%.*f],[%.*f],[%.*f],[%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],decimals,double_data[c+2],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1721
             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
1722
             snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,3,[%.*f],[%.*f],[%.*f],[%.*f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],decimals,double_data[c+2],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
1723
             add_to_buffer(tmp_buffer);
1724
             if(onclick != 0){object_cnt++;} /* object_cnt++; */
12110 schaersvoo 1725
            }
1726
            reset();
15111 schaersvoo 1727
            dragstuff[3] = 1;
1728
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
12110 schaersvoo 1729
            break;
1730
 
11806 schaersvoo 1731
        case FILLALL:
1732
        /*
1733
        @ fillall color,x1,y1,x2,y2...x_n,y_n
15111 schaersvoo 1734
        @ fill all region containing points (x1:y1),(x2:y2)...(x_n:y_n) with color 'color'
15650 reyssat 1735
        @ any other colors (objects) in the <a href="#canvastype">canvastype</a> will act as border to the bucket fill
14246 bpr 1736
        @ use this command after all boundary objects are declared.
15111 schaersvoo 1737
        @ Use command 'userdraw clickfill,color' for user click driven flood fill.
1738
        @ use command <a href="#canvastype">canvastype </a> to fill another canvas (default should be fine: DRAG_CANVAS = 5)
14071 bpr 1739
        @ note: the fill-family of commands are very (client) cpu intensive operations!<br />filling is done pixel by pixel e.g. image size of 400x400 uses 160000 pixels: each pixel contains 4 data (R,G,B,Opacity) = 640000 data.<br />on every data a few operations / comparisons are done...<br />So have pity on your students CPU..
12110 schaersvoo 1740
        @%fillall%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%vlines black,-5,0,-5,0,-4,0,-4,0,3,0,3,0%hlines black,-5,0,-5,0,-5,4,-5,4,-5,-2,-5,-2%circles green,0,0,2,3,3,5,-5,-5,3%opacity 240,50%fillall blue,1,1,8,8,-8,-8
11806 schaersvoo 1741
        */
1742
            decimals = find_number_of_digits(precision);
1743
            fill_color=get_color(infile,0); /* how nice: now the color comes first...*/
8351 schaersvoo 1744
            i=0;
11806 schaersvoo 1745
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
1746
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 1747
             add_js_filltoborder(canvas_type);
11806 schaersvoo 1748
            }
8351 schaersvoo 1749
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 1750
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8351 schaersvoo 1751
                if(i%2 == 0 ){
1752
                    double_data[i] = get_real(infile,0); /* x */
1753
                }
1754
                else
1755
                {
1756
                    double_data[i] = get_real(infile,1); /* y */
14208 schaersvoo 1757
                    string_length = 1 + snprintf(NULL,0,  "setTimeout(function(){filltoborder(%.*f,%.*f,[%s,%d],[%s,%d],%d,false,null);},1000);\n",decimals,double_data[i-1],decimals,double_data[i],fill_color,(int) (fill_opacity/0.0039215),fill_color,(int) (fill_opacity/0.0039215),FILL_CANVAS+fill_cnt);
1758
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11818 schaersvoo 1759
                    snprintf(tmp_buffer,string_length,"setTimeout(function(){filltoborder(%.*f,%.*f,[%s,%d],[%s,%d],%d,false,null);},1000);\n",decimals,double_data[i-1],decimals,double_data[i],fill_color,(int) (fill_opacity/0.0039215),fill_color,(int) (fill_opacity/0.0039215),FILL_CANVAS+fill_cnt);
11806 schaersvoo 1760
                    add_to_buffer(tmp_buffer);
1761
                    fill_cnt++;
8351 schaersvoo 1762
                }
1763
                i++;
1764
            }
11806 schaersvoo 1765
        break;
1766
 
1767
        case FILLED:
1768
        /*
1769
        @ filled
1770
        @ keyword (no arguments required)
14077 bpr 1771
        @ the next ''fillable`` object (only the next !) will be filled
14066 bpr 1772
        @ use command <a href="#fillcolor">fillcolor color</a> to set fillcolor
11839 schaersvoo 1773
        @ use <a href="#fillpattern">fillpattern</a> for non-solid color filling.
14086 bpr 1774
        @ use command <code>opacity 0-255,0-255</code> to set stroke and fill-opacity
14066 bpr 1775
        @ use command <a href='#fill'>fill x,y,color</a> or <a href="#floodfill">floodfill x,y,color</a> to fill the space around (x;y) with color <br />pixel operation implemented in javascript: use with care !
11806 schaersvoo 1776
        */
11839 schaersvoo 1777
            use_filled = 1;
11806 schaersvoo 1778
            break;
1779
 
1780
        case FILLCOLOR:
1781
        /*
1782
        @ fillcolor colorname or #hex
15111 schaersvoo 1783
        @ set the color: mainly used for command 'userdraw obj,stroke_color'
11806 schaersvoo 1784
        @ all fillable massive objects will have a fillcolor == strokecolor (just to be compatible with flydraw...)
11839 schaersvoo 1785
        @ see <a href="#fillpattern">fillpattern</a> for non-solid color filling.
11806 schaersvoo 1786
        */
1787
            fill_color = get_color(infile,1);
1788
            break;
1789
 
11837 schaersvoo 1790
        case FILLPATTERN:
1791
        /*
15601 schaersvoo 1792
        @ fillpattern grid | hatch | diamond | dot | image_url
15715 schaersvoo 1793
        @ alternative: settile image_url
11837 schaersvoo 1794
        @ use a pattern as fillstyle
14066 bpr 1795
        @ suitable for all fillable object including the <a href="#userdraw">userdraw objects' family</a>
15601 schaersvoo 1796
        @ note: do not use the ''f`` for a fillable object : this is used exclusively for solid colour filling.
14066 bpr 1797
        @ the fillcolor is set by the object command, for example:<br /><code>size 370,370<br />xrange -5,5<br />yrange -5,5<br />opacity 165,150<br />fillpattern grid<br />fcircle -6,3,160,blue<br />fillpattern dot<br />fcircle -3,-3,160,red<br />fillpattern hatch<br />fcircle 0,3,160,green<br />filpattern diamond<br />fcircle 3,-3,160,cyan<br />userdraw dotfill,blue<br />zoom red</code>
14078 bpr 1798
        @ the pattern dimensions are hardcoded (linewidth, radius,dx,dy are fixed)
11837 schaersvoo 1799
        @ the pattern color is set by command <a href='#fillcolor'>fillcolor</a> and <a href='#opacity'>opacity</a>
11839 schaersvoo 1800
        @ see <a href="#fillcolor">fillcolor</a> for solid color filling.
15111 schaersvoo 1801
        @ when using an image-url, make sure it contains an ''/`` in the filename...''fillpattern &#36;module_dir/gifs/test.jpg`` will fill the next fillable object with this image.|<br />the argument to html5 canvas routine 'createPattern(img,argument)' is set to ''repeat`` e.g. if the image is smaller then the canvas, multiple copies will be used to fill the area ( e.g. ctx.fillStyle() = pattern)<br />for example:<br /><code>size 150,150<br />xrange -5,5<br />yrange -5,5<br />drag xy<br />fillpattern gifs/en.gif<br />fcircle 0,0,100,red<br />fillpattern gifs/nl.gif<br />drag xy<br />fcircle -3,2,100,green<br />fillpattern gifs/cn.gif<br />drag xy<br />fcircle 3,2,100,green</code>
1802
        @ fillpattern is also active for <a href="#userdraw">userdraw object,color</a>...<br />the userdraw family a has also ''clickfill type`` (e.g. an object gets filled between boundaries, when clicked) commands like:<br />'userdraw dotfill,color'<br />'userdraw hatchfill,color' etc
1803
        @%fillpattern_1%size 400,400%xrange -5,5%yrange -5,5%opacity 165,150%fillpattern grid%circle -6,3,160,blue%fillpattern dot%circle -3,-3,160,red%fillpattern hatch%circle 0,3,160,green%filpattern diamond%circle 3,-3,160,cyan%zoom red
1804
        @%fillpattern_2%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%fillcolor green%fillpattern hatch%#fillpattern dot,diamond,grid,imageurl%userdraw circle,red
11837 schaersvoo 1805
        */
1806
            temp = get_string(infile,1);
15111 schaersvoo 1807
            use_filled = 0;
1808
            js_function[DRAW_FILL_PATTERN] = 1;
15116 bpr 1809
            if( strstr(temp,"grid") != 0 ){ use_filled = 2;}
15111 schaersvoo 1810
             else{
1811
             if( strstr(temp,"hatch") != 0 ){ use_filled = 3;}
1812
              else{
1813
              if( strstr(temp,"diamond") != 0 ){ use_filled = 4;}
1814
               else{
1815
               if( strstr(temp,"dot") != 0 ){ use_filled = 5;}
1816
                else{
15600 schaersvoo 1817
                if( strstr(temp,"/") != 0 ){ /* get_image_from_url() needs to be called after function definition...*/
1818
                 use_filled = 6;js_function[JS_LOAD_IMAGE] = 1;
1819
                 string_length = 1 + snprintf(NULL,0,"get_image_from_url(\"%s\");",temp);
1820
                 check_string_length(string_length);
1821
                 tmp_buffer = my_newmem(string_length);
1822
                 snprintf(tmp_buffer,string_length,"get_image_from_url(\"%s\");",temp);
1823
                 add_to_buffer(tmp_buffer);
1824
                }
15111 schaersvoo 1825
               }
1826
              }
1827
             }
1828
            }
1829
            if( use_filled == 0 ){canvas_error("fillpattern unknown or typo...choose grid,hatch,diamond of dot...");}
11837 schaersvoo 1830
            break;
11806 schaersvoo 1831
        case FILLTOBORDER:
1832
        /*
1833
        @ filltoborder x,y,bordercolor,color
15111 schaersvoo 1834
        @ fill the region of point (x:y) with color 'color'
11806 schaersvoo 1835
        @ any other color will not act as border to the bucket fill
14246 bpr 1836
        @ use this command after all boundary objects are declared.
11806 schaersvoo 1837
        @ use command <a href="#canvastype">canvastype </a> to fill another canvas (default should be fine: DRAG_CANVAS = 5)
14071 bpr 1838
        @ note: filltoborder is a very (client) cpu intensive operation!<br />filling is done pixel by pixel e.g. image size of 400x400 uses 160000 pixels: each pixel contains 4 data (R,G,B,Opacity) = 640000 data.<br />on every data a few operations / comparisons are done...<br />So have pity on your students CPU..
11806 schaersvoo 1839
        @ maybe used together with command <a href="#userdraw">userdraw clickfill,color</a>
12110 schaersvoo 1840
        @%filltoborder%size 400,400%xrange -10,10%yrange -10,10%canvastype 100%linewidth 2%precision 1000%jsplot blue,5*sin(x)%opacity 200,50%filltoborder 6,6,blue,blue%filltoborder 6,-6,blue,red
11806 schaersvoo 1841
        */
1842
            for(i=0 ;i < 4 ; i++){
1843
                switch(i){
1844
                    case 0:double_data[0] = get_real(infile,0);break;
1845
                    case 1:double_data[1] = get_real(infile,0);break;
1846
                    case 2:bgcolor = get_color(infile,0);break;
1847
                    case 3:fill_color = get_color(infile,1);
1848
                           if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
15111 schaersvoo 1849
                            js_function[DRAW_FILLTOBORDER] = 1;
1850
                            add_js_filltoborder(canvas_type);
11806 schaersvoo 1851
                           }
1852
                           decimals = find_number_of_digits(precision);
1853
                           /* we need to set a timeout: the canvas is not yet draw in memory? when floodfill is called directly... */
14208 schaersvoo 1854
                           string_length = 1 + snprintf(NULL,0,  "setTimeout(function(){filltoborder(%.*f,%.*f,[%s,%d],[%s,%d],%d,false,null);},1000);\n",decimals,double_data[0],decimals,double_data[1],bgcolor,(int) (fill_opacity/0.0039215),fill_color,(int) (fill_opacity/0.0039215),FILL_CANVAS+fill_cnt);
1855
                           check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11818 schaersvoo 1856
                           snprintf(tmp_buffer,string_length,"setTimeout(function(){filltoborder(%.*f,%.*f,[%s,%d],[%s,%d],%d,false,null);},1000);\n",decimals,double_data[0],decimals,double_data[1],bgcolor,(int) (fill_opacity/0.0039215),fill_color,(int) (fill_opacity/0.0039215),FILL_CANVAS+fill_cnt);
11806 schaersvoo 1857
                           add_to_buffer(tmp_buffer);
1858
                           fill_cnt++;
15111 schaersvoo 1859
                           reset();
11806 schaersvoo 1860
                           break;
1861
                    default:break;
8351 schaersvoo 1862
                }
11806 schaersvoo 1863
            }
1864
        break;
1865
        case FLOODFILL:
1866
        /*
1867
        @ floodfill x,y,color
15715 schaersvoo 1868
        @ alternative: fill
15111 schaersvoo 1869
        @ fill the region of point (x:y) with color 'color'
11806 schaersvoo 1870
        @ any other color or size of picture (borders of picture) will act as border to the bucket fill
14246 bpr 1871
        @ use this command after all boundary objects are declared.
14077 bpr 1872
        @ Use command <code>userdraw clickfill,color</code> for user click driven flood fill.
11806 schaersvoo 1873
        @ use command <a href="#canvastype">canvastype </a> to fill another canvas (default should be fine: DRAG_CANVAS = 5)
14071 bpr 1874
        @ note: floodfill is a very (client) cpu intensive operation!<br />filling is done pixel by pixel e.g. image size of 400x400 uses 160000 pixels: each pixel contains 4 data (R,G,B,Opacity) = 640000 data.<br />on every data a few operations / comparisons are done...<br />So have pity on your students CPU..
12110 schaersvoo 1875
        @%floodfill%size 400,400%xrange -10,10%yrange -10,10%canvastype 100%linewidth 2%precision 1000%jsplot blue,5*sin(x)%opacity 200,50%floodfill 6,6,blue%floodfill 6,-6,red
11806 schaersvoo 1876
        */
1877
            for(i=0 ;i < 4 ; i++){
1878
                switch(i){
1879
                    case 0:double_data[0] = get_real(infile,0);break;
1880
                    case 1:double_data[1] = get_real(infile,0);break;
1881
                    case 2:fill_color = get_color(infile,1);
1882
                           if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
15111 schaersvoo 1883
                            js_function[DRAW_FILLTOBORDER] = 1;
1884
                            add_js_filltoborder(canvas_type);
11806 schaersvoo 1885
                           }
1886
                           decimals = find_number_of_digits(precision);
1887
                           /* we need to set a timeout: the canvas is not yet draw in memory? when floodfill is called directly... */
14208 schaersvoo 1888
                           string_length = 1 + snprintf(NULL,0,  "setTimeout(function(){filltoborder(%.*f,%.*f,[%s,%d],[%s,%d],%d,false,null);},1000);\n",decimals,double_data[0],decimals,double_data[1],fill_color,(int) (fill_opacity/0.0039215),fill_color,(int) (fill_opacity/0.0039215),FILL_CANVAS+fill_cnt);
1889
                           check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11818 schaersvoo 1890
                           snprintf(tmp_buffer,string_length,"setTimeout(function(){filltoborder(%.*f,%.*f,[%s,%d],[%s,%d],%d,false,null);},1000);\n",decimals,double_data[0],decimals,double_data[1],fill_color,(int) (fill_opacity/0.0039215),fill_color,(int) (fill_opacity/0.0039215),FILL_CANVAS+fill_cnt);
11806 schaersvoo 1891
                           add_to_buffer(tmp_buffer);
1892
                           fill_cnt++;
1893
                           break;
1894
                    default:break;
1895
                }
1896
            }
1897
            reset();
1898
        break;
1899
 
1900
        case FONTCOLOR:
1901
        /*
1902
         @ fontcolor color
1903
         @ color: hexcolor or colorname
1904
         @ default: black
15650 reyssat 1905
         @ use command <a href="#fontfamily">fontfamily</a> to deviate from default font type
13956 schaersvoo 1906
         @%fontcolor%size 400,400%xrange -10,10%yrange -10,10%fontcolor red%#note: use command fontfamily to change size and shape%axis%axisnumbering%grid 2,2,grey,2,2,4,grey
11806 schaersvoo 1907
        */
1908
            font_color = get_color(infile,1);
1909
            break;
1910
 
1911
        case FONTFAMILY:
1912
        /*
1913
         @ fontfamily font_description
1914
         @ set the font family; for browsers that support it
15313 schaersvoo 1915
         @ font_description: Arial, Courier, Helvetica etc
1916
         @ in case commands <code>string color,x,y,the string</code>, <code>stringup color,x,y,rotation,the string</code>, ''fontfamily`` can be something like:<code>fontfamily italic 34pt Arial</code>. Use correct syntax: ''font style``, ''font size pt``, ''fontfamily``
1917
         @%fontfamily%size 400,400%xrange -10,10%yrange -10,10  %fontfamily Bold 10pt Arial%string blue,-9,9,10 pt Arial%fontfamily Italic 20pt Arial%string blue,0,9,20 pt Arial%fontfamily Bold 10pt Helvetica%string blue,-9,5,10 pt Helvetica%fontfamily Italic 20pt Helvetica%string blue,0,5,20 pt Helvetica %fontfamily Bold 10pt Courier%string blue,-9,0,10 pt Courier%fontfamily Italic 20pt Courier%string blue,0,0,20 pt Courier%fontfamily Bold 10pt Fixed%string blue,-9,-5,10 pt Fixed%fontfamily Italic 20pt Fixed%string blue,0,-5,20 pt Fixed %fontfamily Bold 10pt Times%string blue,-9,-9,10 pt Times%fontfamily Italic 20pt Times%string blue,0,-9,20 pt Times
13959 bpr 1918
 
11806 schaersvoo 1919
        */
1920
            font_family = get_string(infile,1);
1921
            break;
1922
 
1923
        case FONTSIZE:
1924
        /*
1925
         @ fontsize font_size
1926
         @ default value 12
15111 schaersvoo 1927
         @ note: for some macros (like ''grid | legend | xaxistext | xlabel`` etc) sometimes command <a href="#fontfamily">fontfamily</a> can be used for some specific font-setting<br />this is however not always very straight forward... so just try and see what happens
11806 schaersvoo 1928
        */
1929
            font_size = (int) (get_real(infile,1));
1930
            break;
1931
 
1932
        case FUNCTION_LABEL:
1933
        /*
15313 schaersvoo 1934
         @ functionlabel label_1:label_2:label_3...
15512 bpr 1935
         @ alternative: functionlabels
15111 schaersvoo 1936
         @ default value ''f(x)=:g(x)=:h(x)=:i(x)=:j(x)=:k(x)=:m(x)=:n(x)=``
11806 schaersvoo 1937
         @ no mathml allowed (just ascii string)
13956 schaersvoo 1938
         @ use command <a href='#fontsize'>fontsize int</a> to adjust the size
1939
         @ use command <a href='#strokecolor'>strokecolor colorname</a> to adjust the labels (individually, if needed)
14066 bpr 1940
         @ if needed, use before every command <a href='#userinput'>userinput function | inputfield | textarea</a>
15111 schaersvoo 1941
         @ no limit in amount of inputfields for userbased function plotting
15313 schaersvoo 1942
         @%function_label%size 400,400%xrange -5,5%yrange -5,5%precision 0%axis%axisnumbering%opacity 100,190%grid 1,1,grey,2,2,5,black%linewidth 3%linewidth 1%precision 1000%functionlabels F(x)=:H(x)=:Yield(x)=%strokecolor green%userinput function%strokecolor red%userinput function%strokecolor blue%userinput function
11806 schaersvoo 1943
        */
15111 schaersvoo 1944
            temp = get_string_argument(infile,1);
1945
            function_label = list2js_array(temp,":");
15116 bpr 1946
 
11806 schaersvoo 1947
            break;
1948
 
14078 bpr 1949
        case GRID:/* xmajor,ymajor,gridcolor [,xminor,yminor,tick length (px), axis/tickscolor]*/
11806 schaersvoo 1950
        /*
1951
         @ grid step_x,step_y,gridcolor
14177 bpr 1952
         @ if keywords <a href="#axis">axis</a> or <a href="#axisnumbering">axisnumbering</a> are set, use: <code>grid step_x,step_y,major_color,minor_x,minor_y,tics height in px,axis_color</code> minor x step = step_x / minor_x
15313 schaersvoo 1953
         @ in that case, use command <a href="#fontcolor">fontcolor</a>, <a href="#fontsize">fontsize</a> and / or <a href="#fontfamily">fontfamily</a> to adjust font; defaults: black,12,Arial
14071 bpr 1954
         @ if xmin > 0 and/or ymin > 0 and zooming / panning is not active: be aware that the x/y-axis numbering and x/y major/minor tic marks will not be visual as they are placed under the x-axis and left to the y-axis (in Quadrant II and IV)
14066 bpr 1955
         @ can <b>not</b> be set <a href="#onclick">onclick</a> or <a href="#drag">drag xy</a>
15313 schaersvoo 1956
         @ use commands <a href="#xlabel">xlabel some_string</a> and/or <a href="#ylabel">ylabel some_string</a> to label axis; use command ''fontsize`` to adjust size: the font family is non-configurable 'italic your_fontsize px Arial' !
1957
         @ see commands <a href="#xaxis">xaxis or xaxistext</a>, <a href="#yaxis">yaxis or yaxistext</a> to set tailormade values on axis (the used font is set by command <a href="#fontfamily">fontfamily</a>; default '12px Arial')
1958
         @ see command <a href="#legend">legend</a> to set a legend for the graph; use command <a href="#fontsize">fontsize</a> to adjust size (the font family is non-configurable 'bold your_fontsize px Arial')
12110 schaersvoo 1959
         @%grid%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%zoom red
1960
         @%grid_axis%size 400,400%xrange -10,10%yrange -10,10%axis%grid 1,1,grey,2,2,6,black%zoom red
15111 schaersvoo 1961
         @%grid_axis_axisnumbering%size 400,400%xrange -10,10%yrange -10,10%fontfamily Italic 14px Courier%axis%axisnumbering%precision 0%grid 1,1,grey,2,2,6,black%zoom red
11806 schaersvoo 1962
        */
1963
            if( js_function[DRAW_YLOGSCALE] == 1 ){canvas_error("only one grid type is allowed...");}
15111 schaersvoo 1964
            js_function[DRAW_GRID] = 1;
11806 schaersvoo 1965
            for(i=0;i<4;i++){
1966
                switch(i){
1967
                    case 0:double_data[0] = get_real(infile,0);break;/* xmajor */
1968
                    case 1:double_data[1] = get_real(infile,0);break;/* ymajor */
1969
                    case 2:
1970
                    if( use_axis == TRUE ){
1971
                        stroke_color = get_color(infile,0);
1972
                        done = FALSE;
1973
                        int_data[0] = (int) (get_real(infile,0));/* xminor */
1974
                        int_data[1] = (int) (get_real(infile,0));/* yminor */
1975
                        int_data[2] = (int) (get_real(infile,0));/* tic_length */
1976
                        fill_color = get_color(infile,1); /* used as axis_color*/
8351 schaersvoo 1977
                    }
1978
                    else
1979
                    {
11806 schaersvoo 1980
                        int_data[0] = 1;
1981
                        int_data[1] = 1;
1982
                        stroke_color = get_color(infile,1);
1983
                        fill_color = stroke_color;
8351 schaersvoo 1984
                    }
11806 schaersvoo 1985
                    if( double_data[0] <= 0 ||  double_data[1] <= 0 ||  int_data[0] <= 0 ||  int_data[1] <= 0 ){canvas_error("major or minor ticks must be positive !");}
1986
                    /* set snap_x snap_y values in pixels */
1987
                    fprintf(js_include_file,"snap_x = %f;snap_y = %f;",double_data[0] / int_data[0],double_data[1] / int_data[1]);
15111 schaersvoo 1988
                    fprintf(js_include_file,"\n/* add grid */function redraw_grid(){draw_grid%d(%d,%d,%.2f,%.*f,%.*f,%d,%d,%d,%d,\"%s\",\"%s\",%d,\"%s\",%d,%d,%d,%d,%d,\"%s\",%.2f);return;};",canvas_root_id,GRID_CANVAS,precision,stroke_opacity,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],int_data[2],line_width,stroke_color,fill_color,font_size,font_family,use_axis,use_axis_numbering,use_dashed,dashtype[0],dashtype[1],font_color,fill_opacity);
1989
                    string_length = 1 + snprintf(NULL,0,  "redraw_grid();\n");
14208 schaersvoo 1990
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 1991
                    snprintf(tmp_buffer,string_length,    "redraw_grid();\n");
11806 schaersvoo 1992
                    add_to_buffer(tmp_buffer);
1993
                    break;
8351 schaersvoo 1994
                }
1995
            }
1996
            reset();
1997
            break;
11806 schaersvoo 1998
        case GRIDFILL:
1999
        /*
2000
        @ gridfill x0,y0,dx,dy,color
2001
        @ x0,y0 in xrange / yrange
2002
        @ distances dx,dy in pixels
13936 bpr 2003
        @ there is also a command <a href="#userdraw">userdraw gridfill,color</a>
12110 schaersvoo 2004
        @%gridfill%size 400,400%xrange -10,10%yrange -10,10%canvastype 100%linewidth 2%precision 1000%jsplot blue,5*sin(x)%opacity 200,50%gridfill 6,6,10,10,blue%gridfill 6,-6,6,6,red
2005
 
11806 schaersvoo 2006
        */
15111 schaersvoo 2007
            js_function[DRAW_GRIDFILL] = 1;
11820 schaersvoo 2008
            decimals = find_number_of_digits(precision);
2009
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
2010
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 2011
             add_js_filltoborder(canvas_type);
11820 schaersvoo 2012
            }
11806 schaersvoo 2013
            for(i=0;i<5;i++){
2014
                switch(i){
11820 schaersvoo 2015
                    case 0: double_data[0] = get_real(infile,0); break; /* x  */
2016
                    case 1: double_data[1] = get_real(infile,0); break; /* y  */
2017
                    case 2: int_data[0] = (int) (get_real(infile,0)); break; /* dx pixel */
2018
                    case 3: int_data[1] = (int) (get_real(infile,0)); break; /* dy pixel*/
11806 schaersvoo 2019
                    case 4: stroke_color = get_color(infile,1);
14208 schaersvoo 2020
                    string_length = 1 + snprintf(NULL,0,  "draw_gridfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",STATIC_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
2021
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11820 schaersvoo 2022
                    snprintf(tmp_buffer,string_length,"draw_gridfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",STATIC_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
11806 schaersvoo 2023
                    add_to_buffer(tmp_buffer);
11820 schaersvoo 2024
                    fill_cnt++;
15111 schaersvoo 2025
                    reset();
11806 schaersvoo 2026
                    break;
2027
                    default:break;
2028
                }
2029
            }
2030
        break;
8386 schaersvoo 2031
 
8244 schaersvoo 2032
        case HALFLINE:
2033
        /*
2034
        @ demiline x1,y1,x2,y2,color
15715 schaersvoo 2035
        @ alternative: halfline
15111 schaersvoo 2036
        @ draws a halfline starting in (x1:y1) and through (x2:y2) in color 'color' (colorname or hex)
9406 schaersvoo 2037
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12110 schaersvoo 2038
        @%halfline%size 400,400%xrange -10,10%yrange -10,10%halfline -5,5,0,0,red%halfline -5,-5,0,0,blue
8244 schaersvoo 2039
        */
2040
            for(i=0;i<5;i++){
2041
                switch(i){
2042
                    case 0: double_data[0]= get_real(infile,0);break; /* x-values */
2043
                    case 1: double_data[1]= get_real(infile,0);break; /* y-values */
2044
                    case 2: double_data[10]= get_real(infile,0);break; /* x-values */
2045
                    case 3: double_data[11]= get_real(infile,0);break; /* y-values */
2046
                    case 4: stroke_color=get_color(infile,1);/* name or hex color */
2047
                    if(double_data[0] == double_data[10]){ /* vertical halfline */
2048
                        if(double_data[1] < double_data[11]){
2049
                         double_data[3] = ymax + 1000;
2050
                        }
2051
                        else
2052
                        {
2053
                         double_data[3] = ymin - 1000;
2054
                        }
10953 bpr 2055
                        double_data[2] = double_data[0];
8244 schaersvoo 2056
                    }
2057
                    else
2058
                    { /* horizontal halfline*/
2059
                     if( double_data[1] == double_data[11] ){
2060
                      if( double_data[0] < double_data[10] ){
2061
                        double_data[2] = xmax + 1000; /* halfline to the right */
2062
                      }
2063
                      else
2064
                      {
2065
                        double_data[2] = xmin - 1000; /* halfline to the left */
2066
                      }
2067
                      double_data[3] = double_data[1];
2068
                     }
2069
                     else
2070
                     {
2071
                      /* any other halfline */
2072
                      /* slope */
2073
                      double_data[12] = (double_data[11] - double_data[1])/(double_data[10] - double_data[0]);
2074
                      /* const */
2075
                      double_data[13] = double_data[1] - double_data[12]*double_data[0];
2076
                      if( double_data[0] < double_data[10] ){
2077
                       double_data[2] = double_data[2] + 1000;
2078
                      }
2079
                      else
2080
                      {
2081
                       double_data[2] = double_data[2] - 1000;
2082
                      }
2083
                      double_data[3] = double_data[12]*double_data[2] + double_data[13];
2084
                     }
10953 bpr 2085
                    }
15111 schaersvoo 2086
                    if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
2087
                    if(use_rotate == TRUE ){rotate(4,angle,rotationcenter,2);}
2088
                    if(use_affine == TRUE ){ transform(4,2);}
2089
                    string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,18,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2090
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2091
                    snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,18,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2092
                    add_to_buffer(tmp_buffer);
2093
                    if(onclick != 0){object_cnt++;}
2094
                    /* object_cnt++; */
8379 schaersvoo 2095
                    reset();
8244 schaersvoo 2096
                    break;
2097
                }
2098
            }
15111 schaersvoo 2099
            dragstuff[18] = 1;
2100
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8244 schaersvoo 2101
            break;
8386 schaersvoo 2102
 
8365 schaersvoo 2103
        case HALFLINES:
2104
        /*
2105
        @ demilines color,x1,y1,x2,y2,....
15715 schaersvoo 2106
        @ alternative: halflines
15111 schaersvoo 2107
        @ draws halflines starting in (x1:y1) and through (x2:y2) in color 'color' (colorname or hex) etc
9406 schaersvoo 2108
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> indiviually
12110 schaersvoo 2109
        @%halflines%size 400,400%xrange -10,10%yrange -10,10%halflines red,-5,5,0,0,-5,-5,0,0
8365 schaersvoo 2110
        */
2111
            stroke_color=get_color(infile,0);
2112
            fill_color = stroke_color;
2113
            i=0;
2114
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 2115
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8365 schaersvoo 2116
                if(i%2 == 0 ){
2117
                    double_data[i] = get_real(infile,0); /* x */
2118
                }
2119
                else
2120
                {
2121
                    double_data[i] = get_real(infile,1); /* y */
2122
                }
2123
                i++;
2124
            }
15111 schaersvoo 2125
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
8365 schaersvoo 2126
            decimals = find_number_of_digits(precision);
2127
            for(c = 0 ; c < i-1 ; c = c+4){
2128
                if( double_data[c] == double_data[c+2] ){ /* vertical line*/
2129
                    if(double_data[c+1] < double_data[c+3]){ /* upright halfline */
2130
                        double_data[c+3] = ymax + 1000;
2131
                    }
2132
                    else
2133
                    {
2134
                     double_data[c+3] = ymin - 1000;/* descending halfline */
2135
                    }
2136
                }
2137
                else
2138
                {
2139
                    if( double_data[c+1] == double_data[c+3] ){ /* horizontal line */
2140
                        if(double_data[c] < double_data[c+2] ){ /* halfline to the right */
2141
                            double_data[c+2] = xmax+100;
2142
                        }
2143
                        else
2144
                        {
2145
                            double_data[c+2] = xmin-1000; /* halfline to the right */
2146
                        }
2147
                    }
2148
                    else
2149
                    {
2150
                        /* m */
2151
                        double m = (double_data[c+3] - double_data[c+1]) /(double_data[c+2] - double_data[c]);
2152
                        /* q */
2153
                        double q = double_data[c+1] - ((double_data[c+3] - double_data[c+1]) /(double_data[c+2] - double_data[c]))*double_data[c];
2154
                        if(double_data[c] < double_data[c+2]){ /* to the right */
14071 bpr 2155
                            double_data[c+2] = xmax+1000; /* 1000 is needed for dragging...otherwise it is just segment */
8365 schaersvoo 2156
                            double_data[c+3] = (m)*(double_data[c+2])+(q);
2157
                        }
2158
                        else
2159
                        { /* to the left */
2160
                            double_data[c+2] = xmin - 1000;
2161
                            double_data[c+3] = (m)*(double_data[c+2])+(q);
2162
                        }
2163
                    }
2164
                }
15111 schaersvoo 2165
                if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
2166
                if(use_affine == TRUE ){ transform(i-1,2);}
2167
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,18,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2168
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2169
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,18,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2170
                add_to_buffer(tmp_buffer);
2171
                if(onclick != 0){object_cnt++;}/* object_cnt++; */
8365 schaersvoo 2172
            }
2173
            reset();
15111 schaersvoo 2174
            dragstuff[18] = 1;
2175
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8365 schaersvoo 2176
            break;
11806 schaersvoo 2177
        case HATCHFILL:
2178
        /*
2179
        @ hatchfill x0,y0,dx,dy,color
2180
        @ x0,y0 in xrange / yrange
2181
        @ distances dx,dy in pixels
13936 bpr 2182
        @ there is also a command <a href="#userdraw">userdraw hatchfill,color</a>
12110 schaersvoo 2183
        @%hatchfill%size 400,400%xrange -10,10%yrange -10,10%canvastype 100%linewidth 2%precision 1000%jsplot blue,5*sin(x)%opacity 200,50%hatchfill 6,6,10,10,blue%hatchfill 6,-6,6,6,red
11806 schaersvoo 2184
        */
15111 schaersvoo 2185
            js_function[DRAW_HATCHFILL] = 1;
11820 schaersvoo 2186
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
2187
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 2188
             add_js_filltoborder(canvas_type);
11820 schaersvoo 2189
            }
2190
            decimals = find_number_of_digits(precision);
11806 schaersvoo 2191
            for(i=0;i<5;i++){
2192
                switch(i){
11820 schaersvoo 2193
                    case 0: double_data[0] = get_real(infile,0); break; /* x */
2194
                    case 1: double_data[1] = get_real(infile,0); break; /* y  */
2195
                    case 2: int_data[0] = (int) (get_real(infile,0)); break; /* dx pixel */
2196
                    case 3: int_data[1] = (int) (get_real(infile,0)); break; /* dy pixel*/
11806 schaersvoo 2197
                    case 4: stroke_color = get_color(infile,1);
15111 schaersvoo 2198
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
2199
                    if(use_affine == TRUE ){ transform(2,2);}
11806 schaersvoo 2200
                    /* draw_hatchfill(ctx,x0,y0,dx,dy,linewidth,color,opacity,xsize,ysize) */
14208 schaersvoo 2201
                    string_length = 1 + snprintf(NULL,0,  "draw_hatchfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",STATIC_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
2202
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11820 schaersvoo 2203
                    snprintf(tmp_buffer,string_length,"draw_hatchfill(%d,%.*f,%.*f,%d,%d,%d,\"%s\",%.2f,%d,%d);\n",STATIC_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],int_data[0],int_data[1],line_width,stroke_color,stroke_opacity,xsize,ysize);
11806 schaersvoo 2204
                    add_to_buffer(tmp_buffer);
11820 schaersvoo 2205
                    fill_cnt++;
15111 schaersvoo 2206
                    reset();
11806 schaersvoo 2207
                    break;
2208
                    default:break;
2209
                }
2210
            }
2211
        break;
8386 schaersvoo 2212
 
8224 bpr 2213
        case HLINE:
7614 schaersvoo 2214
        /*
2215
        @ hline x,y,color
15715 schaersvoo 2216
        @ alternative: horizontalline
15111 schaersvoo 2217
        @ draw a horizontal line through point (x:y) in color 'color'
2218
        @ or use command <a href='#curve'>curve color,formula</a> to draw the line (uses more points to draw the line; is however better draggable)
9406 schaersvoo 2219
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12110 schaersvoo 2220
        @%hline%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%hline 0,0,red%dhline 0,5,blue
7614 schaersvoo 2221
        */
2222
            for(i=0;i<3;i++) {
2223
                switch(i){
2224
                    case 0: double_data[0] = get_real(infile,0);break; /* x-values */
2225
                    case 1: double_data[1] = get_real(infile,0);break; /* y-values */
2226
                    case 2: stroke_color = get_color(infile,1);/* name or hex color */
2227
                    double_data[3] = double_data[1];
15111 schaersvoo 2228
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
2229
                    if(use_affine == TRUE ){ transform(2,2);}
2230
                    if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
7614 schaersvoo 2231
                    decimals = find_number_of_digits(precision);
15111 schaersvoo 2232
                    string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,100*xmin,decimals,100*xmax,decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2233
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2234
                    snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,100*xmin,decimals,100*xmax,decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2235
                    add_to_buffer(tmp_buffer);
2236
                    if(onclick != 0){object_cnt++;}/* object_cnt++; */
2237
                    dragstuff[4] = 1;
2238
                    if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8379 schaersvoo 2239
                    reset();
7614 schaersvoo 2240
                    break;
2241
                }
2242
            }
2243
            break;
8366 schaersvoo 2244
 
2245
        case HLINES:
2246
        /*
2247
        @ hlines color,x1,y1,x2,y2,...
15715 schaersvoo 2248
        @ alternative: horizontallines
15111 schaersvoo 2249
        @ draw horizontal lines through points (x1:y1)...(xn:yn) in color 'color'
9406 schaersvoo 2250
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually
12110 schaersvoo 2251
        @%hlines%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%hlines red,0,0,0,5,0,-5
8366 schaersvoo 2252
        */
2253
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
2254
            fill_color = stroke_color;
2255
            i=0;
2256
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 2257
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8366 schaersvoo 2258
                if(i%2 == 0 ){
2259
                    double_data[i] = get_real(infile,0); /* x */
2260
                }
2261
                else
2262
                {
2263
                    double_data[i] = get_real(infile,1); /* y */
2264
                }
2265
                i++;
2266
            }
15111 schaersvoo 2267
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
2268
            if(use_affine == TRUE ){ transform(i-1,2);}
2269
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
2270
 
8366 schaersvoo 2271
            decimals = find_number_of_digits(precision);
2272
            for(c = 0 ; c < i-1 ; c = c+2){
15111 schaersvoo 2273
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,xmin,decimals,xmax,decimals,double_data[c+1],decimals,double_data[c+1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2274
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2275
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,xmin,decimals,xmax,decimals,double_data[c+1],decimals,double_data[c+1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2276
                add_to_buffer(tmp_buffer);
2277
                if(onclick != 0){object_cnt++;}/* object_cnt++; */
8366 schaersvoo 2278
            }
2279
            reset();
15111 schaersvoo 2280
            dragstuff[4] = 1;
2281
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8366 schaersvoo 2282
            break;
11806 schaersvoo 2283
        case HTTP:
7614 schaersvoo 2284
        /*
11806 schaersvoo 2285
         @ http x1,y1,x2,y2,http://some_adress.com
14078 bpr 2286
         @ an active html-page will be displayed in an "iframe" rectangle left top (x1:y1), right bottom (x2:y2)
11806 schaersvoo 2287
         @ do not use interactivity (or mouse) if the mouse needs to be active in the iframe
14071 bpr 2288
         @ can <b>not</b> be ''set onclick`` or ''drag xy``
12110 schaersvoo 2289
         @%http%size 400,400%xrange -10,10%yrange -10,10%http 0,10,10,0,http://wims.unice.fr%opacity 200,50%drag xy%fcircle 0,0,100,green
7614 schaersvoo 2290
        */
15111 schaersvoo 2291
            js_function[DRAW_HTTP] = 1;
11806 schaersvoo 2292
            for(i=0;i<5;i++){
7614 schaersvoo 2293
                switch(i){
11806 schaersvoo 2294
                    case 0: int_data[0]=x2px(get_real(infile,0));break; /* x in x/y-range coord system -> pixel width */
14032 schaersvoo 2295
                    case 1: int_data[1]=y2px(get_real(infile,0));break; /* y in x/y-range coord system  -> pixel height */
11806 schaersvoo 2296
                    case 2: int_data[2]=x2px(get_real(infile,0)) - int_data[0];break; /* width in x/y-range coord system -> pixel width */
2297
                    case 3: int_data[3]=y2px(get_real(infile,0)) - int_data[1];break; /* height in x/y-range coord system  -> pixel height */
2298
                    case 4: decimals = find_number_of_digits(precision);
2299
                            temp = get_string(infile,1);
2300
                            if(strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\"","'");}
14208 schaersvoo 2301
                            string_length = 1 + snprintf(NULL,0,"draw_http(%d,%d,%d,%d,%d,\"%s\");\n",canvas_root_id,int_data[0],int_data[1],int_data[2],int_data[3],temp);
11806 schaersvoo 2302
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length+2);
2303
                            snprintf(tmp_buffer,string_length,"draw_http(%d,%d,%d,%d,%d,\"%s\");\n",canvas_root_id,int_data[0],int_data[1],int_data[2],int_data[3],temp);
2304
                            add_to_buffer(tmp_buffer);
7614 schaersvoo 2305
                    break;
2306
                }
2307
            }
11806 schaersvoo 2308
            reset();
7614 schaersvoo 2309
            break;
11806 schaersvoo 2310
        case HTML:
8366 schaersvoo 2311
        /*
15111 schaersvoo 2312
         @ html x1,y1,html_string
14071 bpr 2313
         @ all tags are allowed, html code using inputfields could be read using your own javascript code. Do not use ids like 'canvas_input0' etc.
15111 schaersvoo 2314
         @ can be set <a href='#onclick'>onclick</a>  and <a href='#drag'>drag&amp;drop</a>
2315
         @ command <a href='#affine'>affine</a> will produce CSS3 matrix transformations
2316
         @ command <a href='#rotate'>rotate</a> will rotate the object
14038 schaersvoo 2317
         @ use keyword <a href='#centered'>centered</a> to center the html object on (x1:y1)
15111 schaersvoo 2318
         @ note: using drag&amp;drop for all external P,SPAN,DIV,IMG,SVG-images onto a canvasdraw element, use ''onclick=javascript:place_image_on_canvas(this.id)``
16707 schaersvoo 2319
         @ note: sub &amp; sup are supported in command family <a href='#string'>string</a>, e.g. real internal canvas objects !
15629 bpr 2320
         @%html-text%size 500,500%xrange -10,10%yrange -10,10%drag xy%centered%fillcolor lightblue%html 2,2,<h1 style='color:red'>DRAG ME</h1> %opacity 200,50%drag xy%fcircle 0,0,100,green
15111 schaersvoo 2321
         @%html-image-slider%size 500,500%xrange -10,10%yrange -10,10%fontsize 42%rotationcenter 0,0%centered%html 0,0,<img src="http://85.148.206.56/gifs/can1.gif" />%slider 0,pi,400,40,angle active degree, %centered%html 0,0,<img src="http://85.148.206.56/gifs/can2.gif" />
8366 schaersvoo 2322
        */
15111 schaersvoo 2323
            js_function[DRAW_XML] = 1;
11806 schaersvoo 2324
            for(i=0;i<5;i++){
2325
                switch(i){
15111 schaersvoo 2326
                    case 0: double_data[0] = get_real(infile,0);break;
2327
                    case 1: double_data[1] = get_real(infile,0);break;
11806 schaersvoo 2328
                    case 4: decimals = find_number_of_digits(precision);
15111 schaersvoo 2329
                            if(use_affine == TRUE ){ transform(2,2);}/* needs double_data[] */
2330
                            if( use_offset != 0 || drag_type != -1 ){int_data[2] = 1;}else{int_data[2] = 0;} /* only centered or not-centered */
2331
                            int_data[0] = x2px(double_data[0]);/* needs px */
2332
                            int_data[1] = y2px(double_data[1]);
2333
                            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
15116 bpr 2334
                            if( use_slider != -1 && drag_type != -1){ onclick = 5; }
11806 schaersvoo 2335
                            temp = get_string(infile,1);
15111 schaersvoo 2336
                            if( strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\"","\\\""); }
2337
                            if( strstr(temp,"<img ")!= 0){URL="image";}else{URL="html";}
2338
                            string_length = 1 + snprintf(NULL,0,"var draw_xml%d = {id:%d,type:'%s',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,URL,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
14208 schaersvoo 2339
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 2340
                            snprintf(tmp_buffer,string_length,  "var draw_xml%d = {id:%d,type:'%s',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,URL,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
11806 schaersvoo 2341
                            add_to_buffer(tmp_buffer);
15111 schaersvoo 2342
                            if(onclick != 0 ){object_cnt++;}
2343
                            drawxml_cnt++;/* keeps track on imported img,div,p,span,mathml,svg */
11806 schaersvoo 2344
                            break;
2345
                    default:break;
8366 schaersvoo 2346
                }
2347
            }
15111 schaersvoo 2348
            reset();
8366 schaersvoo 2349
            break;
8386 schaersvoo 2350
 
11806 schaersvoo 2351
        case IMAGEFILL:
7614 schaersvoo 2352
        /*
11996 schaersvoo 2353
        @ imagefill x,y,scaling to xsize &times; ysize?,image_url
11874 schaersvoo 2354
        @ The next suitable <b>filled object</b> will be filled with "image_url" tiled
2355
        @ scaling to xsize &times; ysize ? ... 1 = yes 0 = no
14078 bpr 2356
        @ After pattern filling, the fill-color should be reset !
14066 bpr 2357
        @ wims getins / image from class directory: imagefill 80,80,my_image.gif
15111 schaersvoo 2358
        @ normal url: imagefill 80,80,0,&#36;module_dir/gifs/my_image.gif
14066 bpr 2359
        @ normal url: imagefill 80,80,1,http://adres/a/b/c/my_image.jpg
11874 schaersvoo 2360
        @ if dx,dy is larger than the image, the whole image will be background to the next object.
13967 schaersvoo 2361
        @%imagefill_tile%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%circles blue,0,0,5,3,2,5%imagefill 1.5,1.5,0,gifs/en.gif%imagefill -5,5,0,gifs/logo/wimsedu.png
2362
        @%imagefill_scale%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%circles blue,0,0,5,3,2,5%imagefill 1.5,1.5,1,gifs/en.gif%imagefill -5,5,1,gifs/logo/wimsedu.png
7614 schaersvoo 2363
        */
15111 schaersvoo 2364
            js_function[DRAW_IMAGEFILL] = 1;
11854 schaersvoo 2365
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
2366
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 2367
             add_js_filltoborder(canvas_type);
11854 schaersvoo 2368
            }
11874 schaersvoo 2369
            for(i=0 ;i < 4 ; i++){
7614 schaersvoo 2370
                switch(i){
11806 schaersvoo 2371
                    case 0:int_data[0] = (int) (get_real(infile,0));break;
2372
                    case 1:int_data[1] = (int) (get_real(infile,0));break;
11874 schaersvoo 2373
                    case 2:int_data[2] = (int) (get_real(infile,0));break; /* 0 | 1 */
2374
                    case 3: URL = get_string_argument(infile,1);
14208 schaersvoo 2375
                            string_length = 1 + snprintf(NULL,0,  "draw_imagefill(%d,%d,%d,\"%s\",%d,%d,%d,%d);\n",STATIC_CANVAS+fill_cnt,int_data[0],int_data[1],URL,xsize,ysize,use_userdraw,int_data[2]);
2376
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11874 schaersvoo 2377
                            snprintf(tmp_buffer,string_length,"draw_imagefill(%d,%d,%d,\"%s\",%d,%d,%d,%d);\n",STATIC_CANVAS+fill_cnt,int_data[0],int_data[1],URL,xsize,ysize,use_userdraw,int_data[2]);
11806 schaersvoo 2378
                            add_to_buffer(tmp_buffer);
11874 schaersvoo 2379
                            fill_cnt++;
11806 schaersvoo 2380
                    break;
7614 schaersvoo 2381
                }
2382
            }
11806 schaersvoo 2383
            reset();
2384
        break;
14066 bpr 2385
 
14038 schaersvoo 2386
        case IMAGEPALETTE:
2387
        /*
2388
         @ imagepalette image1,image2,image3,...
14379 bpr 2389
         @ if used before and together with command <a href='#multidraw'>multidraw images,..,..., etc</a> the image will be presented in a small table in the ''control panel``.
15313 schaersvoo 2390
         @%imagepalette%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%copy 0,0,-1,-1,-1,-1,gifs/images/skull_and_crossbones50.png%fontcolor green%fontfamily Bold 42pt Arial%imagepalette gifs/ca.gif,gifs/en.gif,gifs/nl.gif,gifs/fr.gif,gifs/cn.gif,gifs/de.gif,gifs/kh.gif,gifs/it.gif%multiuserinput 0,0,1%css color:blue;%multisnaptogrid 1,1,1%multilinewidth 0,4,0%# attention: use unicode text input without the slash %# \u222D ---> u222D at least will sometimes work%# otherwise cut&past unicode symbols into inputfield...%multilabel TEXT,REACTION ARROW,FLAGS,STOP DRAWING%multidraw text,arrow,images
14038 schaersvoo 2391
         */
2392
           temp = get_string(infile,1);
2393
           temp = str_replace(temp,",","\",\"");
2394
            if( use_tooltip == 1 ){canvas_error("command 'imagepalette' is incompatible with command 'intooltip tip_text',as they use the same div-element ");}
2395
            fprintf(js_include_file,"\nvar current_id;var imagepalette = [\" %s \"];\n",temp);
2396
        break;
14066 bpr 2397
 
11806 schaersvoo 2398
        case INPUT:
2399
        /*
2400
         @ input x,y,size,editable,value
2401
         @ to set inputfield "readonly", use editable = 0
15111 schaersvoo 2402
         @ if no preset 'value' is needed...use a 'space' as last item argument
11806 schaersvoo 2403
         @ only active inputfields (editable = 1) will be read with read_canvas();
15111 schaersvoo 2404
         @ if ''&#36;status=done`` (e.g. in answer.phtml) the inputfield will be cleared and set readonly<br />override this by keyword <a href="#status">status</a>
2405
         @ may be further controlled by <a href="#css">css</a>
11806 schaersvoo 2406
         @ if mathml inputfields are present and / or some userdraw is performed, these data will <b>not</b> be send as well (javascript:read_canvas();)
2407
         @ use keyword <a href='#xoffset'>xoffset | centered</a> if the inputfield should be centered on (x:y)<br /> default is the left top corner is (x:y)
13953 schaersvoo 2408
         @ if the student must place an inputfield(s) somewhere on the canvas, use command <a href="#userdraw">userdraw input,color</a> or make use of a command like <a href="#userdraw">userdraw text,color</a>
2409
         @%input%size 400,400%xrange -10,10%yrange -10,10%linewidth 6%point 1,2,red%input 1,2,5,1, ?%point -5,5,red%input -5,5,5,1, ?%point 6,-5,red%input 6,-5,5,1, ?%point -5,-8,red%input -5,-8,5,1, ?
11806 schaersvoo 2410
        */
15111 schaersvoo 2411
        js_function[DRAW_INPUTS] = 1;
11806 schaersvoo 2412
            for(i = 0 ; i<5;i++){
2413
                switch(i){
2414
                    case 0: int_data[0]=x2px(get_real(infile,0));break;/* x in px */
2415
                    case 1: int_data[1]=y2px(get_real(infile,0));break;/* y in px */
2416
                    case 2: int_data[2]=abs( (int)(get_real(infile,0)));break; /* size */
2417
                    case 3: if( get_real(infile,1) >0){int_data[3] = 1;}else{int_data[3] = 0;};break; /* readonly */
15260 schaersvoo 2418
                    case 4: temp = get_string(infile,3);
15111 schaersvoo 2419
                            string_length = 1 + snprintf(NULL,0,  "draw_static_inputs(%d,%d,%d,%d,%d,%d,\"%s\",\"%s\",%d);\n",canvas_root_id,input_cnt,int_data[0],int_data[1],int_data[2],int_data[3],css_class,temp,use_offset);
14208 schaersvoo 2420
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 2421
                            snprintf(tmp_buffer,string_length,"draw_static_inputs(%d,%d,%d,%d,%d,%d,\"%s\",\"%s\",%d);\n",canvas_root_id,input_cnt,int_data[0],int_data[1],int_data[2],int_data[3],css_class,temp,use_offset);
11806 schaersvoo 2422
                            add_to_buffer(tmp_buffer);
2423
                            input_cnt++;break;
2424
                    default: break;
2425
                }
2426
            }
2427
            if(reply_format == 0 ){reply_format = 15;}
2428
            reset();
2429
            break;
8386 schaersvoo 2430
 
11806 schaersvoo 2431
        case INTOOLTIP:
2432
            /*
2433
            @ intooltip link_text
2434
            @ link_text is a single line (span-element)
15111 schaersvoo 2435
            @ link_text may also be an image URL ''http://some_server/images/my_image.png`` or ''&#36;module_dir/gifs/my_image.jpg``
11806 schaersvoo 2436
            @ link_text may contain HTML markup
14071 bpr 2437
            @ the canvas will be displayed in a tooltip on ''link_text``
15111 schaersvoo 2438
            @ the canvas is default transparent: use command <a href="#bgcolor">bgcolor color</a> to adjust background-color, the link text will also be shown with this 'bgcolor'.
14071 bpr 2439
            @ many ''userinput stuff`` will use the tooltip_placeholder_div element...only one is defined in the wims-page<br />and are therefore these commands are mutually exclusive.<br />keep this in mind...
14246 bpr 2440
            @%intooltip%size 400,400%xrange -10,10%yrange -10,10%fontfamily Bold 42pt Courier%string black,0,0,Hello World%intooltip <span style="background-color:black;color:white;font-style:bold;font-size:48pt;">CLICK <br />HERE</span>
11806 schaersvoo 2441
            */
2442
            if(use_input_xy != FALSE ){canvas_error("intooltip can not be combined with userinput_xy or other commands using the tooltip-div...see documentation");}
2443
            if( use_tooltip == 1 ){ canvas_error("command 'intooltip' cannot be combined with command 'popup'...");}
2444
            tooltip_text = get_string(infile,1);
2445
            if(strstr(tooltip_text,"\"") != 0 ){ tooltip_text = str_replace(tooltip_text,"\"","'"); }
2446
            use_tooltip = 1;
2447
            break;
2448
 
2449
        case JSCURVE:
7614 schaersvoo 2450
        /*
11893 schaersvoo 2451
         @ jscurve color,formula1(x),formula2(x),formula3(x),...
15715 schaersvoo 2452
         @ alternative: jsplot
11893 schaersvoo 2453
         @ your function will be plotted by the javascript engine of the client browser
2454
         @ if <a href='trange'>trange</a> is defined, the two functions will be plotted parametric<br /><b>note</b>: use <i>x</i> as variable...and not <i>t</i>. Use keyword <a href='#animate'>animate</a> to animate a point on the curve
14071 bpr 2455
         @ use only basic math in your curve: <code>sqrt,^,asin,acos,atan,log,pi,abs,sin,cos,tan,e</code>
2456
         @ use parenthesis and rawmath: use 2*x instead of 2x ; use 2^(sin(x))...etc etc (use error console to debug any errors...)
2457
         @ <b>attention</b>: last ''precision`` command in the canvasdraw script determines the calculation precision of the javascript curve plot !
11806 schaersvoo 2458
         @ no validity check is done by wims.
15111 schaersvoo 2459
         @ zooming & panning are implemented:<br />use command ''zoom color`` for mouse driven zooming<br />or use keyword 'setlimits' for inputfields setting xmin/xmax, ymin/ymax
11806 schaersvoo 2460
         @ zooming & panning is better than for curves produced by command <a href="#curve">curve color,formula</a> because for avery change in x/y-range the curve is recalculated in javascript
15116 bpr 2461
         @ zooming & panning in case of userbased functionplot: reclick the OK button to re-plot curve onto the resized grid
11893 schaersvoo 2462
         @ use keyword <a href='animate'>animate</a> for animating a point on the curve
14071 bpr 2463
         @ use command ''trace_jscurve formula(x)`` for tracing
14246 bpr 2464
         @ use command ''jsmath formula(x)`` for calculating and displaying indiviual points on the curve
11806 schaersvoo 2465
         @ can <b>not</b> be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> (yet)
14071 bpr 2466
         @ commands plotjump / plotstep are not active for ''jscurve``
11806 schaersvoo 2467
         @ every command jscurve will produce a new canvas (canvastype 111,112,113...) for this one curve.
14071 bpr 2468
         @ plotting multiple js-curves on the same canvas (for example if you want to use 'userdraw clickfill,color' on <a href="#canvastype">canvastype</a> number 111, use:<br/> <code>jscurve red,fun1(x),fun2(x)...fun_n(x)</code>, you must specify individual multistrokecolors &amp; multistrokeopacity &amp; multilinewidth for these multiple js-curves to use different colors. Otherwise all curves will be the same color... Use commands like: <a href="#multistrokecolors">multistrokecolors</a>, <a href="#multilinewidth">multilinewidth</a>, <a href="#multidash">multidash</a>, <a href="#multistrokeopacity">multistroke</a>, <b>color</b> given for the command <code>jscurve color,formulas(x)</code> will not be used in that case... but the color argument must still be given in any case (otherwise syntax error...)
14622 schaersvoo 2469
         @%jscurve%size 400,400%xrange -10,10%yrange -10,10%multistrokecolors red,green,blue,orange%multilinewidth 1,2,3%multistrokeopacity 0.5,0.8,1.0%jscurve red,sin(x),1/sin(x),sin(x^2)
11806 schaersvoo 2470
        */
15111 schaersvoo 2471
            jsplot_cnt++;/* -1 --> 0 */
11806 schaersvoo 2472
            stroke_color = get_color(infile,0);
15111 schaersvoo 2473
            js_function[JS_MATH] = 1;
2474
            js_function[JS_PLOT] = 1;
2475
            if( tmin != 0 && tmax !=0){use_parametric = TRUE;}
11806 schaersvoo 2476
            temp = get_string(infile,1);
2477
            temp = str_replace(temp,",","\",\"");
15111 schaersvoo 2478
            string_length = 1 + snprintf(NULL,0,  "var js_plot%d = function(){jsplot(%d,[\"%s\"],[%d],[\"%s\"],[%.2f],[%d],%d,%d,[%f,%f],%d,%d,%d,0);};js_plot%d();",jsplot_cnt,JSPLOT_CANVAS+jsplot_cnt,temp,line_width,stroke_color,stroke_opacity,use_dashed,dashtype[0],dashtype[1],tmin,tmax,plot_steps,use_parametric,use_animate,jsplot_cnt);
14208 schaersvoo 2479
            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 2480
            snprintf(tmp_buffer,string_length,    "var js_plot%d = function(){jsplot(%d,[\"%s\"],[%d],[\"%s\"],[%.2f],[%d],%d,%d,[%f,%f],%d,%d,%d,0);};js_plot%d();",jsplot_cnt,JSPLOT_CANVAS+jsplot_cnt,temp,line_width,stroke_color,stroke_opacity,use_dashed,dashtype[0],dashtype[1],tmin,tmax,plot_steps,use_parametric,use_animate,jsplot_cnt);
11806 schaersvoo 2481
            add_to_buffer(tmp_buffer);
15111 schaersvoo 2482
            fprintf(js_include_file,"if(typeof(all_jsplots) !== 'number'){var all_jsplots;};all_jsplots = %d;",jsplot_cnt);
2483
 
11806 schaersvoo 2484
             /* we need to create multiple canvasses, so we may zoom and pan ?? */
2485
        break;
2486
 
2487
        case JSMATH:
2488
        /*
2489
            @ jsmath some_math_function
2490
            @ will calculate an y-value from a userinput x-value and draws a crosshair on these coordinates.
14246 bpr 2491
            @ default labels ''x`` and ''y``; the commands ''xlabel some_x_axis_name`` and ''ylabel some_y_axis_name`` will set the label for the input fields
15111 schaersvoo 2492
            @ use command 'css some_css' for styling the display fields. Use command 'fontsize int' to size the labels ''x`` and ''y``
14066 bpr 2493
            @ the client browser will convert your math function to javascript math.<br />use parenthesis and rawmath: use 2*x instead of 2x etc etc<br />no check is done on the validity of your function and/or syntax<br />use error console to debug any errors...
11806 schaersvoo 2494
            @ be aware that the formula's of the plotted function(s) can be found in the page javascript source
12111 schaersvoo 2495
            @%jsmath%size 400,400%xrange -10,10%yrange -10,10%jsplot blue,sin(x^2)%jsmath sin(x^2)
11806 schaersvoo 2496
        */
15111 schaersvoo 2497
            js_function[DRAW_CROSSHAIRS] = 1;
2498
            js_function[JS_MATH] = 1;
2499
            add_calc_y(get_string(infile,1),font_size,css_class);
2500
            break;
15716 schaersvoo 2501
        case KILL:
2502
        /*
2503
        @ kill arguments
2504
        @ arguments may be: affine linear translation rotation slider offset  reset
2505
        @ for documentation see: killaffine,killlinear,killtranslation...
2506
        @ multiple arguments are allowed (although not checked for validity...)
2507
        */
2508
            temp = get_string(infile,1);
2509
            if(strstr(temp,"affine") != 0 ){use_affine = FALSE;affine_matrix[0] = 1.0;affine_matrix[1] = 0.0;affine_matrix[2] = 0.0;affine_matrix[3] = 1.0;affine_matrix[4] = 0.0;affine_matrix[5] = 0.0;}
2510
            if(strstr(temp,"linear") != 0 ){affine_matrix[0] = 1.0;affine_matrix[1] = 0.0;affine_matrix[2] = 0.0;affine_matrix[3] = 1.0;}
2511
            if(strstr(temp,"translation") != 0 || strstr(temp,"translate") != 0 ){affine_matrix[4] = 0.0;affine_matrix[5] = 0.0;}
2512
            if(strstr(temp,"rotation") != 0 || strstr(temp,"rotate") != 0 ){use_rotate = FALSE;angle = 0.0;rotation_center="null";}
2513
            if(strstr(temp,"slider") != 0 ){slider_type = "0";my_sliders = "[-1]";last_slider = use_slider+1;}
2514
            if(strstr(temp,"reset") != 0 ){if(no_reset == FALSE){no_reset = TRUE;}else{no_reset = FALSE;reset();}}
2515
            if(strstr(temp,"offset") != 0 ){use_offset = 0;}
2516
            break;
11806 schaersvoo 2517
        case KILLAFFINE:
2518
        /*
2519
        @ killaffine
14066 bpr 2520
        @ keyword: resets the transformation matrix to 1,0,0,1,0,0
15633 bpr 2521
        @ note: any active linear transformation will also be reset: tx=0, ty=0
11806 schaersvoo 2522
        */
15111 schaersvoo 2523
            use_affine = FALSE;
2524
            affine_matrix[0] = 1.0;
2525
            affine_matrix[1] = 0.0;
2526
            affine_matrix[2] = 0.0;
2527
            affine_matrix[3] = 1.0;
2528
            affine_matrix[4] = 0.0;
2529
            affine_matrix[5] = 0.0;
11806 schaersvoo 2530
            break;
15111 schaersvoo 2531
        case KILLLINEAR:
2532
        /*
2533
        @ killlinear
2534
        @ keyword: resets the transformation matrix to 1,0,0,1,tx,ty
2535
        @ note:any active transformation or rotation will not be killed (tx,ty remain active)
2536
        */
2537
            affine_matrix[0] = 1.0;
2538
            affine_matrix[1] = 0.0;
2539
            affine_matrix[2] = 0.0;
2540
            affine_matrix[3] = 1.0;
2541
            break;
11806 schaersvoo 2542
 
15111 schaersvoo 2543
 
11806 schaersvoo 2544
        case KILLROTATE:
2545
        /*
14071 bpr 2546
         @ killrotate
15111 schaersvoo 2547
         @ will set the rotation angle to 0.
2548
         @ will also reset the command <a href="#rotationcenter">rotationcenter</a> to the first (x;y) of the next rotatable/slidable object(s) <br/>eg a following rotate command will have the first object point as rotation center
11806 schaersvoo 2549
         @ if not set, the rotation center will remain unchanged
15111 schaersvoo 2550
         @ note:any active transformation or linear will not be killed (e.g an active transformation matrix remains active)
15116 bpr 2551
         @%killrotate%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%rotationcenter 0,0%# slider is active for all following objects until 'killslider'%slider -10,10,300,40,angle degree,Rotate%drag xy%# after dragging the object must be clicked to re-activate the slider%linewidth 4%arrow 0,0,6,0,9,blue%%# reset rotation center to the first (x,y) of the next object/arrow...%killrotate%drag xy%# after dragging the object must be clicked to re-activate the slider%arrow 0,0,6,1,9,red
11806 schaersvoo 2552
        */
15111 schaersvoo 2553
            use_rotate = FALSE;
14549 schaersvoo 2554
            angle = 0.0;
15111 schaersvoo 2555
            rotation_center="null";
11806 schaersvoo 2556
         break;
2557
 
2558
        case KILLSLIDER:
2559
        /*
2560
         @ killslider
2561
         @ keyword (no arguments required)
2562
         @ ends grouping of object under a previously defined slider
2563
        */
14208 schaersvoo 2564
            slider_type = "0";
15111 schaersvoo 2565
            my_sliders = "[-1]";
2566
            last_slider = use_slider+1;
11806 schaersvoo 2567
            break;
2568
 
2569
        case KILLTRANSLATION:
2570
        /*
15116 bpr 2571
         @ killtranslation
15715 schaersvoo 2572
         @ alternative: killtranslate
15111 schaersvoo 2573
         @ note: a active linear or affine transformation will not be 100% reset...only tx=0,ty=0
2574
         @ resets the translation matrix a,b,c,d,tx,ty to a,b,c,d,0,0
11806 schaersvoo 2575
        */
15111 schaersvoo 2576
            affine_matrix[4] = 0.0;
2577
            affine_matrix[5] = 0.0;
11806 schaersvoo 2578
            break;
15757 schaersvoo 2579
 
14225 schaersvoo 2580
        case LATEX:
2581
        /*
15111 schaersvoo 2582
         @ latex x,y,tex string
15715 schaersvoo 2583
         @ alternative: math
16706 schaersvoo 2584
         @ note: <b>for a single greek letter</b> ,please be smart and use a command like <a href='#string'>string</a> along with <b>unicode</b> !! <br />possibly together with command <a href="#xyoffset">xoffset, yoffset or xyoffset</a><br/> See <a target='new' href='https://en.wikipedia.org/wiki/Mathematical_operators_and_symbols_in_Unicode'>https://en.wikipedia.org/wiki/Mathematical_operators_and_symbols_in_Unicode</a><br/> See <a target='new' href='https://en.wikipedia.org/wiki/Greek_script_in_Unicode'>https://en.wikipedia.org/wiki/Greek_script_in_Unicode</a>
15111 schaersvoo 2585
         @ you may also use command <a href="#mathml">mathml</a> for xml strings generated with wims commmand ''mathmlmath`` (will not work on KaTeX enabled WIMS)
15633 bpr 2586
         @ transformation commands <a href='#affine'>affine</a>, <a href='#translation'>translation</a> and <a href='#rotate'>rotate</a> are supported.(onclick and drag will work)
15111 schaersvoo 2587
         @ can be set onclick: <code>javascript:read_dragdrop();</code> will return click numbers of mathml-objects<br />if 4 clickable object are drawn, the reply could be 1,0,1,0 ... meaning clicked on the first and third object
2588
         @ can be set draggable:<code>javascript:read_dragdrop();</code> will return all coordinates in the same order as the canvas script: unmoved object will have their original coordinates...
2589
         @ can be moved/rotated with command <a href='#slider'>slider</a>
2590
         @ snaptogrid is supported
2591
         @ when clicked, the colour of the 'div background' of the 'mathobject' will be determined by the <a href="#fillcolor">fillcolor</a> and <a href="#opacity">opacity</a> settings
2592
         @ userdraw may be combined with 'latex' ; the js-function 'read_canvas()' will contain the coordinates of the drawing.
2593
         @ userdraw may be combined; the read_canvas() will contain the drawing.
2594
         @ draggable or onclick 'external images' from command <a href='#copyresized'>copy or copyresized</a> and all objects from commands <a href='#html'>html</a> or <a href='#obabel'>obabel</a> can be combined with drag and/or onclick mathml
14230 schaersvoo 2595
         @ other drag objects (circles/rects etc) are supported, but read_dragdrop() will probably be difficult to interpret...
14379 bpr 2596
         @ if inputfields are incorporated in mathml (with id's: id='mathml0',id='mathml1',...id='mathml_n')<br />the user_input values will be read by <code>javascript:read_mathml();</code>. <b>attention</b>: if after this mathml-input object other user-interactions are included, these will read mathml too using "read_canvas();"
2597
         @ If other inputfields (command input / command textarea) or userdraw are performed, the function read_canvas() will not read mathml. Use some generic function to read it....
15116 bpr 2598
         @ use keyword <a href='#centered'>centered</a> to center the katex div object on (x1:y1) <br />this may not work as expected for MathJaX [TO BE TESTED]
15274 bpr 2599
         @ note: if you want to include external TeX via drag&amp;drop onto a canvasdraw element, use \\mmlid{integer} in the tex-command:''!insmath \\mmlid{1}\\frac{1}{\pi}``<br /> (if your wims_mathml does not support it...use <a href="http://85.148.206.56/wims/download/Mathml.tar.gz">this version...</a>)
15111 schaersvoo 2600
         @ note: the same is true for all external P,SPAN,DIV,IMG,SVG-images via drag&amp;drop onto a canvasdraw element, use ''onclick=javascript:place_image_on_canvas(this.id)``
2601
         @%latex_drag%size 400,400%xrange -10,10%yrange -10,10%grid 2,2,grey%strokecolor red%drag xy%centered%latex -6,5,\\frac{1}{2}+ \\frac{\\pi}{2}%strokecolor blue%drag xy%centered%latex -3,5,\\frac{1}{3}+ \\frac{\\pi}{3}%strokecolor green%drag xy%centered%latex 0,5,\\frac{1}{4}+ \\frac{\\pi}{4}%strokecolor orange%drag xy%fontfamily 26px Times%centered%latex 3,5,\\frac{1}{5}+ \\frac{\\pi}{6}
15313 schaersvoo 2602
         @%latex%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 3%vline 0,0,green%hline 0,0,green%fontfamily 16px Arial%fillcolor orange%strokecolor blue%linewidth 2%slider 0,4*pi,400,40,angle degree active, %centered%latex 0,0,\\frac{12345}{23456} \\times \\frac{12345}{23456}%translate 4,4%centered%rotate 180%drag xy%html 0,0,<table><tr><th>HTML TABLE</th></tr><tr><th><a href="https://wimsedu.info/">WIMS EDU </a> </th></tr><tr><td><img src="gifs/en.gif" /></tr><tr><td><img src="gifs/nl.gif" /></tr><tr><td><img src="gifs/fr.gif" /></tr><tr><td><img src="gifs/cn.gif" /></tr><tr><td><img src="gifs/it.gif" /></tr></table>%userdraw arrow2,red
14225 schaersvoo 2603
        */
15111 schaersvoo 2604
            js_function[DRAW_XML] = 1;
15757 schaersvoo 2605
            for(i=0;i<3;i++){
14225 schaersvoo 2606
                switch(i){
15111 schaersvoo 2607
                    case 0: double_data[0]=get_real(infile,0);break; /* x in x/y-range coord system -> pixel width */
2608
                    case 1: double_data[1]=get_real(infile,0);break; /* y in x/y-range coord system  -> pixel height */
14225 schaersvoo 2609
                    case 2: decimals = find_number_of_digits(precision);
15757 schaersvoo 2610
                    temp = get_string(infile,1);
2611
                    if(use_affine == TRUE ){ transform(2,2);}/* slider will use css-rotate transformation */
15111 schaersvoo 2612
                    if( use_offset != 0 || drag_type != -1 ){int_data[2] = 1;}else{int_data[2] = 0;} /* only centered or not-centered */
2613
                    int_data[0] = x2px(double_data[0]);
2614
                    int_data[1] = y2px(double_data[1]);
2615
                    if( use_slider != -1 && onclick == 0 ){ onclick = 3;}/* no drag&onclick but slideable */
15116 bpr 2616
                    if( use_slider != -1 && drag_type != -1){ onclick = 5; }
15757 schaersvoo 2617
#ifdef KATEX_INSTALLED
2618
                    if( strstr(temp,"\\") != 0 ){ temp = str_replace(temp,"\\","\\\\"); }
16613 schaersvoo 2619
                    if( strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\"","'"); }
15757 schaersvoo 2620
                    string_length = 1 + snprintf(NULL,0,"var draw_xml%d = {id:%d,type:'katex',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
2621
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2622
                    snprintf(tmp_buffer,string_length,  "var draw_xml%d = {id:%d,type:'katex',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
2623
#else
15111 schaersvoo 2624
                    temp = getMML(temp);/* generate MathML for Firefox or MathJaX */
2625
                    if( strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\"","'"); }
2626
                    string_length = 1 + snprintf(NULL,0,"var draw_xml%d = {id:%d,type:'mathml',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
2627
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2628
                    snprintf(tmp_buffer,string_length,  "var draw_xml%d = {id:%d,type:'mathml',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
15757 schaersvoo 2629
#endif
15111 schaersvoo 2630
                    add_to_buffer(tmp_buffer);
2631
                    if(onclick != 0 ){object_cnt++;}
2632
                    drawxml_cnt++;/* keeps track on imported img,div,p,span,mathml,svg */
2633
                    break;
14225 schaersvoo 2634
                    default:break;
2635
                }
2636
            }
15111 schaersvoo 2637
            reset();
14225 schaersvoo 2638
            break;
14230 schaersvoo 2639
        case LATTICE:
2640
        /*
2641
         @ lattice x0,y0,xv1,yv1,xv2,yv2,n1,n2,color
2642
         @ can <b>not</b> be set ''onclick`` or ''drag xy``
2643
         @%lattice%size 400,400%xrange -10,10%yrange -10,10%fillcolor red%linewidth 2%lattice -10,-10,0,1,1,1,10,10,red%fillcolor blue%lattice 10,-10,0,1,-1,1,10,10,blue
2644
        */
15111 schaersvoo 2645
            js_function[DRAW_LATTICE] = 1;
14230 schaersvoo 2646
            for( i = 0; i<9; i++){
2647
                switch(i){
2648
                    case 0: int_data[0] = x2px(get_real(infile,0));break; /* x0-values  -> x-pixels*/
2649
                    case 1: int_data[1] = y2px(get_real(infile,0));break; /* y0-values  -> y-pixels*/
2650
                    case 2: int_data[2] = (int) (get_real(infile,0));break; /* x1-values  -> x-pixels*/
2651
                    case 3: int_data[3] = (int) -1*(get_real(infile,0));break; /* y1-values  -> y-pixels*/
2652
                    case 4: int_data[4] = (int) (get_real(infile,0));break; /* x2-values  -> x-pixels*/
2653
                    case 5: int_data[5] = (int) -1*(get_real(infile,0));break; /* y2-values  -> y-pixels*/
2654
                    case 6: int_data[6] = (int) (get_real(infile,0));break; /* n1-values */
2655
                    case 7: int_data[7] = (int) (get_real(infile,0));break; /* n2-values */
2656
                    case 8: stroke_color=get_color(infile,1);
2657
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 2658
                        string_length = 1 + snprintf(NULL,0,"draw_lattice(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,\"%s\",%.2f,\"%s\",%.2f,%d,%.2f,%d); ",STATIC_CANVAS,line_width,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],fill_color,fill_opacity,stroke_color,stroke_opacity,use_rotate,angle,use_filled);
14230 schaersvoo 2659
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 2660
                        snprintf(tmp_buffer,string_length,"draw_lattice(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,\"%s\",%.2f,\"%s\",%.2f,%d,%.2f,%d); ",STATIC_CANVAS,line_width,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],int_data[5],int_data[6],int_data[7],fill_color,fill_opacity,stroke_color,stroke_opacity,use_rotate,angle,use_filled);
14230 schaersvoo 2661
                        add_to_buffer(tmp_buffer);break;
2662
                    default:break;
2663
                }
2664
            }
2665
            reset();
2666
            break;
15111 schaersvoo 2667
        case LINEAR:
2668
        /*
2669
         @ linear a,b,c,d
2670
         @ defines a transformation matrix for subsequent objects
2671
         @ use keyword <a href='#killlinear'>killlinear</a> to end the transformation...the next objects will be drawn in the original x/y-range
2672
         @ a: Scales the drawings horizontally
2673
         @ b: Skews the drawings horizontally
2674
         @ c: Skews the drawings vertically
2675
         @ d: Scales the drawings vertically
2676
         @ the data precision may be set by preceding command ''precision int``
2677
         @ note: any active translation (tx,ty) is not changed
15309 schaersvoo 2678
         @%linear%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%fcircle 5,5,40,blue%linear 0.2,0,0,0.2%fcircle 5,5,40,green
15111 schaersvoo 2679
        */
2680
            for(i = 0 ; i<4;i++){
2681
                switch(i){
2682
                    case 0: affine_matrix[0] = get_real(infile,0);break;
2683
                    case 1: affine_matrix[1] = get_real(infile,0);break;
2684
                    case 2: affine_matrix[2] = get_real(infile,0);break;
2685
                    case 3: affine_matrix[3] = get_real(infile,1);
2686
                     affine_matrix[4] = 0;affine_matrix[5] = 0;
2687
                     use_affine = TRUE;
2688
                     break;
2689
                    default: break;
2690
                }
2691
            }
2692
            reset();
2693
        break;
14230 schaersvoo 2694
 
11806 schaersvoo 2695
        case LINE:
2696
        /*
2697
        @ line x1,y1,x2,y2,color
14379 bpr 2698
        @ draw a line through points (x1:y1)--(x2:y2) in color ''color``
15111 schaersvoo 2699
        @ or use command ''curve color,formula`` to draw the line (uses more points to draw the line; is however better draggable)
9406 schaersvoo 2700
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 2701
        @%line%size 400,400%xrange -10,10%yrange -10,10%line 0,1,2,-1,green
7614 schaersvoo 2702
        */
8386 schaersvoo 2703
            for(i=0;i<5;i++){
7614 schaersvoo 2704
                switch(i){
11806 schaersvoo 2705
                    case 0: double_data[10]= get_real(infile,0);break; /* x-values */
2706
                    case 1: double_data[11]= get_real(infile,0);break; /* y-values */
2707
                    case 2: double_data[12]= get_real(infile,0);break; /* x-values */
2708
                    case 3: double_data[13]= get_real(infile,0);break; /* y-values */
2709
                    case 4: stroke_color=get_color(infile,1);/* name or hex color */
2710
                    if( double_data[10] == double_data[12] ){ /* vertical line*/
2711
                        double_data[1] = xmin;
2712
                        double_data[3] = ymax;
2713
                        double_data[0] = double_data[10];
2714
                        double_data[2] = double_data[10];
2715
                    }
2716
                    else
2717
                    {
2718
                        if( double_data[11] == double_data[13] ){ /* horizontal line */
2719
                            double_data[1] = double_data[11];
2720
                            double_data[3] = double_data[11];
2721
                            double_data[0] = ymin;
2722
                            double_data[2] = xmax;
2723
                        }
2724
                        else
2725
                        {
2726
                        /* m */
2727
                        double_data[5] = (double_data[13] - double_data[11]) /(double_data[12] - double_data[10]);
2728
                        /* q */
2729
                        double_data[6] = double_data[11] - ((double_data[13] - double_data[11]) /(double_data[12] - double_data[10]))*double_data[10];
2730
 
2731
                        /*xmin,m*xmin+q,xmax,m*xmax+q*/
2732
 
2733
                            double_data[1] = (double_data[5])*(xmin)+(double_data[6]);
2734
                            double_data[3] = (double_data[5])*(xmax)+(double_data[6]);
2735
                            double_data[0] = xmin;
2736
                            double_data[2] = xmax;
2737
                        }
2738
                    }
15111 schaersvoo 2739
                    if(use_rotate == TRUE ){rotate(4,angle,rotationcenter,2);}
2740
                    if(use_affine == TRUE ){ transform(4,2);}
2741
                    if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
2742
 
11806 schaersvoo 2743
                    decimals = find_number_of_digits(precision);
15111 schaersvoo 2744
                    string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2745
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2746
                    snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2747
                    add_to_buffer(tmp_buffer);
2748
                    if(onclick != 0){object_cnt++;}
2749
                    /* object_cnt++;*/
11806 schaersvoo 2750
                    reset();
2751
                    break;
7614 schaersvoo 2752
                }
2753
            }
15111 schaersvoo 2754
            dragstuff[4] = 1;
2755
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 2756
            break;
8386 schaersvoo 2757
 
11806 schaersvoo 2758
        case LINES:
8370 schaersvoo 2759
        /*
11806 schaersvoo 2760
        @ lines color,x1,y1,x2,y2...x_n-1,y_n-1,x_n,y_n
15111 schaersvoo 2761
        @ draw multiple lines through points (x1:y1)--(x2:y2) ...(x_n-1:y_n-1)--(x_n:y_n) in color 'color'
2762
        @ or use multiple commands ''curve color,formula`` or ''jscurve color,formule`` to draw the line <br />(uses more points to draw the line; is however better draggable)
11806 schaersvoo 2763
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
14071 bpr 2764
        @ <b>attention</b>: the flydraw command ''lines`` is equivalent to canvasdraw command <a href="#polyline">polyline</a>
12107 schaersvoo 2765
        @%lines%size 400,400%xrange -10,10%yrange -10,10%lines green,0,1,1,3,0,0,1,3,0,0,-2,1
8370 schaersvoo 2766
        */
2767
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
2768
            fill_color = stroke_color;
2769
            i=0;
2770
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 2771
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8370 schaersvoo 2772
                if(i%2 == 0 ){
2773
                    double_data[i] = get_real(infile,0); /* x */
2774
                }
2775
                else
2776
                {
2777
                    double_data[i] = get_real(infile,1); /* y */
2778
                }
2779
                i++;
2780
            }
2781
            decimals = find_number_of_digits(precision);
15111 schaersvoo 2782
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
8370 schaersvoo 2783
            for(c = 0 ; c < i-1 ; c = c+4){
11806 schaersvoo 2784
                if( double_data[c] == double_data[c+2] ){ /* vertical line*/
2785
                    double_data[c+1] = xmin;
2786
                    double_data[c+3] = ymax;
2787
                    double_data[c+2] = double_data[c];
2788
                }
2789
                else
2790
                {
2791
                    if( double_data[c+1] == double_data[c+3] ){ /* horizontal line */
2792
                        double_data[c+3] = double_data[c+1];
2793
                        double_data[c] = ymin;
2794
                        double_data[c+2] = xmax;
2795
                    }
2796
                    else
2797
                    {
2798
                        /* m */
2799
                        double m = (double_data[c+3] - double_data[c+1]) /(double_data[c+2] - double_data[c]);
2800
                        /* q */
2801
                        double q = double_data[c+1] - ((double_data[c+3] - double_data[c+1]) /(double_data[c+2] - double_data[c]))*double_data[c];
2802
                        /*xmin,m*xmin+q,xmax,m*xmax+q*/
2803
                        double_data[c+1] = (m)*(xmin)+(q);
2804
                        double_data[c+3] = (m)*(xmax)+(q);
2805
                        double_data[c] = xmin;
2806
                        double_data[c+2] = xmax;
2807
                    }
2808
                }
15111 schaersvoo 2809
                if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
2810
                if(use_affine == TRUE ){ transform(i-1,2);}
2811
 
2812
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2813
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2814
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2815
                add_to_buffer(tmp_buffer);
2816
                if(onclick != 0){object_cnt++;}
2817
                /* object_cnt++; */
8370 schaersvoo 2818
            }
15111 schaersvoo 2819
            dragstuff[4] = 1;
2820
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8370 schaersvoo 2821
            reset();
2822
            break;
8386 schaersvoo 2823
 
11806 schaersvoo 2824
 
2825
        case LINEWIDTH:
7614 schaersvoo 2826
        /*
11806 schaersvoo 2827
        @ linewidth int
2828
        @ default 1
12107 schaersvoo 2829
        @%linewidth%size 400,400%xrange -10,10%yrange -10,10%linewidth 1%line -5,-5,-5,5,red%linewidth 2%line -4,-5,-4,5,green%linewidth 3%line -3,-5,-3,5,blue%linewidth 4%line -2,-5,-2,5,orange%linewidth 1%line -1,-5,-1,5,brown%linewidth 5%line 1,-5,1,5,cyan%linewidth 6%line 3,-5,3,5,purple%linewidth 7%line 5,-5,5,5,black
7614 schaersvoo 2830
        */
11806 schaersvoo 2831
            line_width = (int) (get_real(infile,1));
2832
            break;
2833
 
2834
        case LEVELCURVE:
8363 schaersvoo 2835
        /*
11806 schaersvoo 2836
        @ levelcurve color,expression in x/y,l1,l2,...
15111 schaersvoo 2837
        @ draws very primitive level curves for expression, with levels l1,l2,l3,...,l_n
2838
        @ the quality is <b>not to be compared</b> with the Flydraw levelcurve. <br />(choose flydraw if you want quality...)
2839
        @ every individual level curve may be set 'onclick / drag xy' <br />e.g. every single level curve (l1,l2,l3...l_n) has a unique identifier
2840
        @ note: the arrays for holding the javascript data are limited in size
2841
        @ note: reduce image size if javascript data arrays get overloaded<br />(command 'plotsteps int' will not control the data size of the plot...)
12107 schaersvoo 2842
        @%levelcurve%size 400,400%xrange -10,10%yrange -10,10%levelcurve red,x*y,1,2,3,4
8363 schaersvoo 2843
        */
11806 schaersvoo 2844
            fill_color = get_color(infile,0);
2845
            char *fun1 = get_string_argument(infile,0);
2846
            if( strlen(fun1) == 0 ){canvas_error("function is NOT OK !");}
2847
            i = 0;
2848
            done = FALSE;
2849
            while( !done ){
2850
             double_data[i] = get_real(infile,1);
2851
             i++;
2852
            }
15111 schaersvoo 2853
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
2854
 
11806 schaersvoo 2855
            for(c = 0 ; c < i; c++){
15111 schaersvoo 2856
             string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,16,%s,[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,eval_levelcurve(xsize,ysize,fun1,xmin,xmax,ymin,ymax,plot_steps,precision,double_data[c]),line_width,line_width,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2857
             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
2858
             snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,16,%s,[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,eval_levelcurve(xsize,ysize,fun1,xmin,xmax,ymin,ymax,plot_steps,precision,double_data[c]),line_width,line_width,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
2859
             add_to_buffer(tmp_buffer);
2860
             if(onclick != 0){object_cnt++;}
2861
             /* object_cnt++; */
11806 schaersvoo 2862
            }
15111 schaersvoo 2863
            dragstuff[16] = 1;
2864
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 2865
            reset();
2866
            break;
8386 schaersvoo 2867
 
11806 schaersvoo 2868
        case LEGEND:
2869
        /*
2870
        @ legend string1:string2:string3....string_n
2871
        @ will be used to create a legend for a graph
14066 bpr 2872
        @ also see command <a href='#piechart'>piechart</a>
14071 bpr 2873
        @ will use the same colors per default as used in the graphs; use command <a href='#legendcolors'>legendcolors</a> to override the default
15111 schaersvoo 2874
        @ use command <a href="#fontsize">fontsize</a> to adjust. (command ''fontfamily`` is not active for command ''legend``)
14066 bpr 2875
        @%legend%size 400,400%xrange -10,10%yrange -10,10%bgcolor white%fontsize 16%legend legend 1:legend 2:legend 3:legend 4:this is legend 5:legend 6:another legend abc%legendcolors red:green:blue%grid 1,1,white%# note: command "grid" is mandatory%# just set grid invisible if not wanted
11806 schaersvoo 2876
        */
2877
            temp = get_string(infile,1);
2878
            if( strstr( temp,":") != 0 ){ temp = str_replace(temp,":","\",\""); }
14066 bpr 2879
            legend_cnt++; /* attention: starts with -1: it will be used in piechart etc */
11806 schaersvoo 2880
            fprintf(js_include_file,"var legend%d = [\"%s\"];",legend_cnt,temp);
2881
            break;
2882
 
2883
        case LEGENDCOLORS:
2884
        /*
2885
        @ legendcolors color1:color2:color3:...:color_n
14379 bpr 2886
        @ will be used to color a legend: use this command after the legend command ! e.g. <code>legend test1:test2:test3<br />legendcolors blue:red:orange</code>.
2887
        @ make sure the number of colors match the number of legend items
15111 schaersvoo 2888
        @ command ''legend`` in case of ''piechart`` and ''barchart`` will use these colours per default (no need to specify ''legendcolors``)
13960 bpr 2889
        @%legendcolors%size 400,400%xrange -10,10%yrange -10,10%fontsize 18%legend legend 1:legend 2:legend 3%legendcolors red:green:blue%grid 1,1,grey
11806 schaersvoo 2890
        */
2891
            if(legend_cnt == -1){canvas_error("use command \"legend\" before command \"legendcolors\" ! ");}
2892
            temp = get_string(infile,1);
2893
            if( strstr( temp,":") != 0 ){ temp = str_replace(temp,":","\",\""); }
2894
            fprintf(js_include_file,"var legendcolors%d = [\"%s\"];",legend_cnt,temp);
2895
            break;
2896
 
14078 bpr 2897
        case LINEGRAPH: /* scheme: var linegraph_0 = [ 'stroke_color','line_width','use_dashed', 'dashtype0','dashtype1','x1','y1',...,'x_n','y_n'];*/
11806 schaersvoo 2898
        /*
2899
        @ linegraph x1:y1:x2:y2...x_n:y_n
2900
        @ will plot your data in a graph
14066 bpr 2901
        @ may <b>only</b> to be used together with command <a href='#grid'>grid</a>
2902
        @ can be used together with freestyle x-axis/y-axis texts: see commands <a href='#xaxis'>xaxis</a>,<a href='#xaxisup'>xaxisup</a> and <a href='#yaxis'>yaxis</a>
2903
        @ use command <a href='#legend'>legend</a> to provide an optional legend in right-top-corner
2904
        @ also see command <a href='#piechart'>piechart</a>
11806 schaersvoo 2905
        @ multiple linegraphs may be used in a single plot
14066 bpr 2906
        @ note: your arguments are not checked by canvasdraw: use your javascript console in case of trouble...
14379 bpr 2907
        @ <ul><li>use command <a href='#strokecolor'>strokecolor</a> before a command ''linegraph`` to set the color of this graph</li><li>use command <a href='#linewidth'>linewidth</a> before command ''linegraph`` to set linewidth of this graph</li><li>use keyword <a href='#dashed'>dashed</a> before command ''linegraph`` to set dashing of the graph</li><li>if dashing is set, use command <a href='#dashtype'>dashtype</a> before command ''linegraph`` to set the type of dashing of the (individual) graph</li></ul>
12107 schaersvoo 2908
        @%linegraph%size 400,400%xrange -10,10%yrange -10,10%strokecolor red%linegraph -10:1:-5:-1:3:3:10:-5%strokecolor blue%linegraph -10:-1:-5:1:3:-3:10:5%dashed%strokecolor green%linegraph -10:2:-5:-2:3:4:10:2%grid 1,1,grey
11806 schaersvoo 2909
        */
2910
            temp = get_string(infile,1);
2911
            if( strstr( temp,":") != 0 ){ temp = str_replace(temp,":","\",\""); }
2912
            fprintf(js_include_file,"var linegraph_%d = [\"%s\",\"%d\",\"%d\",\"%d\",\"%d\",\"%s\"];",linegraph_cnt,stroke_color,line_width,use_dashed,dashtype[0],dashtype[1],temp);
2913
            linegraph_cnt++;
2914
            reset();
2915
            break;
2916
 
2917
        case MATHML:
2918
        /*
15111 schaersvoo 2919
        @ mathml x1,y1,mathml_string
14230 schaersvoo 2920
        @ this command is special for GECKO browsers, and it makes use of Native Mathml
15313 schaersvoo 2921
        @ For general use with all browsers, use command <a href='#latex'>latex</a>
2922
        @ can be set <a href='onclick'>onclick</a>  and <a href='drag'>drag&amp;drop</a> <br />Note: dragging is fairly primitive dragging of the div-element, and is not done using the <em>dragstuff library</em>
15111 schaersvoo 2923
        @ command <a href='#affine'>affine</a> will produce CSS3 matrix transformations
2924
        @ command <a href='#rotate'>rotate</a> will rotate the object
15315 bpr 2925
        @ the mathml object is centered at (x1:y1)
14379 bpr 2926
        @ the ''mathml_string`` can be produced using WIMS commands like ''texmath`` followed by ''mathmlmath``... or write correct TeX and use only ''mathmlmath``
15313 schaersvoo 2927
        @ mathml will be displayed in a rectangle left top (x1:y1)
14247 bpr 2928
        @ can be set onclick <code>javascript:read_dragdrop();</code> will return click numbers of mathml-objects; if 4 clickable object are drawn, the reply could be 1,0,1,0 ... meaning clicked on the first and third object
14379 bpr 2929
        @ can be set draggable: <code>javascript:read_dragdrop()</code> will return all coordinates in same order as the canvas script: unmoved objects will have their original coordinates...
14247 bpr 2930
        @ snaptogrid is supported...snaptopoints will work, but use with care... due to the primitive dragging. Technically: the dragstuff library is not used... the mathml is embedded in a new div element and not in the html5-canvas.
2931
        @ when clicked, the mathml object will be drawn in red color; the div background color will be determined by the <a href="#fillcolor">fillcolor</a> and <a href="#opacity">opacity</a> settings.
15111 schaersvoo 2932
        @ userdraw may be combined with 'mathml' ; the read_canvas() will contain the drawing.
2933
        @ draggable or onclick 'external images' from command <a href='#copyresized'>copy or copyresized</a> can be combined with drag and/or onclick mathml
14078 bpr 2934
        @ other drag objects (circles/rects etc) are supported, but read_dragdrop() will probably be difficult to interpret...
14066 bpr 2935
        @ if inputfields are incorporated in mathml (with id's: id='mathml0',id='mathml1',...id='mathml_n')<br />the user_input values will be read by javascript:read_mathml();<br /><b>attention</b>: if after this mathml-input object other user-interactions are included, these will read mathml too using "read_canvas();"
11806 schaersvoo 2936
        @ If other inputfields (command input / command textarea) or userdraw is performed, the function read_canvas() will not read mathml. Use some generic function to read it....
14038 schaersvoo 2937
        @ use keyword <a href='#centered'>centered</a> to center the mathml/xml object on (x1:y1)
15313 schaersvoo 2938
        @%mathml_onclick%size 400,400%xrange -10,10%yrange -10,10%onclick%strokecolor red%mathml -5,5,<span style="font-size:1em;"><math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mstyle id="wims_mathml366290"><mrow><mo stretchy="true">[</mo><mtable rowspacing="0.5ex" columnalign=" left " columnlines=" none " rowlines=" none " ><mtr><mtd><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mstyle displaystyle="true"><mfrac><mn>1</mn><mn>2</mn></mfrac></mstyle><mo>&sdot;</mo><msup><mi>x</mi> <mn>2</mn></msup></mtd></mtr> <mtr><mtd><mi>g</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><msqrt><mstyle displaystyle="true"><mfrac><mn>1</mn><mrow><msup><mi>x</mi> <mn>2</mn></msup></mrow></mfrac></mstyle></msqrt></mtd></mtr></mtable><mo stretchy="true">]</mo></mrow></mstyle></math></span>%onclick%strokecolor blue%mathml 5,5,<span style="font-size:1em;"><math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mstyle id="wims_mathml580175" ><mrow><mo stretchy="true">[</mo><mtable rowspacing="0.5ex" columnalign=" left " columnlines=" none " rowlines="none"><mtr><mtd><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mstyle displaystyle="true"><mfrac><mn>1</mn><mrow><mi>sin</mi><mrow><mo stretchy="true">(</mo><msup><mi>x</mi> <mn>2</mn></msup><mo stretchy="true">)</mo></mrow></mrow></mfrac></mstyle></mtd></mtr> <mtr><mtd><mi>g</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><msqrt><mrow><mi>sin</mi><mrow><mo stretchy="true">(</mo><msup><mi>x</mi> <mn>2</mn></msup><mo stretchy="true">)</mo></mrow></mrow></msqrt></mtd></mtr></mtable><mo stretchy="true">]</mo></mrow></mstyle></math></span>
2939
        @%mathml_drag%size 400,400%xrange -10,10%yrange -10,10%drag xy%strokecolor red%mathml -5,5,<span style="font-size:1em;"><math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mstyle id="wims_mathml366290"><mrow><mo stretchy="true">[</mo><mtable rowspacing="0.5ex" columnalign=" left " columnlines=" none " rowlines=" none "><mtr><mtd><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mstyle displaystyle="true"><mfrac><mn>1</mn><mn>2</mn></mfrac></mstyle><mo>&sdot;</mo><msup><mi>x</mi> <mn>2</mn></msup></mtd></mtr> <mtr><mtd><mi>g</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><msqrt><mstyle displaystyle="true"><mfrac><mn>1</mn><mrow><msup><mi>x</mi> <mn>2</mn></msup></mrow></mfrac></mstyle></msqrt></mtd></mtr></mtable><mo stretchy="true">]</mo></mrow></mstyle></math></span>%drag xy%strokecolor blue%mathml 5,5,<span style="font-size:1em;"><math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mstyle id="wims_mathml580175" ><mrow><mo stretchy="true">[</mo><mtable rowspacing="0.5ex" columnalign=" left " columnlines=" none " rowlines=" none "><mtr><mtd><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mstyle displaystyle="true"><mfrac><mn>1</mn><mrow><mi>sin</mi><mrow><mo stretchy="true">(</mo><msup><mi>x</mi> <mn>2</mn></msup><mo stretchy="true">)</mo></mrow></mrow></mfrac></mstyle></mtd></mtr> <mtr><mtd><mi>g</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><msqrt><mrow><mi>sin</mi><mrow><mo stretchy="true">(</mo><msup><mi>x</mi> <mn>2</mn></msup><mo stretchy="true">)</mo></mrow></mrow></msqrt></mtd></mtr></mtable><mo stretchy="true">]</mo></mrow></mstyle></math></span>%#click left top corner...then drag...
11806 schaersvoo 2940
        */
15111 schaersvoo 2941
            js_function[DRAW_XML] = 1;
2942
            for(i=0;i<3;i++){
11806 schaersvoo 2943
                switch(i){
15111 schaersvoo 2944
                    case 0: double_data[0]=get_real(infile,0);break; /* x in x/y-range coord system -> pixel width */
2945
                    case 1: double_data[1]=get_real(infile,0);break; /* y in x/y-range coord system  -> pixel height */
2946
                    case 2: decimals = find_number_of_digits(precision);
2947
 
2948
                            if(use_affine == TRUE ){ transform(2,2);}/* needs double_data[] */
2949
                            if( use_offset != 0 || drag_type != -1 ){int_data[2] = 1;}else{int_data[2] = 0;} /* only centered or not-centered */
2950
                            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
2951
                            int_data[0] = x2px(double_data[0]);/* needs px */
2952
                            int_data[1] = y2px(double_data[1]);
2953
                            if( use_slider != -1 && onclick == 0 ){ onclick = 3;}/* no drag&onclick but slideable */
15116 bpr 2954
                            if( use_slider != -1 && drag_type != -1){ onclick = 5; }
11806 schaersvoo 2955
                            temp = get_string(infile,1);
2956
                            if( strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\"","'"); }
15111 schaersvoo 2957
                            string_length = 1 + snprintf(NULL,0,"var draw_xml%d = {id:%d,type:'mathml',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%d,rotation_center:%s,once:true};draw_xml(draw_xml%d);slidergroup[%d] = null;\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,use_slider,rotation_center,drawxml_cnt,object_cnt);
14208 schaersvoo 2958
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 2959
                            snprintf(tmp_buffer,string_length,  "var draw_xml%d = {id:%d,type:'mathml',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%d,rotation_center:%s,once:true};draw_xml(draw_xml%d);slidergroup[%d] = null;\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,use_slider,rotation_center,drawxml_cnt,object_cnt);
11806 schaersvoo 2960
                            add_to_buffer(tmp_buffer);
15111 schaersvoo 2961
                            if(onclick != 0 ){object_cnt++;}
2962
                            drawxml_cnt++;/* keeps track on imported img,div,p,span,mathml,svg */
11806 schaersvoo 2963
                            /*
15111 schaersvoo 2964
                                in case inputs are present, trigger adding the read_mathml()
2965
                                if no other reply_format is defined
2966
                                note: all other reply types will include a reading of elements with id='mathml'+p)
2967
                            */
2968
                            if(strstr(temp,"mathml0") != NULL){ if(reply_format == 0 ){reply_format = 16;}} /* no other reply type is defined */
11806 schaersvoo 2969
                            break;
15116 bpr 2970
                    default:break;
11806 schaersvoo 2971
                }
2972
            }
15111 schaersvoo 2973
            reset();
11806 schaersvoo 2974
            break;
2975
 
2976
        case MOUSE:
2977
        /*
2978
         @ mouse color,fontsize
15313 schaersvoo 2979
         @ will display the cursor (x:y) coordinates in ''color`` and ''fontsize`` using default fontfamily Arial
14379 bpr 2980
         @ note: use command ''mouse`` at the end of your script code (the same is true for command ''zoom``)
12107 schaersvoo 2981
         @%mouse%size 400,400%xrange -10,10%yrange -10,10%mouse red,22
11806 schaersvoo 2982
        */
2983
            stroke_color = get_color(infile,0);
2984
            font_size = (int) (get_real(infile,1));
2985
            tmp_buffer = my_newmem(26);
13371 schaersvoo 2986
            snprintf(tmp_buffer,26,"use_mouse_coordinates();\n");add_to_buffer(tmp_buffer);
15111 schaersvoo 2987
            add_js_mouse(MOUSE_CANVAS,precision,stroke_color,font_size,stroke_opacity,2);
2988
            js_function[INTERACTIVE] = 1;
11806 schaersvoo 2989
            break;
2990
 
2991
 
2992
        case MOUSE_DEGREE:
2993
        /*
2994
         @ mouse_degree color,fontsize
15313 schaersvoo 2995
         @ will display the angle in degrees between x-axis, (0:0) and the cursor (x:y) in 'color' and 'font size'<br /> using a fontfamily Arial
11806 schaersvoo 2996
         @ The angle is positive in QI and QIII and the angle value is negative in QII and QIV
15111 schaersvoo 2997
         @ note: use command 'mouse' at the end of your script code (the same is true for command 'zoom')
12107 schaersvoo 2998
         @%mouse_degree%size 400,400%xrange -10,10%yrange -10,10%userdraw arc,blue%precision 100000%mouse_degree red,22
11806 schaersvoo 2999
        */
3000
            stroke_color = get_color(infile,0);
3001
            font_size = (int) (get_real(infile,1));
3002
            tmp_buffer = my_newmem(26);
13371 schaersvoo 3003
            snprintf(tmp_buffer,26,"use_mouse_coordinates();\n");add_to_buffer(tmp_buffer);
15111 schaersvoo 3004
            add_js_mouse(MOUSE_CANVAS,precision,stroke_color,font_size,stroke_opacity,3);
11806 schaersvoo 3005
            js_function[JS_FIND_ANGLE] = 1;
15111 schaersvoo 3006
            js_function[INTERACTIVE] = 1;
11806 schaersvoo 3007
            break;
3008
        case MOUSE_DISPLAY:
3009
        /*
3010
         @ display TYPE,color,fontsize
15111 schaersvoo 3011
         @ TYPE may be x | y | xy | degree | radian | radius
3012
         @ will display the mouse cursor coordinates as x-only,y-only,(x:y), the radius of a circle (this only in case 'userdraw circle(s),color') or the angle in degrees or radians for commands <code>userdraw arc,color</code> or protractor, ruler (if set dynamic).
15650 reyssat 3013
         @ use commands ''xunit`` and / or ''yunit`` to add the units to the mouse values. The ''degree | radian`` will always have the appropriate symbol).
14077 bpr 3014
         @ just like commands ''mouse``, ''mousex``, ''mousey``, ''mouse_degree``... only other name
12111 schaersvoo 3015
         @%display_x%size 400,400%xrange -10,10%yrange -10,10%xunit \\u212B%display x,red,22
12107 schaersvoo 3016
         @%display_y%size 400,400%xrange -10,10%yrange -10,10%yunit seconds%display y,red,22
13936 bpr 3017
         @%display_xy%size 400,400%xrange -10,10%yrange -10,10%xunit centimetre%yunit seconds%display xy,red,22%userdraw segments,blue
12107 schaersvoo 3018
         @%display_deg%size 400,400%xrange -10,10%yrange -10,10%display degree,red,22%fillcolor orange%opacity 200,50%userdraw arc,blue
3019
         @%display_rad%size 400,400%xrange -10,10%yrange -10,10%display radian,red,22%fillcolor orange%opacity 200,50%userdraw arc,blue
12111 schaersvoo 3020
         @%display_radius%size 400,400%xrange -10,10%yrange -10,10%xunit cm%xunit \\u212b%display radius,red,22%userdraw circle,blue
11806 schaersvoo 3021
        */
3022
        temp = get_string_argument(infile,0);
3023
        if( strstr(temp,"xy") != NULL ){
3024
            int_data[0] = 2;
3025
        }else{
3026
            if( strstr(temp,"y") != NULL ){
3027
                int_data[0] = 1;
3028
            }else{
3029
                if( strstr(temp,"x") != NULL ){
3030
                    int_data[0] = 0;
3031
                }else{
3032
                    if(strstr(temp,"degree") != NULL){
3033
                        int_data[0] = 3;
3034
                        js_function[JS_FIND_ANGLE] = 1;
3035
                    }else{
3036
                        if(strstr(temp,"radian") != NULL){
3037
                            int_data[0] = 4;
3038
                            js_function[JS_FIND_ANGLE] = 1;
3039
                        }else{
3040
                            if(strstr(temp,"radius") != NULL){
3041
                                int_data[0] = 5;
3042
                            }else{
3043
                                int_data[0] = 2;
3044
                            }
3045
                        }
3046
                    }
3047
                }
3048
            }
3049
        }
3050
        stroke_color = get_color(infile,0);
3051
        font_size = (int) (get_real(infile,1));
3052
        tmp_buffer = my_newmem(26);
13371 schaersvoo 3053
        snprintf(tmp_buffer,26,"use_mouse_coordinates();\n");add_to_buffer(tmp_buffer);
15111 schaersvoo 3054
        add_js_mouse(MOUSE_CANVAS,precision,stroke_color,font_size,stroke_opacity,int_data[0]);
3055
        js_function[INTERACTIVE] = 1;
11806 schaersvoo 3056
        break;
3057
 
3058
        case MOUSE_PRECISION:
3059
        /*
3060
            @ precision int
3061
            @ 1 = no decimals ; 10 = 1 decimal ; 100 = 2 decimals etc
3062
            @ may be used / changed before every object
15111 schaersvoo 3063
            @ In case of user interaction (like ''userdraw`` or ''multidraw``), this value will be used to determine the amount of decimals in the reply / answer
13936 bpr 3064
            @%precision%size 400,400%xrange -10,10%yrange -10,10%precision 1%userdraw segment,red
11806 schaersvoo 3065
        */
3066
            precision = (int) (get_real(infile,1));
3067
            if(precision < 1 ){precision = 1;};
3068
            break;
3069
 
3070
        case MOUSEX:
3071
        /*
3072
         @ mousex color,fontsize
15313 schaersvoo 3073
         @ will display the cursor x-coordinate in ''color`` and ''font size`` using the fontfamily Arial.
14247 bpr 3074
         @ note: use command ''mouse`` at the end of your script code (the same is true for command ''zoom``).
11806 schaersvoo 3075
 
3076
        */
3077
            stroke_color = get_color(infile,0);
3078
            font_size = (int) (get_real(infile,1));
3079
            tmp_buffer = my_newmem(26);
13371 schaersvoo 3080
            snprintf(tmp_buffer,26,"use_mouse_coordinates();\n");add_to_buffer(tmp_buffer);
15111 schaersvoo 3081
            add_js_mouse(MOUSE_CANVAS,precision,stroke_color,font_size,stroke_opacity,0);
3082
            js_function[INTERACTIVE] = 1;
11806 schaersvoo 3083
            break;
3084
        case MOUSEY:
3085
        /*
3086
         @ mousey color,fontsize
15313 schaersvoo 3087
         @ will display the cursor y-coordinate in ''color`` and ''font size`` using default fontfamily Arial.
14247 bpr 3088
         @ note: use command ''mouse`` at the end of your script code (the same is true for command ''zoom``).
11806 schaersvoo 3089
 
3090
        */
3091
            stroke_color = get_color(infile,0);
3092
            font_size = (int) (get_real(infile,1));
3093
            tmp_buffer = my_newmem(26);
13371 schaersvoo 3094
            snprintf(tmp_buffer,26,"use_mouse_coordinates();\n");add_to_buffer(tmp_buffer);
15111 schaersvoo 3095
            add_js_mouse(MOUSE_CANVAS,precision,stroke_color,font_size,stroke_opacity,1);
3096
            js_function[INTERACTIVE] = 1;
11806 schaersvoo 3097
            break;
3098
 
3099
        case MULTIDASH:
3100
        /*
3101
         @ multidash 0,1,1
14071 bpr 3102
         @ meaning draw objects no. 2 (circle) and 3 (segments), in the list of command like <code>multifill points,circle,segments</code>, are dashed
14066 bpr 3103
         @ use before command <a href='#multidraw'>multidraw</a>
14247 bpr 3104
         @ if not set all objects will be set ''not dashed``... unless a generic keyword ''dashed`` was given before command ''multidraw``
15111 schaersvoo 3105
         @ the dash-type is not -yet- adjustable <br />(e.g. command <code>dashtype line_px,space_px</code> will give no control over multidraw objects)
11806 schaersvoo 3106
         @ wims will <b>not</b> check if the number of 0 or 1's matches the amount of draw primitives...
14077 bpr 3107
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3108
        */
3109
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3110
            temp = get_string(infile,1);
3111
            temp = str_replace(temp,",","\",\"");
3112
            fprintf(js_include_file,"var multidash = [\"%s\"];",temp);
3113
            reset();/* if command 'dashed' was given...reset to not-dashed */
3114
            break;
3115
 
3116
        case MULTIDRAW:
3117
        /*
3118
         @ multidraw obj_type_1,obj_type_2...obj_type_11
14066 bpr 3119
         @ for simple single object user drawings you could also use command <a href="#userdraw">userdraw</a>
16827 schaersvoo 3120
         @ implemented obj_types:<ul><li>point | points</li><li>circle | circles</li><li>line | lines</li><li>segment | segments</li><li>arrow | arrows (use command 'arrowhead int' for size (default value 8 pixels))</li><li>curvedarrow | curvedarrows</li><li>rect | rects</li><li>closedpoly<br /><b>only one</b> closedpolygon may be drawn.The number of ''corner points`` is not preset (e.g. not limited, freestyle), the polygon is closed when clicking on the first point again..(+/- 10px)</li><li>triangle | triangles</li><li>parallelogram | parallelograms</li><li>poly[3-9] | polys[3-9] draw 3...9 point polygone(s): polys3 is of course triangles</li><li>images</li><li>crosshair | crosshairs</li><li>function | functions <br/>simple function plotter, command functions will can be used for 2 function user inputs</li></ul>
15111 schaersvoo 3121
         @ additionally objects may be user labelled, using obj_type ''text``...<br />in this case allways a text input field and if <a href='#multiuserinput'> multiuserinput=1 </a> also (x:y) inputfields will be added to the page.<br />use commands ''fontfamily`` and ''fontcolor`` to adjust (command ''multistrokeopacity`` may be set to adjust text opacity)<br />note: text is always centered on the mouse-click or user-input coordinates !<br />note: no keyboard listeners are used
3122
         @ it makes no sense using something like ''multidraw point,points`` ... <br />something like "multidraw polys4,polys7" will only result in drawing a ''4 point polygone`` and not a ''7 point polygone``: this is a design flaw and not a feature...
3123
         @ note: mouselisteners are only active if "&#36;status != done " (eg only drawing in an active/non-finished exercise) <br /> to overrule use command/keyword "status" (no arguments required)
3124
         @ buttons for changing the obj_type (and in case of ''multiuserinput``, some inputfields and buttons) <br />will be present in the reserved div ''tooltip_div`` and can be styled using command 'css some_css'
3125
         @ the button label will be default the ''object primitive name`` (like ''point``, ''circles``).<br />If you want a different label (e.g. an other language), use command ''multilabel``<br />for example in dutch: <br /><code>multilabel cirkel,lijnstuk,punten,STOP<br />multidraw circle,segment,points</code><br />(see command <a href='#multilabel'>multilabel</a> for more details)
14063 schaersvoo 3126
         @ a right mouse button click will remove the last drawn object of the selected drawing type. All other type of objects are not removed
15111 schaersvoo 3127
         @ multidraw is incompatible with command ''tooltip`` (the reserved div_area is used for the multidraw control buttons)
3128
         @ all ''multidraw`` drawings will scale on zooming.<br />this in contrast to the command <a href="#userdraw">userdraw</a>.
3129
         @ wims will <b>not</b> check the amount or validity of your command arguments ! <br />( use javascript console to debug any typo's )
3130
         @ a local function <code>read_canvas%d</code> will read all userbased drawings.<br />The output is always a 16 lines string with fixed sequence.<br/>line 1 = points_x+";"+points_y+"\\n"<br/>line 2 = circles_x+";"+circles_y+";"+multi_radius+"\\n"<br/>line 3 = segments_x+";"+segments_y+"\\n"<br/>line 4 = arrows_x+";"+arrows_y+"\\n"<br/>line 5 = lines_x+";"+lines_y+"\\n"<br/>line 6 = triangles_x+";"+triangles_y+"\\n"<br/>line 7 = polys[3-9]_x+";"+polys[3-9]_y+"\\n"<br/>line 8 = rects_x +";"+rects_y+"\\n"<br />line 9 = closedpoly_x+";"+closedpoly_y+"\\n"<br/>line 10 = parallelogram_x+";"+parallelogram_y"\\n"<br/>line 11 = text_x+";"+text_y+";"+text"\\n"<br />line 12 = image_x+";"+image_y+";"+image_id<br />line 13 = curvedarrows_x +";"+ curvedarrows_y +"\\n"<br />line 14 = curvedarrows2_x +";"+ curvedarrows2_y +"\\n"<br />line 15 = crosshairs_x +";"+ crosshairs_y +"\\n"<br />line 16 = userdraw_x +";"+userdraw_y + "\\n" note: this is for single ''userdraw object,color`` and ''replyformat 29``<br/>line 17 = userdraw_x +";"+userdraw_y +";"+userdraw_radius + "\\n" note: this is for single ''userdraw object,color`` and ''replyformat 29``<br/>The x/y-data are in x/y-coordinate system and display precision may be set by a previous command ''precision 0 | 10 | 100 | 1000...``<br />In case of circles the radius is -for the time being- rounded to pixels<br /><b>use the wims "direct exec" tool to see the format of the reply</b>
3131
         @ It is best to prepare / format the student reply in clientside javascript.<br />However in ''wims`` language you could use something like this<br />for example you are interested in the polys5 drawings of a pupil (the pupil may draw multiple poly5 objects...)<br />note: the reply for 2 poly5's is: x11,x12,x13,x14,x15,x21,x22,x23,x24,x25 ; y11,y12,y13,y14,y15,y21,y22,y23,y24,y25<br />rep = !line 7 of reply <br />rep = !translate ';' to '\\n' in &#36;rep <br />pts = 5 # 5 points for polygon <br />x_rep = !line 1 of &#36;rep <br />y_rep = !line 2 of &#36;rep <br />tot = !itemcnt &#36;x_rep <br />num_poly = &#36;[&#36;tot/&#36;pts] <br />idx = 0 <br />!for p=1 to &#36;num_poly <br />&nbsp;!for s=1 to &#36;pts <br />&nbsp;&nbsp;!increase idx <br />&nbsp;&nbsp;X = !item &#36;idx of &#36;x_rep <br />&nbsp;&nbsp;Y = !item &#36;idx of &#36;y_rep <br />&nbsp;&nbsp;# do some checking <br />&nbsp;!next s <br />!next p <br />
14379 bpr 3132
         @ <b>attention</b>: for command argument ''closedpoly``, only one polygone can be drawn. The last point (e.g. the point clicked near the first point) of the array is removed.
15111 schaersvoo 3133
         @ technical: all 10 ''draw primitives`` + ''text`` will have their own -transparent- PNG bitmap canvas. <br />So for example there can be a points_canvas entirely separated from a line_canvas.<br />This to avoid the need for a complete redraw when something is drawn to the canvas...(eg only the object_type_canvas is redrawn), this in contrast too many very slow do-it-all HTML5 canvas javascript libraries.<br />The mouselisteners are attached to the canvas-div element.
3134
         @ a special object type is ''images``.<br />if used together with <a href='#imagepalette'>imagepalette</a> a image table will be integrated in the 'control section' of multidraw (set <code>multiuserinput 1</code> for ''images``) if not used with <a href='#imagepalette'>imagepalette</a>, provide the images or div's (&lt;img&gt; tag with bitmap or SVG or anything in a div element) somewhere on the html exercise page, with an onclick handler like:<br /><code>&lt;img src='gifs/images/dog.svg' onclick='javascript:place_image_on_canvas(this.id);' id="ext_image_1" /&gt;<br />&lt;img src='gifs/fish.png' onclick='javascript:place_image_on_canvas(this.id);' id="another" /&gt;</code><br />etc ... when activating the multidraw ''image`` button, the images can be selected<br /> (left mouse button/onclick) and placed on the canvas...left mouse click.<br />using div's will enable you -amongst other content- to add math typesetting from the exercise page onto the canvas.
3135
         @ When you are not content with the default ''multidraw control panel``, you can create your own interface, using a few javascript functions to call the drawprimitives, delete things and ''stop drawing`` in case you also want to drag&drop stuff...</br>To activate this feature, use <a href='#multilabel'>multilabel NOCONTROLS</a><br />The object types are internally represented by the following numbers (making typos will render your exercise null and void)<br/>point = 0<br />points =1<br />circle = 2<br />circles = 3<br />line = 4<br />lines = 5<br />segment = 6<br />segments = 7<br />arrow = 8<br />arrows = 9<br />triangle = 10<br />triangles = 11<br />closedspoly = 12<br />text = 13<br />rect = 14<br />rects = 15<br />poly[3-9] = 16<br />polys[3-9] = 17<br />parallelogram = 18<br />parallelograms = 19<br />images       = 20<br />curvedarrow = 21<br />curvedarrows = 22<br />curvedarrow2 = 23<br />curvedarrows2 = 24<br />crosshair = 25<br />crosshairs = 26 <br />controls for example:<br /><code>&lt;input type='button' onclick='javascript:userdraw_primitive=null' value='STOP DRAWING' /&gt;<br />&lt;input type='button' onclick='javascript:userdraw_primitive=24;multidraw_object_cnt = 0;' value='start drawing curvedarrows2' /&gt; <br />&lt;input type='button' onclick='javascript:var fun=eval("clear_draw_area"+canvas_scripts[0]);fun(24,0);' value='REMOVE LAST CURVEDARROW ' /&gt; </code><br/> If using multiple canvas scripts in a single page, loop through the canvas_scripts[n] <br />note: if using NOCONTROLS and just a single draw primitive (for example, just: 'multidraw circles'), the object may be drawn directly. (analogue to 'userdraw circles,color')<br />And since a right mouse button click will always remove the last drawn object of the current object type, there is no need for a special "remove button"
12107 schaersvoo 3136
         @%multidraw%size 400,400%xrange -10,10%yrange -10,10%multidash 1,0%multilinewidth 1,2%multistrokecolors red,blue%multisnaptogrid 1,1%multilabel LINES,CIRCLES,STOP DRAWING%multidraw lines,circles
15313 schaersvoo 3137
         @%multidraw_images%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%drag xy%# use special function to read the drag coordinates%copy 0,0,-1,-1,-1,-1,gifs/images/skull_and_crossbones50.png%fontcolor green%fontfamily Bold 42pt Arial%imagepalette gifs/ca.gif,gifs/en.gif,gifs/nl.gif,gifs/fr.gif,gifs/cn.gif,gifs/de.gif,gifs/kh.gif,gifs/it.gif%multiuserinput 0,0,1%css color:blue;%multisnaptogrid 1,1,1%multilinewidth 0,4,0%# attention: use unicode text input without the slash %# \u222D ---> u222D at least will sometimes work%# otherwise cut&past unicode symbols into inputfield...%multilabel TEXT,REACTION ARROW,FLAGS,STOP DRAWING%multidraw text,arrow,images
3138
         @%multidraw_demo%size 800,800%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%css color:blue;%fontfamily Italic 42pt Arial%precision 1%opacity 200,50%snaptogrid%linewidth 3%filled%multistrokecolors red,green,blue,orange,yellow,purple,black,cyan,red,green,blue,orange,green,purple,black,cyan%multifillcolors red,green,blue,orange,yellow,purple,black,cyan,red,green,blue,orange,brown,purple%imagepalette gifs/ca.gif,gifs/en.gif,gifs/nl.gif,gifs/fr.gif,gifs/cn.gif,gifs/de.gif,gifs/kh.gif,gifs/it.gif%multidraw closedpoly,segments,rect,parallelogram,triangles,poly5,points,lines,arrows,circles,text,curvedarrows,curvedarrows2,images
16827 schaersvoo 3139
         @%multidraw_NOCONTROLS%size 400,400%xrange -10,10%yrange -10,10%grid 2,2,grey%linewidth 3%strokecolor green%fillcolor blue%filled%opacity 255,60%multilabel NOCONTROLS%multidraw circles%# RIGHT MOUSE CLICK REMOVES LAST OBJECT
3140
         @%multidraw function%size 400,400%xrange -10,10%yrange -10,10%fontfamily Italic 22px Helvetica%axis%axisnumbering%precision 0%grid 2,2,grey,1,1,5,black%multicolors red,green,blue%fontcolor orange%multilinewidth 1,2,3%multidraw text,functions,line
11806 schaersvoo 3141
        */
15111 schaersvoo 3142
            js_function[INTERACTIVE] = 1;
15633 bpr 3143
            if(js_function[JS_ZOOM] == 1){use_zoom = 1;} /* use noisy zoom_code, when command zoom is given before command 'multidraw' */
14038 schaersvoo 3144
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
15111 schaersvoo 3145
            if( use_userdraw == 1 ){canvas_error("Only one userdraw primitive may be used in command 'userdraw' use command 'multidraw' for this...");}
3146
            use_userdraw = 2;
11806 schaersvoo 3147
            temp = get_string(infile,1);
3148
            fprintf(js_include_file,"\
15111 schaersvoo 3149
            var MMP = %d;\
3150
            if( typeof(multisnaptogrid) == 'undefined' && multisnaptogrid == null){var multisnaptogrid = new Array(MMP);for(var i=0;i<MMP;i++){multisnaptogrid[i] = %d;};};\
3151
            if( typeof(multistrokecolors) === 'undefined' && multistrokecolors == null){ var multistrokecolors = new Array(MMP);for(var i=0;i<MMP;i++){multistrokecolors[i] = '%s';};};\
3152
            if( typeof(multifillcolors) === 'undefined' && multifillcolors == null ){var multifillcolors = new Array(MMP);for(var i=0;i<MMP;i++){multifillcolors[i] = '%s';};};\
3153
            if( typeof(multistrokeopacity) === 'undefined' && multistrokeopacity == null){var multistrokeopacity = new Array(MMP);for(var i=0;i<MMP;i++){multistrokeopacity[i] = %.2f;};};\
3154
            if( typeof(multifillopacity) === 'undefined' &&  multifillopacity == null){var multifillopacity = new Array(MMP);for(var i=0;i<MMP;i++){multifillopacity[i] = %.2f;};};\
3155
            if( typeof(multilinewidth) === 'undefined' && multilinewidth == null){var multilinewidth = new Array(MMP);for(var i=0;i<MMP;i++){multilinewidth[i] = %d;};};\
3156
            if( typeof(multifill) === 'undefined' && multifill == null){var multifill = new Array(MMP);for(var i=0;i<MMP;i++){multifill[i] = %d;};};\
3157
            if( typeof(multidash) === 'undefined' && multidash == null){var multidash = new Array(MMP);for(var i=0;i<MMP;i++){multidash[i] = %d;};};\
3158
            if( typeof(multilabel) === 'undefined' && multilabel == null){var multilabel = [\"%s\",\"stop drawing\"];};\
3159
            if( typeof(multiuserinput) === 'undefined' && multiuserinput == null){var multiuserinput = new Array(MMP);for(var i=0;i<MMP;i++){multiuserinput[i] = '0';};};\
3160
            var arrow_head = %d;var multifont_color = '%s';var multifont_family = '%s';var forbidden_zone = [xsize+2,ysize+2];",
3161
            MAX_MULTI_PRIMITIVES,
3162
            use_snap,
3163
            stroke_color,
3164
            fill_color,
3165
            stroke_opacity,
3166
            fill_opacity,
3167
            line_width,
3168
            use_filled,
3169
            use_dashed,
3170
            str_replace(temp,",","\",\""),
3171
            arrow_head,font_color,font_family);
16827 schaersvoo 3172
            add_js_multidraw(temp,css_class,use_offset,int_data[MAX_MULTI_PRIMITIVES+1],crosshair_size,use_zoom);
3173
            /* no_controls == int_data[MAX_MULTI_PRIMITIVES+1] */
3174
            reply_precision = precision;
11806 schaersvoo 3175
            if(strstr(temp,"text") != NULL){
15111 schaersvoo 3176
             js_function[JS_SAFE_EVAL] = 1;
16722 schaersvoo 3177
             js_function[DRAW_SUBSUP] = 1;
11806 schaersvoo 3178
            }
16827 schaersvoo 3179
            if(strstr(temp,"function") != NULL){
3180
             js_function[JS_SAFE_EVAL] = 1;
3181
             js_function[JS_RAWMATH] = 1;
3182
             js_function[DRAW_JSFUNCTION] = 1;
3183
             js_function[JS_MATH] = 1;
3184
             js_function[JS_PLOT] = 1;
3185
             add_input_jsfunction(css_class,function_label,input_cnt,stroke_color,stroke_opacity,line_width,use_dashed,dashtype[0],dashtype[1],font_size);
3186
             input_cnt++;
3187
             jsplot_cnt++;
3188
             if(strstr(temp,"functions") != NULL){
3189
             add_input_jsfunction(css_class,function_label,input_cnt,stroke_color,stroke_opacity,line_width,use_dashed,dashtype[0],dashtype[1],font_size);
3190
             input_cnt++;
3191
             jsplot_cnt++;
3192
             }
3193
             fprintf(js_include_file,"if(typeof(all_jsplots) !== 'number'){var all_jsplots;};all_jsplots = %d;function redraw_userdraw(){redraw_jsplot();return;};",jsplot_cnt);
3194
            }
11806 schaersvoo 3195
            /* the canvasses range from 1000 ... 1008 */
3196
            if( reply_format == 0){reply_format = 29;}
3197
            reset();/* if command 'filled' / 'dashed' was given...reset all */
3198
            break;
3199
        case MULTILABEL:
3200
        /*
3201
         @ multilabel button_label_1,button_label_2,...,button_label_8,'stop drawing text'
14066 bpr 3202
         @ use before command <a href='#multidraw'>multidraw</a>
15111 schaersvoo 3203
         @ if not set all labels (e.g. the value of input type 'button') will be set by the english names for the draw_primitives (like 'point','circle'...)
14071 bpr 3204
         @ the ''stop drawing`` button text <b>must</b> be the last item on the ''multilabel`` -list <br />for example:<br /><code>multilabel punten,lijnen,Stop met Tekenen<br />multidraw points,lines</code>
15111 schaersvoo 3205
         @ all buttons can be ''styled`` by using command <code>css</code><br /><b>note:</b>If you want to add some CSS style to the buttons...<br />the id's of the ''draw buttons`` are their english command argument<br />(e.g. id="canvasdraw_points" for the draw points button).<br />the id of the ''stop drawing`` button is "canvasdraw_stop_drawing".<br />the id of the "OK" button is ''canvasdraw_ok_button``
3206
         @ wims will not check the amount or validity of your input
3207
         @ always use the same sequence as is used for ''multidraw``
3208
         @ if you don't want the controls, and want to write your own interface, set <code>multilabel NOCONTROLS</code>
11806 schaersvoo 3209
        */
3210
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3211
            temp = get_string(infile,1);
15116 bpr 3212
            if( strcasestr(temp,"NOCONTROLS") ){
15111 schaersvoo 3213
             int_data[MAX_MULTI_PRIMITIVES+1] = 1; /*int_data[25] = 1 --> 'no_controls = 1' in canvasmacro.c */
3214
             fprintf(js_include_file,"var multilabel = null;");
3215
            }
3216
            else
3217
            {
3218
             int_data[MAX_MULTI_PRIMITIVES+1] = 0; /* so DO use control buttons etc */
3219
             temp = str_replace(temp,",","\",\"");
3220
             fprintf(js_include_file,"var multilabel = [\"%s\"];",temp);
3221
            }
11806 schaersvoo 3222
            break;
3223
        case MULTILINEWIDTH:
3224
        /*
3225
         @ multilinewidth linewidth_1,linewidth_2,...,linewidth_8
14066 bpr 3226
         @ use before command <a href='#multidraw'>multidraw</a>
14071 bpr 3227
         @ if not set all line widths will be set by a previous command ''linewidth int``
3228
         @ use these up to 7 different line widths for the draw primitives used by command <code>multidraw obj_type_1,obj_type_2...obj_type_7</code>
11806 schaersvoo 3229
         @ wims will <b>not</b> check if the number of 0 or 1's matches the amount of draw primitives...
14071 bpr 3230
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3231
        */
3232
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3233
            temp = get_string(infile,1);
3234
            temp = str_replace(temp,",","\",\"");
3235
            fprintf(js_include_file,"var multilinewidth = [\"%s\"];",temp);
3236
            break;
3237
        case MULTIFILL:
3238
        /*
3239
         @ multifill 0,0,1,0,1,0,0
14071 bpr 3240
         @ meaning draw objects no. 3 and 5, in the list of command ''multifill``, are filled (if the object is fillable...and not a line,segment,arrow or point...)
15111 schaersvoo 3241
         @ using a fillpattern: multifill 0,1,2,5,3,4<br />meaning: first object is not filled...second object is solid color filled...2=grid | 3=hatch | 4=diamond | 5=dot
14066 bpr 3242
         @ use before command <a href='#multidraw'>multidraw</a>
14246 bpr 3243
         @ if not set all objects -except point|points- will be set ''not filled``... unless a command <code>filled</code> was given before command <code>multifill</code>
15651 reyssat 3244
         @ only suitable for draw_primitives like ''circle | circles``, ''triangle | triangles``, ''rect | rects``, ''poly[3-9] | polys[3-9]`` and ''polygon``
11806 schaersvoo 3245
         @ wims will <b>not</b> check if the number of 0 or 1's matches the amount of draw primitives...
14071 bpr 3246
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3247
        */
3248
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
15111 schaersvoo 3249
            i=0;
3250
            while( ! done ){     /* get next item until EOL*/
3251
                if(i > MAX_MULTI_PRIMITIVES){canvas_error("too many multidraw primitives...read the documentation...");}
3252
                int_data[i] = (int)(get_real(infile,1)); /* 0,1,2,3,4,5 */
3253
                if(int_data[i] < 0 || int_data[i] > 5 ){canvas_error("the only possible multifill arguments are: 0,1,2,3,4,5 ");}
3254
                if(int_data[i] > 1 ){use_filled = 2;js_function[DRAW_FILL_PATTERN] = 1;}/* switch to trigger pattern filling */
15116 bpr 3255
                i++;
15111 schaersvoo 3256
            }
3257
            fprintf(js_include_file,"var multifill = %s ;",data2js_array(int_data,i-1));
11806 schaersvoo 3258
            break;
3259
 
3260
        case MULTIFILLCOLORS:
3261
        /*
3262
         @ multifillcolors color_name_1,color_name_2,...,color_name_8
14066 bpr 3263
         @ use before command <a href='#multidraw'>multidraw</a>
14078 bpr 3264
         @ if not set all fillcolors (for circle | triangle | poly[3-9] | closedpoly ) will be ''stroke_color``, ''fill_opacity``
14071 bpr 3265
         @ use these up to 6 colors for the draw primitives used by command <code>multidraw obj_type_1,obj_type_2...obj_type_n</code>
11806 schaersvoo 3266
         @ wims will <b>not</b> check if the number of colours matches the amount of draw primitives...
14379 bpr 3267
         @ always use the same sequence as is used for ''multidraw``
15111 schaersvoo 3268
         @ can also be used with command <a href='#userdraw'>userdraw clickfill,color</a> when more than one fillcolor is wanted.<br />in that case use for example <a href='#replyformat'>replyformat 10</a> ... reply=x1:y1:color1,x2:y2:color2...<br />the colors will restart at the first color, when there are more fill-clicks than multi-fill-colors<br />if more control over the used colours is wanted, see command <a href='#colorpalette'>colorpalette color1,color2...</a>
11806 schaersvoo 3269
        */
3270
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3271
            fprintf(js_include_file,"var multifillcolors = [");
3272
            while( ! done ){
3273
                temp = get_color(infile,1);
3274
                fprintf(js_include_file,"\"%s\",",temp);
3275
            }
3276
            fprintf(js_include_file,"\"0,0,0\"];");/* add black to avoid trouble with dangling comma... */
3277
            break;
3278
 
3279
        case MULTIFILLOPACITY:
3280
        /*
3281
         @ multifillopacity fill_opacity_1,fill_opacity_2,...,fill_opacity_8
3282
         @ float values 0 - 1 or integer values 0 - 255
14066 bpr 3283
         @ use before command <a href='#multidraw'>multidraw</a>
14071 bpr 3284
         @ if not set all fill opacity_ will be set by previous command <code>opacity int,int</code> and keyword ''filled``
3285
         @ use these up to 7 different stroke opacities for the draw primitives used by command <code>multidraw obj_type_1,obj_type_2...obj_type_y</code>
11806 schaersvoo 3286
         @ wims will not check the amount or validity of your input
14071 bpr 3287
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3288
        */
3289
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3290
            temp = get_string(infile,1);
3291
            temp = str_replace(temp,",","\",\"");
3292
            fprintf(js_include_file,"var multifillopacity = [\"%s\"];",temp);
3293
            break;
3294
        case MULTISNAPTOGRID:
3295
        /*
3296
         @ multisnaptogrid 0,1,1
15715 schaersvoo 3297
         @ alternative: multisnap
14071 bpr 3298
         @ meaning draw objects no. 2 (circle) and 3 (segments), in the list of command like <code>multifill points,circle,segments</code>, will snap to the xy-grid (default 1 in x/y-coordinate system: see command <a href='#snaptogrid'>snaptogrid</a>)
3299
         @ freehand drawing...specify precision for reply: all objects snap to grid <code>multisnaptogrid 1,1,1,...</code>
14246 bpr 3300
         @ only the xy-values snap_to_grid: all objects snap to grid <code>multisnaptogrid 1,1,1,...</code>
14071 bpr 3301
         @ only the x-values snap_to_grid: all objects snap to x-grid <code>multisnaptogrid 2,2,2,...</code>
3302
         @ only the y-values snap_to_grid: all objects snap to y-grid <code>multisnaptogrid 3,3,3,...</code>
3303
         @ if <a href='#snaptopoints'>snaptopoints</a> is defined: all objects snap to points <code>multisnaptogrid 4,4,4,...</code> <br /><b>make sure to define the points to snap on...</b> use command <a href='#snaptopoints'>snaptopoints</a>
3304
         @ <code>multisnaptogrid 0,1,2,3,4<br />multidraw text,arrow,line,circle,image</code><br />''text`` is free hand, ''arrow`` is snap to grid, ''line`` is snap to x-grid, ''circle`` is snap to y-grid, ''image`` is snap to points defined by command <a href='#snaptopoints'>snaptopoints</a>
15111 schaersvoo 3305
         @ use before command <a href='#multidraw'>multidraw</a>
3306
         @ attention: if not set all objects will be set ''no snap``... unless a generic command ''snaptogrid`` was given before command ''multidraw``
3307
         @ commands <a href='#xsnaptogrid'>xsnaptogrid</a>, <a href='#ysnaptogrid'>ysnaptogrid</a>, <a href='#snaptofunction'>snaptofunction</a> are <b>not</b> supported amd only functional for command <a href='#userdraw'>userdraw</a>
14071 bpr 3308
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3309
         @ wims will <b>not</b> check if the number of 0 or 1's matches the amount of draw primitives...
3310
        */
3311
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3312
            temp = get_string(infile,1);
14038 schaersvoo 3313
            fprintf(js_include_file,"var multisnaptogrid = [%s];",temp);
15111 schaersvoo 3314
            reset();/* if command 'dashed' was given...reset to not-dashed */
11806 schaersvoo 3315
            break;
3316
        case MULTISTROKECOLORS:
3317
        /*
3318
         @ multistrokecolors color_name_1,color_name_2,...,color_name_8
14066 bpr 3319
         @ use before command <a href='#multidraw'>multidraw</a>
14071 bpr 3320
         @ if not set all colors will be ''stroke_color``, ''stroke_opacity``
3321
         @ use these up to 6 colors for the draw primitives used by command <code>multidraw obj_type_1,obj_type_2...obj_type_7</code>
11806 schaersvoo 3322
         @ wims will <b>not</b> check if the number of colours matches the amount of draw primitives...
14071 bpr 3323
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3324
        */
3325
            if( use_tooltip == 1 ){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3326
            fprintf(js_include_file,"var multistrokecolors = [");
3327
            while( ! done ){
3328
                temp = get_color(infile,1);
3329
                fprintf(js_include_file,"\"%s\",",temp);
3330
            }
3331
            fprintf(js_include_file,"\"0,0,0\"];");/* add black to avoid trouble with dangling comma... */
3332
            break;
3333
        case MULTISTROKEOPACITY:
3334
        /*
3335
         @ multistrokeopacity stroke_opacity_1,stroke_opacity_2,...,stroke_opacity_7
3336
         @ float values 0 - 1 or integer values 0 - 255
14066 bpr 3337
         @ use before command <a href='#multidraw'>multidraw</a>
14071 bpr 3338
         @ if not set all stroke opacity_ will be set by previous command <code>opacity int,int</code>
15111 schaersvoo 3339
         @ use these up to 7 different stroke opacities for the draw primitives used by command <code>multidraw obj_type_1,obj_type_2...obj_type_7</code>
11806 schaersvoo 3340
         @ wims will not check the amount or validity of your input
14071 bpr 3341
         @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3342
        */
3343
            if( use_tooltip == 1){canvas_error("command 'multidraw' is incompatible with command 'intooltip tip_text'");}
3344
            temp = get_string(infile,1);
3345
            temp = str_replace(temp,",","\",\"");
3346
            fprintf(js_include_file,"var multistrokeopacity = [\"%s\"];",temp);
3347
            break;
3348
 
3349
        case MULTIUSERINPUT:
3350
        /*
3351
        @ multiuserinput 0,1,1,0
15715 schaersvoo 3352
        @ alternative: multiinput
15111 schaersvoo 3353
        @ meaning, when the command ''multidraw`` is used <code>multidraw circles,points,lines,triangles</code><br />objects ''points`` and ''lines`` may additionally be ''drawn`` by direct input (inputfields)<br/>all other objects must be drawn with a mouse
3354
        @ in case of circle | circles a third inputfield for Radius (R) is added. The radius must be in the x/y coordinate system (x-range) and <b>not</b> in pixels...students don't think in pixels.<br />note: R-values will not snap-to-grid
15651 reyssat 3355
        @ in case of line(s) | segment(s) | arrow(s) the user should write <b>x1:y1</b> in the first inputfield and <b>x2:y2</b> in the second.<br />These ''hints`` are pre-filled into the input field.<br />Other coordinate delimiters are '';`` and '',`` e.g. <b>x1;y1</b> or <b>x1,y1</b>.<br />An error message (alert box) will popup when things are not correctly...
15111 schaersvoo 3356
        @ in case of a triangle | poly3, three inputfields are provided.
15651 reyssat 3357
        @ in case of ''text`` and ''multiuserinput=1, 3`` inputfields will be shown: ''x,y,text``
3358
        @ in case of ''text`` and ''multiuserinput=0, 1`` inputfield will be shown: text ... a mouse click will place the text on the canvas.
15111 schaersvoo 3359
        @ may be styled using command <a href="#css">css</a>
3360
        @ an additional button ''stop drawing`` may be used to combine userbased drawings with ''drag&and;drop`` or ''onclick`` elements
3361
        @ when exercise if finished (status=done) the buttons will not be shown.<br />To override this default behaviour use command / keyword ''status``
3362
        @ use before command <a href='#multidraw'>multidraw</a>
3363
        @ always use the same sequence as is used for ''multidraw``
11806 schaersvoo 3364
        */
3365
            /* simple rawmath and input check */
15111 schaersvoo 3366
            js_function[JS_SAFE_EVAL] = 1;
11806 schaersvoo 3367
            temp = get_string(infile,1);
3368
            temp = str_replace(temp,",","\",\"");
3369
            fprintf(js_include_file,"var multiuserinput = [\"%s\"];",temp);
3370
            break;
15111 schaersvoo 3371
        case NORESET:
3372
        /*
15715 schaersvoo 3373
        @ noreset
3374
        @ alternative: killreset
15111 schaersvoo 3375
        @ keyword
3376
        @ may come in handy if canvas script code is generated using loops
3377
        @ if used the following properties will remain to be valid<br /><ul><li>filled</li><li>dash settings</li><li>onclick or drag settings</li><li>centering or offset</li></ul>
3378
        @ if used again, these properies will be reset to the default values and normal behaviour is continued (e.g. the above properties will be reset after 'use' on a canvas object)
3379
        @ etc etc
15633 bpr 3380
        @ commands <a href='#slider'>slider</a>, <a href='#linear'>linear</a>, <a href='#rotate'>rotate</a>, <a href='#translate'>translate</a>, <a href='#affine'>affine</a> are always active until the 'kill' commands are given: <br /><a href='#killlinear'>killlinear</a>, <a href='#killrotate'>killrotate</a>, <a href='#killtranslate'>killtranslate</a> and <a href='#killaffine'>killaffine</a>
3381
        @ commands like 'opacity', 'linewidth', 'fontsize', 'fontfamily' are only changed when redefined again
15111 schaersvoo 3382
        @%noreset%size 400,400%xrange -10,10%yrange -10,10%noreset%drag xy%linewidth 4%filled%rect -4,4,-2,2,blue%triangle -3,-3,0,0,1,-5,green%circle 0,0,50,orange%noreset%rect 2,4,4,2,blue
15758 schaersvoo 3383
        @%noreset_oefgraduation%size 800,100%xrange 0,11%yrange -1,1%hline 0,0,black%parallel 0,0,0,0.5,1,0,11,blue%noreset%onclick%centered%text black,1,0.6,large,20%text black,2,0.6,large,30%text black,3,0.6,large,40%text black,4,0.6,large,50%text black,5,0.6,large,60%text black,6,0.6,large,70%text black,7,0.6,large,80%text black,8,0.6,large,90%text black,9,0.6,large,100%text black,10,0.6,large,110
15111 schaersvoo 3384
        */
3385
            if(no_reset == FALSE){no_reset = TRUE;}else{no_reset = FALSE;reset();}
3386
            break;
11806 schaersvoo 3387
        case NOXAXIS:
3388
        /*
14252 bpr 3389
        @ noxaxis
11806 schaersvoo 3390
        @ keyword
3391
        @ if set, the automatic x-axis numbering will be ignored
14252 bpr 3392
        @ use command <a href="#axis">axis</a> to have a visual x/y-axis lines (see command <a href="#grid">grid</a>)
11806 schaersvoo 3393
        @ to be used before command grid (see <a href="#grid">command grid</a>)
3394
        */
11891 schaersvoo 3395
            fprintf(js_include_file,"x_strings = {};x_strings_up = [];\n");
3396
            use_axis_numbering = -1;
11806 schaersvoo 3397
            break;
3398
        case NOYAXIS:
3399
        /*
14251 bpr 3400
        @ noyaxis
11806 schaersvoo 3401
        @ keyword
3402
        @ if set, the automatic y-axis numbering will be ignored
14252 bpr 3403
        @ use command <a href="#axis">axis</a> to have a visual x/y-axis lines (see command <a href="#grid">grid</a>)
11806 schaersvoo 3404
        @ to be used before command grid (see <a href="#grid">command grid</a>)
3405
        */
11891 schaersvoo 3406
            fprintf(js_include_file,"y_strings = {};\n");
11806 schaersvoo 3407
            break;
11890 schaersvoo 3408
        case NUMBERLINE:
3409
        /*
3410
        @ numberline x0,x1,xmajor,xminor,y0,y1
3411
        @ numberline is using xrange/yrange system for all dimensions
11996 schaersvoo 3412
        @ multiple numberlines are allowed ; combinations with command <a href='#grid'>grid</a> is allowed; multiple commands <a href='#xaxis'>xaxis numbering</a> are allowed
11890 schaersvoo 3413
        @ x0 is start x-value in xrange
3414
        @ x1 is end x-value in xrange
3415
        @ xmajor is step for major division
14071 bpr 3416
        @ xminor is divisor of xmajor; using small (30% of major tick) tick marks: this behaviour is ''hardcoded``
3417
        @ is xminor is an even divisor, an extra tickmark (60% of major tick) is added to the numberline: this behaviour is ''hardcoded``
11890 schaersvoo 3418
        @ y0 is bottom of numberline; y1 endpoint of major tics
13829 bpr 3419
        @ use command <a href="#linewidth">linewidth</a> to control appearance
11890 schaersvoo 3420
        @ use <a href="#strokecolor">strokecolor</a> and <a href="#opacity">opacity</a> to controle measure line
3421
        @ for all ticks linewidth and color / opacity are identical.
3422
        @ if command <a href="#xaxis">xaxis</a> or <a href="#xaxisup">xaxisup</a> is not defined, the labeling will be on major ticks: x0...x1
13829 bpr 3423
        @ use <a href="#fontfamily">fontfamily</a> and <a href="#fontcolor">fontcolor</a> to control fonts settings
14078 bpr 3424
        @ may be used together with <a href="#userdraw">userdraw</a>, <a href="#multidraw">multidraw</a> and <a href="#drag">user drag</a> command family for the extra object drawn onto the numberline
11890 schaersvoo 3425
        @ <a href="#snaptogrid">snaptogrid, snaptopoints etc</a> and <a href="#zoom">zooming and panning</a> is supported
3426
        @ onclick and dragging of the numberline are not -yet- supported
14071 bpr 3427
        @ note: in case of multiple numberlines, make sure the numberline without special x-axis numbering (e.g. ranging from xmin to xmax) comes first !
13829 bpr 3428
        @%numberline%size 400,400%xrange -10,10%yrange -10,10%precision 1%strokecolor black%numberline -8,8,1,6,-4,-3.5%strokecolor red%xaxis -4:AA:-2:BB:2:CC:4:DD%numberline -8,8,1,2,4,4.5%strokecolor green%xaxisup -4:AAA:-2:BBB:2:CCC:4:DDD%numberline -8,8,1,3,2,2.5%strokecolor blue%xaxis -4:AAAA:-2:BBBB:2:CCCC:4:DDDD%numberline -8,8,1,4,0,0.5%strokecolor brown%xaxis -4:AAAAA:-2:BBBBB:2:CCCCC:4:DDDDD%numberline -8,8,1,5,-2,-1.5%zoom red
11890 schaersvoo 3429
        */
15111 schaersvoo 3430
            js_function[DRAW_NUMBERLINE] = 1;
11890 schaersvoo 3431
            for(i=0;i<6;i++){
3432
                switch(i){
3433
                    case 0: double_data[0] = get_real(infile,0);break;/* xmin */
3434
                    case 1: double_data[1] = get_real(infile,0);break;/* xmax */
3435
                    case 2: double_data[2] = get_real(infile,0);break;/* xmajor */
3436
                    case 3: double_data[3] = get_real(infile,0);break;/* xminor */
3437
                    case 4: double_data[4] = get_real(infile,0);break;/* ymin */
3438
                    case 5: double_data[5] = get_real(infile,1);/* ymax */
3439
                            /*
3440
                            var draw_numberline%d = function(canvas_type,xmin,xmax,xmajor,xminor,ymin,ymax,linewidth,strokecolor,strokeopacity,fontfamily,fontcolor);
3441
                            */
3442
                            fprintf(js_include_file,"snap_x = %f;snap_y = %f;",double_data[2] / double_data[3],double_data[5] - double_data[4] );
14208 schaersvoo 3443
                            string_length = 1 + snprintf(NULL,0,"\ndraw_numberline(%d,%d,%f,%f,%f,%f,%f,%f,%d,\"%s\",%f,\"%s\",\"%s\",%d);   ",NUMBERLINE_CANVAS+numberline_cnt,use_axis_numbering,double_data[0],double_data[1],double_data[2],double_data[3],double_data[4],double_data[5],line_width,stroke_color,stroke_opacity,font_family,font_color,precision);
3444
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11996 schaersvoo 3445
                            snprintf(tmp_buffer,string_length,"\ndraw_numberline(%d,%d,%f,%f,%f,%f,%f,%f,%d,\"%s\",%f,\"%s\",\"%s\",%d);  ",NUMBERLINE_CANVAS+numberline_cnt,use_axis_numbering,double_data[0],double_data[1],double_data[2],double_data[3],double_data[4],double_data[5],line_width,stroke_color,stroke_opacity,font_family,font_color,precision);
11890 schaersvoo 3446
                            add_to_buffer(tmp_buffer);
3447
                            numberline_cnt++;
3448
                            break;
3449
                    default:break;
3450
                }
3451
            }
3452
            reset();
3453
            break;
3454
 
15541 schaersvoo 3455
        case OBABEL:
3456
 
3457
        /*
3458
        @ obabel x,y,type input,molecule smiles-code or file location, extra arguments,extra arguments,...
15633 bpr 3459
        @ will call the ''obabel`` program, if installed.
15541 schaersvoo 3460
        @ output will be an svg file
15686 reyssat 3461
        @ see documentation of obabel for special keys
15541 schaersvoo 3462
        @ command <a href='#affine'>affine</a> will produce CSS3 matrix transformations
3463
        @ command <a href='#rotate'>rotate</a> will rotate the object
3464
        @ can be set onclick: <code>javascript:read_dragdrop();</code> will return click numbers of mathml-objects<br />if 4 clickable object are drawn, the reply could be 1,0,1,0 ... meaning clicked on the first and third object
3465
        @ can be set draggable: <code>javascript:read_dragdrop();</code> will return all coordinates in the same order as the canvas script: unmoved object will have their original coordinates...
3466
        @ snaptogrid is supported...snaptopoints will work, but use with care...due to the primitive dragging<br />technically: the dragstuff library is not used...the mathml is embedded in a new div element and not in the html5-canvas
3467
        @ external files may be loaded if they are present on the server or in the modules <br />for example:<br /> obabel 0,0,mol,&#36;module_dir/caffeine.mol,-P100,-xb none
3468
        @%obabel_smi%size 400,400%xrange -10,10%yrange -10,10%fillcolor green%drag xy%centered%obabel 0,0,smi,-:c1cFccc1cc,-xb none,-xB blue,-xi,-xt,-xa,-xX,-xP180,-h
3469
        */
3470
            js_function[DRAW_XML] = 1;
3471
            for(i=0;i<4;i++){
3472
                switch(i){
3473
                    case 0: double_data[0]=get_real(infile,0);break; /* x in x/y-range coord system -> pixel width */
3474
                    case 1: double_data[1]=get_real(infile,0);break; /* y in x/y-range coord system  -> pixel height */
3475
                    case 2: URL = get_string_argument(infile,0);break;
3476
                    case 3:
3477
                    if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
3478
                    temp = getSVGMOL(URL,get_string(infile,1));
3479
                    decimals = find_number_of_digits(precision);
3480
                    if(use_affine == TRUE ){ transform(2,2);}
3481
                    if( use_offset != 0 || drag_type != -1 ){int_data[2] = 1;}else{int_data[2] = 0;} /* only centered or not-centered */
3482
                    int_data[0] = x2px(double_data[0]);
3483
                    int_data[1] = y2px(double_data[1]);
3484
                    if( use_slider != -1 && onclick == 0 ){ onclick = 3;}/* no drag&onclick but slideable */
3485
                    if( use_slider != -1 && drag_type > 0 ){ onclick = 5;}/* slider+drag*/
3486
                    if( strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\"","'"); }
3487
                    string_length = 1 + snprintf(NULL,0,"var draw_xml%d = {id:%d,type:'svg',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
3488
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3489
                    snprintf(tmp_buffer,string_length,  "var draw_xml%d = {id:%d,type:'svg',x:[%d],y:[%d],mathml:\"%s\",drag_type:%d,onclick:%d,object_cnt:%d,stroke_color:\"%s\",stroke_opacity:%.2f,fill_color:\"%s\",fill_opacity:%.2f,use_center:%d,use_snap:%d,angle:%f,fontfamily:\"%s\",transform:%s,use_affine:%d,offset:[0,0],use_slider:%s,rotation_center:%s,once:true};slidergroup[%d] = null;draw_xml(draw_xml%d);\n",drawxml_cnt,drawxml_cnt,int_data[0],int_data[1],temp,drag_type,onclick,object_cnt,stroke_color,stroke_opacity,fill_color,fill_opacity,int_data[2],use_snap,angle,font_family,doubledata2js_array(affine_matrix,6,decimals),use_affine,my_sliders,rotation_center,object_cnt,drawxml_cnt);
3490
                    add_to_buffer(tmp_buffer);
3491
                    if(onclick != 0 ){object_cnt++;}
3492
                    drawxml_cnt++;/* keeps track on imported img,div,p,span,mathml,svg */
3493
                    break;
3494
                    default:break;
3495
                }
3496
            }
3497
            reset();
3498
        break;
3499
 
11806 schaersvoo 3500
        case OPACITY:
3501
        /*
13951 schaersvoo 3502
        @ opacity [0-255],[0-255]
3503
        @ opacity [0.0 - 1.0],[0.0 - 1.0]
15715 schaersvoo 3504
        @ alternative: transparent
11806 schaersvoo 3505
        @ first item is stroke opacity, second is fill opacity
13951 schaersvoo 3506
        @%opacity%size 400,400%xrange -10,10%yrange -10,10%opacity 255,0%fcircle -10,0,100,blue%opacity 250,50%fcircle -5,0,100,blue%opacity 200,100%fcircle 0,0,100,blue%opacity 150,150%fcircle 5,0,100,blue%opacity 100,200%fcircle 10,0,100,blue
11806 schaersvoo 3507
        */
3508
            for(i = 0 ; i<2;i++){
3509
                switch(i){
3510
                    case 0: double_data[0]= get_real(infile,0);break;
3511
                    case 1: double_data[1]= get_real(infile,1);break;
3512
                    default: break;
3513
                }
3514
            }
15633 bpr 3515
            if( double_data[0] > 255 ||  double_data[1] > 255  || double_data[0] < 0 || double_data[1] < 0 ){ canvas_error("opacity [0 - 255], [0 - 255] ");}/* typo or non-RGB ? */
11997 schaersvoo 3516
            if( double_data[0] > 1 ){ stroke_opacity = (double) (0.0039215*double_data[0]); }else{ stroke_opacity = 0.0;} /* 0.0 - 1.0 */
3517
            if( double_data[1] > 1 ){ fill_opacity = (double) (0.0039215*double_data[1]); }else{ fill_opacity = 0.0;} /* 0.0 - 1.0 */
11806 schaersvoo 3518
            break;
3519
 
3520
        case ONCLICK:
3521
        /*
3522
         @ onclick
3523
         @ keyword (no arguments required)
15111 schaersvoo 3524
         @ if the next object is clicked, its ''object onclick_or_drag sequence number`` in fly script is returned by <code>javascript:read_canvas();</code>
14086 bpr 3525
         @ onclick seqeuence numbering starts at ''0``, e.g. if there are 6 objects set onclick, the first onclick object will have id-number ''0``, the last id-number ''5``
15111 schaersvoo 3526
         @ line based objects will show an increase in line width<br />font based objects will show the text in ''bold`` when clicked.
14562 bpr 3527
         @ the click zone (accuracy) is determined by 2&times; the line width of the object
14071 bpr 3528
         @ onclick and <a href="#drag">drag x|y|xy</a> may be combined in a single flyscript (although a single object can <b>not</b> be onclick and draggable at the same time...)
11806 schaersvoo 3529
         @ note: not all objects may be set onclick
12107 schaersvoo 3530
         @%onclick%size 400,400%xrange -10,10%yrange -10,10%opacity 255,60%linewidth 3%onclick%fcircles blue,-3,3,1,1,2,2,3,1,1%onclick%ftriangles red,-4,-4,-4,0,-3,-2,0,0,4,0,2,-4%onclick%frects green,-4,4,-2,2,1,-1,3,-4
11806 schaersvoo 3531
        */
15111 schaersvoo 3532
            fprintf(js_include_file,"use_dragdrop_reply = true;");
11806 schaersvoo 3533
            onclick = 1;
15111 schaersvoo 3534
            use_dragstuff=2;
3535
            js_function[INTERACTIVE] = 1;
11806 schaersvoo 3536
 
3537
            break;
3538
 
3539
        case PARALLEL:
3540
        /*
3541
         @ parallel x1,y1,x2,y2,dx,dy,n,[colorname or #hexcolor]
15611 schaersvoo 3542
         @ affine transformations should be identical to flydraw
15613 schaersvoo 3543
         @ in case of <a href='#rotate'>rotation</a>  or <a href='#affine'>affine transformation </a>, command parallel will produce <em>n</em> individual segments, and these may be set ''onclick`` or ''drag xy`` individually.
3544
         @ in case of <em>no rotation or transformations</em> the lines can not be set ''onclick`` or ''drag xy``.
15629 bpr 3545
         @ note: a large number of parallel lines (large <em>n</em>) may result in a canvasdraw error (...simplify your script...it produces too many lines...)
15611 schaersvoo 3546
         @%parallel_click%size 400,400%xrange -10,10%yrange -10,10%parallel -5,5,-4,-5,0.25,0,40,red%rotate 45%onclick%parallel -5,5,-4,-5,0.25,0,40,blue
3547
         @%parallel%size 400,400%xrange -10,10%yrange -10,10%parallel -5,5,-4,-5,0.25,0,40,red
3548
        */
15613 schaersvoo 3549
            decimals = find_number_of_digits(precision);
15611 schaersvoo 3550
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
3551
 
15613 schaersvoo 3552
            if( use_rotate == TRUE || use_affine == TRUE ){
3553
                for( i = 0;i < 8; i++ ){
3554
                    switch(i){
3555
                        case 0: double_data[0] = get_real(infile,0);break; /* x1-values */
3556
                        case 1: double_data[1] = get_real(infile,0);break; /* y1-values */
3557
                        case 2: double_data[2] = get_real(infile,0);break; /* x2-values */
3558
                        case 3: double_data[3] = get_real(infile,0);break; /* y2-values */
3559
                        case 4: double_data[4] = get_real(infile,0);break; /* xv  */
3560
                        case 5: double_data[5] = get_real(infile,0);break; /* yv  */
3561
                        case 6: int_data[0] = (int) (get_real(infile,0));break; /* n  */
3562
                        case 7: stroke_color=get_color(infile,1);break;/* name or hex color */
3563
                        default: break;
3564
                    }
11806 schaersvoo 3565
                }
15613 schaersvoo 3566
                double_data[6] = double_data[0]; /* x1 */
15629 bpr 3567
                double_data[7] = double_data[1]; /* y1 */
15613 schaersvoo 3568
                double_data[8] = double_data[2]; /* x2 */
15629 bpr 3569
                double_data[9] = double_data[3]; /* y2 */
15613 schaersvoo 3570
                for(i = 0 ; i < int_data[0] ; i++){
15629 bpr 3571
                    double_data[0] = double_data[6] + i*double_data[4];
3572
                    double_data[1] = double_data[7] + i*double_data[5];
3573
                    double_data[2] = double_data[8] + i*double_data[4];
3574
                    double_data[3] = double_data[9] + i*double_data[5];
15613 schaersvoo 3575
                    if(use_rotate == TRUE ){ rotate(4,angle,rotationcenter,2);}
3576
                    if(use_affine == TRUE ){ transform(4,2);}
3577
                    string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3578
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3579
                    snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3580
                    add_to_buffer(tmp_buffer);
3581
                    if(onclick != 0){object_cnt++;}
3582
                }
3583
                dragstuff[4] = 1;
11806 schaersvoo 3584
            }
15613 schaersvoo 3585
            else  /* use the old parallel version: calculations in javascript */
3586
            {
3587
                for( i = 0;i < 8; i++ ){
3588
                    switch(i){
3589
                        case 0: double_data[0] = get_real(infile,0);break; /* x1-values */
3590
                        case 1: double_data[1] = get_real(infile,0);break; /* y1-values */
3591
                        case 2: double_data[2] = get_real(infile,0);break; /* x2-values */
3592
                        case 3: double_data[3] = get_real(infile,0);break; /* y2-values */
3593
                        case 4: double_data[4] = xmin + get_real(infile,0);break; /* xv  */
3594
                        case 5: double_data[5] = ymax + get_real(infile,0);break; /* yv  */
3595
                        case 6: int_data[0] = (int) (get_real(infile,0));break; /* n  */
3596
                        case 7: stroke_color=get_color(infile,1);/* name or hex color */
3597
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,11,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d,%d],[%d,%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],int_data[0],int_data[0],int_data[0],int_data[0],int_data[0],int_data[0],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3598
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3599
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,11,[%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f],[%d,%d,%d],[%d,%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],int_data[0],int_data[0],int_data[0],int_data[0],int_data[0],int_data[0],line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3600
                        add_to_buffer(tmp_buffer);
3601
                        if(onclick != 0){object_cnt++;}
3602
                        break;
3603
                        default: break;
3604
                    }
3605
                    dragstuff[11] = 1;
3606
                }
3607
            }
15111 schaersvoo 3608
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
15613 schaersvoo 3609
            reset();
11806 schaersvoo 3610
            break;
15629 bpr 3611
 
11806 schaersvoo 3612
        case PLOTSTEPS:
3613
            /*
3614
             @ plotsteps a_number
3615
             @ default 150
14066 bpr 3616
             @ only used for commands <a href="#curve">curve / plot</a> and <a href="#levelcurve">levelcurve</a>
11806 schaersvoo 3617
             @ use with care !
3618
            */
3619
            plot_steps = (int) (get_real(infile,1));
3620
            break;
13829 bpr 3621
 
11806 schaersvoo 3622
        case POINT:
3623
        /*
3624
        @ point x,y,color
15111 schaersvoo 3625
        @ draw a single point at (x;y) in color 'color'
14246 bpr 3626
        @ use command <code>linewidth int</code> to adjust size
11806 schaersvoo 3627
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
14071 bpr 3628
        @ will not resize on zooming (command <code>circle x,y,r,color</code> will resize on zooming)
14066 bpr 3629
        @ attention: in case of command <a href="#rotate">rotate angle</a> a point has rotation center (0:0) in x/y-range
12107 schaersvoo 3630
        @%point%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%linewidth 1%onclick%point 0,0,red%linewidth 2%onclick%point 1,1,blue%linewidth 3%onclick%point 3,3,green%linewidth 4%point 4,4,orange
11806 schaersvoo 3631
        */
3632
            for(i=0;i<3;i++){
3633
                switch(i){
3634
                    case 0: double_data[0] = get_real(infile,0);break; /* x */
3635
                    case 1: double_data[1] = get_real(infile,0);break; /* y */
3636
                    case 2: stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 3637
                    if(use_rotate == TRUE ){rotate(2,angle,rotationcenter,2);}
3638
                    if(use_affine == TRUE ){ transform(2,2);}
3639
                    if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
3640
 
11806 schaersvoo 3641
                    decimals = find_number_of_digits(precision);
15111 schaersvoo 3642
                    string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,2,[%.*f],[%.*f],[%.2f],[%d],%.2f,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],1.5*line_width,line_width,1.5*line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3643
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3644
                    snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,2,[%.*f],[%.*f],[%.2f],[%d],%.2f,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],1.5*line_width,line_width,1.5*line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3645
                    add_to_buffer(tmp_buffer);
3646
                    /* object_cnt++; */
3647
                    if(onclick != 0){object_cnt++;}
11806 schaersvoo 3648
                    break;
3649
                    default: break;
3650
                }
3651
            }
15111 schaersvoo 3652
            dragstuff[2] = 1;
3653
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 3654
            reset();
3655
            break;
3656
 
3657
        case POINTS:
3658
        /*
3659
        @ points color,x1,y1,x2,y2,...,x_n,y_n
15111 schaersvoo 3660
        @ draw multiple points at given coordinates in color 'color'
14246 bpr 3661
        @ use command <code>linewidth int</code> to adjust size
11806 schaersvoo 3662
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually (!)
14066 bpr 3663
        @ attention: in case of command <a href="#rotate">rotate angle</a> the points have rotation center (0:0) in x/y-range
12107 schaersvoo 3664
        @%points_1%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%snaptogrid%linewidth 1%drag xy%points red,0,0,1,1,2,2,3,3%drag x%points blue,0,1,1,2,2,3,3,4
3665
        @%points_2%size 400,400%xrange -10,10%yrange -10,10%opacity 255,255%linewidth 1%onclick%points red,0,0,1,1,2,2,3,3%onclick%points blue,0,1,1,2,2,3,3,4
11806 schaersvoo 3666
        */
8363 schaersvoo 3667
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
3668
            fill_color = stroke_color;
3669
            i=0;
3670
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 3671
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8363 schaersvoo 3672
                if(i%2 == 0 ){
3673
                    double_data[i] = get_real(infile,0); /* x */
3674
                }
3675
                else
3676
                {
3677
                    double_data[i] = get_real(infile,1); /* y */
3678
                }
3679
                i++;
3680
            }
15111 schaersvoo 3681
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
3682
            if(use_affine == TRUE ){ transform(i-1,2);}
3683
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
8363 schaersvoo 3684
            decimals = find_number_of_digits(precision);
11806 schaersvoo 3685
            for(c = 0 ; c < i-1 ; c = c+2){
15111 schaersvoo 3686
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,2,[%.*f],[%.*f],[%.2f],[%d],%.2f,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],1.5*line_width,line_width,1.5*line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3687
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3688
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,2,[%.*f],[%.*f],[%.2f],[%d],%.2f,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],1.5*line_width,line_width,1.5*line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3689
                add_to_buffer(tmp_buffer);
3690
                /* object_cnt++; */
3691
                if(onclick != 0){object_cnt++;}
8363 schaersvoo 3692
            }
15111 schaersvoo 3693
            dragstuff[2] = 1;
3694
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8363 schaersvoo 3695
            reset();
3696
            break;
11806 schaersvoo 3697
 
3698
        case POLY:
3699
        /*
3700
        @ poly color,x1,y1,x2,y2...x_n,y_n
3701
        @ polygon color,x1,y1,x2,y2...x_n,y_n
3702
        @ draw closed polygon
14071 bpr 3703
        @ use command ''fpoly`` to fill it or use keyword <a href='#filled'>filled</a>
11806 schaersvoo 3704
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 3705
        @%polygon_1%size 400,400%xrange -10,10%yrange -10,10%opacity 255,25%fillcolor orange%filled%linewidth 2%drag xy%snaptogrid%poly blue,0,0,1,3,3,1,2,4,-1,3
3706
        @%polygon_2%size 400,400%xrange -10,10%yrange -10,10%opacity 255,25%fillcolor orange%filled%linewidth 1%onclick%poly green,0,0,1,3,3,1,2,4,-1,3
11806 schaersvoo 3707
        */
3708
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
3709
            i=0;
3710
            c=0;
3711
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 3712
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11806 schaersvoo 3713
                for( c = 0 ; c < 2; c++){
3714
                    if(c == 0 ){
3715
                        double_data[i] = get_real(infile,0);
3716
                        i++;
3717
                    }
3718
                    else
3719
                    {
3720
                        double_data[i] = get_real(infile,1);
3721
                        i++;
3722
                    }
3723
                }
3724
            }
15111 schaersvoo 3725
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
3726
            if(use_affine == TRUE ){ transform(i-1,2);}
3727
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
3728
 
14066 bpr 3729
            /* draw path:  closed & optional filled */
15111 schaersvoo 3730
            decimals = find_number_of_digits(precision);
3731
            string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,i,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3732
            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3733
            snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,i,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3734
            add_to_buffer(tmp_buffer);
3735
            if(onclick != 0){object_cnt++;}
3736
            reset();
3737
            dragstuff[5] = 1;
3738
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 3739
            break;
3740
 
7614 schaersvoo 3741
        case POLYLINE:
3742
        /*
3743
        @ polyline color,x1,y1,x2,y2...x_n,y_n
10975 schaersvoo 3744
        @ brokenline color,x1,y1,x2,y2...x_n,y_n
3745
        @ path color,x1,y1,x2,y2...x_n,y_n
14086 bpr 3746
        @ remark: there is <b>no</b> command polylines | brokenlines | paths ... just use multiple commands <code>polyline, x1,y1,x2,y2...x_n,y_n</code>
3747
        @ remark: there are commands <code>userdraw path(s),color</code> and <code>userdraw polyline,color</code>... these are two entirely different things ! the path(s) userdraw commands may be used for freehand drawing(s)<br />the polyline userdraw command is analogue to this polyline|brokenline command
10975 schaersvoo 3748
        @ the command interconnects the points in the given order with a line (canvasdraw will not close the drawing: use command <a href="#poly">polygon</a> for this)
14071 bpr 3749
        @ use command <a href='#segments'>segments</a> for a series of segments. These may be clicked/dragged individually
9406 schaersvoo 3750
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 3751
        @%polyline_1%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag xy%snaptogrid%polyline blue,0,0,1,3,3,1,2,4,-1,3
3752
        @%polyline_2%size 400,400%xrange -10,10%yrange -10,10%linewidth 1%onclick%polyline green,0,0,1,3,3,1,2,4,-1,3
7614 schaersvoo 3753
        */
13829 bpr 3754
 
7614 schaersvoo 3755
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
3756
            i=0;
3757
            c=0;
3758
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 3759
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
7614 schaersvoo 3760
                for( c = 0 ; c < 2; c++){
3761
                    if(c == 0 ){
3762
                        double_data[i] = get_real(infile,0);
3763
                        i++;
3764
                    }
3765
                    else
3766
                    {
3767
                        double_data[i] = get_real(infile,1);
3768
                        i++;
3769
                    }
3770
                }
3771
            }
15111 schaersvoo 3772
 
3773
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
3774
            if(use_affine == TRUE ){ transform(i-1,2);}
3775
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
3776
 
14066 bpr 3777
            /* draw path: not closed & not filled */
7614 schaersvoo 3778
            decimals = find_number_of_digits(precision);
15111 schaersvoo 3779
            string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,i,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3780
            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3781
            snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,i,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3782
            add_to_buffer(tmp_buffer);
3783
            if(onclick != 0){object_cnt++;}
3784
            /* object_cnt++;*/
8379 schaersvoo 3785
            reset();
15111 schaersvoo 3786
            dragstuff[4] = 1;
3787
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 3788
            break;
11806 schaersvoo 3789
 
3790
        case POPUP:
3791
            /*
3792
            @ popup
3793
            @ keyword (no arguments)
14086 bpr 3794
            @ if fly-script starts with keyword ''popup``, the canvas image will be exclusively in a popup window (xsize px &times; ysize px)
14071 bpr 3795
            @ if keyword ''popup`` is used after command <code>size xsize,ysize</code> the canvas will also be displayed in a popup window with size ''xsize &times; ysize``
15309 schaersvoo 3796
            @ the popup window will be embedded into the page as a normal image, when ''status=done``; override with keyword <a href="#status">nostatus</a>
3797
            @ to access the read_canvas and read_dragdrop functions in a popup window, use:<br /> <code> function read_all(){<br /> if( typeof popup !== 'undefined' ){<br /> var fun1 = popup['read_dragdrop'+canvas_scripts[0]];<br /> var fun2 = popup['read_canvas'+canvas_scripts[0]];<br /> popup.close();<br /> return "dragdrop="+fun1()+"\\ncanvas="+fun2();<br /> };</code>
14071 bpr 3798
            @ to set a canvasdraw produced <a href="#clock">clock</a> or multiple clocks...use something like: <code>popup.set_clock(clock_id,type,diff);</code> as js-function for a button (or something else) in your document page.<br />where in <b>clock_id</b> starts with 0 for the first clock<br /><b>type</b> is 1 for Hours,2 for Minutes and 3 for Seconds<br /><b>diff</b> is the increment (positive or negative) per click
15313 schaersvoo 3799
            @%popup%popup%size 400,400%xrange -2*pi,2*pi%yrange -5,5%precision 0%axis%axisnumbering%opacity 100,190%grid 1,1,grey,2,2,5,black%linewidth 4%fillcolor blue%trange -pi,pi%animate%linewidth 1%precision 1000%jsplot red,4*cos(2*x),2*sin(3*x-pi/6)%strokecolor green%functionlabel H(x)=%userinput function
11806 schaersvoo 3800
            */
3801
            use_tooltip = 2;
3802
            break;
3803
 
3804
        case PROTRACTOR:
7614 schaersvoo 3805
        /*
11806 schaersvoo 3806
         @ protractor x,y,x_width,type,mode,use_a_scale
3807
         @ x,y are the initial location
14066 bpr 3808
         @ x_width: give the width in x-coordinate system (e.g. not in pixels !)
14246 bpr 3809
         @ type = 1: a triangle range 0 - 180<br />type = 2: a circle shape 0 - 360
14066 bpr 3810
         @ mode: use -1 to set the protractor interactive (mouse movement of protractor)<br />use mode = '0&deg; - 360&deg;' to set the protractor with a static angle of some value
11806 schaersvoo 3811
         @ if the value of the user_rotation angle is to be shown...use command <a href='#display'>display degree,color,fontsize</a><a href='#display'>display radian,color,fontsize</a>
14066 bpr 3812
         @ use_scale = 1: the protractor will have some scale values printed; use_scale=0 to disable
11806 schaersvoo 3813
         @ the rotating direction of the mouse around the protractor determines the clockwise/ counter clockwise rotation of the protractor...
14071 bpr 3814
         @ commands ''stroke_color | fill_color | linewidth | opacity | font_family`` will determine the looks of the protractor.
3815
         @ default replyformat: reply[0] = x;reply[1] = y;reply[2] = angle_in_radians<br />use command ''precision`` to set the reply precision.
11806 schaersvoo 3816
         @ if combined with a ruler, use replyformat = 32
14071 bpr 3817
         @ command <code>snap_to_grid</code> may be used to assist the pupil at placing the protractor
3818
         @ when using command ''zoom``, pay <b>attention</b> to the size and symmetry of your canvas<br />...to avoid a partial image, locate the start position near the center of the visual canvas<br />technical: the actual ''protractor`` is just a static generated image in a new canvas-memory<br />This image is only generated once, and a copy of its bitmap is translated & rotated onto the visible canvas.<br />That is the reason for the ''high-speed dragging and rotating``.<br />I've limited its size to xsize &times; ysize e.g. the same size as the visual canvas...
11806 schaersvoo 3819
         @ only one protractor allowed (for the time being)
15111 schaersvoo 3820
         @ usage: first left click on the protractor will activate dragging;<br />a second left click will activate rotating (just move mouse around)<br />a third click will freeze this position and the x/y-coordinate and angle in radians will be stored in reply(3)<br />a next click will restart this sequence...
15313 schaersvoo 3821
         @%protractor%size 400,400%xrange -5,10%yrange -5,10%hline 0,0,black%vline 0,0,black%fillcolor orange%opacity 255,40%protractor 2,-2,6,0,-1,1,1%mouse red,22
7614 schaersvoo 3822
        */
11806 schaersvoo 3823
            for( i = 0;i < 6; i++ ){
3824
                switch(i){
3825
                    case 0: double_data[0] = get_real(infile,0);break; /* x-center */
3826
                    case 1: double_data[1] = get_real(infile,0);break; /* y-center */
3827
                    case 2: double_data[2] = get_real(infile,0);break; /* x-width */
3828
                    case 3: int_data[0] = (int)(get_real(infile,0));break; /* type: 1==triangle 2 == circle */
3829
                    case 4: int_data[1] = (int)(get_real(infile,0));break; /* passive mode == 0; active mode == -1 */
3830
                    case 5: int_data[2] = (int)(get_real(infile,1)); /* use scale */
3831
                    decimals = find_number_of_digits(precision);
11821 schaersvoo 3832
                    if( int_data[1] < 0 ){ js_function[JS_FIND_ANGLE] = 1;}
15111 schaersvoo 3833
                    add_js_protractor(int_data[0],double_data[0],double_data[1],double_data[2],font_family,stroke_color,stroke_opacity,fill_color,fill_opacity,line_width,int_data[2],int_data[1],use_snap);
11806 schaersvoo 3834
 
14208 schaersvoo 3835
                    string_length = 1 + snprintf(NULL,0,";protractor%d(); ",canvas_root_id);
3836
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 3837
                    snprintf(tmp_buffer,string_length,";protractor%d(); ",canvas_root_id);
3838
                    add_to_buffer(tmp_buffer);
3839
                    reply_precision = precision;
3840
                    /* no reply from protractor if non-interactive */
3841
                    if( reply_format == 0 && int_data[1] == -1 ){reply_format = 30;}
15111 schaersvoo 3842
                    js_function[INTERACTIVE] = 1;
11806 schaersvoo 3843
                    break;
3844
                    default: break;
3845
                }
3846
            }
3847
            break;
3848
 
3849
        case PIXELS:
3850
        /*
3851
        @ pixels color,x1,y1,x2,y2,x3,y3...
3852
        @ draw rectangular "points" with diameter 1 pixel
3853
        @ pixels can <b>not</b> be dragged or clicked
14086 bpr 3854
        @ "pixelsize = 1" may be changed by command <code>pixelsize int</code>
12111 schaersvoo 3855
        @%pixels%size 400,400%opacity 255,255%pixelsize 5%pixels red,1,1,2,2,3,3,4,4,5,5,10,10,20,20,30,30,40,40,50,50,60,60,70,70,80,80,90,90,100,100,120,120,140,140,160,160,180,180,200,200,240,240,280,280,320,320,360,360,400,400%#NOTE pixelsize=5...otherwise you will not see them clearly...
11806 schaersvoo 3856
        */
15111 schaersvoo 3857
            js_function[DRAW_PIXELS] = 1;
11806 schaersvoo 3858
            stroke_color=get_color(infile,0);
7614 schaersvoo 3859
            i=0;
3860
            c=0;
3861
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 3862
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
7614 schaersvoo 3863
                for( c = 0 ; c < 2; c++){
3864
                    if(c == 0 ){
3865
                        double_data[i] = get_real(infile,0);
3866
                        i++;
3867
                    }
3868
                    else
3869
                    {
3870
                        double_data[i] = get_real(infile,1);
3871
                    }
3872
                }
3873
            }
15111 schaersvoo 3874
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
3875
            if(use_affine == TRUE ){ transform(i-1,2);}
11806 schaersvoo 3876
            decimals = find_number_of_digits(precision);
3877
            /*  *double_xy2js_array(double xy[],int len,int decimals) */
14208 schaersvoo 3878
            string_length = 1 + snprintf(NULL,0,  "draw_setpixel(%s,\"%s\",%.2f,%d);\n",double_xy2js_array(double_data,i,decimals),stroke_color,stroke_opacity,pixelsize);
3879
            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 3880
            snprintf(tmp_buffer,string_length,"draw_setpixel(%s,\"%s\",%.2f,%d);\n",double_xy2js_array(double_data,i,decimals),stroke_color,stroke_opacity,pixelsize);
3881
            add_to_buffer(tmp_buffer);
3882
            reset();
7614 schaersvoo 3883
            break;
11806 schaersvoo 3884
 
3885
        case PIXELSIZE:
7614 schaersvoo 3886
        /*
11806 schaersvoo 3887
        @ pixelsize int
3888
        @ in case you want to deviate from default pixelsize = 1(...)
12111 schaersvoo 3889
        @ pixelsize 100 is of course a filled rectangle 100px &times; 100px
7614 schaersvoo 3890
        */
11806 schaersvoo 3891
            pixelsize = (int) get_real(infile,1);
3892
        break;
8105 schaersvoo 3893
 
11806 schaersvoo 3894
        case PIECHART:
7614 schaersvoo 3895
        /*
11806 schaersvoo 3896
        @ piechart xc,yc,radius,'data+colorlist'
14066 bpr 3897
        @ (xc: yc) center of circle diagram in xrange/yrange
11806 schaersvoo 3898
        @ radius in pixels
3899
        @ data+color list: a colon separated list of raw data and corresponding colours<br />canvasdraw will not check validity of colornames...<br />in case of trouble look into javascript debugging of your browser
14066 bpr 3900
        @ example data+colorlist: 32:red:65:green:23:black:43:orange:43:yellow:14:white
11806 schaersvoo 3901
        @ the number of colors must match the number of data.
14066 bpr 3902
        @ if defined <a href='#fillpattern'>fillpattern some_pattern</a> then the pie pieces will be filled with the respective color and a fill pattern...<br />the pattern is cycled from the 4 pattern primitives: grid,hatch,diamond,dot,grid,hatch,diamond,dot,...
14086 bpr 3903
        @ use command <a href='#opacity'>opacity</a> to adjust fill_opacity of colours
3904
        @ use command <a href='#legend'>legend</a> to automatically create a legend using the same colours as pie segments; unicode allowed in legend; expect javascript trouble if the amount of ''pie-slices``, ''pie-colors``, ''pie-legend-titles`` do not match, a javascript console is your best friend...<br />use command ''fontfamily`` to set the font of the legend.
14066 bpr 3905
        @ use command <a href='centered'>centered</a> to place <a href='#legend'>legend</a> text inside the piechart. The text is using the same color as the pie segment: use (fill) opacity to enhance visibility.
12538 schaersvoo 3906
        @%piechart_1%size 300,200%xrange -10,10%yrange -10,10%legend cars:motorcycles:bicycles:trikes%opacity 255,120%piechart -5,0,75,22:red:8:blue:63:green:7:purple%
15313 schaersvoo 3907
        @%piechart_2%size 200,200%xrange -10,10%yrange -10,10%fontfamily 16px Arial%centered%legend cars:motorcycles:bicycles:trikes%opacity 255,60%piechart 0,0,100,22:red:8:blue:63:green:7:purple
7614 schaersvoo 3908
        */
15111 schaersvoo 3909
            js_function[DRAW_PIECHART] = 1;
7614 schaersvoo 3910
            for(i=0;i<5;i++){
3911
                switch(i){
11806 schaersvoo 3912
                    case 0: int_data[0] = x2px(get_real(infile,0)); break; /* x */
14032 schaersvoo 3913
                    case 1: int_data[1] = y2px(get_real(infile,0)); break; /* y  */
11806 schaersvoo 3914
                    case 2: int_data[2] = (int)(get_real(infile,1));break;/* radius*/
3915
                    case 3: temp = get_string(infile,1);
3916
                            if( strstr( temp, ":" ) != 0 ){ temp = str_replace(temp,":","\",\"");}
14208 schaersvoo 3917
                            string_length = 1 + snprintf(NULL,0,"draw_piechart(%d,%d,%d,%d,[\"%s\"],%.2f,%d,\"%s\",%d,%d);\n",PIECHART,int_data[0],int_data[1],int_data[2],temp,fill_opacity,legend_cnt,font_family,use_filled,use_offset);
3918
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
12538 schaersvoo 3919
                            snprintf(tmp_buffer,string_length,"draw_piechart(%d,%d,%d,%d,[\"%s\"],%.2f,%d,\"%s\",%d,%d);\n",PIECHART,int_data[0],int_data[1],int_data[2],temp,fill_opacity,legend_cnt,font_family,use_filled,use_offset);
11806 schaersvoo 3920
                            add_to_buffer(tmp_buffer);
3921
                           break;
3922
                    default:break;
7614 schaersvoo 3923
                }
3924
            }
11806 schaersvoo 3925
            reset();
7614 schaersvoo 3926
        break;
15773 schaersvoo 3927
 
3928
        case RANGE:
3929
        /*
3930
        @ range xmin,xmax,ymin,ymax
3931
        @ if not given: 0,xsize,0,ysize (eg in pixels)
3932
        */
3933
            for(i = 0 ; i<4; i++){
3934
                switch(i){
3935
                    case 0: xmin = get_real(infile,0);break;
3936
                    case 1: xmax = get_real(infile,1);break;
3937
                    case 2: ymin = get_real(infile,0);break;
3938
                    case 3: ymax = get_real(infile,1);break;
3939
                    default: break;
3940
                }
3941
            }
3942
            if(xmin >= xmax){canvas_error(" xrange is not OK: xmin &lt; xmax !");}
3943
            if(ymin >= ymax){canvas_error(" yrange is not OK: ymin &lt; ymax !");}
3944
            fprintf(js_include_file,"var xmin = %f;var xmax = %f;var ymin = %f;var ymax = %f;",xmin,xmax,ymin,ymax);
3945
            found_size_command = found_size_command+2;
3946
            break;
8304 schaersvoo 3947
 
15773 schaersvoo 3948
 
7614 schaersvoo 3949
        case RAYS:
3950
        /*
3951
         @ rays color,xc,yc,x1,y1,x2,y2,x3,y3...x_n,y_n
15111 schaersvoo 3952
         @ draw rays in color 'color' and center (xc:yc)
7786 schaersvoo 3953
         @ may be set draggable or onclick (every individual ray)
12111 schaersvoo 3954
         @%rays_onclick%size 400,400%xrange -10,10%yrange -10,10%onclick%rays blue,0,0,3,9,-3,5,-4,0,4,-9,7,9,-8,1,-1,-9
3955
         @%rays_drag_xy%size 400,400%xrange -10,10%yrange -10,10%drag xy%rays blue,0,0,3,9,-3,5,-4,0,4,-9,7,9,-8,1,-1,-9
7614 schaersvoo 3956
        */
3957
            stroke_color=get_color(infile,0);
7786 schaersvoo 3958
            fill_color = stroke_color;
3959
            double_data[0] = get_real(infile,0);/* xc */
3960
            double_data[1] = get_real(infile,0);/* yc */
3961
            i=2;
3962
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 3963
                if(i > MAX_INT - 1){canvas_error("in command rays too many points / rays in argument: repeat command multiple times to fit");}
7786 schaersvoo 3964
                if(i%2 == 0 ){
3965
                    double_data[i] = get_real(infile,0); /* x */
7614 schaersvoo 3966
                }
7786 schaersvoo 3967
                else
3968
                {
3969
                    double_data[i] = get_real(infile,1); /* y */
7614 schaersvoo 3970
                }
7786 schaersvoo 3971
            fprintf(js_include_file,"/* double_data[%d] = %f */\n",i,double_data[i]);
3972
                i++;
7614 schaersvoo 3973
            }
15111 schaersvoo 3974
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
3975
            if(use_affine == TRUE ){ transform(i-1,2);}
8224 bpr 3976
            if( i%2 != 0 ){canvas_error("in command rays: unpaired x or y value");}
3977
            decimals = find_number_of_digits(precision);
15111 schaersvoo 3978
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
7786 schaersvoo 3979
            for(c=2; c<i;c = c+2){
15111 schaersvoo 3980
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[c],decimals,double_data[1],decimals,double_data[c+1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3981
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
3982
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[c],decimals,double_data[1],decimals,double_data[c+1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
3983
                add_to_buffer(tmp_buffer);
3984
                /* object_cnt++; */
3985
                if(onclick != 0){object_cnt++;}
7614 schaersvoo 3986
            }
3987
            reset();
15111 schaersvoo 3988
            dragstuff[4] = 1;
3989
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 3990
            break;
8304 schaersvoo 3991
 
11806 schaersvoo 3992
        case RECT:
8386 schaersvoo 3993
        /*
11806 schaersvoo 3994
        @ rect x1,y1,x2,y2,color
14071 bpr 3995
        @ use command <code>frect x1,y1,x2,y2,color</code> for a filled rectangle
14246 bpr 3996
        @ use command/keyword <a href='#filled'>filled</a> before command <code>rect x1,y1,x2,y2,color</code>
9406 schaersvoo 3997
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
15541 schaersvoo 3998
        @ note: internally a rect is defined with 4 points. So when performing some affine transformation, other than translation, it will result in some morphing of the rectangle !<br/>this is a deviation of flydraw's rect&amp;affine
12111 schaersvoo 3999
        @%rect%size 400,400%xrange -10,10%yrange -10,10%rect 0,0,4,-4,green%rect 0,5,4,1,red
8386 schaersvoo 4000
        */
11806 schaersvoo 4001
            for(i=0;i<5;i++){
4002
                switch(i){
4003
                    case 0:double_data[0] = get_real(infile,0);break; /* x-values */
4004
                    case 1:double_data[1] = get_real(infile,0);break; /* y-values */
15111 schaersvoo 4005
                    case 2:double_data[4] = get_real(infile,0);break; /* x-values */
4006
                    case 3:double_data[5] = get_real(infile,0);break; /* y-values */
11806 schaersvoo 4007
                    case 4:stroke_color = get_color(infile,1);/* name or hex color */
8386 schaersvoo 4008
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 4009
                        double_data[2] = double_data[4];
4010
                        double_data[3] = double_data[1];
4011
                        double_data[6] = double_data[0];
4012
                        double_data[7] = double_data[5];
4013
                        /* using closed PATH (type=5) in stead of ctx.rect (type=1)!!!
4014
                            0,1         2,3
4015
                            6,7         4,5
4016
                            x = [0,2,4,6]
4017
                            y = [1,3,5,7]
4018
                        */
4019
                        if(use_rotate == TRUE ){rotate(8,angle,rotationcenter,2);}
4020
                        if(use_affine == TRUE ){ transform(8,2);}
4021
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
4022
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,[%.*f,%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f,%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[6],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],decimals,double_data[7],line_width,line_width,line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4023
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4024
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,[%.*f,%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f,%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[4],decimals,double_data[6],decimals,double_data[1],decimals,double_data[3],decimals,double_data[5],decimals,double_data[7],line_width,line_width,line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4025
                        add_to_buffer(tmp_buffer);
4026
                        if(onclick != 0){object_cnt++;}
4027
                        /* object_cnt++; */
8386 schaersvoo 4028
                        reset();
4029
                        break;
11806 schaersvoo 4030
                }
4031
            }
15111 schaersvoo 4032
            dragstuff[5] = 1;
4033
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 4034
            break;
8386 schaersvoo 4035
 
11806 schaersvoo 4036
        case RECTS:
8304 schaersvoo 4037
        /*
11806 schaersvoo 4038
        @ rects color,x1,y1,x2,y2,.....
14071 bpr 4039
        @ use command <code>frect color,x1,y1,x2,y2,.....</code> for a filled rectangle
14246 bpr 4040
        @ use command/keyword <a href='#filled'>filled</a> before command <code>rects color,x1,y1,x2,y2,....</code>
14071 bpr 4041
        @ use command <code>fillcolor color</code> before ''frects`` to set the fill colour.
9406 schaersvoo 4042
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually
12111 schaersvoo 4043
        @%rects%size 400,400%xrange -10,10%yrange -10,10%rects red,0,0,4,-4,0,5,4,1
8304 schaersvoo 4044
        */
15111 schaersvoo 4045
        /* using closed PATH (type=5) in stead of ctx.rect (type=1)!!!
4046
        0,1     2,3 .....8,9    10,11.....
4047
        6,7     4,5 .....14,15  12,13.....
4048
        x = [0,2,4,6,8,10,12,14...]
4049
        y = [1,3,5,7,9,11,13,15...]
4050
        */
8304 schaersvoo 4051
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
4052
            fill_color = stroke_color;
4053
            i=0;
4054
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 4055
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8304 schaersvoo 4056
                if(i%2 == 0 ){
4057
                    double_data[i] = get_real(infile,0); /* x */
4058
                }
4059
                else
4060
                {
4061
                    double_data[i] = get_real(infile,1); /* y */
4062
                }
4063
                i++;
4064
            }
15111 schaersvoo 4065
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
4066
            if(use_affine == TRUE ){ transform(i-1,2);}
4067
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
15116 bpr 4068
 
8304 schaersvoo 4069
            decimals = find_number_of_digits(precision);
4070
            for(c = 0 ; c < i-1 ; c = c+4){
15111 schaersvoo 4071
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,[%.*f,%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f,%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+2],decimals,double_data[c],decimals,double_data[c+1],decimals,double_data[c+1],decimals,double_data[c+3],decimals,double_data[c+3],line_width,line_width,line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4072
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4073
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,[%.*f,%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f,%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+2],decimals,double_data[c],decimals,double_data[c+1],decimals,double_data[c+1],decimals,double_data[c+3],decimals,double_data[c+3],line_width,line_width,line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4074
                add_to_buffer(tmp_buffer);
4075
                if(onclick != 0){object_cnt++;}
4076
                /* object_cnt++; */
8304 schaersvoo 4077
            }
15111 schaersvoo 4078
            dragstuff[5] = 1;
4079
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
4080
            if(use_rotate == TRUE ){
4081
             rotate(i-1,angle,rotationcenter,2);
4082
            }
8304 schaersvoo 4083
            reset();
4084
            break;
8386 schaersvoo 4085
 
11806 schaersvoo 4086
        case REPLYFORMAT:
7614 schaersvoo 4087
        /*
11806 schaersvoo 4088
        @ replyformat number
4089
        @ use number=-1 to deactivate the js-functions read_canvas() and read_dragdrop()
4090
        @ default values should be fine !
14071 bpr 4091
        @ use command <code>precision [0,1,10,100,1000,10000...]</code> before command ''replyformat`` to set the desired number of decimals in the student reply / drawing
14246 bpr 4092
        @ the last value for ''precision int`` will be used to calculate the reply coordinates, if needed (read_canvas();)
15651 reyssat 4093
        @ choose<ul><li>replyformat 1: <code>x1,x2,x3,x4....x_n<br />y1,y2,y3,y4....y_n</code> x/y in pixels</li><li>replyformat 2: <code> x1,x2,x3,x4....x_n<br /> y1,y2,y3,y4....y_n</code> x/y in xrange / yrange coordinate system</li><li>replyformat 3: <code> x1,x2,x3,x4....x_n<br /> y1,y2,y3,y4....y_n<br /> r1,r2,r3,r4....r_n</code> x/y in pixels, r in pixels</li><li>replyformat 4: <code> x1,x2,x3,x4....x_n<br /> y1,y2,y3,y4....y_n<br /> r1,r2,r3,r4....r_n</code> x/y in xrange / yrange coordinate system, r in pixels</li><li>replyformat 5: <code> Ax1,Ax2,Ax3,Ax4....Ax_n<br /> Ay1,Ay2,Ay3,Ay4....Ay_n<br /> Bx1,Bx2,Bx3,Bx4....Bx_n<br /> By1,By2,By3,By4....By_n<br /> Cx1,Cx2,Cx3,Cx4....Cx_n<br />  Cy1,Cy2,Cy3,Cy4....Cy_n<br />  ....<br />  Zx1,Zx2,Zx3,Zx4....Zx_n<br /> Zy1,Zy2,Zy3,Zy4....Zy_n</code> x/y in pixels</li><li>replyformat 6: <code> Ax1,Ax2,Ax3,Ax4....Ax_n<br /> Ay1,Ay2,Ay3,Ay4....Ay_n<br /> Bx1,Bx2,Bx3,Bx4....Bx_n<br /> By1,By2,By3,By4....By_n<br /> Cx1,Cx2,Cx3,Cx4....Cx_n<br /> Cy1,Cy2,Cy3,Cy4....Cy_n<br /> ....<br /> Zx1,Zx2,Zx3,Zx4....Zx_n<br /> Zy1,Zy2,Zy3,Zy4....Zy_n</code> x/y in xrange / yrange coordinate system</li><li>replyformat 7: <code> x1:y1,x2:y2,x3:y3,x4:y4...x_n:y_n</code> x/y in pixels</li><li>replyformat 8: <code> x1:y1,x2:y2,x3:y3,x4:y4...x_n:y_n</code> x/y in xrange / yrange coordinate system</li><li>replyformat 9: <code> x1:y1:r1,x2:y2:r2,x3:y3:r3,x4:y4:r3...x_n:y_n:r_n</code> x/y in pixels</li><li>replyformat 10: <code> x1:y1:r1,x2:y2:r2,x3:y3:r3,x4:y4:r3...x_n:y_n:r_n</code> x/y in xrange / yrange coordinate system</li><li>replyformat 11: <code> Ax1,Ay1,Ax2,Ay2<br />Bx1,By1,Bx2,By2<br /> Cx1,Cy1,Cx2,Cy2<br /> Dx1,Dy1,Dx2,Dy2<br /> ......<br /> Zx1,Zy1,Zx2,Zy2</code> x/y in xrange / yrange coordinate system</li><li>replyformat 12: <code> Ax1,Ay1,Ax2,Ay2<br /> Bx1,By1,Bx2,By2<br />Cx1,Cy1,Cx2,Cy2<br /> Dx1,Dy1,Dx2,Dy2<br /> ......<br /> Zx1,Zy1,Zx2,Zy2</code> x/y in pixels</li><li>replyformat 13: <code> Ax1:Ay1:Ax2:Ay2,Bx1:By1:Bx2:By2,Cx1:Cy1:Cx2:Cy2,Dx1:Dy1:Dx2:Dy2, ... ,Zx1:Zy1:Zx2:Zy2</code> x/y in xrange / yrange coordinate system</li><li>replyformat 14: <code> Ax1:Ay1:Ax2:Ay2,Bx1:By1:Bx2:By2....Zx1:Zy1:Zx2:Zy2</code> x/y in pixels</li><li>replyformat 15: reply from inputfields,textareas <code>reply1,reply2,reply3,...,reply_n</code></li><li>replyformat 16: mathml input fields</li><li>replyformat 17: read ''userdraw text,color`` only <code>x1,y1,text1 \\n x2,y2,text2...\\n...x_n,y_n,text_n </code> x/y-values are in xrange/yrange</li><li>replyformat 18: read_canvas() will read all interactive clocks in <code>H1:M1:S1,H2:M2:S2...Hn:Mn:Sn</code></li><li>replyformat 19: read_canvas() will return the object number of marked / clicked object (clock), analogue to (shape library) onclick command</li><li>replyformat 20: read_canvas() will reply "object_number:x:y" of external images: object_number of the first draggable external image in the fly-script starts with 0, e.g. expect something like 0:-5:4,1:6:2,2:-2:-5, the first image position is (-5:4), the second image position is (6:2) and the third image position is (-2:-5)         <li>replyformat 21: <code> (x1:y1) (x2:y2) ... (x_n:y_n)</code> verbatim coordinate return</li><li>replyformat 22: returns an array .... <code>reply[0]=x1 reply[1]=y1 reply[2]=x2 reply[3]=y2 ... reply[n-1]=x_n reply[n]=y_n</code> x/y in xrange / yrange coordinate system</li><li>replyformat 23: can only be used for drawtype ''polyline``. A typical click sequence in drawtype polyline is x1,y1,x2,y2,x2,y2,x3,y3,x3,y3.....,x(n-1),y(n-1),x(n-1),y(n-1),xn,yn --replyformat 23 gives <code>x1,y1,x2,y2,x3,y3,.....x(n-1),y(n-1),xn,yn</code>; multiple occurences will be filtered out. The reply will be in x-y-range (xreply \\n yreply)</li><li>replyformat 24: read all inputfield values: even those set ''readonly``</li><li>replyformat 25: <code> angle1,angle2;...;angle_n</code> will return the radius (one or many) of the user drawn circle segment in degrees</li><li>replyformat 26: <code> rad1,rad2,...rad_n</code> will return the radius (one or many) of the user drawn circle segment in radians</li><li>replyformat 27: return (only) userdraw inputfields <code>x1,y1,text1<br /> x2,y2,text2...<br />...x_n,y_n,textn</code></li><li>replyformat 28: <code> x1,y1,r1,x2,y2,r2...x_n,y_n,r_n</code> x / y / r in xrange / yrange coordinate system: may be used to reinput into command <code>circles color,x1,y1,r1,x2,y2,r2...x_n,y_n,r_n</code> will not return anything else (e.g. no inputfields, text etc)</li><li>replyformat 34: a special for OEF and dragging external images -included via commands <a href='#copy'>copy</a> or <a href='#copyresized'>copyresized</a> there will be an extra function <code>read_canvas_images()</code> for reading the coordinates of the images.<br />for now this is a unique function, e.g. there is no ''canvas id`` linked to it. (TO DO !!! 18/5/2019)</li></ul>
16718 schaersvoo 4094
        @ special replyformat = 100 ; will access to the raw javascript object data...use: read_dragdrop([property,property,...])<br />for example  properies like 'clicked','text', 'angle' , 'x'
11806 schaersvoo 4095
        */
4096
         reply_format = (int) get_real(infile,1);
4097
         reply_precision = precision;
4098
        break;
4099
 
4100
        case ROUNDRECT:
4101
        /*
4102
        @ roundrect x1,y1,x2,y2,radius in px,color
14071 bpr 4103
        @ use command <code>froundrect x1,y1,x2,y2,radius,color</code> for a filled rectangle
4104
        @ use command/keyword <a href='#filled'>filled</a> before command <code>roundrect x1,y1,x2,y2,radius,color</code>
4105
        @ fillcolor will be identical to ''color``
9406 schaersvoo 4106
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12111 schaersvoo 4107
        @%roundrect%size 400,400%xrange -10,10%yrange -10,10%roundrect 0,0,4,-4,20,green%roundrect 0,5,4,1,10,red
7614 schaersvoo 4108
        */
11806 schaersvoo 4109
            for(i=0;i<6;i++){
4110
                switch(i){
4111
                    case 0:double_data[0] = get_real(infile,0);break; /* x-values */
4112
                    case 1:double_data[1] = get_real(infile,0);break; /* y-values */
4113
                    case 2:double_data[2] = get_real(infile,0);break; /* x-values */
4114
                    case 3:double_data[3] = get_real(infile,0);break; /* y-values */
4115
                    case 4:int_data[0] = (int) (get_real(infile,0));break; /* radius value in pixels */
4116
                    case 5:stroke_color = get_color(infile,1);/* name or hex color */
15111 schaersvoo 4117
                        if(use_rotate == TRUE ){rotate(4,angle,rotationcenter,2);}
4118
                        if(use_affine == TRUE ){ transform(2,4);}
4119
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 4120
                        /* ensure no inverted roundrect is produced... */
4121
                        if( double_data[0] > double_data[2] ){double_data[4] = double_data[0];double_data[0] = double_data[2];double_data[2] = double_data[4];}
4122
                        if( double_data[3] > double_data[1] ){double_data[4] = double_data[1];double_data[1] = double_data[3];double_data[3] = double_data[4];}
7614 schaersvoo 4123
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 4124
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,6,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],int_data[0],int_data[0],int_data[0],int_data[0],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4125
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4126
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,6,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],int_data[0],int_data[0],int_data[0],int_data[0],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4127
                        add_to_buffer(tmp_buffer);
4128
                        if(onclick != 0){object_cnt++;}
4129
                        /* object_cnt++;*/
8379 schaersvoo 4130
                        reset();
11806 schaersvoo 4131
                    break;
4132
                }
4133
            }
15111 schaersvoo 4134
            dragstuff[6] = 1;
4135
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 4136
            break;
8386 schaersvoo 4137
 
11806 schaersvoo 4138
        case ROUNDRECTS:
8347 schaersvoo 4139
        /*
11806 schaersvoo 4140
        @ roundrects color,radius in px,x1,y1,x2,y2,x3,y3,x4,y4,....
14066 bpr 4141
        @ for filled roundrects use command/keyword <a href='#filled'>filled</a> before command
9406 schaersvoo 4142
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually
13935 bpr 4143
        @%roundrects%size 400,400%xrange -10,10%yrange -10,10%roundrects blue,5,0,0,4,-4,5,4,1,2
8347 schaersvoo 4144
        */
11806 schaersvoo 4145
 
8347 schaersvoo 4146
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
11806 schaersvoo 4147
            int_data[0] = (int) (get_real(infile,0)); /* radius value in pixels */
8347 schaersvoo 4148
            fill_color = stroke_color;
4149
            i=0;
4150
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 4151
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
8347 schaersvoo 4152
                if(i%2 == 0 ){
4153
                    double_data[i] = get_real(infile,0); /* x */
4154
                }
4155
                else
4156
                {
4157
                    double_data[i] = get_real(infile,1); /* y */
4158
                }
4159
                i++;
4160
            }
15111 schaersvoo 4161
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
4162
            if(use_affine == TRUE ){ transform(i-1,2);}
4163
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
8347 schaersvoo 4164
            decimals = find_number_of_digits(precision);
4165
            for(c = 0 ; c < i-1 ; c = c+4){
11806 schaersvoo 4166
                /* ensure no inverted roundrect is produced... */
4167
                if( double_data[c] > double_data[c+2] ){double_data[c+4] = double_data[c];double_data[c] = double_data[c+2];double_data[c+2] = double_data[c+4];}
4168
                if( double_data[c+3] > double_data[c+1] ){double_data[c+4] = double_data[c+1];double_data[c+1] = double_data[c+3];double_data[c+3] = double_data[c+4];}
15111 schaersvoo 4169
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,6,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],int_data[0],int_data[0],int_data[0],int_data[0],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4170
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4171
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,6,[%.*f,%.*f],[%.*f,%.*f],[%d,%d],[%d,%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],int_data[0],int_data[0],int_data[0],int_data[0],line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4172
                add_to_buffer(tmp_buffer);
4173
                if(onclick != 0){object_cnt++;}
4174
                /* object_cnt++; */
8347 schaersvoo 4175
            }
15111 schaersvoo 4176
            dragstuff[6] = 1;
4177
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
8347 schaersvoo 4178
            reset();
4179
            break;
8386 schaersvoo 4180
 
11806 schaersvoo 4181
        case RULER:
7614 schaersvoo 4182
        /*
14078 bpr 4183
        @ ruler x,y,x-width,y-height,mode
11806 schaersvoo 4184
        @ x,y are the initial location
14078 bpr 4185
        @ x-width, y-height are the ruler dimensions width &amp; height in xy-coordinate system
14071 bpr 4186
        @ the ruler scale is by definition the x-scale, set by command ''xrange``. For example: a ruler x-width of 6 will have a scale ranging from 0 to 6
14066 bpr 4187
        @ mode: use -1 to set the ruler interactive (eg mouse movement of ruler; drag &amp; rotate)<br />use mode = '0&deg; - 360&deg;' to set the ruler with a static angle of some value
11806 schaersvoo 4188
        @ if combined with a protractor, use replyformat = 32
4189
        @ only one ruler allowed (for the time being)
15651 reyssat 4190
        @ when using command ''zoom``, pay <b>attention</b> to the size and symmetry of your canvas to avoid a partial image, locate the start position near the center of the visual canvas; technical: the actual ''ruler`` is just a static generated image in a new canvas-memory. This image is only generated once, and a copy of its bitmap is translated & rotated onto the visible canvas. That is the reason for the ''high-speed dragging and rotating``. I have limited its size to xsize &times; ysize e.g. the same size as the visual canvas...
14247 bpr 4191
        @ usage: first left click on the ruler will activate dragging; a second left click will activate rotating (just move mouse around), a third click will freeze this position and the x/y-coordinate and angle in radians will be stored in reply(3), a next click will restart this sequence...
15313 schaersvoo 4192
        @%ruler_interactive%size 800,400%xrange -10,10%yrange -10,10%strokecolor blue%opacity 200,50%filled%fillcolor lightgrey%ruler -9,0,10,2,-1%display degree,blue,22
4193
        @%ruler_set_degree_45%size 800,400%xrange -10,10%yrange -10,10%strokecolor blue%opacity 200,50%filled%fillcolor lightgrey%ruler 0,0,10,2,45
4194
        @%ruler_set_degree_125%size 800,400%xrange -10,10%yrange -10,10%strokecolor blue%opacity 200,50%filled%fillcolor lightgrey%ruler 0,0,10,2,125
7614 schaersvoo 4195
        */
11806 schaersvoo 4196
            for( i = 0;i < 5; i++ ){
7614 schaersvoo 4197
                switch(i){
11806 schaersvoo 4198
                    case 0: double_data[0] = get_real(infile,0);break; /* x-center */
4199
                    case 1: double_data[1] = get_real(infile,0);break; /* y-center */
4200
                    case 2: double_data[2] = get_real(infile,0);break; /* x-width */
4201
                    case 3: double_data[3] = get_real(infile,0);break; /* y-width */
4202
                    case 4: int_data[0] = (int)(get_real(infile,1)); /* passive mode */
4203
                    decimals = find_number_of_digits(precision);
4204
                    if( int_data[0] < 0 ){
15116 bpr 4205
                      js_function[JS_FIND_ANGLE] = 1;
11806 schaersvoo 4206
                    }
15111 schaersvoo 4207
                    add_js_ruler(double_data[0],double_data[1],double_data[2],double_data[3],font_family,stroke_color,stroke_opacity,fill_color,fill_opacity,line_width,int_data[0],use_snap);
14208 schaersvoo 4208
                    string_length = 1 + snprintf(NULL,0,";ruler%d(); ",canvas_root_id);
4209
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 4210
                    snprintf(tmp_buffer,string_length,";ruler%d(); ",canvas_root_id);
4211
                    add_to_buffer(tmp_buffer);
4212
                    reply_precision = precision;
4213
                    /* no reply from ruler if non-interactive */
4214
                    if( reply_format == 0 && int_data[0] == -1 ){reply_format = 31;}
7614 schaersvoo 4215
                    break;
4216
                    default: break;
4217
                }
4218
            }
4219
            break;
8386 schaersvoo 4220
 
15111 schaersvoo 4221
        case RESETOFFSET:
4222
        /*
4223
         @ resetoffset
4224
         @ keyword ; use to restore text placement on the canvas to the real (x;y) coordinates of the left bottom corner of the text
4225
         @ may be active for commands <a href="#text">text</a> and <a href="#string">string</a> (e.g. objects in the drag/drop/onclick-librariy
4226
        */
4227
         use_offset = 0;
4228
         break;
11806 schaersvoo 4229
 
15111 schaersvoo 4230
        case ROTATE:
4231
        /*
4232
         @ rotate rotation_angle
4233
         @ angle in degrees
4234
         @ (only) the next object will be rotated is given angle
4235
         @ positive values rotate counter clockwise
4236
         @ attention: all objects will be rotated around their first point...<br /><code>rotate 45<br />triangle 1,1,5,1,3,4,red</code><br />will rotate 45 degrees around point (1:1)
4237
         @ if another rotation center is needed, use command <a href="#rotationcenter">rotationcenter xc,yc</a>.<br />to reset this rotationcenter, use keyword <a href="#killrotate">killrotate</a>
4238
         @ attention: rotate will mess up the interactivity of the rotated object <br />e.g. if combined with command <a href="#drag">drag xy</a> or keyword <a href="#onclick">onclick</a>: the mouse recognises the original -unrotated- coordinates of the object
4239
         @%rotate_1%size 400,400%xrange -10,10%yrange -10,10%fpoly yellow,0,0,4,3,2,5%rotate 45%fpoly violet,0,0,4,3,2,5%killrotate%rotate 90%fpoly violet,0,0,4,3,2,5%
4240
        */
4241
            use_rotate = TRUE;
4242
            angle = -1*(get_real(infile,1));/* -1: to be compatible with Flydraw... */
4243
            break;
4244
        case ROTATION_CENTER:
4245
        /*
4246
        @ rotationcenter x_center,y_center
4247
        @ define an rotation center in your x/y-coordinate system
4248
        @ wims will not check the validity of your input; use javascript console to debug any erors
4249
        @ if not defined a rotation will be around the first point of an object
4250
        @ to be used before command <a href="#rotate">rotate</a>
4251
        @ use <a href="#killrotate">killrotate</a> to reset to 'null' <br/>(eg. the rotationcenter of the next object(s) will be the first (x;y) coordinate of the object(s))
4252
        @ all other commands will use this rotation center, unless a <a href="#killrotation">killrotation</a> is given
4253
        @%rotationcenter%size 400,400%xrange -5,10%yrange -5,10%circles green,3,3,4.25%rotationcenter 3,3%opacity 255,80%fpoly yellow,0,0,4,3,2,5%rotate 45%fpoly violet,0,0,4,3,2,5%rotate 90%fpoly lightblue,0,0,4,3,2,5%rotate 135%fpoly blue,0,0,4,3,2,5%rotate 180%fpoly orange,0,0,4,3,2,5%rotate 225%fpoly green,0,0,4,3,2,5%rotate 270%fpoly cyan,0,0,4,3,2,5%rotate 315%fpoly purple,0,0,4,3,2,5%linewidth 3%point 3,3,red%mouse red,22
15633 bpr 4254
        @%rotationcenter_slider%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%fillcolor black%strokecolor yellow%rotationcenter 0,0%fontsize 28%slider 0,2*pi,400,30,angle degrees active, rotate...%plot red,5*sin(x)%filled%linewidth 1%opacity 150,50%fillcolor orange%angle 0,0,pi,0,0,blue
15111 schaersvoo 4255
        */
4256
            for( i = 0;i < 2; i++ ){
4257
                switch(i){
4258
                    case 0: rotationcenter[0] = get_real(infile,0);break; /* x-center */
4259
                    case 1: rotationcenter[1] = get_real(infile,1);break; /* y-center */
4260
                }
4261
                string_length = 1 + snprintf(NULL,0,"[%f,%f ]",rotationcenter[0],rotationcenter[1]);
4262
                check_string_length(string_length);
4263
                rotation_center = my_newmem(string_length);
4264
                snprintf(rotation_center,string_length,"[%f,%f]",rotationcenter[0],rotationcenter[1]);
4265
            }
4266
            break;
11806 schaersvoo 4267
 
4268
        case SIZE:
4269
            /*
4270
            @ size width,height
4271
            @ set canvas size in pixels
14066 bpr 4272
            @ mandatory first command (can only be preceded by keyword <a href="#popup">popup</a>)
14162 bpr 4273
            @ if xrange and/or yrange is not given the range will be set to pixels:<br />xrange 0,xsize yrange 0,ysize<br />note: lower left corner is origin (0:0) !!! this in contrast to flydraw
11806 schaersvoo 4274
            */
4275
            found_size_command = 1;
14066 bpr 4276
            /* using fabs: however "xsize == int": so "xsize = abs( (int) get_real(infile,0))" would be the idea... */
11806 schaersvoo 4277
            xsize = (int)(fabs(round(get_real(infile,0)))); /* just to be sure that sizes > 0 */
4278
            ysize = (int)(fabs(round(get_real(infile,1))));
4279
            /* sometimes we want xrange / yrange to be in pixels...without telling x/y-range */
4280
            xmin = 0;xmax = xsize;
4281
            ymin = 0;ymax = ysize;
4282
 
4283
/*
4284
 The sequence in which stuff is finally printed is important !!
4285
*/
4286
fprintf(stdout,"\n\
13970 obado 4287
<script>\n\
11806 schaersvoo 4288
/*<![CDATA[*/\n\
4289
if( typeof(wims_status) === 'undefined' ){ var wims_status = \"$status\";};\
4290
if( typeof(use_dragdrop_reply) === 'undefined' ){ var use_dragdrop_reply = false;};\
4291
if( typeof(canvas_scripts) === 'undefined' ){ var canvas_scripts = new Array();};\
4292
canvas_scripts.push(\"%d\");\n/*]]>*/\n</script>\n\
4293
",canvas_root_id);
4294
 
4295
/* style=\"display:block;position:relative;margin-left:auto;margin-right:auto;margin-bottom:4px;\" */
4296
if( use_tooltip != 2){
4297
 fprintf(stdout,"<!-- canvasdraw div  -->\n\
4298
<div tabindex=\"0\" id=\"canvas_div%d\" style=\"position:relative;width:%dpx;height:%dpx;margin-left:auto;margin-right:auto;\" oncontextmenu=\"return false;\"></div>\n\
4299
<!-- tooltip and input placeholder  -->\n\
4300
<div id=\"tooltip_placeholder_div%d\" style=\"text-align:center\"><span id=\"tooltip_placeholder%d\" style=\"display:none;\"></span></div>\
4301
<!-- include actual object code via include file -->\n\
15111 schaersvoo 4302
<script id=\"canvas_script%d\" src=\"%s\" defer></script>\n",canvas_root_id,xsize,ysize,canvas_root_id,canvas_root_id,canvas_root_id,getfile_cmd);
11806 schaersvoo 4303
}
4304
else
4305
{
4306
/*
14066 bpr 4307
set canvas_div invisible and do not include placeholder in main html page:
15111 schaersvoo 4308
the js-include will also be in a popup window...to be shown when wims &#36;status = done
11806 schaersvoo 4309
*/
4310
 fprintf(stdout,"<!-- canvasdraw div invisible  -->\n\
4311
<div tabindex=\"0\" id=\"canvas_div%d\" style=\"display:none;position:relative;width:%dpx;height:%dpx;margin-left:auto;margin-right:auto;\" ></div>\n\
4312
<div id=\"tooltip_placeholder_div%d\" style=\"display:none;position:relative;margin-left:auto;margin-right:auto;margin-bottom:4px;\"><span id=\"tooltip_placeholder%d\" style=\"display:none;\"></span></div>\
4313
<!-- include actual object code via include file -->\n\
13970 obado 4314
<script id=\"canvas_script%d\" src=\"%s\"></script>\n",canvas_root_id,xsize,ysize,canvas_root_id,canvas_root_id,canvas_root_id,getfile_cmd);
11806 schaersvoo 4315
}
4316
 
14071 bpr 4317
/* these must be global...it is all really very poor javascript:( */
15734 schaersvoo 4318
fprintf(js_include_file,"\n/* begin generated javascript include for canvasdraw version %s */\n\
11806 schaersvoo 4319
\"use strict\";\n\
15111 schaersvoo 4320
/* these variables and functions must be global */\
11806 schaersvoo 4321
var read_dragdrop%d;\
14038 schaersvoo 4322
var read_canvas_images;\
11806 schaersvoo 4323
var read_canvas%d;\
4324
var set_clock;\
4325
var clear_draw_area%d;\
4326
var update_draw_area%d;\
14038 schaersvoo 4327
var place_image_on_canvas;\
11806 schaersvoo 4328
var draw_boxplot;\
4329
var redraw_all%d;\
15111 schaersvoo 4330
var userdraw_primitive;\
4331
var wims_canvas_function%d = function(){\n/* common used stuff */\
4332
var userdraw_x = [];var userdraw_y = [];var userdraw_radius = [];\
11806 schaersvoo 4333
var xsize = %d;\
4334
var ysize = %d;\
4335
var precision = 100;\
4336
var canvas_div = document.getElementById(\"canvas_div%d\");\
4337
var create_canvas%d = function(canvas_type,size_x,size_y){var cnv;if(document.getElementById(\"wims_canvas%d\"+canvas_type)){ cnv = document.getElementById(\"wims_canvas%d\"+canvas_type);}else{try{ cnv = document.createElement(\"canvas\"); }catch(e){alert(\"Your browser does not support HTML5 CANVAS:GET FIREFOX !\");return;};canvas_div.appendChild(cnv);};cnv.width = size_x;cnv.height = size_y;cnv.style.top = 0;cnv.style.left = 0;cnv.style.position = \"absolute\";cnv.id = \"wims_canvas%d\"+canvas_type;return cnv;};\
4338
function findPosX(i){ var obj = i;var curleft = 0;if(obj.offsetParent){while(1){curleft += obj.offsetLeft;if(!obj.offsetParent){break;};obj = obj.offsetParent;};}else{if(obj.x){curleft += obj.x;};};return curleft;};function findPosY(i){var obj = i;var curtop = 0;if(obj.offsetParent){while(1){curtop += obj.offsetTop;if(!obj.offsetParent){break;};obj = obj.offsetParent;};}else{if(obj.y){curtop += obj.y;};};return curtop;};\
15111 schaersvoo 4339
function x2px(x){if(use_xlogscale == 0 ){return parseFloat((x)*xsize/(xmax - xmin) - xsize*xmin/(xmax - xmin));}else{var x_max = Math.log(xmax)/Math.log(xlogbase);var x_min = Math.log(xmin)/Math.log(xlogbase);var x_in = Math.log(x)/Math.log(xlogbase);return x_in*xsize/(x_max - x_min) - xsize*x_min/(x_max - x_min);};};\
11806 schaersvoo 4340
function px2x(px){if(use_xlogscale == 0 ){return parseFloat(px*(xmax - xmin)/xsize + xmin);}else{var x_max = Math.log(xmax)/Math.log(xlogbase);var x_min = Math.log(xmin)/Math.log(xlogbase);var x_out = x_min +px*(x_max - x_min)/(xsize);return Math.pow(xlogbase,x_out);};};\
4341
function px2y(py){if(use_ylogscale == 0 ){return parseFloat(ymax - py*(ymax - ymin)/ysize);}else{var y_max = Math.log(ymax)/Math.log(ylogbase);var y_min = Math.log(ymin)/Math.log(ylogbase);var y_out = y_max +py*(y_min - y_max)/(ysize);return Math.pow(ylogbase,y_out);};};\
15111 schaersvoo 4342
function y2px(y){if(use_ylogscale == 0){return parseFloat(-1*(y)*ysize/(ymax - ymin) + ymax*ysize/(ymax - ymin));}else{var y_max = Math.log(ymax)/Math.log(ylogbase);var y_min = Math.log(ymin)/Math.log(ylogbase);var y_in = Math.log(y)/Math.log(ylogbase);return (y_max - y_in)*ysize/(y_max - y_min);};};\
11806 schaersvoo 4343
function scale_x_radius(rx){return rx*xsize/(xmax - xmin);};\
4344
function scale_y_radius(ry){return ry*ysize/(ymax - ymin);};\
4345
function distance(x1,y1,x2,y2){return Math.sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) );};\
4346
function distance_to_line (r,q,x,y){var c = (y) - (-1/r)*(x);var xs = r*(c - q)/(r*r+1);var ys = (r)*(xs)+(q);return parseInt(Math.sqrt( (xs-x)*(xs-x) + (ys-y)*(ys-y) ));};\
4347
function move(obj,dx,dy){for(var p = 0 ; p < obj.x.length; p++){obj.x[p] = obj.x[p] + dx;obj.y[p] = obj.y[p] + dy;};return obj;};\
15111 schaersvoo 4348
var snap_x = 1;var snap_y = 1;\
11806 schaersvoo 4349
function snap_to_x(x){return x2px(snap_x*(Math.round((px2x(x))/snap_x)));};\
11890 schaersvoo 4350
function snap_to_y(y){return y2px(snap_y*(Math.round((px2y(y))/snap_y)));};\
15111 schaersvoo 4351
function multisnap_check(x,y,snap){switch(snap){case 1:return [snap_to_x(x),snap_to_y(y)];break;case 2:return [snap_to_x(x),y];break;case 3:return [x,snap_to_y(y)];break;case 4:return snap_to_points(x,y);break;case 5: return snap_to_fun(x,y);break;default: return [x,y];break;};};\
11806 schaersvoo 4352
var xlogbase = 10;\
4353
var ylogbase = 10;\
4354
var use_xlogscale = 0;\
4355
var use_ylogscale = 0;\
11891 schaersvoo 4356
var x_strings = {};var x_strings_up = [];\
11806 schaersvoo 4357
var y_strings = null;\
4358
var use_jsmath = 0;\
4359
var xstart = 0;\
4360
var ystart = 0;\
4361
var unit_x=\" \";\
4362
var unit_y=\" \";\
15111 schaersvoo 4363
var dragdrop_reply = [];\
15734 schaersvoo 4364
var external_canvas = create_canvas%d(%d,xsize,ysize);",VERSION,canvas_root_id,canvas_root_id,canvas_root_id,canvas_root_id,canvas_root_id,canvas_root_id,xsize,ysize,canvas_root_id,canvas_root_id,canvas_root_id,canvas_root_id,canvas_root_id,canvas_root_id,EXTERNAL_IMAGE_CANVAS);
15111 schaersvoo 4365
/* var xstart,ystart are normally 0 : in case of sgraph they have the 'jump' in the graph */
11806 schaersvoo 4366
            break;
4367
 
4368
 
4369
        case SEGMENT:
7614 schaersvoo 4370
        /*
11806 schaersvoo 4371
        @ segment x1,y1,x2,y2,color
15715 schaersvoo 4372
        @ alternative: seg
14071 bpr 4373
        @ draw a line segment between points (x1:y1)--(x2:y2) in color ''color``
11806 schaersvoo 4374
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
14061 schaersvoo 4375
        @%segment_onclick%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%onclick%segment 1,1,-9,3,green
4376
        @%segment_drag_y%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag y%segment 1,1,-9,3,green
7614 schaersvoo 4377
        */
11806 schaersvoo 4378
            for(i=0;i<5;i++) {
7614 schaersvoo 4379
                switch(i){
11806 schaersvoo 4380
                    case 0: double_data[0]= get_real(infile,0);break; /* x1-values */
4381
                    case 1: double_data[1]= get_real(infile,0);break; /* y1-values */
4382
                    case 2: double_data[2]= get_real(infile,0);break; /* x2-values */
4383
                    case 3: double_data[3]= get_real(infile,0);break; /* y2-values */
4384
                    case 4: stroke_color=get_color(infile,1);/* name or hex color */
15111 schaersvoo 4385
                        if(use_rotate == TRUE ){rotate(4,angle,rotationcenter,2);}
4386
                        if(use_affine == TRUE ){ transform(4,2);}
4387
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 4388
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 4389
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4390
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4391
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,double_data[1],decimals,double_data[3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4392
                        add_to_buffer(tmp_buffer);
4393
                        if(onclick != 0){object_cnt++;}
4394
                        /* object_cnt++; */
11806 schaersvoo 4395
                        reset();
4396
                        break;
4397
                    default: break;
7614 schaersvoo 4398
                }
4399
            }
15111 schaersvoo 4400
            dragstuff[4] = 1;
4401
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 4402
            break;
10953 bpr 4403
 
11806 schaersvoo 4404
        case SEGMENTS:
9213 schaersvoo 4405
        /*
11806 schaersvoo 4406
        @ segments color,x1,y1,x2,y2,...,x_n,y_n
15715 schaersvoo 4407
        @ alternative: segs
14071 bpr 4408
        @ draw multiple segments between points (x1:y1)--(x2:y2).....and... (x_n-1:y_n-1)--(x_n:y_n) in color ''color``
15318 bpr 4409
        @ use command ''linewidth int`` to adjust size
11806 schaersvoo 4410
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually (!)
12111 schaersvoo 4411
        @%segments_onclick%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%onclick%segments green,1,1,3,3,0,0,-3,3,1,1,4,-1,-5,5,-3,-1
4412
        @%segments_drag_y%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag y%segments green,1,1,3,3,0,0,-3,3,1,1,4,-1,-5,5,-3,-1
9213 schaersvoo 4413
        */
11806 schaersvoo 4414
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
4415
            fill_color = stroke_color;
4416
            i=0;
4417
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 4418
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11806 schaersvoo 4419
                if(i%2 == 0 ){
4420
                    double_data[i] = get_real(infile,0); /* x */
4421
                }
4422
                else
4423
                {
4424
                    double_data[i] = get_real(infile,1); /* y */
4425
                }
4426
                i++;
4427
            }
15111 schaersvoo 4428
            if(use_rotate == TRUE ){rotate(i-1,angle,rotationcenter,2);}
4429
            if(use_affine == TRUE ){ transform(i-1,2);}
4430
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 4431
            decimals = find_number_of_digits(precision);
4432
            for(c = 0 ; c < i-1 ; c = c+4){
15111 schaersvoo 4433
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4434
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4435
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[30,30],[30,30],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+2],decimals,double_data[c+1],decimals,double_data[c+3],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4436
                add_to_buffer(tmp_buffer);
4437
                if(onclick != 0){object_cnt++;}
4438
                /* object_cnt++;*/
11806 schaersvoo 4439
            }
4440
            reset();
15111 schaersvoo 4441
            dragstuff[4] = 1;
4442
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
9213 schaersvoo 4443
            break;
11806 schaersvoo 4444
 
4445
        case SETLIMITS:
9213 schaersvoo 4446
        /*
11806 schaersvoo 4447
            @ setlimits
14071 bpr 4448
            @ keyword: if set, it will produce 4 inputfields for ''xmin,xmax,ymin,ymax`` and an ''ok`` button
11806 schaersvoo 4449
            @ may be used for inputfield based zooming / panning
15111 schaersvoo 4450
            @ may be styled using command <a href="#css">css</a>
14071 bpr 4451
            @ use commands <a href="#xlabel">xlabel / ylabel</a> to change text from xmin to ''xlabel`` etc
14247 bpr 4452
            @ note: the input value will not be checked on validity
12107 schaersvoo 4453
            @%setlimits%size 400,400%xrange -10,10%yrange -10,10%precision 1%xlabel T%ylabel H%axis%axisnumbering%grid 2,2,grey,2,2,5,grey%precision 100%multistrokecolors red,green,blue,orange%multilinewidth 1,1,2,2%multistrokeopacity 0.6,0.7,0.8,0.9%jsplot red,1/x,-1,x,1/(x-3),1/(x+3)%setlimits
9213 schaersvoo 4454
        */
15111 schaersvoo 4455
            js_function[JS_SAFE_EVAL] = 1;
4456
            js_function[JSPLOT_AND_ZOOM] = 1;
4457
            add_setlimits(font_size,css_class);
11806 schaersvoo 4458
            done = TRUE;
9213 schaersvoo 4459
            break;
11806 schaersvoo 4460
 
4461
        case SETPIXEL:
9213 schaersvoo 4462
        /*
11806 schaersvoo 4463
        @ setpixel x,y,color
4464
        @ A rectangular "point" with diameter 1 pixel centered at (x:y) in xrange / yrange
4465
        @ pixels can <b>not</b> be dragged or clicked
14086 bpr 4466
        @ "pixelsize = 1" may be changed by command <code>pixelsize int</code>
12107 schaersvoo 4467
        @%setpixel%size 400,400%xrange -10,10%yrange -10,10%setpixel 1,1,red%pixelsize 2%setpixel 2,2,green%pixelsize 3%setpixel 3,3,blue%
9213 schaersvoo 4468
        */
15111 schaersvoo 4469
            js_function[DRAW_PIXELS] = 1;
11806 schaersvoo 4470
            for(i=0;i<3;i++){
4471
                switch(i){
4472
                    case 0: double_data[0] = get_real(infile,0); break; /* x */
14162 bpr 4473
                    case 1: double_data[1] = get_real(infile,0); break; /* y */
11806 schaersvoo 4474
                    case 2: stroke_color = get_color(infile,1);
14208 schaersvoo 4475
                           string_length = 1 + snprintf(NULL,0,"draw_setpixel([%f],[%f],\"%s\",%.2f,%d);\n",double_data[0],double_data[1],stroke_color,stroke_opacity,pixelsize);
4476
                           check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 4477
                           snprintf(tmp_buffer,string_length,"draw_setpixel([%f],[%f],\"%s\",%.2f,%d);\n",double_data[0],double_data[1],stroke_color,stroke_opacity,pixelsize);
4478
                           add_to_buffer(tmp_buffer);
4479
                           break;
4480
                    default:break;
4481
                }
4482
            }
4483
            reset();
4484
        break;
4485
        case SLIDER:
9213 schaersvoo 4486
        /*
14071 bpr 4487
        @ slider start_value,end_value,width px,height px,type,label
15655 schaersvoo 4488
        @ type may be: ''x,y,angle``
4489
        @ if a slider value display is desired, use for argument ''type``: ''x display``, ''y display``, ''angle radian``, ''angle degree``
15651 reyssat 4490
        @ is the slider is used for animation, add keyword ''anim`` or ''animate`` to ''type``; for now only one animated slider may be used...
4491
        @ default behaviour is: click on an object to use its slider(s)<br/>to use sliders without clicking on an object, use for ''type`` keyword ''active``<br />eg: <code>slider -2*pi,2*pi,300,30,angle degree active,Rotate</code>
14071 bpr 4492
        @ if a unit (or something like that...) for x/y-value display is needed, use commands ''xunit`` and / or ''yunit``
15655 schaersvoo 4493
        @ if the translation should be performed using a function, use for type: ''x function``, ''y function``<br />use commands ''sliderfunction_x`` and/or ''sliderfunction_y`` before the slider command to define the functions. Example:<code>sliderfunction_x x^2<br />sliderfunction_y y^2<br />slider -5,5,100,100,xy function,Some_Text<br />...some stuff to slide<br />killslider<br />sliderfunction_x x^2-2<br />slider -15,15,100,10,x function,Some_Other_Text<br />...more stuff to slide<br />killslider... etc</code>
14071 bpr 4494
        @ use command ''slider`` before draggable/clickable objects.
15633 bpr 4495
        @ drag and drop may be combined with rotation slider<br />for example an arrow rotated by a slider may be placed anywhere (drag&drop)<br /><code>size 300,300<br />xrange -5,5<br />yrange -5,5<br />grid 1,1,grey<br />linewidth 3<br />drag xy<br />fillcolor orange<br />strokecolor blue<br />slider 0,2*pi,250,30,angle degrees,Rotate arrow<br />arrow 2,2,5,5,8,red</code><br />note: except a combination 'drag' and 'slider' for command 'latex, katex, mathml, html, obabel'
14071 bpr 4496
        @ no slider for a math function, these can be traced using command ''trace_jscurve some_function_in_x``
4497
        @ a slider will affect all draggable objects after the ''slider`` command...<br />and can be used to group translate / rotate several objects...<br />until a next ''slider`` or keyword ''killslider``
11806 schaersvoo 4498
        @ amount of sliders is not limited.
14208 schaersvoo 4499
        @ a slider can not be set ''snaptogrid`` or other ''snapto*`` : you may always use 'drag xy' in combination with the slider objects
14071 bpr 4500
        @ <code>javascript:read_dragdrop();</code> will return an array with ''object_number:slider_value``
11806 schaersvoo 4501
        @ every draggable object may have its own slider (no limit in amount of sliders)
15657 schaersvoo 4502
        @ label: some slider text. <br />Note: on <a target='new' href='https://katex.org'>KaTeX</a> enabled wims, TeX produced by wims command ''mathmlmath``, is allowed.
15111 schaersvoo 4503
        @ use fillcolor for slider controlkey
11806 schaersvoo 4504
        @ use strokecolor for slider bar
4505
        @ use fontfamily / fontcolor to set used fonts
4506
        @ use opacity (only fill opacity will be used) to set transparency
14071 bpr 4507
        @ the slider canvas will be added to the ''tooltip div``: so incompatible with command tooltip ; setlimits etc
15655 schaersvoo 4508
        @%slider_x_y_angle%%size 300,300%xrange -5,5%yrange -5,5%grid 1,1,grey%linewidth 3%fillcolor orange%strokecolor blue%slider 0,2*pi,300,30,angle active degrees,Rotate arrow%arrow 0,0,4.5,0,8,red%killslider%opacity 200,100%slider -2,2,300,30,x active,move blue rectangle%frect -4,4,1,-1,blue%killslider%linewidth 2%slider -2,2,300,30,y,move green rectangle%frect -4,4,1,-1,green
15633 bpr 4509
        @%slider_click%%size 300,300%xrange -6,6%yrange -6,6%grid 1,1,grey%linewidth 2%slider 0,2*pi,300,28,angle degree, name%fillcolor lightgreen%#CLICK ON THE OBJECTS TO ACTIVATE%opacity 255,30%ftriangle 2,2,-2,2,0,0,red%ftriangle -2,2,-2,-2,0,0,blue%ftriangle -2,-2,2,-2,0,0,green%ftriangle 2,-2,2,2,0,0,orange%rotationcenter 0,0%frect -2,2,2,-2,black
4510
        @%slider_active%%size 300,300%xrange -6,6%yrange -6,6%grid 1,1,grey%linewidth 1%slider 0,2*pi,300,28,angle degree active, name%fillcolor lightgreen%opacity 255,30%ftriangle 2,2,-2,2,0,0,red%ftriangle -2,2,-2,-2,0,0,blue%ftriangle -2,-2,2,-2,0,0,green%ftriangle 2,-2,2,2,0,0,orange%rotationcenter 0,0%frect -2,2,2,-2,black
4511
        @%slider_animate%%size 300,300%xrange -6,6%yrange -6,6%grid 1,1,grey%linewidth 1%slider 0,2*pi,300,28,angle anim active, name%fillcolor lightgreen%opacity 255,30%ftriangle 2,2,-2,2,0,0,red%ftriangle -2,2,-2,-2,0,0,blue%ftriangle -2,-2,2,-2,0,0,green%ftriangle 2,-2,2,2,0,0,orange%rotationcenter 0,0%frect -2,2,2,-2,black
15654 bpr 4512
        @%slider_html_image%%size 400,400%xrange -6,6%yrange -6,6%bgcolor white%grid 1,1,grey%linewidth 1%slider 0,2*pi,300,28,angle active degree,%centered%html 0,0,<img src="gifs/domains/sciences/flasks.svg" width="100px" height="100px" />
9213 schaersvoo 4513
        */
16681 schaersvoo 4514
            js_function[INTERACTIVE] = 1;
14208 schaersvoo 4515
            int_data[2] = 0; /* --> show_display = 0; */
11806 schaersvoo 4516
            for(i=0; i<6 ; i++){
4517
                switch(i){
4518
                    case 0: double_data[0] = get_real(infile,0);break; /* start value */
4519
                    case 1: double_data[1] = get_real(infile,0);break; /* end value */
4520
                    case 2: int_data[0] = (int)(get_real(infile,0));break; /* width */
4521
                    case 3: int_data[1] = (int)(get_real(infile,0));break; /* height */
15655 schaersvoo 4522
                    case 4: temp = get_string_argument(infile,0); /* type: x,y,angle */
15111 schaersvoo 4523
                            if( strstr(temp,"displ")!=0 ||  strstr(temp,"deg")!=0 ||  strstr(temp,"rad")!=0 ){int_data[5] = 1; }else{int_data[5] = 0;}
4524
                            if(strstr(temp,"anim")!= 0){int_data[3] = 1;}else{int_data[3] = 0;}
4525
                            if(strstr(temp,"active")!= 0){onclick = 4;}else{onclick=0;}
14208 schaersvoo 4526
                            if(strstr(temp,"angle")!= 0){slider_type="R";if( strstr(temp,"rad")!= 0){int_data[2] = 3;}if( strstr(temp,"deg")!= 0){int_data[2] = 4;}}
11806 schaersvoo 4527
                            else
14208 schaersvoo 4528
                            if(strstr(temp,"xy") != 0){slider_type = "XY";if( strstr(temp,"disp")!= 0){int_data[2] = 5;}}
11806 schaersvoo 4529
                            else
14208 schaersvoo 4530
                            if(strstr(temp,"x") != 0){slider_type = "X";if( strstr(temp,"disp")!= 0){int_data[2] = 1;}}
4531
                            else
4532
                            if(strstr(temp,"y") != 0){slider_type = "Y";if( strstr(temp,"disp")!= 0){int_data[2] = 2;}}
4533
                            else
15655 schaersvoo 4534
                            canvas_error("slider can be of type: x,y,angle,fun_x:fun_y");
14208 schaersvoo 4535
                            break;
15655 schaersvoo 4536
                    case 5: temp = get_string_argument(infile,1); if( strstr(temp,"\"") != 0 ){ temp = str_replace(temp,"\""," ");}
4537
                    /* slider label : in case of latex/mathmlmath we need to remove the extra " */
4538
                    break;
11806 schaersvoo 4539
                }
4540
             }
15111 schaersvoo 4541
 
4542
            if(use_slider == -1 ){ /* add once */
4543
             add_slider(int_data[3]);
4544
             if(int_data[5] == 1 ){add_slider_display(precision,font_size,font_color,stroke_opacity);}
14208 schaersvoo 4545
            }
15111 schaersvoo 4546
            use_slider++;
4547
            if(int_data[3] == 0){\
4548
             string_length = 1 + snprintf(NULL,0,"slider%d = new slider(\"%s\",\"%s\",%d,%d,%d,%d,\"%s\",\"%s\",[%f,%f],%f,%f,'%s',%d);\n",use_slider,slider_type,temp,use_slider,int_data[0],int_data[1],line_width,fill_color,stroke_color,fill_opacity,stroke_opacity,double_data[0],double_data[1],font_family,int_data[2]);
4549
             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4550
             snprintf(tmp_buffer,string_length  ,"slider%d = new slider(\"%s\",\"%s\",%d,%d,%d,%d,\"%s\",\"%s\",[%f,%f],%f,%f,'%s',%d);\n",use_slider,slider_type,temp,use_slider,int_data[0],int_data[1],line_width,fill_color,stroke_color,fill_opacity,stroke_opacity,double_data[0],double_data[1],font_family,int_data[2]);
4551
            }else{
4552
             string_length = 1 + snprintf(NULL,0,"slider%d = new animslider(\"%s\",\"%s\",%d,%d,%d,%d,\"%s\",\"%s\",[%f,%f],%f,%f,'%s',%d);\n",use_slider,slider_type,temp,use_slider,int_data[0],int_data[1],line_width,fill_color,stroke_color,fill_opacity,stroke_opacity,double_data[0],double_data[1],font_family,int_data[2]);
4553
             add_slider(int_data[3]);/* use only once !! */
4554
             check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4555
             snprintf(tmp_buffer,string_length  ,"slider%d = new animslider(\"%s\",\"%s\",%d,%d,%d,%d,\"%s\",\"%s\",[%f,%f],%f,%f,'%s',%d);\n",use_slider,slider_type,temp,use_slider,int_data[0],int_data[1],line_width,fill_color,stroke_color,fill_opacity,stroke_opacity,double_data[0],double_data[1],font_family,int_data[2]);
4556
            }
14208 schaersvoo 4557
            add_to_buffer(tmp_buffer);
15111 schaersvoo 4558
            fprintf(js_include_file,"var slider%d;",use_slider);
4559
            use_dragstuff = 2;
4560
//          dragstuff[22] = 1; /* dragstuff switch no 22 is a slider...*/
4561
            if(onclick != 4 ){ js_function[INTERACTIVE] = 1; }/* no need to click on object to use slider... */
4562
            //js_function[JS_ROTATE_MOUSE] = 1;
4563
            c = 0;
4564
            for(i=last_slider;i<=use_slider;i++){
4565
             int_data[c] = i; c++;
4566
            }
4567
            my_sliders = data2js_array(int_data,use_slider - last_slider+1);
14208 schaersvoo 4568
        break;
4569
 
14246 bpr 4570
        case SLIDER_X:
15731 obado 4571
        /* TEMPORARILY REMOVED
15732 obado 4572
         # sliderfunction_x some_function_in_x
4573
         # default value "x"
4574
         # the x-value of the slider object will be calculated with this function.
4575
         # default is the x-slider value itself
4576
         # only used by command ''slider``
4577
         # define before a slider command !
9213 schaersvoo 4578
        */
15111 schaersvoo 4579
         /* slider_function_x = get_string(infile,1);*/
11806 schaersvoo 4580
        break;
4581
        case SLIDER_Y:
15111 schaersvoo 4582
         /*slider_function_y = get_string(infile,1);*/
15731 obado 4583
         /* TEMPORARILY REMOVED
15732 obado 4584
         # sliderfunction_y some_function_in_y
4585
         # default value "y"
4586
         # the y-value of the slider object(s) will be calculated with this function.
4587
         # only used by command ''slider``
4588
         # define before a slider command !
11806 schaersvoo 4589
         */
4590
        break;
4591
        case SGRAPH:
4592
        /*
4593
         @ sgraph xstart,ystart,xmajor,ymajor,xminor,yminor,majorgrid_color,minorgrid_color
14071 bpr 4594
         @ primitive implementation of a ''broken scale`` graph...
4595
         @ not very versatile: only usable in combination with userdraw <br />eg no other objects will obey this "coordinate system"<br />if you want to place an object into this coordinate system, be aware that 10% or 20% of xsize and/or ysize is ''lost``.<br />Use these "formulas" to recalculate the virtual coordinates:<br />factor=0.8 in case xstart != xmin (or ystart != ymin)<br />factor=0.9 in case xstart = xmin (or ystart = ymin)<br />px_x_point = ((factor*xsize)/(xmax - xstart))*(x_point - xmax)+xsize<br />x_recalculated = px*(xmax - xmin)/xsize + $xmin<br />px_y_point = -1*factor*y_point*ysize/(ymax - ystart) + ymax*factor*ysize/(ymax - ystart)<br />y_recalculated = ymax - py*(ymax - ymin)/ysize<br />
12111 schaersvoo 4596
         @%sgraph%size 400,400%xrange 0,10000%yrange 0,100%sgraph 9000,50,100,10,4,4,grey,blue%userinput_xy%linewidth 2%userdraw segments,red%precision 0%mouse blue,22
11806 schaersvoo 4597
        */
15111 schaersvoo 4598
            js_function[DRAW_SGRAPH] = 1;
11806 schaersvoo 4599
            for(i = 0 ; i < 8 ;i++){
4600
                switch(i){
4601
                    case 0:double_data[0] = get_real(infile,0);break;
4602
                    case 1:double_data[1] = get_real(infile,0);break;
4603
                    case 2:double_data[2] = get_real(infile,0);break;
4604
                    case 3:double_data[3] = get_real(infile,0);break;
4605
                    case 4:int_data[0] = (int)(get_real(infile,0));break;
4606
                    case 5:int_data[1] = (int)(get_real(infile,0));break;
4607
                    case 6:stroke_color = get_color(infile,0);break;
4608
                    case 7:font_color = get_color(infile,1);
14208 schaersvoo 4609
                    string_length = 1 + snprintf(NULL,0,"xstart = %f;\nystart = %f;\ndraw_sgraph(%d,%d,%f,%f,%d,%d,\"%s\",\"%s\",\"%s\",%f,%d);\n",double_data[0],double_data[1],GRID_CANVAS,precision,double_data[2],double_data[3],int_data[0],int_data[1],stroke_color,font_color,font_family,stroke_opacity,font_size);
4610
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 4611
                    snprintf(tmp_buffer,string_length,"xstart = %f;\nystart = %f;\ndraw_sgraph(%d,%d,%f,%f,%d,%d,\"%s\",\"%s\",\"%s\",%f,%d);\n",double_data[0],double_data[1],GRID_CANVAS,precision,double_data[2],double_data[3],int_data[0],int_data[1],stroke_color,font_color,font_family,stroke_opacity,font_size);
4612
                    add_to_buffer(tmp_buffer);
4613
                    break;
4614
                    default:break;
4615
                }
4616
            }
4617
            /* sgraph(canvas_type,precision,xmajor,ymajor,xminor,yminor,majorcolor,minorcolor,fontfamily,opacity)*/
9213 schaersvoo 4618
            break;
11806 schaersvoo 4619
        case SNAPTOFUNCTION:
9213 schaersvoo 4620
        /*
11806 schaersvoo 4621
        @ snaptofunction some_function_in_x,some_funtion_in_y
15715 schaersvoo 4622
        @ alternative: snaptofun
11806 schaersvoo 4623
        @ the next object will snap to the calculated values
14071 bpr 4624
        @ note: snaptofun is probably not really useful feature...
14066 bpr 4625
        @ if you want only modification of y-values,just use: <code>snaptofunction x,5*sin(1/y)</code>
4626
        @ if you want only modification of x-values,just use: <code>snaptofunction 5*sin(1/x),y</code>
14071 bpr 4627
        @ for now only one instance of ''snaptofunction`` is allowed
11806 schaersvoo 4628
        @ use rawmath on your functions: no validity checking is done by wims !
14071 bpr 4629
        @ note: switching x and y coordinates? <code>snaptofunction y,x</code>
13960 bpr 4630
        @%snaptofunction_1%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 100%snaptofunction x,5*sin(x)%linewidth 3%crosshairsize 6%userdraw crosshairs,red%linewidth 2%curve blue,5*sin(x)%xunit = x-value%display x,blue,22
4631
        @%snaptofunction_2%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 100%snaptofunction y^2-9,y%#snaptofunction y^2-9,abs(y)%linewidth 3%crosshairsize 6%userdraw crosshairs,red%linewidth 2%curve blue,sqrt(x+9)%curve blue,-1*sqrt(x+9)%yunit = y-value%display y,blue,22
9213 schaersvoo 4632
        */
11806 schaersvoo 4633
        temp = get_string_argument(infile,0);
14038 schaersvoo 4634
        use_snap = 2;
15111 schaersvoo 4635
            use_snap = 5;
4636
        js_function[JS_MATH] = 1;
11806 schaersvoo 4637
        fprintf(js_include_file,"var snap_fun = {x:to_js_math('%s'),y:to_js_math('%s')};function snap_to_fun(px,py){ var x = px2x(px); var y = px2y(py); return [ x2px(eval(snap_fun.x)) , y2px(eval(snap_fun.y)) ];};",temp,get_string(infile,1));
4638
        break;
4639
        case SNAPTOPOINTS:
4640
        /*
4641
        @ snaptopoints x1,y1,x2,y2,x3,y3....
4642
        @ a userdraw object will snap to these points.
14071 bpr 4643
        @ the array size (e.g. the number of points) of command ''snaptopoints`` is limited by constant MAX_INT (canvasdraw.h)
14162 bpr 4644
        @ a draggable object (use command ''drag x|y|xy``) will snap to the closed of these points when dragged (mouseup)
14078 bpr 4645
        @ other options: use keyword ''snaptogrid``, ''xsnaptogrid`` or ''ysnaptogrid``
13950 schaersvoo 4646
        @%snaptopoints%size 400,400%xrange -5,5%yrange -5,5%snaptopoints -1,-3,-1,-2,-1,0,-1,1,-1,2,-1,3,1,-3,1,-2,1,-1,1,0,1,1,1,2,1,3%linewidth 2%points red,-1,-3,-1,-2,-1,0,-1,1,-1,2,-1,3,1,-3,1,-2,1,-1,1,0,1,1,1,2,1,3%userdraw arrows,red
11806 schaersvoo 4647
        */
4648
            i = 0;
14038 schaersvoo 4649
            use_snap = 4;
11806 schaersvoo 4650
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 4651
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11806 schaersvoo 4652
                if(i%2 == 0 ){
4653
                    double_data[i] = get_real(infile,0); /* x */
4654
                }
4655
                else
4656
                {
4657
                    double_data[i] = get_real(infile,1); /* y */
4658
                }
4659
                i++;
4660
            }
4661
            decimals = find_number_of_digits(precision);
14044 schaersvoo 4662
            fprintf(js_include_file,"function find_min_diff(x,y,X,Y){var diff = 100000000;var chk;var idx = 0;for(var p = 0 ; p < %d ; p++){chk = distance(x,y,X[p],Y[p]);if( chk  < diff ){ diff = chk; idx = p;};};return idx;};function snap_to_points(x,y){x = px2x(x); y = px2y(y);var points = [%s];var xpoints = points[0];var ypoints = points[1];var idx = find_min_diff(x,y,xpoints,ypoints);x = xpoints[idx];y = ypoints[idx];return [x2px(x),y2px(y)];};",(int) (0.5*i),double_xy2js_array(double_data,i,decimals));
11806 schaersvoo 4663
        break;
4664
 
4665
        case SNAPTOGRID:
4666
        /*
4667
         @ snaptogrid
4668
         @ keyword (no arguments required)
14162 bpr 4669
         @ a draggable object (use command ''drag x|y|xy``) will snap to the given grid when dragged (mouseup)
11806 schaersvoo 4670
         @ in case of userdraw the drawn points will snap to xmajor / ymajor grid
14078 bpr 4671
         @ if no grid is defined, points will snap to every integer xrange/yrange value. (eg snap_x=1,snap_y=1)
14071 bpr 4672
         @ if you do not want a visible grid, but you only want a ''snaptogrid`` with some value...define this grid with opacity 0.
14162 bpr 4673
         @ if xminor / yminor is defined,(use keyword ''axis`` to activate the minor steps) the drawing will snap to xminor and yminor<br />use only even dividers in x/y-minor...for example <code>snaptogrid<br />axis<br />grid 2,1,grey,4,4,7,red</code> will snap on x=0, x=0.5, x=1, x=1.5 .... will snap on y=0, y=0.25 y=0.5 y=0.75 ...
12311 schaersvoo 4674
         @%snaptogrid_1%size 400,400%xrange -5,5%yrange -5,5%axis%axisnumbering%precision 1%grid 1,1,grey,2,2,6,grey%linewidth 2%snaptogrid%userdraw crosshairs,blue%mouse red,22
4675
         @%snaptogrid_2%size 400,400%xrange -5,5%yrange -5,5%axis%axisnumbering%precision 1%grid 1,1,grey,4,1,6,grey%linewidth 1%snaptogrid%userdraw crosshairs,blue%mouse red,22
11806 schaersvoo 4676
        */
14038 schaersvoo 4677
        use_snap = 1;
11806 schaersvoo 4678
        break;
4679
 
4680
        case SQUARE:
4681
        /*
14078 bpr 4682
        @ square x,y,side (px),color
15111 schaersvoo 4683
        @ draw a square with left top corner (x:y) with side ''side`` in color 'color'
14071 bpr 4684
        @ use command <code>fsquare x,y,side,color</code> for a filled square
14162 bpr 4685
        @ use command/keyword <a href='#filled'>filled</a> before command <code>square x,y,side,color</code>
11806 schaersvoo 4686
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 4687
        @%square%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%filled%fillcolor blue%square 0,0,120,green
11806 schaersvoo 4688
        */
11991 schaersvoo 4689
            for(i=0;i<4;i++){
11806 schaersvoo 4690
                switch(i){
4691
                    case 0:double_data[0] = get_real(infile,0);break; /* x1-values */
4692
                    case 1:double_data[1] = get_real(infile,0);break; /* y1-values */
11991 schaersvoo 4693
                    case 2:double_data[2] = get_real(infile,0);break; /* width in px */
4694
                    case 3:stroke_color = get_color(infile,1);/* name or hex color */
4695
                           decimals = find_number_of_digits(precision);
4696
                           double_data[3] = double_data[0] + (xmax - xmin)*double_data[2]/xsize;
4697
                           double_data[4] = double_data[1] + -1*(ymax - ymin)*double_data[2]/ysize;
15111 schaersvoo 4698
                           if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
4699
                           string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,1,[%.*f,%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f,%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[3],decimals,double_data[3],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[4],decimals,double_data[4],line_width,line_width,line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4700
                           check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4701
                           snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,1,[%.*f,%.*f,%.*f,%.*f],[%.*f,%.*f,%.*f,%.*f],[%d],[%d],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[3],decimals,double_data[3],decimals,double_data[0],decimals,double_data[1],decimals,double_data[1],decimals,double_data[4],decimals,double_data[4],line_width,line_width,line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
4702
                           add_to_buffer(tmp_buffer);
4703
                           if(onclick != 0){object_cnt++;}/* object_cnt++; */
11991 schaersvoo 4704
                           reset();break;
4705
                    default: break;
11806 schaersvoo 4706
                }
4707
            }
15111 schaersvoo 4708
            dragstuff[1] = 1;
4709
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
9213 schaersvoo 4710
            break;
13829 bpr 4711
 
11806 schaersvoo 4712
        case STATUS:
9213 schaersvoo 4713
        /*
11806 schaersvoo 4714
        @ status
4715
        @ keyword
14066 bpr 4716
        @ alernative: nostatus
14078 bpr 4717
        @ used to override the effects of ''status=done`` in wims (answer.phtml)
14071 bpr 4718
        @ affects ''readonly`` in inputfields / textareas in canvasimage and all userdraw based commands
4719
        @ e.g.: if keyword ''status`` is set, the pupil will be able to modify the canvas when the ''wims &#36;status variable`` is set to ''done``
9213 schaersvoo 4720
        */
11806 schaersvoo 4721
 
4722
            fprintf(js_include_file,"\nwims_status=\"waiting\";\n");
9213 schaersvoo 4723
            break;
11806 schaersvoo 4724
 
4725
        case STRING:
9213 schaersvoo 4726
        /*
11806 schaersvoo 4727
         @ string color,x,y,the text string
15111 schaersvoo 4728
         @ may be set ''onclick`` or ''drag xy``
15633 bpr 4729
         @ note: when set ''onclick``, use an extra command ''fontsize`` (default: fontsize=12) to adjust the size of the clicked text-string<br />note: a clicked text string will be hardcoded : fontsize+10 in the font family courier
16706 schaersvoo 4730
         @ unicode supported: <code>string red,0,0,\\u2232</code><br/> See <a target='new' href='https://en.wikipedia.org/wiki/Mathematical_operators_and_symbols_in_Unicode'>https://en.wikipedia.org/wiki/Mathematical_operators_and_symbols_in_Unicode</a><br/> See <a  target='new' href='https://en.wikipedia.org/wiki/Greek_script_in_Unicode'>https://en.wikipedia.org/wiki/Greek_script_in_Unicode</a>
15313 schaersvoo 4731
         @ use a command like <code>fontfamily italic 24px Arial</code> to set fonts on browser that support font change
16713 schaersvoo 4732
         @ super / sub script is supported, using '<b>_</b>' and '<b>^</b>' <br />The font family for the sub/sup string will be Helvetica e.g. your font family settings will be ignored <br />to end the subscript/supscript, use an extra space...see example:
16705 schaersvoo 4733
         @%string_sup_sub%size 400,400%xrange -6,6%yrange -6,6%fontfamily 22px Arial%# use single space for separation in formula...%# use double space to create new word%string red,-5,0,H_3 O^+ + OH^\\u2212  \\u2192 2H_2 O%
15313 schaersvoo 4734
         @%string%size 400,400%xrange -10,10%yrange -10,10%fontfamily 14px Arial%crosshair -3,-3,red%crosshair 3,3,blue%string red,-3,-3,Hello World%fontfamily Italic 18px Arial%string red,3,3,Hello World%fontfamily 22pt STIX%string black,-10,8,\\u03B1 \\u03B2 \\u03B3 \\u03B4 \\u03B5 \\u03B6 \\u03B7 \\u03B8 \\u03B9 \\u03BA \\u03BB \\u03BC \\u03BD \\u03BE \\u03BF
9213 schaersvoo 4735
        */
15111 schaersvoo 4736
            if( use_rotate == TRUE  ){js_function[JS_ROTATE_MOUSE] = 1; }
4737
            dragstuff[14] = 1;
4738
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 4739
            for(i=0;i<5;i++){
4740
                switch(i){
4741
                    case 0: stroke_color = get_color(infile,0);break;/* name or hex color */
4742
                    case 1: double_data[0] = get_real(infile,0);break; /* x in xrange*/
4743
                    case 2: double_data[1] = get_real(infile,0);break; /* y in yrange*/
4744
                    case 3: decimals = find_number_of_digits(precision);
15111 schaersvoo 4745
                    if(use_affine == TRUE ){ transform(2,2);}
4746
                    /* rotate is done by HTML5/CANVAS context rotation */
11806 schaersvoo 4747
                        temp = get_string_argument(infile,1);
16700 schaersvoo 4748
                        if(strstr(temp,"_") != NULL || strstr(temp,"^") != NULL){js_function[DRAW_SUBSUP] = 1;}
11806 schaersvoo 4749
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 4750
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
4751
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,14,[%.*f],[%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,0,0,0,use_rotate,angle,temp,font_size,font_family,my_sliders,rotation_center,use_offset);
4752
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4753
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,14,[%.*f],[%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,0,0,0,use_rotate,angle,temp,font_size,font_family,my_sliders,rotation_center,use_offset);
4754
                        add_to_buffer(tmp_buffer);
4755
                        if(onclick != 0){object_cnt++;}
15758 schaersvoo 4756
                        //onclick = 0;
4757
                        //use_offset = 0;
15111 schaersvoo 4758
                        reset();
11806 schaersvoo 4759
                        break;
4760
                    default:break;
4761
                }
9213 schaersvoo 4762
            }
4763
            break;
11806 schaersvoo 4764
 
4765
        case STRINGUP:
9213 schaersvoo 4766
        /*
11806 schaersvoo 4767
         @ stringup color,x,y,rotation_degrees,the text string
15111 schaersvoo 4768
         @ may be set ''onclick`` or ''drag xy``
15633 bpr 4769
         @ note: when set ''onclick``, use an extra command ''fontsize`` (default: fontsize=12) to adjust the size of the clicked text-string<br />note: a clicked text string will be hardcoded : fontsize+10 in the font family courier
15111 schaersvoo 4770
         @ unicode supported: <code>stringup red,0,0,45,\\u2232</code>
4771
         @ use a command like <code>fontfamily bold 34px Courier</code> to set fonts on browser that support font change
4772
         @ you could use keyword <a href='#yoffset'>yoffset</a> to -sometimes- do a small correction of text placement under/above a point (e.g. text &amp; point have thesame coordinates)
14634 bpr 4773
         @ note: no need to ''killrotate`` after ''stringup``<br /><code>onclick<br />rotate 45<br />string red,0,0,AAAAAA<br/>killrotate<br />string red,4,4,BBBBBB</code><br />is identical with:<br /><code>onclick<br />stringup red,0,0,45,AAAAAA<br />string red,4,4,BBBBBB</code>
16706 schaersvoo 4774
         @ super / sub script is supported, using '<b>_</b>' and '<b>^</b>' <br />to end the subscript/supscript, use an extra space...see example:
16705 schaersvoo 4775
         @%stringup_sub_sup%size 400,400%xrange -6,6%yrange -6,6%fontfamily 22px Arial%# use single space for separation in formula...%# use double space to create new word%stringup red,-5,0,45,H_3 O^+ + OH^\\u2212  \\u2192 2H_2 O%
15313 schaersvoo 4776
         @%stringup%size 400,400%xrange -10,10%yrange -10,10%fontsize 24%fontfamily 14px Arial%crosshair -3,0,red%crosshair 3,0,blue%onclick%stringup red,-3,0,-90,Hello World%drag xy%stringup red,-3,0,-45,Hello World%stringup red,-3,0,45,Hello World%stringup red,-3,0,90,Hello World%stringup blue,3,0,-90,Hello World%stringup blue,3,0,-45,Hello World%stringup blue,3,0,45,Hello World%stringup blue,3,0,90,Hello World
11806 schaersvoo 4777
 
14634 bpr 4778
        */
15111 schaersvoo 4779
            /* html5 canvas rotation is only used for text objects  */
4780
            use_rotate = TRUE ;
4781
            dragstuff[14] = 1;
4782
            js_function[JS_ROTATE_MOUSE] = 1;
4783
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
15116 bpr 4784
 
15111 schaersvoo 4785
            for(i=0;i<6;i++){
11806 schaersvoo 4786
                switch(i){
14596 schaersvoo 4787
                    case 0: stroke_color = get_color(infile,0);break;/* name or hex color */
4788
                    case 1: double_data[0] = get_real(infile,0);break; /* x */
4789
                    case 2: double_data[1] = get_real(infile,0);break; /* y */
15111 schaersvoo 4790
                    case 3: angle = get_real(infile,0);break;/* rotation */
11806 schaersvoo 4791
                    case 4: decimals = find_number_of_digits(precision);
14596 schaersvoo 4792
                        temp = get_string_argument(infile,1);
16700 schaersvoo 4793
                        if(strstr(temp,"_") != NULL || strstr(temp,"^") != NULL){js_function[DRAW_SUBSUP] = 1;}
14596 schaersvoo 4794
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 4795
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
4796
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,14,[%.*f],[%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,0,0,0,use_rotate,angle,temp,font_size,font_family,my_sliders,rotation_center,use_offset);
4797
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4798
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,14,[%.*f],[%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,0,0,0,use_rotate,angle,temp,font_size,font_family,my_sliders,rotation_center,use_offset);
4799
                        add_to_buffer(tmp_buffer);
4800
                        if(onclick != 0){object_cnt++;}
15758 schaersvoo 4801
                        //onclick = 0;
4802
                        //use_offset = 0;
14596 schaersvoo 4803
                        reset();
4804
                        break;
11806 schaersvoo 4805
                    default:break;
4806
                }
9213 schaersvoo 4807
            }
14596 schaersvoo 4808
            use_rotate = FALSE;
9213 schaersvoo 4809
            break;
11767 schaersvoo 4810
 
11806 schaersvoo 4811
        case STYLE:
11767 schaersvoo 4812
        /*
11806 schaersvoo 4813
         @ highlight color,opacity,linewidth
4814
         @ NOT IMPLEMENTED
14071 bpr 4815
         @ use command ''onclick``: when the object receives a userclick it will increase its linewidth
11767 schaersvoo 4816
        */
4817
            break;
11806 schaersvoo 4818
 
4819
 
4820
        case STROKECOLOR:
9213 schaersvoo 4821
        /*
11806 schaersvoo 4822
        @ strokecolor colorname or #hex
14071 bpr 4823
        @ to be used for commands that do not supply a color argument (like command ''linegraph``)
9213 schaersvoo 4824
        */
11806 schaersvoo 4825
            stroke_color = get_color(infile,1);
9213 schaersvoo 4826
            break;
11806 schaersvoo 4827
 
4828
        case FLY_TEXT:
9213 schaersvoo 4829
        /*
11806 schaersvoo 4830
        @ text fontcolor,x,y,font,text_string
14066 bpr 4831
        @ font may be described by keywords: giant,huge,normal,small,tiny
15111 schaersvoo 4832
        @ use command ''fontsize`` to increase base fontsize for these keywords
4833
        @ may be set ''onclick`` or ''drag xy``
11806 schaersvoo 4834
        @ backwards compatible with flydraw
4835
        @ unicode supported: text red,0,0,huge,\\u2232
16700 schaersvoo 4836
        @ special: use '_' and '^' to imitate html sup/sub, like H_3O^+ + OH^\\u22i2  \\u2192 2H_2 O
16706 schaersvoo 4837
        @ much better to use command <a href='#string'>string</a> combined with <a href='#fontfamily'>fontfamily</a> for a more fine grained control over html5 canvas text element
4838
        @ super / sub script is supported, using '<b>_</b>' and '<b>^</b>' <br />to end the subscript/supscript, use an extra space...see <a href='#string'>string </a> command
15313 schaersvoo 4839
        @ Avoid mixing old flydraw commands ''text``, ''textup`` with new canvasdraw commands ''string``, ''stringup``. If the fontfamily was set completely like <code>fontfamily italic 24px Arial</code>. In that case reset ''fontfamily`` to something lke ''fontfamily Arial`` before the old flydraw commands.
12311 schaersvoo 4840
        @%text%size 400,400%xrange -10,10%yrange -10,10%fontsize 14%onclick%drag xy%text green,-4,-4,small,Hello World%drag xy%text red,-4,-2,large,Hello World%drag xy%text blue,-4,0,huge,Hello World%drag xy%text green,-4,3,giant,Hello World%drag xy
9213 schaersvoo 4841
        */
11806 schaersvoo 4842
            for(i = 0; i < 5 ;i++){
4843
                switch(i){
4844
                    case 0: stroke_color = get_color(infile,0);break;/* font_color == stroke_color name or hex color */
4845
                    case 1: double_data[0] = get_real(infile,0);break; /* x */
4846
                    case 2: double_data[1] = get_real(infile,0);break; /* y */
4847
                    case 3: fly_font = get_string_argument(infile,0);
4848
                            if(strcmp(fly_font,"giant") == 0){
4849
                                fly_font_size = (int)(font_size + 24);
4850
                            }
4851
                            else
4852
                            {
4853
                                if(strcmp(fly_font,"huge") == 0){
4854
                                    fly_font_size = (int)(font_size + 14);
4855
                                }
4856
                                else
4857
                                {
4858
                                    if(strcmp(fly_font,"large") == 0){
4859
                                        fly_font_size = (int)(font_size + 6);
4860
                                        }
4861
                                        else
4862
                                        {
4863
                                            if(strcmp(fly_font,"small") == 0){
4864
                                                fly_font_size = (int)(font_size - 4);
4865
                                                if(fly_font_size<0){fly_font_size = 8;}
4866
                                        }
4867
                                    }
4868
                                }
4869
                            }
4870
                            break;
4871
                    case 4:
4872
                        temp = get_string_argument(infile,1);
16700 schaersvoo 4873
                        if(strstr(temp,"_") != NULL || strstr(temp,"^") != NULL){js_function[DRAW_SUBSUP] = 1;}
11806 schaersvoo 4874
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 4875
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
15646 schaersvoo 4876
                        if(use_affine == TRUE ){ transform(2,2);}
15111 schaersvoo 4877
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,14,[%.*f],[%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%f,\"%s\",%d,%s,%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,0,0,0,use_rotate,angle,temp,fly_font_size,"null",my_sliders,rotation_center,use_offset);
4878
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
4879
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,14,[%.*f],[%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%f,\"%s\",%d,%s,%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,0,0,0,0,use_rotate,angle,temp,fly_font_size,"null",my_sliders,rotation_center,use_offset);
4880
                        add_to_buffer(tmp_buffer);
4881
                        if(onclick != 0){object_cnt++;}
11806 schaersvoo 4882
                        reset();
4883
                        break;
4884
                    default:break;
4885
                }
10953 bpr 4886
            }
15111 schaersvoo 4887
            dragstuff[14] = 1;
4888
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
9213 schaersvoo 4889
            break;
11806 schaersvoo 4890
        case TEXTAREA:
9289 schaersvoo 4891
        /*
11806 schaersvoo 4892
         @ textarea x,y,cols,rows,readonly,value
15111 schaersvoo 4893
         @ may be further controlled by <a href="#css">css</a>
14162 bpr 4894
         @ if ''&#36;status=done`` (e.g. in answer.phtml) the inputfield will be cleared and set readonly. Override this by keyword <a href="#status">status</a>.
14066 bpr 4895
         @ if mathml inputfields are present and / or some userdraw is performed, these data will <b>not</b> be send as well (<code>javascript:read_canvas();</code>)
14071 bpr 4896
         @ keyword ''xoffset | centered`` is not active for command ''textarea``
15111 schaersvoo 4897
         @%textarea%size 400,400%xrange -10,10%yrange -10,10%css color:red;background-color:lightblue;font-size:14px;text-align:center%textarea -3,-2,6,3,1,?%css color:blue;background-color:yellow;font-size:14px;text-align:center%textarea 0,-2,8,2,1,?
9289 schaersvoo 4898
        */
15111 schaersvoo 4899
            js_function[DRAW_TEXTAREAS] = 1;
11806 schaersvoo 4900
            for(i = 0 ; i<6;i++){
9289 schaersvoo 4901
                switch(i){
11806 schaersvoo 4902
                    case 0: int_data[0]=x2px(get_real(infile,0));break; /* x in px */
4903
                    case 1: int_data[1]=y2px(get_real(infile,0));break; /* y in px */
4904
                    case 2: int_data[2]=abs( (int)(get_real(infile,0)));break;/* cols */
4905
                    case 3: int_data[3]=abs( (int)(get_real(infile,0)));break;/* rows */
4906
                    case 4: if( get_real(infile,1) >0){int_data[4] = 1;}else{int_data[3] = 0;};break; /* readonly */
4907
                    case 5: temp = get_string_argument(infile,1);
15111 schaersvoo 4908
                            string_length = 1 + snprintf(NULL,0,  "draw_textareas(%d,%d,%d,%d,%d,%d,%d,\"%s\",\"%s\");\n",canvas_root_id,input_cnt,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],css_class,temp);
14208 schaersvoo 4909
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 4910
                            snprintf(tmp_buffer,string_length,"draw_textareas(%d,%d,%d,%d,%d,%d,%d,\"%s\",\"%s\");\n",canvas_root_id,input_cnt,int_data[0],int_data[1],int_data[2],int_data[3],int_data[4],css_class,temp);
11806 schaersvoo 4911
                            add_to_buffer(tmp_buffer);
4912
                            input_cnt++;break;
9289 schaersvoo 4913
                    default: break;
4914
                }
4915
            }
11806 schaersvoo 4916
            if(reply_format == 0 ){reply_format = 15;}
4917
            reset();
9289 schaersvoo 4918
            break;
11806 schaersvoo 4919
 
11830 schaersvoo 4920
        case TEXTFILL:
4921
        /*
4922
        @ textfill x0,y0,color,some_text
4923
        @ x0,y0 in xrange / yrange
4924
        @ color will be used for the font color
4925
        @ use command <a href="#fontfamily">fontfamily</a> to set font type and size
13829 bpr 4926
        @ there is also a command <a href="#userdraw">userdraw textfill,color,some_text</a>
15313 schaersvoo 4927
        @%textfill%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%fontfamily 24pt Arial%circles red,0,0,3,3,3,6%textfill 4,4,blue,HELLO WORLD
11830 schaersvoo 4928
        */
4929
 
4930
            js_function[DRAW_TEXTFILL] = 1;
4931
            if(js_function[DRAW_FILLTOBORDER] != 1 ){/* use only once */
4932
             js_function[DRAW_FILLTOBORDER] = 1;
15111 schaersvoo 4933
             add_js_filltoborder(canvas_type);
11830 schaersvoo 4934
            }
4935
            decimals = find_number_of_digits(precision);
4936
            for(i=0;i<4;i++){
4937
                switch(i){
4938
                    case 0: double_data[0] = get_real(infile,0); break; /* x in px */
4939
                    case 1: double_data[1] = get_real(infile,0); break; /* y in py */
13829 bpr 4940
                    case 2: font_color = get_color(infile,0); break;
11830 schaersvoo 4941
                    case 3: temp = get_string(infile,1);
14208 schaersvoo 4942
                    string_length = 1 + snprintf(NULL,0,"draw_textfill(%d,%*.f,%*.f,'%s','%s',%d,%d,'%s',false); ",FILL_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],font_color,font_family,xsize,ysize,temp);
4943
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11830 schaersvoo 4944
                    snprintf(tmp_buffer,string_length,"draw_textfill(%d,%*.f,%*.f,'%s','%s',%d,%d,'%s',false); ",FILL_CANVAS+fill_cnt,decimals,double_data[0],decimals,double_data[1],font_color,font_family,xsize,ysize,temp);
4945
                    add_to_buffer(tmp_buffer);
4946
                    fill_cnt++;
4947
                    break;
4948
                    default:break;
4949
                }
4950
            }
4951
            reset();
4952
        break;
4953
 
4954
 
11806 schaersvoo 4955
        case FLY_TEXTUP:
9289 schaersvoo 4956
        /*
11806 schaersvoo 4957
         @ textup fontcolor,x,y,font,text_string
14078 bpr 4958
         @ can <b>not</b> be set ''onclick`` or ''drag xy`` (because of translaton matrix...mouse incompatible)
14066 bpr 4959
         @ font may be described by keywords: giant,huge,normal,small,tiny
14071 bpr 4960
         @ use command ''fontsize`` to increase base fontsize for the keywords
11806 schaersvoo 4961
         @ backwards compatible with flydraw
4962
         @ unicode supported: textup red,0,0,huge,\\u2232
14071 bpr 4963
         @ use command ''stringup`` and ''fontfamily`` for a more fine grained control over html5 canvas text element
15313 schaersvoo 4964
         @ Avoid mixing old flydraw commands ''text``, ''textup`` with new canvasdraw commands ''string``; ''stringup``. If the fontfamily was set completely like <code>fontfamily italic 24px Arial</code>. In that case reset ''fontfamily`` to something like ''fontfamily Arial`` before the old flydraw commands.
9289 schaersvoo 4965
        */
15111 schaersvoo 4966
            js_function[DRAW_TEXTS] = 1;
11806 schaersvoo 4967
            for(i = 0; i<5 ;i++){
9289 schaersvoo 4968
                switch(i){
11806 schaersvoo 4969
                    case 0: font_color = get_color(infile,0);break;/* name or hex color */
4970
                    case 1: int_data[0] = x2px(get_real(infile,0));break; /* x */
4971
                    case 2: int_data[1] = y2px(get_real(infile,0));break; /* y */
4972
                    case 3: fly_font = get_string_argument(infile,0);
4973
                            if(strcmp(fly_font,"giant") == 0){
4974
                                fly_font_size = (int)(font_size + 24);
4975
                            }
4976
                            else
4977
                            {
4978
                                if(strcmp(fly_font,"huge") == 0){
4979
                                    fly_font_size = (int)(font_size + 14);
4980
                                }
4981
                                else
4982
                                {
4983
                                    if(strcmp(fly_font,"large") == 0){
4984
                                        fly_font_size = (int)(font_size + 6);
4985
                                        }
4986
                                        else
4987
                                        {
4988
                                            if(strcmp(fly_font,"small") == 0){
4989
                                                fly_font_size = (int)(font_size - 4);
4990
                                                if(fly_font_size<0){fly_font_size = 8;}
4991
                                        }
4992
                                    }
4993
                                }
4994
                            }
4995
                            break;
4996
                    case 4:
9289 schaersvoo 4997
                    decimals = find_number_of_digits(precision);
11806 schaersvoo 4998
                    temp = get_string_argument(infile,1);
15111 schaersvoo 4999
                    if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
5000
                    string_length = 1 + snprintf(NULL,0,"draw_text(%d,%d,%d,%d,\"%s\",\"%s\",%.2f,90,\"%s\",%d,%.2f,%d);\n",STATIC_CANVAS,int_data[0],int_data[1],fly_font_size,"null",font_color,stroke_opacity,temp,use_rotate,angle,use_offset);
14208 schaersvoo 5001
                    check_string_length(string_length);tmp_buffer = my_newmem(string_length);
15111 schaersvoo 5002
                    snprintf(tmp_buffer,string_length,"draw_text(%d,%d,%d,%d,\"%s\",\"%s\",%.2f,90,\"%s\",%d,%.2f,%d);\n",STATIC_CANVAS,int_data[0],int_data[1],fly_font_size,"null",font_color,stroke_opacity,temp,use_rotate,angle,use_offset);
9289 schaersvoo 5003
                    add_to_buffer(tmp_buffer);
15758 schaersvoo 5004
                    reset();
5005
                    //use_offset = 0;
9289 schaersvoo 5006
                    break;
11806 schaersvoo 5007
                    default:break;
5008
                }
5009
            }
5010
            break;
5011
 
5012
 
5013
        case TRACE_JSCURVE:
5014
        /*
5015
         @ trace_jscurve some_math_function
5016
         @ will use a crosshair to trace the jsmath curve
5017
         @ two inputfields will display the current x/y-values (numerical evaluation by javascript)
14071 bpr 5018
         @ default labels ''x`` and ''y``; use commands ''xlabel some_x_axis_name`` and ''ylabel some_y_axis_name`` to customize the labels for the input fields
15111 schaersvoo 5019
         @ use commands fontsize and css to format the fonts for labels and inputfields.
14071 bpr 5020
         @ use commands ''linewidth, strokecolor, crosshairsize`` to adjust the corsshair.
5021
         @ the client browser will convert your math function to javascript math.<br />use parenthesis and rawmath: use 2*x instead of 2x etc etc no check is done on the validity of your function and/or syntax (use error console to debug any errors...)
5022
         @ be aware that the formulas of the plotted function(s) can be found in the page javascript source
15111 schaersvoo 5023
         @%trace_jscurve%size 400,400%xrange -10,10%yrange -10,10%precision 0%axis%axisnumbering%grid 2,2,grey,2,2,5,gray%recision 100%css color:blue;%linewidth 4%crosshairsize 8%trace_jscurve 5*sin(0.1*x^2)%linewidth 1%jsplot red,5*sin(0.1*x^2)%#only one curve can be traced
11806 schaersvoo 5024
        */
15111 schaersvoo 5025
            js_function[INTERACTIVE] = 1;
5026
            js_function[DRAW_CROSSHAIRS] = 1;
5027
            js_function[DRAW_LINES] = 1;
5028
            js_function[JS_MATH] = 1;
5029
            add_trace_js_mouse(TRACE_CANVAS,stroke_color,get_string(infile,1),font_size,stroke_opacity,line_width,crosshair_size,css_class);
11806 schaersvoo 5030
            break;
5031
 
5032
 
5033
        case TRANGE:
5034
        /*
5035
        @ trange tmin,tmax
15715 schaersvoo 5036
        @ alternative: ranget
11806 schaersvoo 5037
        @ default -2,2
5038
        */
5039
            use_parametric = TRUE;
5040
            for(i = 0 ; i<2; i++){
5041
                switch(i){
5042
                    case 0: tmin = get_real(infile,0);break;
5043
                    case 1: tmax = get_real(infile,1);break;
9289 schaersvoo 5044
                    default: break;
5045
                }
5046
            }
14066 bpr 5047
            if(tmin >= tmax ){canvas_error(" trange is not OK: tmin &lt; tmax!\n");}
9289 schaersvoo 5048
            break;
11806 schaersvoo 5049
        case TRANSLATION:
5050
        /*
5051
         @ translation tx,ty
15715 schaersvoo 5052
         @ alternative: translate
11806 schaersvoo 5053
         @ will translate the next objects tx in xrange and ty in yrange
14071 bpr 5054
         @ use command ''killtranstation`` to end the command
13958 schaersvoo 5055
         @%translation%size 400,400%xrange -10,10%yrange -10,10%linewidth 1%fillpattern grid%ftriangle -6,6,8,6,5,1,blue%translation 2,2%ftriangle -6,6,8,6,5,1,red
11806 schaersvoo 5056
        */
5057
            for(i = 0 ; i<2;i++){
5058
                switch(i){
15111 schaersvoo 5059
                    case 0: affine_matrix[4] = get_real(infile,0);break;
5060
                    case 1: affine_matrix[5] = get_real(infile,1);
11806 schaersvoo 5061
                        use_affine = TRUE;
15111 schaersvoo 5062
                        /* the other values affine_matrix[0..3] remain untouched*/
11806 schaersvoo 5063
                        break;
5064
                    default: break;
5065
                }
5066
            }
5067
        break;
5068
 
5069
        case TRIANGLE:
5070
        /*
5071
         @ triangle x1,y1,x2,y2,x3,y3,color
14066 bpr 5072
         @ use ftriangle or keyword <a href='#filled'>filled</a> for a solid triangle
11806 schaersvoo 5073
         @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
13948 schaersvoo 5074
         @%triangle%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%opacity 250,150%drag xy%triangle 0,0,-4,4,6,8,red%drag xy%ftriangle 0,0,-4,-4,6,-8,red%fillpattern grid%drag xy%ftriangle -6,6,8,6,5,1,blue
11806 schaersvoo 5075
        */
5076
            for(i=0;i<7;i++){
5077
                switch(i){
5078
                    case 0: double_data[0] = get_real(infile,0);break; /* x */
5079
                    case 1: double_data[1] = get_real(infile,0);break; /* y */
5080
                    case 2: double_data[2] = get_real(infile,0);break; /* x */
5081
                    case 3: double_data[3] = get_real(infile,0);break; /* y */
5082
                    case 4: double_data[4] = get_real(infile,0);break; /* x */
5083
                    case 5: double_data[5] = get_real(infile,0);break; /* y */
5084
                    case 6: stroke_color = get_color(infile,1);/* name or hex color */
5085
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 5086
                        if( use_rotate == TRUE ){ rotate(6,angle,rotationcenter,2);}
5087
                        if( use_affine == TRUE ){ transform(6,2);}
5088
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
5089
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,6,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5090
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
5091
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,6,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5092
                        add_to_buffer(tmp_buffer);
5093
                        if(onclick != 0){object_cnt++;}
5094
                        /* object_cnt++;*/
11806 schaersvoo 5095
                        reset();
5096
                        break;
5097
                    default: break;
5098
                }
5099
            }
15111 schaersvoo 5100
            dragstuff[5] = 1;
5101
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 5102
            break;
5103
        case TRIANGLES:
5104
        /*
5105
         @ triangles color,x1,y1,x2,y2,x3,y3,...
14066 bpr 5106
         @ use ftriangles or keyword <a href='#filled'>filled</a> for solid triangles
11806 schaersvoo 5107
         @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually (!)
13948 schaersvoo 5108
         @%triangles%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%onclick%triangles red,0,0,-4,4,6,8,0,0,-4,-4,6,-8,-6,6,8,6,5,1%# the same as 3 calls to command triangle
11806 schaersvoo 5109
        */
5110
            stroke_color = get_color(infile,0);/* name or hex color */
5111
            i = 0;
5112
            decimals = find_number_of_digits(precision);
15111 schaersvoo 5113
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
15116 bpr 5114
 
11806 schaersvoo 5115
            while( ! done ){
11997 schaersvoo 5116
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11806 schaersvoo 5117
                double_data[0] = get_real(infile,0); /* x1 */
5118
                double_data[1] = get_real(infile,0); /* y1 */
5119
                double_data[2] = get_real(infile,0); /* x2 */
5120
                double_data[3] = get_real(infile,0); /* y2 */
5121
                double_data[4] = get_real(infile,0); /* x3 */
5122
                double_data[5] = get_real(infile,1); /* y3 */
15111 schaersvoo 5123
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,6,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5124
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
5125
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,5,%s,[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,double_xy2js_array(double_data,6,decimals),line_width,stroke_color,stroke_opacity,stroke_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5126
                add_to_buffer(tmp_buffer);
5127
                if(onclick != 0){object_cnt++;}
11806 schaersvoo 5128
                i = i + 6;
5129
            }
5130
            reset();
15111 schaersvoo 5131
            dragstuff[5] = 1;
5132
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
11806 schaersvoo 5133
            break;
5134
        case USERBOXPLOT:
5135
        /*
5136
         @ userboxplot
5137
         @ keyword, no arguments
14066 bpr 5138
         @ use before command <a href="#boxplot">boxplot x_or_y,box-height_or_box-width,x_or_y-position</a>
14071 bpr 5139
         @ if set, the student will have to calculate "min,Q1,median,Q3,max" and feed these data into the ''draw_boxplot`` function
5140
         @ for example: put the canvas-script into a html element with id='boxplot' and set style='display:none'<br />define a variable called ''student_boxplot`` and fill it with the 5 student-data (from inputfields or something)<br /><code>var student_boxplot = new Array(5)<br />function show_boxplot(){<br />student_boxplot[0] = min;<br />student_boxplot[1] = Q1;<br />student_boxplot[2] = median;<br />student_boxplot[3] = Q3;<br />student_boxplot[4] = max;<br />document.getElementById('boxplot').style.display = "block";<br />draw_boxplot(12345,1,2.00,5.00,[0,0,0,0,0],4,"0,0,255",0.78,"255,165,0",0.60,1,0,1,1);<br />};</code><br />In the canvas-script the function draw_boxplot has the following arguments:<br />draw_boxplot=function(canvas_type,xy,hw,cxy,data,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype0,dashtype1)
11806 schaersvoo 5141
        */
15111 schaersvoo 5142
            js_function[DRAW_BOXPLOT] = 1;
11806 schaersvoo 5143
            fprintf(js_include_file,"var boxplot_source = 3;\n");
5144
            js_function[DRAW_JSBOXPLOT] = 2;
5145
        break;
5146
 
5147
        case USERBOXPLOTDATA:
5148
        /*
5149
         @ userboxplotdata
5150
         @ keyword, no arguments
14066 bpr 5151
         @ use before command <a href="#boxplot">boxplot x_or_y,box-height_or_box-width,x_or_y-position</a>
14071 bpr 5152
         @ if set, the student will have to generate some statistical data. These data should be put in a named array ''student_boxplot_data``
15111 schaersvoo 5153
         @ ''min,Q1,median,Q3,max`` are calculated by a js-function and the 'draw_boxplot' function will draw a boxplot.
14066 bpr 5154
         @ see command <a href="#userboxplot">userboxplot</a> for calling 'draw_boxplot()'
11806 schaersvoo 5155
        */
15111 schaersvoo 5156
            js_function[DRAW_BOXPLOT] = 1;
11806 schaersvoo 5157
            fprintf(js_include_file,"var boxplot_source = 2;\n");
5158
            js_function[DRAW_JSBOXPLOT] = 1;
5159
 
5160
        break;
5161
 
7614 schaersvoo 5162
        case USERDRAW:
5163
        /*
5164
        @ userdraw object_type,color
9213 schaersvoo 5165
        @ only a single object_type is allowed.
15111 schaersvoo 5166
        @ right mouse click will remove last drawn object.
5167
        @ for multiple different 'userdraw' objects in an exercise, use command <a href="#multidraw">multidraw</a>
5168
        @ implemented object_type: <ul><li>point</li><li>points</li><li>crosshair</li><li>crosshairs</li><li>line</li><li>lines</li><li>vline</li><li>vlines</li><li>hline</li><li>hlines</li><li>demiline</li><li>demilines</li><li>segment</li><li>segments</li><li>polyline | brokenline</li><li>circle</li><li>circles</li><li>arrow</li><li>arrow2 (double arrow)</li><li>arrows</li><li>arrows2 (double arrows)</li><li>curvedarrow</li><li>curvedarrows</li><li>curvedarrow2</li><li>curvedarrows2</li><li>triangle</li><li>polygon</li><li>poly[3-9] (e.g poly3 ... poly7...poly9</li><li>rect</li><li>roundrect</li><li>rects</li><li>roundrects</li><li>freehandline | path</li><li>freehandlines | paths</li><li>clickfill: fill the clicked area with color<br />multiple areas may be selected <br />multiple colors may be provided using commands <a href='#colorpalette'>colorpalette color1,color2,color3,...</a> use <a href='#replyformat'>replyformat 10</a> for checking the user click color ... reply=x1:y1:color1,x2:y2:color2...<br/>attention: this will <b>not</b> work for pattern filling, because the pattern image is only generated once and after creation can not be changed !<br />the opacity of this image on a separate canvas is set to 0.01 and not 0 (!!)...in the ''fill algorithm`` the opacity of the matching pixels is set to 1</li><li>dotfill: fill the clicked area with a dot pattern; use command linewidth to change dot size</li><li>diamondfill: fill the clicked area with a diamond pattern</li><li>hatchfill: fill the clicked area with a hatch pattern</li><li>gridfill: fill the clicked area with a grid pattern</li><li>textfill: fill the clicked area with a repeating string<br />userdraw textfill,blue,some_text<br />use command <a href="#fontfamily">fontfamily</a> to adjust text style and size</li><li>''clickfill | pattern filling`` in general:<br />the clicks may be set <a href="#snaptogrid">snaptogrid</a><br />can be used together with command <a href="#floodfill">floodfill or fill</a><br /><b>always</b> use together with command <a href="#clearbutton">clearbutton some_text</a> for removal of all click_colored areas<br />the function read_canvas() will return the click coordinates in the sequence of the user clicks<br />use command <a href="#canvastype">canvastype</a> to fill another canvas (default should be fine: DRAG_CANVAS = 5)</li><li>text <br />an inputfield is provided, unicode allowed. The text is drawn a the mouse click, or if used with command ''userinput inputfield`` also at the given x/y-coordonates</li><li>arc</li><li>arcs</li><li>image<br/>only a single "image" of every supported type(*) may be added to canvas window from the surrounding html page.<br />the image should have an 'id' and an onclick handler.<br />(*) supported types are ''svg``,''bitmap``,''p-element``,''div-element`` and ''mathml/tex-code`` with ''\\mmlid{int}``.</li><li>images</li><li>input<br/>place a single inputfield on ''canvas`` <br />use commands 'css' for css styling: use command ''linewidth`` for adjusting the input field size (default 1)</li><li>inputs<br/>place multiple inputfield: placing inputfields on top of each other is not possible</li><li>function : identical to <a href="#userinput">userinput function</a></li></ul>
14078 bpr 5169
        @ note: mouselisteners are only active if ''&#36;status != done`` (eg only drawing in an active/non-finished exercise) <br /> to overrule use command/keyword ''status`` (no arguments required)
15111 schaersvoo 5170
        @ note: object_type text: Any string or multiple strings may be placed anywhere on the canvas.<br />Use command ''fontfamily`` to set font
11088 schaersvoo 5171
        @ note: object_type polygone: Will be finished (the object is closed) when clicked on the first point of the polygone again.
15111 schaersvoo 5172
        @ note: all objects will be removed -after a javascript confirm box- when clicked on an object point with middle or right mouse button (e.g. event.button != 1: all buttons but left)
5173
        @ use a prefix <a href='#filled'>filled</a> or ''f`` to set fillable objects filled. (fcircles,filledcircles etc)<br/> in case of ''fillpattern`` do not use the ''f`` prefix !
11839 schaersvoo 5174
        @ for non solid filling, use command <a href="#fillpattern">fillpattern grid,hatch,diamond,dot</a>
14071 bpr 5175
        @ use <a href='#opacity'>opacity int,int</a> and <a href='#fillcolor'>fillcolor color</a> to trigger coloured filling of fillable objects
14078 bpr 5176
        @ use command ''dashed`` and/or ''dashtype int,int`` to trigger dashing
5177
        @ use command ''replyformat int`` to control / adjust output formatting of javascript function read_canvas(); (the defaults should be fine...)
14071 bpr 5178
        @ may be combined with onclick or drag xy of other components of flyscript objects (although not very useful...)
14066 bpr 5179
        @ may be combined with keyword <a href='#userinput_xy'>userinput_xy</a>
5180
        @ may be combined width the <a href='#snaptogrid'>snaptogrid snaptopoints </a> etc, to simplify the checking of the student reply
13956 schaersvoo 5181
        @ the cursor may be appropriately styled using command <a href='cursor'>cursor</a>
15111 schaersvoo 5182
        @ note: when zooming / panning after a drawing, the drawing will NOT be zoomed / panned...this is a "design" flaw and not a feature <br />To avoid trouble do not use zooming / panning together width userdraw.!<br />use command <a href="#multidraw">multidraw</a> is this is a problem for you...
14247 bpr 5183
        @ note: the default replyformat for ''userdraw input(s),color`` used format x1;y1;text1 \n x2;y2;test2 \n x_n;y_n;text_n (e.g. it is not a comma separated array...use ''direct exec`` to test)
15111 schaersvoo 5184
        @ note: a special case is ''userdraw image,boguscolor``. Images (bitmap or svg or div) present in the exercise page and the img/svg/div-tag with an unique 'id' and <code>onclick='javascript:place_image_on_canvas(this.id)'</code> can be placed onto the canvas.<br />The ''id`` and (x;y) coordinates will be returned using read_canvas();<br /> native MathML, MathJax or KaTeX typesetting may be included in div's.(experiments; wims_modules svn version only!)
15527 bpr 5185
        @ note: command <br /><code>userdraw function,color</code> is identical to acombination of <code>strokecolor color</code> and <code>userinput function</code><br />
15313 schaersvoo 5186
        @ note: commands :<br /><code>multicolors red,green,blue<br />multilabel f(x)=:g(x)=:h(x)=<br />userdraw functions3,color</code><br />is identical to commands :<br /><code>functionlabel f(x)=:p(x)=:w(x)=<br/>strokecolor red<br />userinput function <br />strokecolor green<br />userinput function <br />strokecolor blue<br />userinput function</code>
16613 schaersvoo 5187
        @%userdraw_canvastype_a%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%grid 2,2,grey%replyformat 10%colorpalette orange,yellow,red,green,lightgreen,blue,lightblue,cyan%canvastype 4%userdraw clickfill,blue%clearbutton REMOVE LAST RECTANGLE
12107 schaersvoo 5188
        @%userdraw_canvastype_b%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%canvastype 4%snaptogrid%replyformat 10%userdraw dotfill,blue%clearbutton REMOVE LAST RECTANGLE
5189
        @%userdraw_rect%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw rect,green
5190
        @%userdraw_rects%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw rects,green
5191
        @%userdraw_frect%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw frect,green
5192
        @%userdraw_frects%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw frects,green
5193
        @%userdraw_roundrect%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw roundrect,green
5194
        @%userdraw_roundrects%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw roundrects,green
5195
        @%userdraw_froundrect%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw froundrect,green
5196
        @%userdraw_froundrects%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw froundrects,green
5197
        @%userdraw_line%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw line,green
5198
        @%userdraw_lines%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw lines,green
5199
        @%userdraw_vline%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw vline,green
5200
        @%userdraw_vlines%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw vlines,green
5201
        @%userdraw_hline%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw hline,green
5202
        @%userdraw_hlines%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw hlines,green
5203
        @%userdraw_demiline%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw demiline,green
5204
        @%userdraw_demilines%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw demilines,green
5205
        @%userdraw_arc%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw arc,green
5206
        @%userdraw_arcs%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw arcs,green
5207
        @%userdraw_point%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw point,green
5208
        @%userdraw_points%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw points,green
5209
        @%userdraw_arrow%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw arrow,green
5210
        @%userdraw_arrows%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw arrows,green
5211
        @%userdraw_arrow2%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw arrow2,green
5212
        @%userdraw_arrows2%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw arrows2,green
14025 schaersvoo 5213
        @%userdraw_curvedarrow%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 1%linewidth 3%userdraw curvedarrow,red%clearbutton REMOVE ALL ARROWS
5214
        @%userdraw_curvedarrows%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 1%linewidth 3%userdraw curvedarrows,red%clearbutton REMOVE ALL ARROWS
14270 schaersvoo 5215
        @%userdraw_curvedarrow2%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 1%linewidth 3%userdraw curvedarrow2,red%clearbutton REMOVE ALL ARROWS
5216
        @%userdraw_curvedarrows2%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%precision 1%linewidth 3%userdraw curvedarrows2,red%clearbutton REMOVE ALL ARROWS
12107 schaersvoo 5217
        @%userdraw_crosshair%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw crosshair,green
5218
        @%userdraw_crosshairs%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw crosshairs,green
5219
        @%userdraw_circle%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw circle,green
5220
        @%userdraw_circles%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw circles,green
5221
        @%userdraw_segment%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw segment,green
5222
        @%userdraw_segments%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw segments,green
5223
        @%userdraw_line%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw line,green
5224
        @%userdraw_lines%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw lines,green
5225
        @%userdraw_triangle%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw triangle,green
5226
        @%userdraw_poly5%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw poly5,green
5227
        @%userdraw_filled_poly5%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%filled%userdraw poly5,green
5228
        @%userdraw_poly7%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw poly7,green
5229
        @%userdraw_filled_poly7%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%filled%userdraw poly7,green
5230
        @%userdraw_polyline%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%userdraw polyline,green
5231
        @%userdraw_freehandline%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw freehandline,green
5232
        @%userdraw_filled_freehandline%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%fillcolor orange%opacity 200,50%filled%userdraw freehandline,green
5233
        @%userdraw_freehandlines%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%opacity 200,50%userdraw freehandlines,green
5234
        @%userdraw_input%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%userdraw input,green
5235
        @%userdraw_inputs%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%userdraw inputs,green
5236
        @%userdraw_text%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%fontfamily 42px Courier%userdraw text,green
15111 schaersvoo 5237
        @%userdraw_function%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 1%grid 2,2,grey,2,2,5,grey%multicolors orange,red,green,blue,cyan%precision 1000%userdraw functions3,red%jscurve blue,x^2,-x^2,5*cos(x)%precision 1%mouse red,22
14044 schaersvoo 5238
        @%userdraw_clickfill_colorpalette%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%circles blue,0,0,4,1,1,6,3,3,3,-3,-3,5%opacity 255,120%colorpalette red,green,yellow,blue%userdraw clickfill,green
13948 schaersvoo 5239
        @%userdraw_clickfill_1%size 400,400%xrange -10,10%yrange -10,10%linewidth 3%circles blue,0,0,4,1,1,6,3,3,3,-3,-3,5%opacity 255,120%userdraw clickfill,green
5240
        @%userdraw_clickfill_2%size 400,400%xrange -10,10%yrange -10,10%linewidth 1%circles blue,0,0,2,1,1,5,5,5,4,-5,5,6,5,-5,6%userdraw hatchfill,red%#userdraw dotfill,red%#userdraw diamonefill,red%#userdraw gridfill,red
14071 bpr 5241
        @%userdraw_clickfill_2%size 400,400%xrange -10,10%yrange -10,10%bgcolor white%# to get nice click coordinates take invisible ''grid`` and use ''snaptogrid`` %grid 1,1,white%snaptogrid%circles blue,0,0,2,1,1,5,5,5,4,-5,5,6,5,-5,6%userdraw gridfill,red
7614 schaersvoo 5242
        */
15111 schaersvoo 5243
            if( use_userdraw != 0 ){ /* only one object type may be drawn*/
14038 schaersvoo 5244
                canvas_error("Only one userdraw primitive may be used in command 'userdraw' use command 'multidraw' for this...");
7614 schaersvoo 5245
            }
15111 schaersvoo 5246
            js_function[INTERACTIVE] = 1;
7614 schaersvoo 5247
            draw_type = get_string_argument(infile,0);
15111 schaersvoo 5248
            if( strcmp(draw_type,"textfill") == 0){
5249
             fprintf(js_include_file,"var userdraw_text_string = \"%s\";", get_string(infile,1));
7614 schaersvoo 5250
            }
5251
            else
15111 schaersvoo 5252
            {
5253
             if( strcmp(draw_type,"imagefill") == 0){
5254
              fprintf(js_include_file,"var userdraw_image_url = \"%s\";", get_string(infile,1));
5255
             }
5256
             else
5257
             {
5258
              stroke_color = get_color(infile,1);
5259
             }
7614 schaersvoo 5260
            }
15116 bpr 5261
 
15111 schaersvoo 5262
            if( strcmp(draw_type,"clickfill") == 0){use_filled = 1;fill_color = stroke_color;}
5263
            reply_precision = precision;
5264
            use_userdraw = 1;
5265
            fprintf(js_include_file,"\n\
5266
/* begin userdraw */\
5267
userdraw_x = new Array();userdraw_y = new Array();userdraw_radius = new Array();\
5268
var forbidden_zone=[xsize+1,ysize+1];var xy_cnt = 0;\
5269
var canvas_userdraw = create_canvas%d(%d,xsize,ysize);\
5270
var context_userdraw = canvas_userdraw.getContext(\"2d\");\
5271
var use_dashed = %d;\
5272
var use_snap = %d;if(use_dashed == 1){if( context_userdraw.setLineDash ){context_userdraw.setLineDash([%d,%d]);}else{if(context_userdraw.mozDash){context_userdraw.mozDash = [%d,%d];};};};\
5273
context_userdraw.lineWidth = %d;var use_filled = %d;\
5274
context_userdraw.strokeStyle =  \"rgba(%s,%.2f)\";\
5275
context_userdraw.font = \"%s\";\
15128 schaersvoo 5276
var user_is_dragging = false;\
15111 schaersvoo 5277
if(wims_status != \"done\"){\
5278
canvas_div.addEventListener(\"mousedown\" ,user_draw,false);\
5279
canvas_div.addEventListener(\"mousemove\" ,user_drag,false);\
5280
canvas_div.addEventListener(\"touchstart\",function(e){ e.preventDefault();user_draw(e.changedTouches[0]);},false);\
5281
canvas_div.addEventListener(\"touchmove\" ,function(e){ e.preventDefault();user_drag(e.changedTouches[0]);},false);\
15128 schaersvoo 5282
canvas_div.addEventListener(\"touchend\" ,function(e){ e.preventDefault();user_drawstop(e.changedTouches[0]);},false);\
15111 schaersvoo 5283
};",canvas_root_id,DRAW_CANVAS,use_dashed,use_snap,dashtype[0],dashtype[1],dashtype[0],dashtype[1],line_width,use_filled,stroke_color,stroke_opacity,font_family);
5284
 
5285
            if( use_filled == 0 ){
5286
             fprintf(js_include_file,"context_userdraw.fillStyle = \"rgba(255,255,255.0)\";");
7614 schaersvoo 5287
            }
5288
            else
5289
            {
15111 schaersvoo 5290
             if( use_filled == 1 ){
5291
              fprintf(js_include_file,"context_userdraw.fillStyle = \"rgba(%s,%.2f)\";",fill_color,fill_opacity);
5292
             }
5293
             else
5294
             {
5295
              js_function[DRAW_FILL_PATTERN] = 1;
5296
              fprintf(js_include_file,"context_userdraw.fillStyle = create_Pattern(0,0,%d,[%s]);\n",use_filled,fill_color);
5297
             }
7614 schaersvoo 5298
            }
15111 schaersvoo 5299
            add_js_userdraw(draw_type,stroke_color,stroke_opacity,crosshair_size,arrow_head,use_offset,css_class,use_snap,canvas_type,use_filled,fill_color,fill_opacity,line_width,font_family);
7614 schaersvoo 5300
            reset();
5301
        break;
8386 schaersvoo 5302
 
5303
        case USERINPUT:
5304
        /*
13955 schaersvoo 5305
         @ userinput function inputfield
15715 schaersvoo 5306
         @ alternative: userinput_function
5307
         @ alternative: userinput_xy
15111 schaersvoo 5308
         @ ''inputfield`` is only usable in combination with some ''userdraw draw_type``
5309
         @ note: the input fields are not cleared after the object is drawn...be aware of multiple idential drawings (many clicks on the ''ok`` button)
5310
         @ ''userinput function`` may be used any time (e.g. without userdraw)
14071 bpr 5311
         @ multiple ''userinput function`` commands may be used.
5312
         @ use command <code>functionlabel some_string</code> to define the inputfield text: default value "f(x)="
5313
         @ use command <code>strokecolor some_color</code> to adjust the plot / functionlabel color
15111 schaersvoo 5314
         @ use command <code>css some_css</code> to adjust the inputfields
14071 bpr 5315
         @ use command <code>fontsize int</code> to adjust the label fonts. (default 12px)
5316
         @ the user input for the function will be corrected by a simple ''rawmath`` implementation...<br />an error message will be shown if javascript can not interpret the user input
15111 schaersvoo 5317
         @%userinput_function%size 400,400%xrange -10,10%yrange -10,10%functionlabel your function g(x)=%axis%axisnumbering%xlabel x-axis%ylabel y-axis%grid 2,2,grey,3,3,5,grey%css color:blue;text-align:center%userinput function%# note: number of function inputs not limited
13955 schaersvoo 5318
         @%userinput_points%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%# adding 2 inputfields for x and y%userinput inputfield%userdraw points,blue
5319
         @%userinput_arrows%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%#adding 4 inputfields for (x1;y1)---(x2;y2)%userinput inputfieldd%userdraw arrows,blue
15111 schaersvoo 5320
         @%userinput_combined%size 400,400%xrange -10,10%yrange -10,10%functionlabel your function g(x)=%axis%axisnumbering%xlabel x-axis%ylabel y-axis%precision 0%grid 2,2,grey,3,3,5,grey%css color:blue;text-align:center%precision 1000%strokecolor red%opacity 255,255%userinput function%# note: number of function inputs not limited%userdraw line,blue
8386 schaersvoo 5321
        */
5322
            temp = get_string_argument(infile,1);
5323
            if(strstr(temp,"function") != 0  || strstr(temp,"curve") != 0  || strstr(temp,"plot") != 0 ){
5324
             if( js_function[DRAW_JSFUNCTION] != 1 ){
15111 schaersvoo 5325
              js_function[JS_RAWMATH] = 1;
8386 schaersvoo 5326
              js_function[DRAW_JSFUNCTION] = 1;
5327
              if(reply_format == 0){reply_format = 24;}/* read canvas_input values */
15111 schaersvoo 5328
              add_input_jsfunction(css_class,function_label,input_cnt,stroke_color,stroke_opacity,line_width,use_dashed,dashtype[0],dashtype[1],font_size);
8386 schaersvoo 5329
              input_cnt++;
5330
             }
10953 bpr 5331
             else
8386 schaersvoo 5332
             {
14078 bpr 5333
              /* no need to add DRAW_JSFUNCTION, just call it with the parameters */
15111 schaersvoo 5334
              fprintf(js_include_file,"add_input_jsfunction(%d,\"%s\",%s,%d,\"%s\",\"%.2f\",%d,%d,%d,%d);\n",input_cnt,css_class,function_label,line_width,stroke_color,stroke_opacity,use_dashed,dashtype[0],dashtype[1],font_size);
8386 schaersvoo 5335
              input_cnt++;
5336
             }
15111 schaersvoo 5337
             js_function[JS_MATH] = 1;
5338
             js_function[JS_PLOT] = 1;
8386 schaersvoo 5339
            }
5340
            else
5341
            {
5342
             if(strstr(temp,"inputfield") != 0 ){
15111 schaersvoo 5343
              js_function[JS_SAFE_EVAL] = 1;
5344
              js_function[ADD_USER_INPUTS] = 1;
8386 schaersvoo 5345
             }
5346
             else
5347
             {
15111 schaersvoo 5348
              canvas_error("userinput argument may be \"function\" or \"inputfield\"");
8386 schaersvoo 5349
             }
5350
            }
5351
            break;
5352
        case USERINPUT_XY:
5353
        /*
5354
        @ userinput_xy
9372 schaersvoo 5355
        @ keyword (no arguments required)
8386 schaersvoo 5356
        @ to be used in combination with command "userdraw object_type,color"
14078 bpr 5357
        @ if set two (or three) input fields are added to the document<br />(one for x-values, one for y-values and in case of drawing circle one for radius-values)
8386 schaersvoo 5358
        @ the student may use this as correction for (x:y) on a drawing (or to draw without mouse, using just the coordinates)
14071 bpr 5359
        @ math input is allowed (e.g something like: 1+3,2*6,1/3,sqrt(3), sin(pi/4),10^-2,log(2)...)<br />eval function is ''protected`` against code injection.
14086 bpr 5360
        @ can <b>not</b> be combined with command ''intooltip tiptext`` <br />note: the ''tooltip div element`` is used for placing inputfields
8386 schaersvoo 5361
        @ user drawings will not zoom on zooming (or pan on panning)
15651 reyssat 5362
        @ use command ''css some_css`` to adjust the inputarea.
14071 bpr 5363
        @ use command ''fontsize int`` to adjust the text labels (if needed)
13950 schaersvoo 5364
        @%userinput_xy%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%precision 0%grid 2,2,grey,3,3,6,black%# provides inputfields for (x1:y1)---(x2:y2)%userinput_xy%linewidth 2%precision 1000%userdraw lines,blue
8386 schaersvoo 5365
        */
5366
            /* add simple eval check to avoid code injection with unprotected eval(string) */
15111 schaersvoo 5367
            js_function[JS_SAFE_EVAL] = 1;
5368
            js_function[ADD_USER_INPUTS] = 1;
8386 schaersvoo 5369
            break;
5370
 
5371
        case USERINPUT_FUNCTION:
5372
        /*
5373
        @ userinput_function
15715 schaersvoo 5374
        @ alternative: userinput
9372 schaersvoo 5375
        @ keyword (no arguments required)
14078 bpr 5376
        @ if set, a inputfield will be added to the page
8386 schaersvoo 5377
        @ repeat keyword for more function input fields
5378
        @ the userinput value will be plotted in the canvas
14071 bpr 5379
        @ this value may be read with <code>read_canvas()</code>. <br />for do it yourself js-scripters: If this is the first inputfield in the script, its id is canvas_input0
15111 schaersvoo 5380
        @ use before this command ''userinput_function``,<br />commands like ''css some_css``, ''xlabel some_description``, ''opacity int,int``, ''linewidth int``, ''dashed`` and ''dashtype int,int`` to modify
14071 bpr 5381
        @ fontsize can be set using command ''fontsize int``
5382
        @ incompatible with command ''intooltip link_text_or_image``: it uses the tooltip div for adding the inputfield
15313 schaersvoo 5383
        @%userinput_function%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%xlabel x-axis%ylabel y-axis%precision 0%grid 2,2,grey,2,2,5,grey%precision 1000%linewidth 2%# first inputfield%css color:blue;text-align:center;font-family:Italic;%strokecolor blue%functionlabel g(x)=:p(x)=:k(x)=%userinput function%# second inputfield%css color:green;text-align:center;font-family:Italic;%strokecolor green%userinput function%# third inputfield%css color:purple;text-align:center;font-family:Italic;%strokecolor purple%userinput function%# no limit in number of function inputfields
8386 schaersvoo 5384
        */
5385
            if( js_function[DRAW_JSFUNCTION] != 1 ){
5386
             js_function[DRAW_JSFUNCTION] = 1;
15111 schaersvoo 5387
             js_function[JS_RAWMATH] = 1;
8386 schaersvoo 5388
             if(reply_format == 0){reply_format = 24;}/* read canvas_input values */
15111 schaersvoo 5389
             add_input_jsfunction(css_class,function_label,input_cnt,stroke_color,stroke_opacity,line_width,use_dashed,dashtype[0],dashtype[1],font_size);
8386 schaersvoo 5390
             input_cnt++;
5391
            }
10953 bpr 5392
            else
8386 schaersvoo 5393
            {
14078 bpr 5394
              /* no need to add DRAW_JSFUNCTION, just call it with the parameters */
15111 schaersvoo 5395
             fprintf(js_include_file,"add_input_jsfunction(%d,\"%s\",%s,%d,\"%s\",\"%.2f\",%d,%d,%d,%d);\n",input_cnt,css_class,function_label,line_width,stroke_color,stroke_opacity,use_dashed,dashtype[0],dashtype[1],font_size);
8386 schaersvoo 5396
             input_cnt++;
5397
            }
15111 schaersvoo 5398
            js_function[JS_MATH] = 1;
5399
            js_function[JS_PLOT] = 1;
8386 schaersvoo 5400
            break;
5401
 
11806 schaersvoo 5402
        case VLINE:
8386 schaersvoo 5403
        /*
11806 schaersvoo 5404
        @ vline x,y,color
15715 schaersvoo 5405
        @ alternative: verticalline
15111 schaersvoo 5406
        @ draw a vertical line through point (x:y) in color 'color'
11806 schaersvoo 5407
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a>
12107 schaersvoo 5408
        @%vline%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%onclick%vline 0,0,red%onclick%vline 1,0,orange%onclick%vline 2,0,blue%onclick%vline 3,0,green
8386 schaersvoo 5409
        */
11806 schaersvoo 5410
            for(i=0;i<3;i++) {
7614 schaersvoo 5411
                switch(i){
11806 schaersvoo 5412
                    case 0: double_data[0] = get_real(infile,0);break; /* x-values */
5413
                    case 1: double_data[1] = get_real(infile,0);break; /* y-values */
5414
                    case 2: stroke_color=get_color(infile,1);/* name or hex color */
5415
                        double_data[2] = double_data[0];
7614 schaersvoo 5416
                        decimals = find_number_of_digits(precision);
15111 schaersvoo 5417
                        if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
5418
                        string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,100*ymin,decimals,100*ymax,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5419
                        check_string_length(string_length);tmp_buffer = my_newmem(string_length);
5420
                        snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[0],decimals,double_data[2],decimals,100*ymin,decimals,100*ymax,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5421
                        add_to_buffer(tmp_buffer);
5422
                        if(onclick != 0){object_cnt++;}
5423
                        /* object_cnt++; */
8379 schaersvoo 5424
                        reset();
7614 schaersvoo 5425
                    break;
5426
                }
5427
            }
15111 schaersvoo 5428
            dragstuff[4] = 1;
5429
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 5430
            break;
5431
 
11806 schaersvoo 5432
        case VLINES:
11802 schaersvoo 5433
        /*
11806 schaersvoo 5434
        @ vlines color,x1,y1,x2,y2....
15715 schaersvoo 5435
        @ alternative: verticallines
15111 schaersvoo 5436
        @ draw vertical lines through points (x1:y1),(x2:y2)... in color 'color'
11806 schaersvoo 5437
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually
13939 bpr 5438
        @%vlines%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%onclick%vlines red,1,0,2,0,3,0,4,0
11802 schaersvoo 5439
        */
11806 schaersvoo 5440
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
5441
            fill_color = stroke_color;
5442
            i=0;
5443
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 5444
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11806 schaersvoo 5445
                if(i%2 == 0 ){
5446
                    double_data[i] = get_real(infile,0); /* x */
7614 schaersvoo 5447
                }
11806 schaersvoo 5448
                else
5449
                {
5450
                    double_data[i] = get_real(infile,1); /* y */
7983 schaersvoo 5451
                }
11806 schaersvoo 5452
                i++;
7983 schaersvoo 5453
            }
11806 schaersvoo 5454
            decimals = find_number_of_digits(precision);
15111 schaersvoo 5455
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 5456
            for(c = 0 ; c < i-1 ; c = c+2){
15111 schaersvoo 5457
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c],decimals,ymin,decimals,ymax,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5458
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
5459
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,4,[%.*f,%.*f],[%.*f,%.*f],[0],[0],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c],decimals,ymin,decimals,ymax,line_width,stroke_color,stroke_opacity,fill_color,fill_opacity,use_filled,use_dashed,dashtype[0],dashtype[1],use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5460
                add_to_buffer(tmp_buffer);
5461
                if(onclick != 0){object_cnt++;}
5462
                /* object_cnt++; */
11806 schaersvoo 5463
            }
5464
            reset();
15111 schaersvoo 5465
            dragstuff[4] = 1;
5466
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7983 schaersvoo 5467
            break;
11806 schaersvoo 5468
 
5469
        case VIDEO:
7614 schaersvoo 5470
        /*
11806 schaersvoo 5471
        @ video x,y,w,h,videofile location
14066 bpr 5472
        @ x,y: left top corner of audio element (in xrange / yrange)
5473
        @ w,y: width and height in pixels
5474
        @ video format may be in *.mp4 (todo: other formats)
13950 schaersvoo 5475
        @%video%size 400,400%xrange -10,10%yrange -10,10%opacity 200,100%frect -9,9,6,-6,green%video -5,5,200,200,http://techslides.com/demos/sample-videos/small.mp4
7614 schaersvoo 5476
        */
15111 schaersvoo 5477
            js_function[DRAW_VIDEO] = 1;
7614 schaersvoo 5478
            for(i=0;i<5;i++){
5479
                switch(i){
11806 schaersvoo 5480
                    case 0: int_data[0] = x2px(get_real(infile,0)); break; /* x in x/y-range coord system -> pixel */
14162 bpr 5481
                    case 1: int_data[1] = y2px(get_real(infile,0)); break; /* y in x/y-range coord system -> pixel */
11806 schaersvoo 5482
                    case 2: int_data[2] = (int) (get_real(infile,0)); break; /* pixel width */
5483
                    case 3: int_data[3] = (int) (get_real(infile,0)); break; /* height pixel height */
5484
                    case 4: temp = get_string(infile,1);
14208 schaersvoo 5485
                            string_length = 1 + snprintf(NULL,0,  "draw_video(%d,%d,%d,%d,%d,\"%s\");\n",canvas_root_id,int_data[0],int_data[1],int_data[2],int_data[3],temp);
5486
                            check_string_length(string_length);tmp_buffer = my_newmem(string_length);
11806 schaersvoo 5487
                            snprintf(tmp_buffer,string_length,"draw_video(%d,%d,%d,%d,%d,\"%s\");\n",canvas_root_id,int_data[0],int_data[1],int_data[2],int_data[3],temp);
7614 schaersvoo 5488
                            add_to_buffer(tmp_buffer);
5489
                            break;
5490
                    default:break;
5491
                }
5492
            }
5493
            reset();
5494
            break;
11806 schaersvoo 5495
 
7614 schaersvoo 5496
        case X_AXIS_STRINGS:
5497
        /*
5498
         @ xaxis num1:string1:num2:string2:num3:string3:num4:string4:....num_n:string_n
15715 schaersvoo 5499
         @ alternative: xaxistext
13936 bpr 5500
         @ usable for commands <a href="#numberline">numberline</a> and <a href="#grid">grid</a> or combinations thereof
9346 schaersvoo 5501
         @ use these x-axis num1...num_n values instead of default xmin...xmax
14071 bpr 5502
         @ in case of command ''grid``. there is no need to use keyword <a href="#axisnumbering">axisnumbering</a>
13936 bpr 5503
         @ use command <a href="#axis">axis</a> to have visual x/y-axis lines (see command <a href="#grid">grid</a>
15313 schaersvoo 5504
         @ use command ''fontcolor``, ''fontfamily`` to adjust font <br />defaults: black,12,Arial<br />note: command ''fontsize`` is not active for this command.(''fontsize`` can be used for the <a href="#legend">legend</a> in a <a href="#grid">grid</a>)
9346 schaersvoo 5505
         @ a javascript error message will flag non-matching value:name pairs
14071 bpr 5506
         @ if the ''x-axis words`` are too big and will overlap, a simple alternating offset will be applied
11044 schaersvoo 5507
         @ to be used before command grid (see <a href="#grid">command grid</a>)
14078 bpr 5508
         @ ''xmajor`` steps should be synchronised with numbers eg. ''1`` in the next example <code>grid 1,100,grey,1,4,6,grey</code>
13937 schaersvoo 5509
         @%xaxistext%size 800,200%xrange -1,13%yrange -5,10%axis%xaxistext 1:january:2:february:3:march:4:april:5:may:6:june:7:july:8:august:9:september:10:october:11:november:12:december%grid 1,4,grey,1,2,10,red
7614 schaersvoo 5510
        */
11891 schaersvoo 5511
            use_axis_numbering++;
7614 schaersvoo 5512
            temp = get_string(infile,1);
5513
            if( strstr(temp,":") != 0 ){ temp = str_replace(temp,":","\",\"");}
5514
            if( strstr(temp,"pi") != 0 ){ temp = str_replace(temp,"pi","(3.1415927)");}/* we need to replace pi for javascript y-value*/
11891 schaersvoo 5515
            fprintf(js_include_file,"x_strings[%d] = [\"%s\"];x_strings_up[%d] = null;",use_axis_numbering,temp,use_axis_numbering);
7614 schaersvoo 5516
            break;
9341 schaersvoo 5517
        case X_AXIS_STRINGS_UP:
5518
        /*
5519
         @ xaxisup num1:string1:num2:string2:num3:string3:num4:string4:....num_n:string_n
15715 schaersvoo 5520
         @ alternative: xaxistextup
9341 schaersvoo 5521
         @ the text will be rotated 90&deg; up
11044 schaersvoo 5522
         @ no need to use keyword <a href="#axisnumbering">axisnumbering</a>
13936 bpr 5523
         @ use command <a href="#axis">axis</a> to have visual x/y-axis lines (see command <a href="#grid">grid</a>
9346 schaersvoo 5524
         @ use these x-axis num1...num_n values instead of default xmin...xmax
15313 schaersvoo 5525
         @ use command ''fontcolor``, <a href="#fontfamily">fontfamily</a> to adjust font <br />defaults: black,12,Arial<br />note: command ''fontsize`` is not active for this command.(''fontsize`` can be used for the <a href="#legend">legend</a> in a <a href="#grid">grid</a>)
9346 schaersvoo 5526
         @ a javascript error message will flag non-matching value:name pairs
14071 bpr 5527
         @ if the ''x-axis words`` are too big, they will overlap the graph<br /> (in this case the text will start from ysize upwards)
11044 schaersvoo 5528
         @ to be used before command grid (see <a href="#grid">command grid</a>)
14086 bpr 5529
         @''xmajor`` steps should be synchronised with numbers eg. "1" in the next example <code>grid 1,100,grey,1,4,6,grey</code>
13937 schaersvoo 5530
         @%xaxistextup%size 800,300%xrange -1,13%yrange -10,10%fontfamily Italic 18pt Courier%axis%xaxistextup 1:january:2:february:3:march:4:april:5:may:6:june:7:july:8:august:9:september:10:october:11:november:12:december%grid 1,4,grey,1,2,10,red
9341 schaersvoo 5531
        */
11891 schaersvoo 5532
            use_axis_numbering++;
9341 schaersvoo 5533
            temp = get_string(infile,1);
5534
            if( strstr(temp,":") != 0 ){ temp = str_replace(temp,":","\",\"");}
5535
            if( strstr(temp,"pi") != 0 ){ temp = str_replace(temp,"pi","(3.1415927)");}/* we need to replace pi for javascript y-value*/
11891 schaersvoo 5536
            fprintf(js_include_file,"x_strings_up[%d] = 1;x_strings[%d] = [\"%s\"];",use_axis_numbering,use_axis_numbering,temp);
9341 schaersvoo 5537
            break;
8224 bpr 5538
 
11806 schaersvoo 5539
        case XERRORBARS:
7614 schaersvoo 5540
        /*
11806 schaersvoo 5541
        @ xerrorbars color,E1,E2,x1,y1,x2,y2,...,x_n,y_n
15111 schaersvoo 5542
        @ draw multiple points with x-errorbars E1 (error value left from point) and E2 (error value right from point) at given coordinates in color 'color'
11806 schaersvoo 5543
        @ the errors E1 and E2 values are in xrange.
14071 bpr 5544
        @ use command ''linewidth int`` to adust size
11806 schaersvoo 5545
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually (!)
12107 schaersvoo 5546
        @%xerrorbars%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%drag xy%xerrorbars red,0.8,1.3,0,0,1,1,2,3,3,2,4,5,5,2,6,1,-1,-2,-2,0,-3,2,-4,4,-5,-1
12006 schaersvoo 5547
 
7614 schaersvoo 5548
        */
11806 schaersvoo 5549
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
5550
            fill_color = stroke_color;
5551
            i=0;
5552
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 5553
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11806 schaersvoo 5554
                if(i%2 == 0 ){
5555
                    double_data[i] = get_real(infile,0); /* x */
8071 schaersvoo 5556
                }
11806 schaersvoo 5557
                else
5558
                {
5559
                    double_data[i] = get_real(infile,1); /* y */
7614 schaersvoo 5560
                }
11806 schaersvoo 5561
                i++;
7614 schaersvoo 5562
            }
11806 schaersvoo 5563
            decimals = find_number_of_digits(precision);
15111 schaersvoo 5564
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 5565
            for(c = 2 ; c < i-1 ; c = c+2){
15111 schaersvoo 5566
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,20,[%.*f],[%.*f],[%.2f],[%.2f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],double_data[0],double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5567
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
5568
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,20,[%.*f],[%.*f],[%.2f],[%.2f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],double_data[0],double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5569
                add_to_buffer(tmp_buffer);
5570
                /* object_cnt++; */
5571
                if(onclick != 0){object_cnt++;}
11806 schaersvoo 5572
            }
7614 schaersvoo 5573
            reset();
15111 schaersvoo 5574
            dragstuff[20] = 1;
5575
            if(use_dragstuff == 0 ){ use_dragstuff = 1; }
7614 schaersvoo 5576
            break;
11806 schaersvoo 5577
 
5578
        case XRANGE:
7614 schaersvoo 5579
        /*
11806 schaersvoo 5580
        @ xrange xmin,xmax
15715 schaersvoo 5581
        @ alternative: rangex
11806 schaersvoo 5582
        @ if not given: 0,xsize (eg in pixels)
7614 schaersvoo 5583
        */
11806 schaersvoo 5584
            for(i = 0 ; i<2; i++){
7614 schaersvoo 5585
                switch(i){
11806 schaersvoo 5586
                    case 0: xmin = get_real(infile,0);break;
5587
                    case 1: xmax = get_real(infile,1);break;
7614 schaersvoo 5588
                    default: break;
5589
                }
5590
            }
15111 schaersvoo 5591
            if(xmin >= xmax){canvas_error(" xrange is not OK: xmin &lt; xmax !");}
5592
            fprintf(js_include_file,"var xmin = %f;var xmax = %f;",xmin,xmax);
11806 schaersvoo 5593
            found_size_command++;
7614 schaersvoo 5594
            break;
8386 schaersvoo 5595
 
11806 schaersvoo 5596
        case XSNAPTOGRID:
7614 schaersvoo 5597
        /*
11806 schaersvoo 5598
         @ xsnaptogrid
5599
         @ keyword (no arguments required)
15111 schaersvoo 5600
         @ a draggable object (use command ''drag x|y|xy``) will snap to the given x-grid values when dragged (mouseup)
5601
         @ in case of userdraw the drawn points will snap to xmajor grid
14078 bpr 5602
         @ if no grid is defined, points will snap to every integer xrange value. (eg snap_x=1)
14071 bpr 5603
         @ if you do not want a visible grid, but you only want a ''snaptogrid`` with some value...define this grid with opacity 0.
15111 schaersvoo 5604
         @ if xminor is defined (use keyword ''axis`` to activate xminor), the drawing will snap to xminor <br />use only even dividers in x-minor...for example<br /><code>xsnaptogrid<br />axis<br />grid 2,1,grey,4,4,7,red</code><br /> will snap on x=0, x=0.5, x=1, x=1.5 ....<br /> will snap on y=0, y=0.25 y=0.5 y=0.75 ...<br />
13939 bpr 5605
         @%xsnaptogrid_1%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 2%xsnaptogrid%userdraw segments,red%precision 1%display x,red,12
5606
         @%xsnaptogrid_2%size 400,400%xrange -10,10%yrange -10,10%grid 1,1,grey%linewidth 3%drag x%points red,0,0,0,0,0,0,0,0,0,0
12007 schaersvoo 5607
 
7614 schaersvoo 5608
        */
14038 schaersvoo 5609
        use_snap = 2;
11806 schaersvoo 5610
        break;
8386 schaersvoo 5611
 
11806 schaersvoo 5612
        case XOFFSET:
7614 schaersvoo 5613
        /*
12063 schaersvoo 5614
         @ xoffset
13829 bpr 5615
         @ keyword ; to place the text centered above the text coordinates(x:y) ...
5616
         @ may be used for points or other things requiring centered labels
12063 schaersvoo 5617
         @ use <a href="#fontfamily">fontfamily</a> for setting the font
11811 schaersvoo 5618
         @ may be active for commands <a href="#text">text</a> and <a href="#string">string</a> (e.g. objects in the drag/drop/onclick-library)
15313 schaersvoo 5619
        @%xoffset%size 400,400%xrange -10,10%yrange -10,10%fontfamily 12pt Arial%string blue,-9,-9,no offset%point -9,-9,red%centered%string blue,-6,-6,centered%point -6,-6,red%xoffset%string blue,-3,-3,xoffset%point -3,-3,red%yoffset%string blue,0,0,yoffset%point 0,0,red%xyoffset%string blue,3,3,xyoffset%point 3,3,red%resetoffset%string blue,6,6,resetoffset%point 6,6,red
7614 schaersvoo 5620
        */
12063 schaersvoo 5621
         use_offset = 2;
11806 schaersvoo 5622
         break;
8386 schaersvoo 5623
 
11806 schaersvoo 5624
        case XYOFFSET:
7614 schaersvoo 5625
        /*
11806 schaersvoo 5626
         @ xyoffset
5627
         @ keyword ; to place the text (x:y) to (x+dx:y+dy)... dx/dy are dependent on fontsize/fontfamily
13829 bpr 5628
         @ may be used for points or other things requiring labels
12063 schaersvoo 5629
         @ use <a href="#fontfamily">fontfamily</a> for setting the font
11806 schaersvoo 5630
         @ only active for commands <a href="#text">text</a> and <a href="#string">string</a> (e.g. objects in the drag/drop/onclick-librariy
15651 reyssat 5631
         @ in case of inputfields the inputfield will be centered x and y on its coordinates.<br />for example:<br />inputs 1,1,10,? <br />point 1,1,red <br /> the point will be completely invisible<br />note: keyword ''xyoffset`` will also provide centering if used with <a href='#userdraw'>input(s),color</a>
15313 schaersvoo 5632
         @%xyoffset%size 400,400%xrange -10,10%yrange -10,10%fontfamily 12pt Arial%string blue,-9,-9,no offset%point -9,-9,red%centered%string blue,-6,-6,centered%point -6,-6,red%xoffset%string blue,-3,-3,xoffset%point -3,-3,red%yoffset%string blue,0,0,yoffset%point 0,0,red%xyoffset%string blue,3,3,xyoffset%point 3,3,red%resetoffset%string blue,6,6,resetoffset%point 6,6,red
7614 schaersvoo 5633
        */
12063 schaersvoo 5634
         use_offset = 3;
11806 schaersvoo 5635
         break;
8386 schaersvoo 5636
 
7996 schaersvoo 5637
        case XUNIT:
5638
        /*
5639
         @ xunit some_unit_for_x-values
5640
         @ unicode allowed (no html code)
15309 schaersvoo 5641
         @ use together with command <a href="#display">display or mouse</a>
14071 bpr 5642
         @ will display the cursor x-coordinate in ''unit``
12107 schaersvoo 5643
         @%xunit%size 400,400%xrange -10,10%yrange -10,10%xunit cm \\u00B2%grid 2,2,grey%linewidth 2%userdraw segments,blue%display x,blue,18
7996 schaersvoo 5644
        */
5645
            fprintf(js_include_file,"unit_x = \"%s\";",get_string(infile,1));
5646
            break;
11806 schaersvoo 5647
 
5648
        case XLABEL:
7996 schaersvoo 5649
        /*
11806 schaersvoo 5650
        @ xlabel some_string
15111 schaersvoo 5651
        @ will be used to create a label for the x-axis (label is in quadrant I)
5652
        @ can only be used together with command ''grid``<br />not depending on keywords ''axis`` and ''axisnumbering``
5653
        @ font setting: italic Courier, fontsize will be slightly larger (fontsize + 4)<br />use command ''fontsize`` to adjust.<br />(command ''fontfamily`` is not active for this command)
15309 schaersvoo 5654
        @ use <a href="#ylabel">ylabel</a>
5655
        @%xlabel%size 400,400%xrange -10,10%yrange -10,10%axis%axisnumbering%xlabel cm\\u00B2 %ylabel v\\u00B2 %precision 1%grid 2,2,grey,2,2,5,grey
7996 schaersvoo 5656
        */
11806 schaersvoo 5657
            temp = get_string(infile,1);
5658
            fprintf(js_include_file,"var xaxislabel = \"%s\";",temp);
7996 schaersvoo 5659
            break;
8071 schaersvoo 5660
 
11806 schaersvoo 5661
        case XLOGBASE:
7991 schaersvoo 5662
        /*
11806 schaersvoo 5663
        @ xlogbase number
5664
        @ sets the logbase number for the x-axis
5665
        @ default value 10
5666
        @ use together with commands xlogscale / xylogscale
7991 schaersvoo 5667
        */
11806 schaersvoo 5668
            fprintf(js_include_file,"xlogbase=%d;",(int)(get_real(infile,1)));
7991 schaersvoo 5669
            break;
5670
 
11806 schaersvoo 5671
        case XLOGSCALE:
7614 schaersvoo 5672
        /*
11806 schaersvoo 5673
         @ xlogscale ymajor,yminor,majorcolor,minorcolor
14071 bpr 5674
         @ the x/y-range are set using commands <code>xrange xmin,xmax</code> and <code>yrange ymin,ymax</code>
11806 schaersvoo 5675
         @ ymajor is the major step on the y-axis; yminor is the divisor for the y-step
14071 bpr 5676
         @ the linewidth is set using command ''linewidth int``
14066 bpr 5677
         @ the opacity of major / minor grid lines is set by command <a href='#opacity'>opacity</a>
14379 bpr 5678
         @ default logbase number = 10 ... when needed, set the logbase number with command ''xlogbase number``
14071 bpr 5679
         @ the x/y- axis numbering is triggered by keyword ''axisnumbering``<ul><li>use command ''precision`` before ''xlogscale`` command to set the precision (decimals) of the axis numbering</li><li>use commands ''xlabel some_text`` and/or ''ylabel some_text`` for text on axis: use command ''fontsize int`` to set the fontsize (default 12px)</li><li>use command ''fontfamily fnt_family_string`` to set the fonts for axis-numbering</li><li>use command ''fontcolor`` to set the colour</li></ul>
5680
         @ note: the complete canvas will be used for the ''log paper``
11806 schaersvoo 5681
         @ note: userdrawings are done in the log paper, e.g. javascript:read_canvas() will return the real values
14071 bpr 5682
         @ note: command ''mouse color,fontsize`` will show the real values in the logpaper.<br />\
5683
         @ note: when using something like ''xrange 0.0001,0.01``...combined with commands <a href='#mouse'>mouse</a> and/or <a href='#userdraw'>userdraw</a>...<br /> make sure the <a href='#precision'>precision</a> is set accordingly
14078 bpr 5684
         @ note: in case of userdraw, the use of keyword <a href='#userinput_xy'>userinput_xy</a> may be handy !
14071 bpr 5685
         @ <b>attention</b>: keyword ''snaptogrid`` may not lead to the desired result...
15111 schaersvoo 5686
         @ <b>attention</b>: do not use command ''zoom``
12107 schaersvoo 5687
         @%xlogscale%size 400,400%xrange 10,50000%yrange -5,5%xlabel x-axis%ylabel y-axis%xlogscale 10,1,black,grey%display x,red,22
7614 schaersvoo 5688
        */
11972 schaersvoo 5689
            use_axis_numbering++;if(use_axis_numbering > 1){use_axis_numbering = 1;}
11806 schaersvoo 5690
            if( js_function[DRAW_GRID] == 1 ){canvas_error("only one type of grid is allowed...");}
15111 schaersvoo 5691
            js_function[DRAW_XLOGSCALE] = 1;
11806 schaersvoo 5692
            for(i=0;i<4;i++){
7614 schaersvoo 5693
                switch(i){
11806 schaersvoo 5694
                    case 0: double_data[0] = get_real(infile,0);break; /* xmajor */
5695
                    case 1: int_data[0] = (int) (get_real(infile,0));break; /* xminor */
5696
                    case 2: stroke_color = get_color(infile,0); break;
5697
                    case 3: fill_color = get_color(infile,1);
14208 schaersvoo 5698
                        string_length = 1 + snprintf(NULL,0,"draw_grid%d(%d,%d,\"%s\",\"%s\",%.2f,%.2f,%d,\"%s\",\"%s\",%d,%f,%d,%d); ",canvas_root_id,GRID_CANVAS,line_width,stroke_color,fill_color,stroke_opacity,fill_opacity,font_size,font_family,font_color,use_axis_numbering,double_data[0],int_data[0],precision);
5699
                        tmp_buffer = my_newmem(string_length);
11806 schaersvoo 5700
                        snprintf(tmp_buffer,string_length,"draw_grid%d(%d,%d,\"%s\",\"%s\",%.2f,%.2f,%d,\"%s\",\"%s\",%d,%f,%d,%d); ",canvas_root_id,GRID_CANVAS,line_width,stroke_color,fill_color,stroke_opacity,fill_opacity,font_size,font_family,font_color,use_axis_numbering,double_data[0],int_data[0],precision);
5701
                        fprintf(js_include_file,"use_xlogscale=1;snap_y = %f;snap_x = xlogbase;",double_data[0]/int_data[0]);
5702
                        add_to_buffer(tmp_buffer);
5703
                        break;
7614 schaersvoo 5704
                    default:break;
5705
                }
5706
            }
5707
            break;
11806 schaersvoo 5708
 
5709
        case XYLOGSCALE:
7614 schaersvoo 5710
        /*
11806 schaersvoo 5711
         @ xylogscale majorcolor,minorcolor
14071 bpr 5712
         @ the x/y-range are set using commands ''xrange xmin,xmax`` and ''yrange ymin,ymax``
5713
         @ the linewidth is set using command ''linewidth int``
5714
         @ the opacity of major / minor grid lines is set by command ''opacity [0-255],[0-255]``
14078 bpr 5715
         @ default logbase number = 10 ... when needed, set the logbase number with command ''xlogbase number`` and/or ''ylogbase number``
14071 bpr 5716
         @ the x/y- axis numbering is triggered by keyword ''axisnumbering``<ul><li>use commands ''xlabel some_text`` and/or ''ylabel some_text`` for text on axis: use command ''fontsize int`` to set the fontsize (default 12px)</li><li>use command ''fontfamily fnt_family_string`` to set the fonts for axis-numbering</li><li>use command ''fontcolor`` to set the colour</li></ul>
5717
         @ note: the complete canvas will be used for the ''log paper``
11806 schaersvoo 5718
         @ note: userdrawings are done in the log paper, e.g. javascript:read_canvas() will return the real values
14071 bpr 5719
         @ note: command ''mouse color,fontsize`` will show the real values in the logpaper.<br />\
5720
         @ note: when using something like ''yrange 0.0001,0.01``...combined with commands ''mouse color,fontsize`` and/or ''userdraw type,color``...<br /> make sure the precision is set accordingly (eg command ''precision 10000``)
14078 bpr 5721
         @ note: in case of userdraw, the use of keyword ''userinput_xy`` may be handy !
14071 bpr 5722
         @ <b>attention</b>: keyword ''snaptogrid`` may not lead to the desired result...
15111 schaersvoo 5723
         @ <b>attention</b>: do not use command ''zoom``
13829 bpr 5724
         @%xylogscale%size 400,400%xrange 10,50000%yrange 10,50000%xlabel x-axis%ylabel y-axis%xylogscale black,grey%display xy,red,22
7614 schaersvoo 5725
        */
11972 schaersvoo 5726
            use_axis_numbering++;if(use_axis_numbering > 1){use_axis_numbering = 1;}
11806 schaersvoo 5727
            if( js_function[DRAW_GRID] == 1 ){canvas_error("only one type of grid is allowed...");}
15111 schaersvoo 5728
            js_function[DRAW_XYLOGSCALE] = 1;
11806 schaersvoo 5729
            for(i=0;i<2;i++){
7614 schaersvoo 5730
                switch(i){
11806 schaersvoo 5731
                    case 0: stroke_color = get_color(infile,0); break;
5732
                    case 1: fill_color = get_color(infile,1);
14208 schaersvoo 5733
                        string_length = 1 + snprintf(NULL,0,"draw_grid%d(%d,%d,\"%s\",\"%s\",%.2f,%.2f,%d,\"%s\",\"%s\",%d,%d); ",canvas_root_id,GRID_CANVAS,line_width,stroke_color,fill_color,stroke_opacity,fill_opacity,font_size,font_family,font_color,use_axis_numbering,precision);
5734
                        tmp_buffer = my_newmem(string_length);
11806 schaersvoo 5735
                        snprintf(tmp_buffer,string_length,"draw_grid%d(%d,%d,\"%s\",\"%s\",%.2f,%.2f,%d,\"%s\",\"%s\",%d,%d); ",canvas_root_id,GRID_CANVAS,line_width,stroke_color,fill_color,stroke_opacity,fill_opacity,font_size,font_family,font_color,use_axis_numbering,precision);
5736
                        fprintf(js_include_file,"use_xlogscale=1;use_ylogscale=1;snap_x = xlogbase;snap_y = ylogbase;");
5737
                        add_to_buffer(tmp_buffer);
5738
                        break;
7614 schaersvoo 5739
                    default:break;
5740
                }
5741
            }
5742
        break;
11806 schaersvoo 5743
 
5744
 
5745
        case Y_AXIS_STRINGS:
7647 schaersvoo 5746
        /*
11806 schaersvoo 5747
         @ yaxis num1:string1:num2:string2:num3:string3:num4:string4:....num_n:string_n
15715 schaersvoo 5748
         @ alternative: yaxistext
15313 schaersvoo 5749
         @ use command ''fontcolor``, ''fontfamily`` to adjust font <br />defaults: black,12,Arial<br /> note: command ''fontsize`` is not active for this command.(''fontsize`` can be used for the <a href="#legend">legend</a> in a <a href="#grid">grid</a>)
11806 schaersvoo 5750
         @ no need to use keyword <a href="#axisnumbering">axisnumbering</a>
13936 bpr 5751
         @ use command <a href="#axis">axis</a> to have visual x/y-axis lines (see command <a href="#grid">grid</a>
14071 bpr 5752
         @ use these y-axis num1...num_n values instead of default ymin...ymax
11806 schaersvoo 5753
         @ a javascript error message will flag non-matching value:name pairs
5754
         @ to be used before command grid (see <a href="#grid">command grid</a>)
12107 schaersvoo 5755
         @%yaxistext%size 400,400%yrange 0,13%xrange -100,500%axis%yaxis 1:january:2:february:3:march:5:may:6:june:7:july:8:august:9:september:10:october:11:november:12:december%#'ymajor' steps should be synchronised with numbers eg. "1" in this example%grid 100,1,grey,4,1,6,grey
7647 schaersvoo 5756
        */
11806 schaersvoo 5757
            temp = get_string(infile,1);
5758
            if( strstr(temp,":") != 0 ){ temp = str_replace(temp,":","\",\"");}
5759
            if( strstr(temp,"pi") != 0 ){ temp = str_replace(temp,"pi","(3.1415927)");}/* we need to replace pi for javascript y-value*/
5760
            fprintf(js_include_file,"y_strings = [\"%s\"];\n ",temp);
11891 schaersvoo 5761
            use_axis_numbering++;
11806 schaersvoo 5762
            break;
5763
 
5764
 
5765
        case YERRORBARS:
7614 schaersvoo 5766
        /*
11806 schaersvoo 5767
        @ yerrorbars color,E1,E2,x1,y1,x2,y2,...,x_n,y_n
15111 schaersvoo 5768
        @ draw multiple points with y-errorbars E1 (error value under point) and E2 (error value above point) at given coordinates in color 'color'
11806 schaersvoo 5769
        @ the errors E1 and E2 values are in yrange.
14071 bpr 5770
        @ use command ''linewidth int`` to adust size
11806 schaersvoo 5771
        @ may be set <a href="#drag">draggable</a> / <a href="#onclick">onclick</a> individually (!)
12107 schaersvoo 5772
        @%yerrorbars%size 400,400%xrange -10,10%yrange -10,10%linewidth 2%onclick%yerrorbars red,0.8,1.3,0,0,1,1,2,3,3,2,4,5,5,2,6,1,-1,-2,-2,0,-3,2,-4,4,-5,-1
7614 schaersvoo 5773
        */
11806 schaersvoo 5774
            stroke_color=get_color(infile,0); /* how nice: now the color comes first...*/
5775
            fill_color = stroke_color;
11772 schaersvoo 5776
            i=0;
5777
            while( ! done ){     /* get next item until EOL*/
11997 schaersvoo 5778
                if(i > MAX_INT - 1){canvas_error("too many points in argument: repeat command multiple times to fit");}
11772 schaersvoo 5779
                if(i%2 == 0 ){
5780
                    double_data[i] = get_real(infile,0); /* x */
5781
                }
5782
                else
5783
                {
5784
                    double_data[i] = get_real(infile,1); /* y */
5785
                }
5786
                i++;
5787
            }
15111 schaersvoo 5788
            if( use_slider != -1 && onclick == 0){ onclick = 3; }/* no drag&onclick but slideable */
11806 schaersvoo 5789
            for(c = 2 ; c < i-1 ; c = c+2){
15111 schaersvoo 5790
                string_length = 1 + snprintf(NULL,0,"dragstuff.addShape(new Shape(%d,%d,%d,%d,19,[%.*f],[%.*f],[%.2f],[%.2f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],double_data[0],double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5791
                check_string_length(string_length);tmp_buffer = my_newmem(string_length);
5792
                snprintf(tmp_buffer,string_length,"dragstuff.addShape(new Shape(%d,%d,%d,%d,19,[%.*f],[%.*f],[%.2f],[%.2f],%d,\"%s\",%.2f,\"%s\",%.2f,%d,%d,%d,%d,%d,%.1f,\"%s\",%d,\"%s\",%s,%s,%d));\n",drag_type,object_cnt,onclick,use_snap,decimals,double_data[c],decimals,double_data[c+1],double_data[0],double_data[1],line_width,stroke_color,stroke_opacity,stroke_color,stroke_opacity,1,0,0,0,use_rotate,angle,flytext,font_size,font_family,my_sliders,rotation_center,use_offset);
5793
                add_to_buffer(tmp_buffer);
5794
                /* object_cnt++; */
5795
                if(onclick != 0){object_cnt++;}
8083 schaersvoo 5796
            }
11806 schaersvoo 5797
            decimals = find_number_of_digits(precision);
8083 schaersvoo 5798
            reset();
15111 schaersvoo 5799
            dragstuff[19] = 1;
5800
            if(use_dragstuff == 0 ){ use_dragstuff = 1;}
11806 schaersvoo 5801
            break;
11811 schaersvoo 5802
        case YOFFSET:
5803
        /*
5804
         @ yoffset
14162 bpr 5805
         @ keyword; to place the text centered above the text coordinates(x:y) ...
13829 bpr 5806
         @ may be used for points or other things requiring centered labels
12063 schaersvoo 5807
         @ use <a href="#fontfamily">fontfamily</a> for setting the font
5808
         @ may be active for commands <a href="#text">text</a> and <a href="#string">string</a> (e.g. objects in the drag/drop/onclick-library)
15313 schaersvoo 5809
         @%yoffset%size 400,400%xrange -10,10%yrange -10,10%fontfamily 12pt Arial%string blue,-9,-9,no offset%point -9,-9,red%centered%string blue,-6,-6,centered%point -6,-6,red%xoffset%string blue,-3,-3,xoffset%point -3,-3,red%yoffset%string blue,0,0,yoffset%point 0,0,red%xyoffset%string blue,3,3,xyoffset%point 3,3,red%resetoffset%string blue,6,6,resetoffset%point 6,6,red
11811 schaersvoo 5810
        */
12063 schaersvoo 5811
         use_offset = 1;
11811 schaersvoo 5812
         break;
5813
 
11806 schaersvoo 5814
        case YRANGE:
7614 schaersvoo 5815
        /*
11806 schaersvoo 5816
        @ yrange ymin,ymax
15715 schaersvoo 5817
        @ alternative: rangey
11806 schaersvoo 5818
        @ if not given 0,ysize (eg in pixels)
7614 schaersvoo 5819
        */
11806 schaersvoo 5820
            for(i = 0 ; i<2; i++){
7614 schaersvoo 5821
                switch(i){
11806 schaersvoo 5822
                    case 0: ymin = get_real(infile,0);break;
5823
                    case 1: ymax = get_real(infile,1);break;
5824
                    default: break;
7614 schaersvoo 5825
                }
5826
            }
15111 schaersvoo 5827
            if(ymin >= ymax){canvas_error(" yrange is not OK: ymin &lt; ymax !<br />");}
5828
            fprintf(js_include_file,"var ymin = %f;var ymax = %f;",ymin,ymax);
11806 schaersvoo 5829
            found_size_command++;
5830
            break;
5831
 
5832
        case YSNAPTOGRID:
7614 schaersvoo 5833
        /*
11806 schaersvoo 5834
         @ ysnaptogrid
5835
         @ keyword (no arguments required)
14162 bpr 5836
         @ a draggable object (use command ''drag x|y|xy``) will snap to the given y-grid values when dragged (mouseup)
11806 schaersvoo 5837
         @ in case of userdraw the drawn points will snap to ymajor grid
14078 bpr 5838
         @ if no grid is defined, points will snap to every integer yrange value. (eg snap_y=1)
14071 bpr 5839
         @ if you do not want a visible grid, but you only want a ''snaptogrid`` with some value...define this grid with opacity 0.
5840
         @ if yminor is defined (use keyword ''axis`` to activate yminor), the drawing will snap to yminor <br />use only even dividers in y-minor...for example<br /><code>ysnaptogrid<br />axis<br />grid 2,1,grey,4,4,7,red</code><br /> will snap on x=0, x=0.5, x=1, x=1.5 ....<br /> will snap on y=0, y=0.25 y=0.5 y=0.75 ...<br />
15111 schaersvoo 5841
         @%ysnaptogrid_1%size 400,400%xrange -10,10%yrange -10,10%ysnaptogrid%grid 1,1,grey%linewidth 2%userdraw crosshairs,blue%css font-size:8px;color:blue%clearbutton delete all crosshairs
13959 bpr 5842
         @%ysnaptogrid_2%size 400,400%xrange -10,10%yrange -10,10%ysnaptogrid%grid 1,1,grey%linewidth 3%drag y%points red,0,0,0,0,0,0,0,0,0,0
7614 schaersvoo 5843
        */
14038 schaersvoo 5844
        use_snap = 3;
7614 schaersvoo 5845
        break;
11080 schaersvoo 5846
 
7614 schaersvoo 5847
        case YLABEL:
5848
        /*
5849
        @ ylabel some_string
8224 bpr 5850
        @ will be used to create a (vertical) label for the y-axis (label is in quadrant I)
14071 bpr 5851
        @ can only be used together with command <a href="#grid">grid</a><br />not depending on keywords ''axis`` and ''axisnumbering``
14086 bpr 5852
        @ font setting: italic Courier, fontsize will be slightly larger (fontsize + 4)<br />use command ''fontsize`` to adjust (command ''fontsize`` is not active for this command)
15309 schaersvoo 5853
        @ use <a href="#xlabel">xlabel</a>
12107 schaersvoo 5854
        @%ylabel%size 400,400%xrange -10,10%yrange -10,10%fontsize 8%axis%axisnumbering%precision 1%xlabel x-axis%ylabel y-axis%grid 1,1,grey,2,2,2,red
7614 schaersvoo 5855
        */
5856
            temp = get_string(infile,1);
7653 schaersvoo 5857
            fprintf(js_include_file,"var yaxislabel = \"%s\";",temp);
7614 schaersvoo 5858
            break;
7735 schaersvoo 5859
        case YLOGBASE:
5860
        /*
5861
        @ ylogbase number
5862
        @ sets the logbase number for the y-axis
5863
        @ default value 10
5864
        @ use together with commands ylogscale / xylogscale
5865
        */
5866
            fprintf(js_include_file,"ylogbase=%d;",(int)(get_real(infile,1)));
5867
            break;
7614 schaersvoo 5868
        case YLOGSCALE:
7729 schaersvoo 5869
        /*
5870
         @ ylogscale xmajor,xminor,majorcolor,minorcolor
14071 bpr 5871
         @ the x/y-range are set using commands ''xrange xmin,xmax`` and ''yrange ymin,ymax``
7729 schaersvoo 5872
         @ xmajor is the major step on the x-axis; xminor is the divisor for the x-step
14071 bpr 5873
         @ the linewidth is set using command ''linewidth int``
5874
         @ the opacity of major / minor grid lines is set by command ''opacity [0-255],[0-255]``
14078 bpr 5875
         @ default logbase number = 10 ... when needed, set the logbase number with command ''ylogbase number``
14071 bpr 5876
         @ the x/y- axis numbering is triggered by keyword ''axisnumbering``<ul><li>use command ''precision`` before ''ylogscale`` command to set the precision (decimals) of the axis numbering</li><li>use commands ''xlabel some_text`` and/or ''ylabel some_text`` for text on axis: use command ''fontsize int`` to set the fontsize (default 12px)</li><li>use command ''fontfamily fnt_family_string`` to set the fonts for axis-numbering</li><li>use command ''fontcolor`` to set the color</li></ul>
5877
         @ note: the complete canvas will be used for the ''log paper``
11088 schaersvoo 5878
         @ note: userdrawings are done in the log paper, e.g. javascript:read_canvas() will return the real values
14071 bpr 5879
         @ note: command ''mouse color,fontsize`` will show the real values in the logpaper.<br />\
5880
         @ note: when using something like ''yrange 0.0001,0.01``...combined with commands ''mouse color,fontsize`` and/or ''userdraw type,color``...<br /> make sure the precision is set accordingly (eg command ''precision 10000``)
14078 bpr 5881
         @ note: in case of userdraw, the use of keyword ''userinput_xy`` may be handy !
15111 schaersvoo 5882
         @ <b>attention</b>: do not use command ''zoom``
14071 bpr 5883
         @ <b>attention</b>: keyword ''snaptogrid`` may not lead to the desired result...
7729 schaersvoo 5884
        */
11972 schaersvoo 5885
            use_axis_numbering++;if(use_axis_numbering > 1){use_axis_numbering = 1;}
7729 schaersvoo 5886
            if( js_function[DRAW_GRID] == 1 ){canvas_error("only one type of grid is allowed...");}
15111 schaersvoo 5887
            js_function[DRAW_YLOGSCALE] = 1;
7729 schaersvoo 5888
            for(i=0;i<4;i++){
5889
                switch(i){
5890
                    case 0: double_data[0] = get_real(infile,0);break; /* xmajor */
5891
                    case 1: int_data[0] = (int) (get_real(infile,0));break; /* xminor */
5892
                    case 2: stroke_color = get_color(infile,0); break;
8224 bpr 5893
                    case 3: fill_color = get_color(infile,1);
14208 schaersvoo 5894
                        string_length = 1 + snprintf(NULL,0,"draw_grid%d(%d,%d,\"%s\",\"%s\",%.2f,%.2f,%d,\"%s\",\"%s\",%d,%f,%d,%d); ",canvas_root_id,GRID_CANVAS,line_width,stroke_color,fill_color,stroke_opacity,fill_opacity,font_size,font_family,font_color,use_axis_numbering,double_data[0],int_data[0],precision);
5895
                        tmp_buffer = my_newmem(string_length);
7779 schaersvoo 5896
                        snprintf(tmp_buffer,string_length,"draw_grid%d(%d,%d,\"%s\",\"%s\",%.2f,%.2f,%d,\"%s\",\"%s\",%d,%f,%d,%d); ",canvas_root_id,GRID_CANVAS,line_width,stroke_color,fill_color,stroke_opacity,fill_opacity,font_size,font_family,font_color,use_axis_numbering,double_data[0],int_data[0],precision);
7735 schaersvoo 5897
                        fprintf(js_include_file,"use_ylogscale=1;snap_x = %f;snap_y = ylogbase;",double_data[0]/int_data[0]);
7729 schaersvoo 5898
                        add_to_buffer(tmp_buffer);
5899
                        break;
5900
                    default:break;
5901
                }
5902
            }
7614 schaersvoo 5903
            break;
11806 schaersvoo 5904
 
5905
        case YUNIT:
7735 schaersvoo 5906
        /*
11806 schaersvoo 5907
         @ yunit some_unit_for_y-values
5908
         @ unicode allowed (no html code)
5909
         @ use together with command mousey
14071 bpr 5910
         @ will display the cursor y-coordinate in ''unit``
7735 schaersvoo 5911
        */
11806 schaersvoo 5912
            fprintf(js_include_file,"unit_y = \"%s\";",get_string(infile,1));
5913
            break;
5914
 
5915
        case ZOOM:
5916
        /*
5917
         @ zoom button_color
15313 schaersvoo 5918
         @ introduce a very small ''controlpanel`` at the lower right corner (font size of the panel is fixed to: 22px Arial)
15111 schaersvoo 5919
         @ giving six 15&times;15px ''active`` rectangle areas<br />(''&times;,&darr;,&uarr;,&larr;,&rarr;,&minus;,+``) for zooming and/or panning of the image
5920
         @ a mouse wheel is active for in/out zooming. Drag panning is not supported (this will conflict with many ''userdraw`` or ''multidraw`` primitives)
5921
         @ the ''controlpanel`` is not active for a ''userdraw`` mousedown (but it can interfere with some ''userdraw`` types)
5922
         @ the ''&times;`` symbol will reset to your original xmax/xmin ymax/ymin values.
5923
         @ choose an appropriate color, so the small ''&times;,&darr;,&uarr;,&larr;,&rarr;,&minus;,+`` are clearly visible
14071 bpr 5924
         @ command ''opacity`` may be used to set stroke_opacity of buttons
15111 schaersvoo 5925
         @ note: on zooming, text will not increase / decrease the font size (todo??)
15116 bpr 5926
         @ note: adding ''zooming`` will increase the size of the javascript include with approx. 11 kb
11806 schaersvoo 5927
        */
15111 schaersvoo 5928
            js_function[INTERACTIVE] = 1;
5929
            js_function[JS_ZOOM] = 1;
5930
            if( use_userdraw == 1 ){
5931
              js_function[USERDRAW_AND_ZOOM] = 1;
5932
              fprintf(js_include_file,"forbidden_zone = [%d,%d];",xsize-115,ysize - 20);
5933
            }
5934
            if(jsplot_cnt != -1){ js_function[JSPLOT_AND_ZOOM] = 1;}
11806 schaersvoo 5935
            stroke_color = get_color(infile,1);
5936
            /* we use BG_CANVAS (0) */
15111 schaersvoo 5937
            add_js_zoom_buttons(stroke_color,stroke_opacity);
11806 schaersvoo 5938
            done = TRUE;
5939
            break;
5940
 
5941
/* ready */
7614 schaersvoo 5942
        default:sync_input(infile);
5943
        break;
5944
    }
8224 bpr 5945
  }
7614 schaersvoo 5946
  /* we are done parsing script file */
15111 schaersvoo 5947
  if(use_dragstuff != 0){
5948
  /*  add the 20kb drag code: nearly always used ... use_dragstuff==1: no-mouse ! */
5949
     add_drag_code(DRAG_CANVAS,use_dragstuff,dragstuff,reply_format);
5950
     if(js_function[JS_ZOOM] == 1){
5951
        js_function[DRAG_AND_ZOOM] = 1;
5952
     }
5953
  }
15116 bpr 5954
 
14066 bpr 5955
  /* check if xrange / yrange was set explicit ... or use xmin=0 xmax=xsize ymin=0 ymax=ysize: Quadrant I */
7983 schaersvoo 5956
  if( found_size_command == 1 ){
5957
    fprintf(js_include_file,"var xmin = 0;var xmax = %d;var ymin = 0;var ymax = %d",xsize,ysize);
5958
  }
5959
  else
5960
  {
5961
    if( found_size_command != 3 ){
15111 schaersvoo 5962
     canvas_error("Please specify size first and then both xrange and yrange ...");
7983 schaersvoo 5963
    }
5964
  }
8257 schaersvoo 5965
 
14066 bpr 5966
  /* if needed, add generic draw functions (grid / xml etc) to buffer: these are no draggable/clickable shapes / objects  ! */
15111 schaersvoo 5967
  add_javascript_function();
7614 schaersvoo 5968
   /* add read_canvas() etc functions if needed */
15111 schaersvoo 5969
  if( reply_format > 0 ){ add_read_canvas(reply_format,reply_precision);}
7797 schaersvoo 5970
  /* no zoom, just add buffer */
15111 schaersvoo 5971
  fprintf(js_include_file,"\n/* add buffer */\n%s};\n/* end wims_canvas_function */\nwims_canvas_function%d();\n",buffer,canvas_root_id);
7614 schaersvoo 5972
/* done writing the javascript include file */
5973
fclose(js_include_file);
5974
}
5975
 
5976
/* if using a tooltip, this should always be printed to the *.phtml file, so stdout */
9329 schaersvoo 5977
 if( use_tooltip > 0 ){
5978
  if( use_tooltip == 1 ){
15111 schaersvoo 5979
   add_js_tooltip(tooltip_text,bgcolor);
9329 schaersvoo 5980
  }
5981
  else
5982
  {
5983
   if( use_tooltip == 2 ){
15111 schaersvoo 5984
    add_js_popup(getfile_cmd);
9329 schaersvoo 5985
   }
5986
  }
5987
 }
7614 schaersvoo 5988
exit(EXIT_SUCCESS);
5989
}
5990
/* end main() */
5991
 
15111 schaersvoo 5992
 
7614 schaersvoo 5993
/******************************************************************************
5994
**
5995
**  sync_input
5996
**
5997
**  synchronises input line - reads to end of line, leaving file pointer
5998
**  at first character of next line.
5999
**
6000
**  Used by:
6001
**  main program - error handling.
6002
**
6003
******************************************************************************/
6004
void sync_input(FILE *infile)
6005
{
6006
        int c = 0;
6007
 
7658 schaersvoo 6008
        if( c == '\n' || c == ';' ) return;
6009
        while( ( (c=getc(infile)) != EOF ) && (c != '\n') && (c != '\r') && (c != ';')) ;
7614 schaersvoo 6010
        if( c == EOF ) finished = 1;
7658 schaersvoo 6011
        if( c == '\n' || c == '\r' || c == ';') line_number++;
7614 schaersvoo 6012
        return;
6013
}
6014
 
6015
/******************************************************************************/
6016
 
15111 schaersvoo 6017
 
6018
void transform(int num,int incr){
6019
/*.
6020
only "double_data[]" is used for transformations !!
6021
*/
6022
 int i;int ii;double x,y;
6023
 for(i=0;i<num;i = i+incr){
6024
  ii = i+1;
6025
  x = double_data[i]*affine_matrix[0] + double_data[ii]*affine_matrix[1]+affine_matrix[4];
6026
  y = double_data[i]*affine_matrix[2] + double_data[ii]*affine_matrix[3]+affine_matrix[5];
15601 schaersvoo 6027
 /*
6028
  printf("(%f:%f) &rarr; (%f:%f)<br />",double_data[i],double_data[ii],x,y);
6029
 */
15111 schaersvoo 6030
  double_data[i] = x;
6031
  double_data[ii] = y;
6032
 }
6033
}
6034
 
6035
void rotate(int num,double angle,double center[],int incr){
6036
 int i;int ii;double rad = angle * 0.0174532925199;
6037
 double c = cos(rad);
6038
 double s = sin(rad);
6039
 double x,y;
6040
 for(i=0;i<num;i = i+incr){
6041
  ii = i+1;
6042
  x = c*(double_data[i]-center[0]) + s*(double_data[ii] - center[1] ) + center[0];
6043
  y = c*(double_data[ii]-center[1]) - s*(double_data[i] - center[0] ) + center[1];
6044
  double_data[i] = x;
6045
  double_data[ii] = y;
15116 bpr 6046
 // printf("(x:y) - (%f:%f)<br />",x,y);
15111 schaersvoo 6047
 }
6048
}
6049
/* not used: see transform()
6050
void translate(int num){
6051
 int i;int ii;
6052
 double x,y;
6053
 for(i=0;i<num;i = i+2){
6054
  ii = i+1;
6055
  x = double_data[i] + affine_matrix[4];
6056
  y = double_data[ii] + affine_matrix[5];
6057
  double_data[i] = x;
6058
  double_data[ii] = y;
6059
 }
6060
}
6061
*/
7614 schaersvoo 6062
char *str_replace(const char *str, const char *old, const char *new){
6063
    if(strlen(str) > MAX_BUFFER){canvas_error("string argument too big");}
6064
    char *ret, *r;
6065
    const char *p, *q;
6066
    size_t oldlen = strlen(old);
6067
    size_t count = 0;
6068
    size_t retlen = 0;
6069
    size_t newlen = strlen(new);
6070
    if (oldlen != newlen){
6071
        for (count = 0, p = str; (q = strstr(p, old)) != NULL; p = q + oldlen){
6072
            count++;
6073
            retlen = p - str + strlen(p) + count * (newlen - oldlen);
6074
        }
8224 bpr 6075
    }
7614 schaersvoo 6076
    else
6077
    {
6078
        retlen = strlen(str);
6079
    }
8224 bpr 6080
 
7614 schaersvoo 6081
    if ((ret = malloc(retlen + 1)) == NULL){
6082
        ret = NULL;
6083
        canvas_error("string argument is NULL");
6084
    }
6085
    else
6086
    {
6087
        for (r = ret, p = str; (q = strstr(p, old)) != NULL; p = q + oldlen) {
6088
            size_t l = q - p;
6089
            memcpy(r, p, l);
6090
            r += l;
6091
            memcpy(r, new, newlen);
6092
            r += newlen;
6093
        }
6094
        strcpy(r, p);
6095
    }
6096
    return ret;
6097
}
6098
 
6099
/******************************************************************************/
7848 bpr 6100
 
7614 schaersvoo 6101
char *get_color(FILE *infile , int last){
6102
    int c,i = 0,is_hex = 0;
6103
    char temp[MAX_COLOR_STRING], *string;
8305 schaersvoo 6104
    const char *not_allowed = "0123456789";
10891 schaersvoo 6105
    while(( (c=getc(infile)) != EOF ) && ( c != '\n') && ( c != ',' ) && ( c != ';' )  && ( c != '\t' ) ){
7614 schaersvoo 6106
        if( i > MAX_COLOR_STRING ){ canvas_error("colour string is too big ... ? ");}
6107
        if( c == '#' ){
6108
            is_hex = 1;
6109
        }
6110
        if( c != ' '){
8304 schaersvoo 6111
            if( is_hex == 0 ){if(strchr(not_allowed,c) != 0){canvas_error("found something like a number...but is should have been a colour or #hex color number...<br />Do not use R,G,B !!! ");}}
7614 schaersvoo 6112
            temp[i]=tolower(c);
6113
            i++;
6114
        }
6115
    }
10891 schaersvoo 6116
    if( ( c == '\n' || c == EOF || c == ';' || c == '\t' ) && last == 0){canvas_error("expecting more arguments in command");}
6117
    if( c == '\n' || c == ';'  || c == '\t' ){ done = TRUE; line_number++; }
7614 schaersvoo 6118
    if( c == EOF ){finished = 1;}
6119
    if( finished == 1 && last != 1 ){ canvas_error("expected more arguments");}
6120
    temp[i]='\0';
6121
    if( strlen(temp) == 0 ){ canvas_error("expected a colorname or hexnumber, but found nothing !!");}
6122
    if( is_hex == 1 ){
6123
        char red[3], green[3], blue[3];
6124
        red[0]   = toupper(temp[1]); red[1]   = toupper(temp[2]); red[2]   = '\0';
6125
        green[0] = toupper(temp[3]); green[1] = toupper(temp[4]); green[2] = '\0';
6126
        blue[0]  = toupper(temp[5]); blue[1]  = toupper(temp[6]); blue[2]  = '\0';
6127
        int r = (int) strtol(red,   NULL, 16);
6128
        int g = (int) strtol(green, NULL, 16);
6129
        int b = (int) strtol(blue,  NULL, 16);
14408 schaersvoo 6130
        int L0 = 1+snprintf(NULL,0,"%d,%d,%d",r,g,b);
6131
        string = my_newmem(L0);
6132
        snprintf(string,L0,"%d,%d,%d",r,g,b);
7614 schaersvoo 6133
        return string;
6134
    }
6135
    else
6136
    {
6137
        string = (char *)my_newmem(sizeof(temp));
6138
        snprintf(string,sizeof(temp),"%s",temp);
8304 schaersvoo 6139
        for( i = 0; i < NUMBER_OF_COLORNAMES ; i++ ){
7614 schaersvoo 6140
            if( strcmp( colors[i].name , string ) == 0 ){
6141
                return colors[i].rgb;
6142
            }
6143
        }
8304 schaersvoo 6144
        canvas_error("I was expecting a color name or hexnumber...but found nothing.");
7614 schaersvoo 6145
    }
8304 schaersvoo 6146
    return "0,0,255";
7614 schaersvoo 6147
}
6148
 
14066 bpr 6149
char *get_string(FILE *infile,int last){ /* last = 0: more arguments ; last=1 final argument */
7614 schaersvoo 6150
    int c,i=0;
6151
    char  temp[MAX_BUFFER], *string;
10891 schaersvoo 6152
    while(( (c=getc(infile)) != EOF ) && ( c != '\n') && ( c != '\t') ){
7614 schaersvoo 6153
        temp[i]=c;
6154
        i++;
6155
        if(i > MAX_BUFFER){ canvas_error("string size too big...repeat command to fit string");break;}
6156
    }
10891 schaersvoo 6157
    if( ( c == '\n' ||  c == '\t'  || c == EOF ) && last == 0){canvas_error("expecting more arguments in command");}
6158
    if( c == '\n' ||  c == '\t') { done = TRUE; line_number++; }
11022 schaersvoo 6159
    if( c == EOF ) {finished = 1;}
7614 schaersvoo 6160
    temp[i]='\0';
15722 obado 6161
    if( strlen(temp) == 0 && last != 3 ){ canvas_error("expected a word or string, but found nothing!");}
7614 schaersvoo 6162
    string=(char *)my_newmem(strlen(temp));
6163
    snprintf(string,sizeof(temp),"%s",temp);
6164
    return string;
6165
}
6166
 
14066 bpr 6167
char *get_string_argument(FILE *infile,int last){  /* last = 0: more arguments ; last=1 final argument */
7614 schaersvoo 6168
    int c,i=0;
6169
    char temp[MAX_BUFFER], *string;
10891 schaersvoo 6170
    while(( (c=getc(infile)) != EOF ) && ( c != '\n') && ( c != '\t') && ( c != ',')){
7614 schaersvoo 6171
        temp[i]=c;
6172
        i++;
6173
        if(i > MAX_BUFFER){ canvas_error("string size too big...will cut it off");break;}
6174
    }
8224 bpr 6175
    if( ( c == '\n' || c == EOF) && last == 0){canvas_error("expecting more arguments in command");}
10891 schaersvoo 6176
    if( c == '\n' || c == '\t' ) { line_number++; }
7614 schaersvoo 6177
    if( c == EOF ) {finished = 1;}
9478 schaersvoo 6178
    if( finished == 1 && last == 0 ){ canvas_error("expected more arguments");}
7614 schaersvoo 6179
    temp[i]='\0';
10953 bpr 6180
/*
8322 schaersvoo 6181
    17.10.2014 removed (question Perrin)
6182
    may cause some unwanted effects...
14078 bpr 6183
    if( strlen(temp) == 0 ){ canvas_error("expected a word or string (without comma), but found nothing !!");}
8322 schaersvoo 6184
*/
7614 schaersvoo 6185
    string=(char *)my_newmem(sizeof(temp));
6186
    snprintf(string,sizeof(temp),"%s",temp);
6187
    done = TRUE;
6188
    return string;
6189
}
6190
 
14066 bpr 6191
double get_real(FILE *infile, int last){ /* accept anything that looks like an number ?  last = 0: more arguments ; last=1 final argument */
7614 schaersvoo 6192
    int c,i=0,found_calc = 0;
6193
    double y;
6194
    char tmp[MAX_INT];
10953 bpr 6195
    /*
14066 bpr 6196
     these things are 'allowed functions': *,^,+,-,/,(,),e,arc,cos,tan,pi,log,ln,sqrt,abs
8383 schaersvoo 6197
     but there should be a better way to avoid segfaults !
8348 schaersvoo 6198
    */
6199
    const char *allowed = "earcostanpilogqb*+-/^()";/* assuming these are allowed stuff in a 'number'*/
6200
    const char *not_allowed = "#dfhjkmuvwxyz{}[]%&~!$";/* avoid segmentation faults in a "atof()" and "wims eval" */
10891 schaersvoo 6201
    while(( (c=getc(infile)) != EOF ) && ( c != ',') && (c != '\n') && (c != '\t') && ( c != ';')){
7614 schaersvoo 6202
     if( c != ' ' ){
8224 bpr 6203
      if( i == 0 &&  c == '+' ){
7614 schaersvoo 6204
       continue;
8224 bpr 6205
      }
7614 schaersvoo 6206
      else
6207
      {
8304 schaersvoo 6208
       c = tolower(c);
6209
       if( strchr(not_allowed,c) != 0 ){canvas_error("found a character not associated with a number...");}
6210
       if( strchr(allowed,c) != 0 ){found_calc = 1;}/* hand the string over to wims eval() */
7614 schaersvoo 6211
       tmp[i] = c;
6212
       i++;
6213
      }
6214
     }
6215
     if( i > MAX_INT - 1){canvas_error("number too large");}
6216
    }
10891 schaersvoo 6217
    if( ( c == '\n' || c == EOF || c == ';' || c == '\t' ) && last == 0){canvas_error("expecting more arguments in command");}
6218
    if( c == '\n' || c == ';' || c == '\t' ){ done = TRUE; line_number++; }
7614 schaersvoo 6219
    if( c == EOF ){done = TRUE ; finished = 1;}
6220
    tmp[i]='\0';
15633 bpr 6221
    if( strlen(tmp) == 0 ){canvas_error("expected a number, but found nothing !!");}
8304 schaersvoo 6222
    if( found_calc == 1 ){ /* use wims eval to calculate 2*pi/3 */
7848 bpr 6223
     void *f = eval_create(tmp);
7614 schaersvoo 6224
     assert(f);if( f == NULL ){canvas_error("I'm having trouble parsing your \"expression\" ") ;}
7848 bpr 6225
     y = eval_x(f, 1);
14066 bpr 6226
     /* if function is bogus; y = 1: so no core dumps */
7848 bpr 6227
     eval_destroy(f);
7614 schaersvoo 6228
    }
6229
    else
6230
    {
6231
     y = atof(tmp);
6232
    }
6233
    return y;
6234
}
8304 schaersvoo 6235
 
13829 bpr 6236
 
7614 schaersvoo 6237
void canvas_error(char *msg){
15722 obado 6238
    fprintf(stdout,"\n</script><hr /><span style=\"color:red\">FATAL syntax error: line %d: %s</span><hr />",line_number,msg);
7614 schaersvoo 6239
    finished = 1;
6240
    exit(EXIT_SUCCESS);
6241
}
6242
 
6243
 
6244
/* convert x/y coordinates to pixel */
6245
int x2px(double x){
6246
 return x*xsize/(xmax - xmin) -  xsize*xmin/(xmax - xmin);
6247
}
6248
 
6249
int y2px(double y){
6250
 return -1*y*ysize/(ymax - ymin) + ymax*ysize/(ymax - ymin);
6251
}
6252
 
6253
double px2x(int x){
6254
 return (x*(xmax - xmin)/xsize + xmin);
6255
}
6256
double px2y(int y){
6257
 return (y*(ymax - ymin)/ysize + ymin);
6258
}
6259
 
6260
void add_to_buffer(char *tmp){
15111 schaersvoo 6261
//fprintf(stdout,"tmp = %s<br />buffer = %s<br />",tmp,buffer);
7614 schaersvoo 6262
 if( tmp == NULL || tmp == 0 ){ canvas_error("nothing to add_to_buffer()...");}
6263
 /*  do we have enough space left in buffer[MAX_BUFFER] ? */
6264
 int space_left = (int) (sizeof(buffer) - strlen(buffer));
6265
 if( space_left > strlen(tmp)){
6266
  strncat(buffer,tmp,space_left - 1);/* add safely "tmp" to the string buffer */
6267
 }
6268
 else
6269
 {
15111 schaersvoo 6270
  canvas_error("your memory buffer is too big<br />simplify your script...it produces too many lines ");
7614 schaersvoo 6271
 }
6272
 tmp = NULL;free(tmp);
6273
 return;
6274
}
6275
 
6276
void reset(){
15111 schaersvoo 6277
 if(no_reset == FALSE){ /* 8/5/2020 */
6278
  use_filled = FALSE;
6279
  use_dashed = FALSE;
6280
  if(onclick != 4 ){onclick = 0;} /* slider param 'active'... onclick=4 */
6281
  drag_type = -1;
6282
  use_offset = 0;
15601 schaersvoo 6283
 }
7614 schaersvoo 6284
}
6285
 
15111 schaersvoo 6286
char *getMML(char *tex){
6287
 int my_pipe[2];pid_t pid;
6288
 if(pipe(my_pipe)){canvas_error("mathml(): pipe() failure.\n");}
6289
  pid = fork();
6290
  if (pid == (pid_t) 0){
6291
   char *argv[]={"wims_mathml","--use-zoom","0","--tex-size 100%","--max-mml-size","1024","--tex-string",tex,NULL};
6292
   close(my_pipe[0]);dup2(my_pipe[1], 1);dup2(my_pipe[1], 2);close(my_pipe[1]);
6293
   execv("../bin/wims_mathml",argv);canvas_error("could not execute wims_mathml\n");
6294
  }
6295
  else
15116 bpr 6296
  {
15111 schaersvoo 6297
  if (pid < (pid_t) 0){
15116 bpr 6298
   close(my_pipe[0]);close(my_pipe[1]);canvas_error("mathml(): fork() failure.\n");
15111 schaersvoo 6299
  }
6300
  int status;FILE *stream;close(my_pipe[1]);stream = fdopen (my_pipe[0], "r");
6301
  char buffer[MAX_BUFFER+1];memset(buffer,'\0',MAX_BUFFER);
6302
  fgets(buffer, MAX_BUFFER, stream);
6303
  int L0 = 1 + snprintf(NULL,0,"%s", buffer);
6304
  tex = my_newmem(L0);memset(tex,'\0',L0);
6305
  snprintf(tex,L0,"%s",buffer);
15116 bpr 6306
  fclose (stream);close(my_pipe[0]);waitpid(pid, &status, 0);
15111 schaersvoo 6307
 }
6308
 return tex;
6309
}
7614 schaersvoo 6310
 
15111 schaersvoo 6311
char *getSVGMOL(char *inputtype,char *keys){
6312
  int idx;
6313
  char *forbidden[] = {"-O","-H","-z","-L","-o","-m"};
6314
  char *argv[1+strlen(keys)];
6315
  argv[0] = "obabel"; argv[1] = "-i"; argv[2] = inputtype;
6316
  idx = 3;int i;
6317
  char *ptr = strtok(keys,",");
6318
  while(ptr != NULL ){
6319
    for(i = 0 ; i < 6; i++ ){if( strncmp(ptr,forbidden[i],2) == 0 ){return "NOT ALLOWED ARGUMENT";}}
6320
    argv[idx] = ptr; idx++;
6321
    if(idx > 18){canvas_error("too many arguments for obabel....see docs<br />");}
6322
    ptr = strtok(NULL,",");
6323
  }
6324
  /* last arguments; no 'javascript', only 'svg to STDOUT' and 'NULL' */
6325
  argv[idx] = "-xj";argv[idx+1] = "-o"; argv[idx+2] = "svg";argv[idx+3] = NULL;
6326
  int link[2];
6327
  pid_t pid;
6328
  char buffer[MAX_BUFFER+1];
6329
  memset(buffer,'\0',MAX_BUFFER);
6330
  if (pipe(link)==-1){canvas_error("pipe");}
6331
  if ((pid = fork()) == -1){canvas_error("fork");}
15116 bpr 6332
 
15111 schaersvoo 6333
  char *svgmol = "error";
6334
  int string_length = 0;
15116 bpr 6335
 
15111 schaersvoo 6336
  if(pid == 0) {
6337
    dup2 (link[1], STDOUT_FILENO);
6338
    dup2(link[0],  STDERR_FILENO);/* remove annoying messages '1 molecule converted' */
6339
    close(link[0]);
6340
    close(link[1]);
6341
    execvp("obabel",argv);
6342
  } else {
6343
    close(link[1]);
6344
    read(link[0],buffer, 1+sizeof(buffer));
6345
    close(link[0]);
6346
    /* need to remover newline from svg-string on freebsd */
6347
    char *pch = strstr(buffer, "\n");
6348
    while(pch != NULL){
6349
     strncpy(pch, " ", 1);
6350
     pch = strstr(buffer, "\n");
6351
    }
6352
    string_length = 1 + snprintf(NULL,0,"%s",buffer);
6353
    svgmol= my_newmem(string_length);
6354
    snprintf(svgmol,string_length,"%s",buffer);
6355
    wait(NULL);
6356
  }
6357
 return svgmol;
6358
}
7614 schaersvoo 6359
 
6360
 
15111 schaersvoo 6361
/* GNU libmatheval library for evaluating mathematical functions. */
15601 schaersvoo 6362
char *eval(int xsize,int ysize,char *fun,double xmin,double xmax,double ymin,double ymax,int plotsteps,int precision,double rotationcenter[]){
15111 schaersvoo 6363
    void *f;
6364
    double x;
6365
    double y;
15601 schaersvoo 6366
    double xorg;
15111 schaersvoo 6367
    int xv;
6368
    int i = 0;
6369
    int xstep =(int)(xsize/plotsteps);
6370
    if( xstep == 0 ){xstep = 1;}
6371
    double a = (xmax - xmin)/xsize;
6372
    f = eval_create(fun);
6373
    assert (f);
6374
    if( f == NULL ){canvas_error("I'm having trouble parsing your \"expression\" ") ;}
6375
    /* we supply the true x/y values...draw_curve() will convert these (x:y) to pixels : used for pan/scale */
6376
    double xydata[MAX_BUFFER+1];/* hmmm */
6377
    int lim_ymin =(int)( ymin - 4*fabs(ymin));/* 19-4-2015 replacing "abs" by "fabs"*/
6378
    int lim_ymax =(int)( ymax + 4*fabs(ymax));/* 19-4-2015 replacing "abs" by "fabs"*/
15669 schaersvoo 6379
    double c = 1.0;double s = 1.0;
15601 schaersvoo 6380
    if( use_rotate == TRUE ){s = sin(angle*0.0174533);c = cos(angle*0.0174533);}
15111 schaersvoo 6381
    for ( xv = 0 ;xv < xsize ; xv = xv+xstep ){
6382
        x = (double) (xv*a + xmin);
15601 schaersvoo 6383
        xorg = x;
15111 schaersvoo 6384
        if( i < MAX_BUFFER - 2){
6385
            y = eval_x(f, x);
6386
            if(y < lim_ymax && y > lim_ymin ){
15540 schaersvoo 6387
                if( use_affine == TRUE ){
6388
                    x = x*affine_matrix[0] + y*affine_matrix[1]+affine_matrix[4];
15601 schaersvoo 6389
                    y = xorg*affine_matrix[2] + y*affine_matrix[3]+affine_matrix[5];
15540 schaersvoo 6390
                }
15601 schaersvoo 6391
                if( use_rotate == TRUE){
6392
                  x = (c * (x - rotationcenter[0])) + (s * (y - rotationcenter[1])) + rotationcenter[0];
6393
                  y = (c * (y - rotationcenter[1])) - (s * (xorg - rotationcenter[0])) + rotationcenter[1];
6394
                }
15111 schaersvoo 6395
                xydata[i++] = x;
6396
                xydata[i++] = y;
6397
            }
6398
        }
6399
        else
6400
        {
6401
            canvas_error("\nYour curve plotting produces too many data \n Use less plotsteps or some other means to reduce the amount of data... ");
6402
        }
6403
    }
6404
    eval_destroy(f);
6405
    return double_xy2js_array(xydata,i,find_number_of_digits(precision));
6406
}
6407
/* plot a very primitive (!) levelcurve : not to be compared with "flydraw levelcurve" */
6408
char *eval_levelcurve(int xsize,int ysize,char *fun,double xmin,double xmax,double ymin,double ymax,int plotsteps,int precision,double level){
6409
    void *f = eval_create(fun);
6410
    assert (f);
6411
    if( f == NULL ){canvas_error("I'm having trouble parsing your \"expression\" ") ;}
6412
    double a = (double)((xmax - xmin)/plotsteps);
6413
    double b = (double)((ymax - ymin)/plotsteps);
15669 schaersvoo 6414
    double x;double y;double diff;
15111 schaersvoo 6415
    double xydata[MAX_BUFFER+1];
6416
    int i = 0;
6417
    ymin = ymin - 1;
6418
    xmin = xmin - 1;
6419
    ymax = ymax + 1;
6420
    xmax = xmax + 1;
6421
    for( x = xmin ;x < xmax ; x = x + a ){
6422
        for ( y = ymin ;y < ymax ; y = y + b ){
6423
            if( i < MAX_BUFFER - 2){
6424
                diff = level - eval_x_y(f, x,y);
6425
                if(diff < 0.1 && diff > -0.1){
6426
                    xydata[i++] = x;
6427
                    xydata[i++] = y;
6428
                }
6429
            }
6430
            else
6431
            {
6432
                canvas_error("\nYour curve plotting produces too many data \n Use less plotsteps, decrease image size...\nor some other means to reduce the amount of data... ");
6433
            }
6434
        }
6435
    }
6436
    eval_destroy(f);
6437
    return double_xy2js_array(xydata,i,find_number_of_digits(precision));
6438
}
7614 schaersvoo 6439
 
15111 schaersvoo 6440
/* plot parametric function */
6441
char *eval_parametric(int xsize,int ysize,char *fun1,char* fun2,double xmin,double xmax,double ymin,double ymax,
15601 schaersvoo 6442
 double tmin,double tmax,int plotsteps,int precision,double rotationcenter[]){
15111 schaersvoo 6443
    void *fx;
6444
    void *fy;
6445
    double t;
6446
    int i = 0;
6447
    double tstep = (tmax-tmin)/plotsteps;
6448
    if( tstep == 0 ){canvas_error("zero step for t variable : reduce plotsteps or inrease trange");}
6449
    fx = eval_create(fun1);
6450
    fy = eval_create(fun2);
6451
    assert(fx);
6452
    assert(fy);
6453
    if( fx == NULL || fy == NULL ){canvas_error("I'm having trouble parsing your \"expression\" ") ;}
6454
    /* we supply the true x/y values...draw_curve() will convert these (x:y) to pixels : used for pan/scale */
6455
    double xydata[MAX_BUFFER+1];/* hmmm */
6456
    double x; /* real x-values */
6457
    double y; /* real y-values */
15601 schaersvoo 6458
    double xorg;
15623 schaersvoo 6459
    /*
6460
    29/12/2020
15633 bpr 6461
    disabled to try and synchronise curve+affine behaviour in complex scripts produced by "elec, tool circuit" (BPR)
15623 schaersvoo 6462
    int lim_ymin =(int)( ymin - 4*fabs(ymin));
6463
    int lim_ymax =(int)( ymax + 4*fabs(ymax));
6464
    */
15669 schaersvoo 6465
    double c = 1.0;double s = 1.0;if( use_rotate == TRUE ){s = sin(angle*0.0174533);c = cos(angle*0.0174533);}
15111 schaersvoo 6466
    for( t = tmin ;t <= tmax ; t = t + tstep ){
6467
        if( i < MAX_BUFFER - 2 ){
6468
            y = eval_t(fy, t);
15623 schaersvoo 6469
        /*    if(y > lim_ymin && y < lim_ymax){*/
15111 schaersvoo 6470
                x = eval_t(fx, t);
15628 schaersvoo 6471
                if( x == x){ /* no NaN */
6472
                 xorg = x;
6473
                 if( use_affine == TRUE ){
6474
                  x = x*affine_matrix[0] + y*affine_matrix[1]+affine_matrix[4];
6475
                  y = xorg*affine_matrix[2] + y*affine_matrix[3]+affine_matrix[5];
6476
                 }
6477
                 if( use_rotate == TRUE){
6478
                   x = (c * (x - rotationcenter[0])) + (s * (y - rotationcenter[1])) + rotationcenter[0];
6479
                   y = (c * (y - rotationcenter[1])) - (s * (xorg - rotationcenter[0])) + rotationcenter[1];
6480
                 }
6481
                 xydata[i++] = x;
6482
                 xydata[i++] = y;
15540 schaersvoo 6483
                }
15629 bpr 6484
 
15623 schaersvoo 6485
        /*    } */
15111 schaersvoo 6486
        }
6487
        else
6488
        {
6489
            canvas_error("\nYour curve plotting produces too many data \n Use less plotsteps or some other means to reduce the amount of data... ");
6490
        }
6491
    }
6492
    eval_destroy(fx);
6493
    eval_destroy(fy);
6494
    return double_xy2js_array(xydata,i,find_number_of_digits(precision));
6495
}
7614 schaersvoo 6496
 
15111 schaersvoo 6497
char *double_xy2js_array(double xy[],int len,int decimals){
6498
 /*
6499
    1,2,3,4,5,6,7,8 --> [1,3,5,7],[2,4,6,8]
6500
    int xy[] is already checked for errors or overflow in "get_real()"
6501
    just to be sure we double check the size of "temp"
7614 schaersvoo 6502
*/
15111 schaersvoo 6503
    char temp[2*MAX_BUFFER], *string;
6504
    char *tmp = my_newmem(16);/* <= 9999999999999999  */
6505
    memset(temp,'\0',2*MAX_BUFFER);/* clear memory */
6506
    int i;int space_left;
6507
    temp[0] = '[';/* start js-array */
6508
    for(i = 0; i < len;i = i + 2){ /*  x_points[] */
6509
        if(i == len - 2){sprintf(tmp, "%.*f",decimals, xy[i]);}else{sprintf(tmp, "%.*f,",decimals,xy[i]);}
6510
        space_left = (int) (sizeof(temp) - strlen(temp) - strlen(tmp) - 1);
6511
        if( space_left > 0 ){ strncat(temp,tmp,space_left - 1);}else{canvas_error("can not parse integer to js-array:\nYour curve plotting produces too many data \nreduce your image size or plotsteps ");}
6512
    }
6513
    strncat(temp,"],[",4); /* close js x_values array and start new */
6514
    for(i = 1; i < len;i = i + 2){ /* y_points */
6515
        if(i == len - 1){ sprintf(tmp, "%.*f",decimals,xy[i]);}else{sprintf(tmp, "%.*f,",decimals,xy[i]);}
6516
        space_left = (int) (sizeof(temp) - strlen(temp) - strlen(tmp) - 1);
6517
        if( space_left > 0 ){ strncat(temp,tmp,space_left - 1);}else{canvas_error("can not parse integer to js-array:\nYour curve plotting produces too many data \nreduce your image size or plotsteps");}
6518
    }
6519
    strncat(temp,"]",2);
6520
    string=(char *)my_newmem(sizeof(temp));
6521
    snprintf(string,sizeof(temp),"%s",temp);
6522
    return string;
6523
}
7614 schaersvoo 6524
 
15111 schaersvoo 6525
char *list2js_array(char *list, char *s){/* abc:defg:hjiuy:qwer --> ["abc","defg","hjiuy","qwer"] */
6526
#define MAX_ARG 128
15116 bpr 6527
 if( strlen(list)> MAX_ARG - 1){canvas_error("argument is too large (&gt; 128)");}
15111 schaersvoo 6528
 char tmp[MAX_ARG];
6529
 size_t p = 0;
6530
 tmp[0] = '[';
6531
 tmp[1] = '\"';
6532
 size_t t = 2;
6533
 while(list[p] != '\0'){
6534
  if( list[p] == s[0] ){
6535
   tmp[t++]='\"';tmp[t++]=',';tmp[t++]='\"';
6536
  }
6537
  else
6538
  {
6539
   tmp[t++] = list[p];
6540
  }
6541
  p++;
6542
 }
6543
 tmp[t++]='\"';tmp[t++]=']';tmp[t++]= '\0';
6544
 char *js_array = (char *)my_newmem(sizeof(tmp));
6545
 snprintf(js_array,sizeof(tmp),"%s",tmp);
6546
 return js_array;
6547
}
7963 schaersvoo 6548
 
15111 schaersvoo 6549
char *xy2js_array(int xy[],int len){
6550
 /*
6551
    1,2,3,4,5,6,7,8 --> [1,3,5,7],[2,4,6,8]
6552
    int xy[] is already checked for errors or overflow in "get_real()"
6553
    just to be sure we double check the size of "temp"
7614 schaersvoo 6554
*/
15111 schaersvoo 6555
    char temp[MAX_BUFFER], *string;
6556
    char *tmp = my_newmem(16);/* <= 9999999999999999  */
6557
    memset(temp,'\0',MAX_BUFFER);/* clear memory */
6558
    int i;int space_left;
6559
    temp[0] = '[';/* start js-array */
6560
    for(i = 0; i < len;i = i + 2){ /*  x_points[] */
6561
        if(i == len - 2){sprintf(tmp, "%d", xy[i]);}else{sprintf(tmp, "%d,", xy[i]);}
6562
        space_left = (int) (sizeof(temp) - strlen(temp) - strlen(tmp) - 1);
6563
        if( space_left > 0 ){ strncat(temp,tmp,space_left - 1);}else{canvas_error("can not parse integer to js-array:\nYour curve plotting produces too many data \nreduce image size or plotsteps ");}
6564
    }
6565
    strncat(temp,"],[",4); /* close js x_values array and start new */
6566
    for(i = 1; i < len;i = i + 2){ /* y_points */
6567
        if(i == len - 1){ sprintf(tmp, "%d", xy[i]);}else{sprintf(tmp, "%d,", xy[i]);}
6568
        space_left = (int) (sizeof(temp) - strlen(temp) - strlen(tmp) - 1);
6569
        if( space_left > 0 ){ strncat(temp,tmp,space_left - 1);}else{canvas_error("can not parse integer to js-array:\nYour curve plotting produces too many data\nreduce image size or plotsteps \n");}
6570
    }
6571
    strncat(temp,"]",2);
6572
    string=(char *)my_newmem(sizeof(temp));
6573
    snprintf(string,sizeof(temp),"%s",temp);
6574
    return string;
7614 schaersvoo 6575
}
6576
 
15111 schaersvoo 6577
char *data2js_array(int data[],int len){
6578
 /*
6579
    1,2,3,4,5,6,7,8 --> [1,2,3,4,5,6,7,8]
6580
    int data[] is already checked for errors or overflow in "get_real()"
6581
    just to be sure we double check the size of "temp"
7614 schaersvoo 6582
*/
15111 schaersvoo 6583
    char temp[MAX_BUFFER], *string;
6584
    char *tmp = my_newmem(16);/* <= 9999999999999999  */
6585
    memset(temp,'\0',MAX_BUFFER);/* clear memory */
6586
    int i;int space_left;
6587
    temp[0] = '[';/* start js-array */
6588
    for(i = 0; i < len; i++){
6589
        if(i == len - 1){sprintf(tmp, "%d", data[i]);}else{sprintf(tmp, "%d,", data[i]);}
6590
        space_left = (int) (sizeof(temp) - strlen(temp) - strlen(tmp) - 1);
6591
        if( space_left > 0 ){ strncat(temp,tmp,space_left - 1);}else{canvas_error("can not parse integer to js-array:\nYour curve plotting produces too many data \nreduce image size or plotsteps ");}
6592
    }
6593
    strncat(temp,"]",2);
6594
    string=(char *)my_newmem(sizeof(temp));
6595
    snprintf(string,sizeof(temp),"%s",temp);
6596
    return string;
6597
}
7614 schaersvoo 6598
 
15111 schaersvoo 6599
char *doubledata2js_array(double data[],int len, int decimals){
6600
 /*
15116 bpr 6601
    1.4355,2.345353,3.3455 --> [1.44,2.35,3.35]
15111 schaersvoo 6602
    double data[] is already checked for errors or overflow in "get_real()"
6603
    just to be sure we double check the size of "temp"
8448 schaersvoo 6604
*/
15111 schaersvoo 6605
    char temp[MAX_BUFFER], *string;
6606
    char *tmp = my_newmem(16);/* <= 9999999999999999  */
6607
    memset(temp,'\0',MAX_BUFFER);/* clear memory */
6608
    int i;int space_left;
6609
    temp[0] = '[';/* start js-array */
6610
    for(i = 0; i < len; i++){
6611
        if(i == len - 1){sprintf(tmp, "%.*f",decimals,data[i]);}else{sprintf(tmp, "%.*f,",decimals,data[i]);}
6612
        space_left = (int) (sizeof(temp) - strlen(temp) - strlen(tmp) - 1);
6613
        if( space_left > 0 ){ strncat(temp,tmp,space_left - 1);}else{canvas_error("can not parse integer to js-array:\nYour curve plotting produces too many data \nreduce image size or plotsteps ");}
6614
    }
6615
    strncat(temp,"]",2);
6616
    string=(char *)my_newmem(sizeof(temp));
6617
    snprintf(string,sizeof(temp),"%s",temp);
6618
    return string;
6619
}
13829 bpr 6620
 
8224 bpr 6621
 
15111 schaersvoo 6622
void *my_newmem(size_t size){
6623
 void   *p;
6624
 if((p = malloc(size +1)) == NULL){canvas_error("canvasdraw: ran out of memory\n");}
6625
 return p;
6626
}
8224 bpr 6627
 
15111 schaersvoo 6628
int find_number_of_digits(int i){
6629
 if(i < 0 ){ i = -1*i;}
6630
 int digits = 0;
6631
 while ( i > 0){
6632
  digits++;
6633
  i = i/10;
6634
 }
6635
 return digits;
6636
}
7645 schaersvoo 6637
 
11830 schaersvoo 6638
 
8224 bpr 6639
 
6640
 
7614 schaersvoo 6641
void check_string_length(int L){
9466 schaersvoo 6642
 if( L > MAX_BUFFER-1){
7614 schaersvoo 6643
  canvas_error("problem with your arguments to command...");
6644
 }
6645
 return;
6646
}
6647
 
6648
int get_token(FILE *infile){
6649
        int     c,i=0;
6650
        char    temp[MAX_INT], *input_type;
6651
        char    *line="line",
6652
        *audio="audio",
6653
        *blink="blink",
6654
        *arrowhead="arrowhead",
6655
        *crosshairsize="crosshairsize",
6656
        *crosshair="crosshair",
6657
        *crosshairs="crosshairs",
6658
        *audioobject="audioobject",
6659
        *style="style",
6660
        *mouse="mouse",
7991 schaersvoo 6661
        *mousex="mousex",
6662
        *mousey="mousey",
8071 schaersvoo 6663
        *mouse_display="display",
6664
        *mouse_degree="mouse_degree",
7614 schaersvoo 6665
        *userdraw="userdraw",
6666
        *highlight="highlight",
6667
        *http="http",
6668
        *rays="rays",
6669
        *dashtype="dashtype",
6670
        *dashed="dashed",
6671
        *filled="filled",
6672
        *lattice="lattice",
6673
        *parallel="parallel",
6674
        *segment="segment",
8299 schaersvoo 6675
        *segments="segments",
7614 schaersvoo 6676
        *dsegment="dsegment",
9374 schaersvoo 6677
        *dsegments="dsegments",
7614 schaersvoo 6678
        *seg="seg",
9383 schaersvoo 6679
        *segs="segs",
7614 schaersvoo 6680
        *bgimage="bgimage",
6681
        *bgcolor="bgcolor",
6682
        *strokecolor="strokecolor",
6683
        *backgroundimage="backgroundimage",
6684
        *text="text",
6685
        *textup="textup",
6686
        *mouseprecision="mouseprecision",
6687
        *precision="precision",
6688
        *plotsteps="plotsteps",
6689
        *plotstep="plotstep",
6690
        *tsteps="tsteps",
6691
        *curve="curve",
6692
        *dcurve="dcurve",
14038 schaersvoo 6693
        *curvedarrow="curvedarrow",
6694
        *curvedarrows="curvedarrows",
6695
        *curvedarrow2="curvedarrow2",
6696
        *curvedarrows2="curvedarrows2",
7614 schaersvoo 6697
        *plot="plot",
6698
        *dplot="dplot",
7788 schaersvoo 6699
        *levelcurve="levelcurve",
7614 schaersvoo 6700
        *fontsize="fontsize",
6701
        *fontcolor="fontcolor",
6702
        *axis="axis",
6703
        *axisnumbering="axisnumbering",
6704
        *axisnumbers="axisnumbers",
6705
        *arrow="arrow",
9382 schaersvoo 6706
        *vector="vector",
6707
        *vectors="vectors",
7614 schaersvoo 6708
        *darrow="darrow",
6709
        *arrow2="arrow2",
6710
        *darrow2="darrow2",
8304 schaersvoo 6711
        *arrows="arrows",
8347 schaersvoo 6712
        *arrows2="arrows2",
7614 schaersvoo 6713
        *zoom="zoom",
6714
        *grid="grid",
6715
        *hline="hline",
7786 schaersvoo 6716
        *dhline="dhline",
7614 schaersvoo 6717
        *drag="drag",
6718
        *horizontalline="horizontalline",
9383 schaersvoo 6719
        *horizontallines="horizontallines",
7614 schaersvoo 6720
        *vline="vline",
7786 schaersvoo 6721
        *dvline="dvline",
7614 schaersvoo 6722
        *verticalline="verticalline",
9383 schaersvoo 6723
        *verticallines="verticallines",
7614 schaersvoo 6724
        *triangle="triangle",
9306 schaersvoo 6725
        *triangles="triangles",
7614 schaersvoo 6726
        *ftriangle="ftriangle",
9374 schaersvoo 6727
        *ftriangles="ftriangles",
7614 schaersvoo 6728
        *mathml="mathml",
6729
        *html="html",
6730
        *input="input",
8146 schaersvoo 6731
        *clearbutton="clearbutton",
9386 schaersvoo 6732
        *erase="erase",
6733
        *delete="delete",
15111 schaersvoo 6734
        *css="css",
7614 schaersvoo 6735
        *textarea="textarea",
15773 schaersvoo 6736
        *range="range",
7614 schaersvoo 6737
        *trange="trange",
6738
        *ranget="ranget",
6739
        *xrange="xrange",
6740
        *yrange="yrange",
6741
        *rangex="rangex",
6742
        *rangey="rangey",
8370 schaersvoo 6743
        *path="path",
7614 schaersvoo 6744
        *polyline="polyline",
8351 schaersvoo 6745
        *brokenline="brokenline",
7614 schaersvoo 6746
        *lines="lines",
6747
        *poly="poly",
6748
        *polygon="polygon",
6749
        *fpolygon="fpolygon",
6750
        *fpoly="fpoly",
6751
        *filledpoly="filledpoly",
6752
        *filledpolygon="filledpolygon",
6753
        *rect="rect",
6754
        *frect="frect",
6755
        *rectangle="rectangle",
6756
        *frectangle="frectangle",
6757
        *square="square",
6758
        *fsquare="fsquare",
9374 schaersvoo 6759
        *fsquares="fsquares",
8363 schaersvoo 6760
        *rects="rects",
6761
        *frects="frects",
7614 schaersvoo 6762
        *dline="dline",
6763
        *arc="arc",
6764
        *filledarc="filledarc",
9374 schaersvoo 6765
        *farc="farc",
7614 schaersvoo 6766
        *size="size",
6767
        *string="string",
6768
        *stringup="stringup",
6769
        *copy="copy",
6770
        *copyresized="copyresized",
6771
        *opacity="opacity",
6772
        *transparent="transparent",
6773
        *fill="fill",
6774
        *point="point",
6775
        *points="points",
6776
        *linewidth="linewidth",
6777
        *circle="circle",
8304 schaersvoo 6778
        *circles="circles",
7614 schaersvoo 6779
        *fcircle="fcircle",
9374 schaersvoo 6780
        *fcircles="fcircles",
7614 schaersvoo 6781
        *disk="disk",
9374 schaersvoo 6782
        *disks="disks",
7614 schaersvoo 6783
        *comment="#",
6784
        *end="end",
6785
        *ellipse="ellipse",
12110 schaersvoo 6786
        *ellipses="ellipses",
7614 schaersvoo 6787
        *fellipse="fellipse",
6788
        *rotate="rotate",
7785 schaersvoo 6789
        *affine="affine",
9907 schaersvoo 6790
        *rotationcenter="rotationcenter",
15716 schaersvoo 6791
        *kill="kill",
9907 schaersvoo 6792
        *killrotate="killrotate",
7785 schaersvoo 6793
        *killaffine="killaffine",
15111 schaersvoo 6794
        *killlinear="killlinear",
6795
        *killinear="killinear",
7614 schaersvoo 6796
        *fontfamily="fontfamily",
6797
        *fillcolor="fillcolor",
6798
        *clicktile="clicktile",
6799
        *clicktile_colors="clicktile_colors",
6800
        *translation="translation",
6801
        *translate="translate",
6802
        *killtranslation="killtranslation",
6803
        *killtranslate="killtranslate",
6804
        *onclick="onclick",
8370 schaersvoo 6805
        *roundrects="roundrects",
7614 schaersvoo 6806
        *roundrect="roundrect",
6807
        *froundrect="froundrect",
9374 schaersvoo 6808
        *froundrects="froundrects",
7614 schaersvoo 6809
        *roundrectangle="roundrectangle",
6810
        *patternfill="patternfill",
6811
        *hatchfill="hatchfill",
6812
        *diafill="diafill",
7647 schaersvoo 6813
        *diamondfill="diamondfill",
7614 schaersvoo 6814
        *dotfill="dotfill",
11830 schaersvoo 6815
        *textfill="textfill",
7614 schaersvoo 6816
        *gridfill="gridfill",
6817
        *imagefill="imagefill",
7735 schaersvoo 6818
        *xlogbase="xlogbase",
6819
        *ylogbase="ylogbase",
7614 schaersvoo 6820
        *xlogscale="xlogscale",
6821
        *ylogscale="ylogscale",
6822
        *xylogscale="xylogscale",
6823
        *intooltip="intooltip",
9329 schaersvoo 6824
        *popup="popup",
7614 schaersvoo 6825
        *replyformat="replyformat",
6826
        *floodfill="floodfill",
11772 schaersvoo 6827
        *fillall="fillall",
7614 schaersvoo 6828
        *filltoborder="filltoborder",
6829
        *setpixel="setpixel",
6830
        *pixels="pixels",
6831
        *pixelsize="pixelsize",
6832
        *xaxis="xaxis",
9341 schaersvoo 6833
        *xaxisup="xaxisup",
7614 schaersvoo 6834
        *yaxis="yaxis",
6835
        *xaxistext="xaxistext",
9341 schaersvoo 6836
        *xaxistextup="xaxistextup",
7614 schaersvoo 6837
        *yaxistext="yaxistext",
6838
        *piechart="piechart",
9433 schaersvoo 6839
        *boxplot="boxplot",
9465 schaersvoo 6840
        *boxplotdata="boxplotdata",
6841
        *userboxplot="userboxplot",
6842
        *userboxplotdata="userboxplotdata",
7614 schaersvoo 6843
        *legend="legend",
6844
        *legendcolors="legendcolors",
6845
        *xlabel="xlabel",
6846
        *ylabel="ylabel",
6847
        *barchart="barchart",
6848
        *linegraph="linegraph",
6849
        *clock="clock",
6850
        *animate="animate",
6851
        *video="video",
6852
        *status="status",
7877 schaersvoo 6853
        *nostatus="nostatus",
7652 schaersvoo 6854
        *snaptogrid="snaptogrid",
7784 schaersvoo 6855
        *xsnaptogrid="xsnaptogrid",
6856
        *ysnaptogrid="ysnaptogrid",
8379 schaersvoo 6857
        *snaptopoints="snaptopoints",
9213 schaersvoo 6858
        *snaptofunction="snaptofunction",
6859
        *snaptofun="snaptofun",
7654 schaersvoo 6860
        *userinput_xy="userinput_xy",
8193 schaersvoo 6861
        *userinput_function="userinput_function",
8222 schaersvoo 6862
        *userinput="userinput",
7823 schaersvoo 6863
        *jsmath="jsmath",
7858 schaersvoo 6864
        *trace_jscurve="trace_jscurve",
7838 schaersvoo 6865
        *setlimits="setlimits",
7858 schaersvoo 6866
        *jscurve="jscurve",
6867
        *jsplot="jsplot",
7983 schaersvoo 6868
        *sgraph="sgraph",
7984 schaersvoo 6869
        *title="title",
7996 schaersvoo 6870
        *centerstring="centerstring",
6871
        *xunit="xunit",
8071 schaersvoo 6872
        *yunit="yunit",
8101 schaersvoo 6873
        *slider="slider",
8105 schaersvoo 6874
        *killslider="killslider",
8244 schaersvoo 6875
        *angle="angle",
8365 schaersvoo 6876
        *halflines="halflines",
6877
        *demilines="demilines",
8244 schaersvoo 6878
        *halfline="halfline",
8297 schaersvoo 6879
        *demiline="demiline",
8366 schaersvoo 6880
        *hlines="hlines",
6881
        *vlines="vlines",
8370 schaersvoo 6882
        *bezier="bezier",
9213 schaersvoo 6883
        *functionlabel="functionlabel",
15313 schaersvoo 6884
        *functionlabels="functionlabels",
9213 schaersvoo 6885
        *sliderfunction_x="sliderfunction_x",
6886
        *sliderfunction_y="sliderfunction_y",
6887
        *multidraw="multidraw",
15111 schaersvoo 6888
        *multilinewidth="multilinewidth",
14622 schaersvoo 6889
        *linewidths="linewidths",
9213 schaersvoo 6890
        *multistrokecolors="multistrokecolors",
15111 schaersvoo 6891
        *multicolors="multicolors",
6892
        *strokecolors="strokecolors",
14622 schaersvoo 6893
        *colors="colors",
9213 schaersvoo 6894
        *multifillcolors="multifillcolors",
14622 schaersvoo 6895
        *fillcolors="fillcolors",
9213 schaersvoo 6896
        *multistrokeopacity="multistrokeopacity",
6897
        *multifillopacity="multifillopacity",
6898
        *multifill="multifill",
6899
        *multidash="multidash",
6900
        *multilabel="multilabel",
6901
        *multiuserinput="multiuserinput",
14038 schaersvoo 6902
        *multiinput="multiinput",
9289 schaersvoo 6903
        *multisnaptogrid="multisnaptogrid",
14038 schaersvoo 6904
        *multisnap="multisnap",
9289 schaersvoo 6905
        *protractor="protractor",
9386 schaersvoo 6906
        *ruler="ruler",
6907
        *cursor="cursor",
9427 schaersvoo 6908
        *pointer="pointer",
6909
        *yerrorbars="yerrorbars",
11006 schaersvoo 6910
        *xerrorbars="xerrorbars",
11044 schaersvoo 6911
        *noxaxis="noxaxis",
6912
        *noyaxis="noyaxis",
11767 schaersvoo 6913
        *colorpalette="colorpalette",
14038 schaersvoo 6914
        *imagepalette="imagepalette",
12063 schaersvoo 6915
        *yoffset="yoffset",
11802 schaersvoo 6916
        *xoffset="xoffset",
14225 schaersvoo 6917
        *latex="latex",
15111 schaersvoo 6918
        *katex="katex",
6919
        *math="math",
11802 schaersvoo 6920
        *centered="centered",
6921
        *xyoffset="xyoffset",
6922
        *resetoffset="resetoffset",
11837 schaersvoo 6923
        *fillpattern="fillpattern",
15601 schaersvoo 6924
        *settile="settile",
11890 schaersvoo 6925
        *numberline="numberline",
14393 schaersvoo 6926
        *duplicates="duplicates",
6927
        *allowdups="allowdups",
15111 schaersvoo 6928
        *linear="linear",
6929
        *obabel="obabel",
6930
        *chemtex="chemtex",
6931
        *noreset="noreset",
6932
        *killreset="killreset",
15690 schaersvoo 6933
        *arrowarc="arrowarc",
6934
        *arcarrow="arcarrow",
11006 schaersvoo 6935
        *canvastype="canvastype";
7614 schaersvoo 6936
 
10891 schaersvoo 6937
        while(((c = getc(infile)) != EOF)&&(c!='\n')&&(c!=',')&&(c!='=')&&(c!='\r')&&(c!='\t')){
6938
         if( i == 0 && (c == ' ') ){ continue; /* white spaces or tabs allowed before first command identifier */
6939
         }else{
6940
          if( c == ' ' ){
7614 schaersvoo 6941
            break;
10891 schaersvoo 6942
          }else{
6943
           temp[i] = c;
6944
           if(i > MAX_INT - 2){canvas_error("command string too long !");}
6945
           i++;
6946
          }
6947
         }
6948
         if(temp[0] == '#'){ break; }
7614 schaersvoo 6949
        }
10891 schaersvoo 6950
        if (c == '\n' || c == '\r' || c == '\t' ){  line_number++; }
6951
        if (c == EOF) {finished=1;return 0;}
7614 schaersvoo 6952
 
6953
        temp[i]='\0';
6954
        input_type=(char*)my_newmem(strlen(temp));
6955
        snprintf(input_type,sizeof(temp),"%s",temp);
10891 schaersvoo 6956
/* fprintf(stdout,"temp = %s <br/>",input_type); */
7614 schaersvoo 6957
        if( strcmp(input_type, size) == 0 ){
6958
        free(input_type);
6959
        return SIZE;
6960
        }
15773 schaersvoo 6961
        if( strcmp(input_type, range) == 0 ){
6962
        free(input_type);
6963
        return RANGE;
6964
        }
7614 schaersvoo 6965
        if( strcmp(input_type, xrange) == 0 ){
6966
        free(input_type);
6967
        return XRANGE;
6968
        }
6969
        if( strcmp(input_type, rangex) == 0 ){
6970
        free(input_type);
6971
        return XRANGE;
6972
        }
6973
        if( strcmp(input_type, trange) == 0 ){
6974
        free(input_type);
6975
        return TRANGE;
6976
        }
6977
        if( strcmp(input_type, ranget) == 0 ){
6978
        free(input_type);
6979
        return TRANGE;
6980
        }
6981
        if( strcmp(input_type, yrange) == 0 ){
6982
        free(input_type);
6983
        return YRANGE;
6984
        }
6985
        if( strcmp(input_type, rangey) == 0 ){
6986
        free(input_type);
6987
        return YRANGE;
6988
        }
6989
        if( strcmp(input_type, linewidth) == 0 ){
6990
        free(input_type);
6991
        return LINEWIDTH;
6992
        }
6993
        if( strcmp(input_type, dashed) == 0 ){
6994
        free(input_type);
6995
        return DASHED;
6996
        }
6997
        if( strcmp(input_type, dashtype) == 0 ){
6998
        free(input_type);
6999
        return DASHTYPE;
7000
        }
7001
        if( strcmp(input_type, axisnumbering) == 0 ){
7002
        free(input_type);
7003
        return AXIS_NUMBERING;
7004
        }
7005
        if( strcmp(input_type, axisnumbers) == 0 ){
7006
        free(input_type);
7007
        return AXIS_NUMBERING;
7008
        }
7009
        if( strcmp(input_type, axis) == 0 ){
7010
        free(input_type);
7011
        return AXIS;
7012
        }
7013
        if( strcmp(input_type, grid) == 0 ){
7014
        free(input_type);
7015
        return GRID;
7016
        }
9383 schaersvoo 7017
        if( strcmp(input_type, hlines) == 0 || strcmp(input_type, horizontallines) == 0 ){
8366 schaersvoo 7018
        free(input_type);
7019
        return HLINES;
7020
        }
9383 schaersvoo 7021
        if( strcmp(input_type, vlines) == 0 ||  strcmp(input_type, verticallines) == 0 ){
8366 schaersvoo 7022
        free(input_type);
7023
        return VLINES;
7024
        }
9383 schaersvoo 7025
        if( strcmp(input_type, hline) == 0 || strcmp(input_type, horizontalline) == 0 ){
7614 schaersvoo 7026
        free(input_type);
7027
        return HLINE;
7028
        }
7029
        if( strcmp(input_type, vline) == 0 ||  strcmp(input_type, verticalline) == 0 ){
7030
        free(input_type);
7031
        return VLINE;
7032
        }
7033
        if( strcmp(input_type, line) == 0 ){
7034
        free(input_type);
7035
        return LINE;
7036
        }
9383 schaersvoo 7037
        if( strcmp(input_type, segments) == 0 || strcmp(input_type, segs) == 0 ){
8299 schaersvoo 7038
        free(input_type);
7039
        return SEGMENTS;
7040
        }
7614 schaersvoo 7041
        if( strcmp(input_type, seg) == 0 ||  strcmp(input_type, segment) == 0 ){
7042
        free(input_type);
7043
        return SEGMENT;
7044
        }
9374 schaersvoo 7045
        if( strcmp(input_type, dsegments) == 0 ){
7046
        free(input_type);
7047
        use_dashed = TRUE;
7048
        return SEGMENTS;
7049
        }
7614 schaersvoo 7050
        if( strcmp(input_type, dsegment) == 0 ){
7051
        free(input_type);
7052
        use_dashed = TRUE;
7053
        return SEGMENT;
7054
        }
7055
        if( strcmp(input_type, crosshairsize) == 0 ){
7056
        free(input_type);
7057
        return CROSSHAIRSIZE;
7058
        }
7059
        if( strcmp(input_type, arrowhead) == 0 ){
7060
        free(input_type);
7061
        return ARROWHEAD;
7062
        }
7063
        if( strcmp(input_type, crosshairs) == 0 ){
7064
        free(input_type);
7065
        return CROSSHAIRS;
7066
        }
7067
        if( strcmp(input_type, crosshair) == 0 ){
7068
        free(input_type);
7069
        return CROSSHAIR;
7070
        }
7071
        if( strcmp(input_type, onclick) == 0 ){
7072
        free(input_type);
7073
        return ONCLICK;
7074
        }
7075
        if( strcmp(input_type, drag) == 0 ){
7076
        free(input_type);
7077
        return DRAG;
7078
        }
7079
        if( strcmp(input_type, userdraw) == 0 ){
7080
        free(input_type);
7081
        return USERDRAW;
7082
        }
7083
        if( strcmp(input_type, highlight) == 0 || strcmp(input_type, style) == 0 ){
7084
        free(input_type);
7085
        return STYLE;
7086
        }
7087
        if( strcmp(input_type, fillcolor) == 0 ){
7088
        free(input_type);
7089
        return FILLCOLOR;
7090
        }
7091
        if( strcmp(input_type, strokecolor) == 0 ){
7092
        free(input_type);
7093
        return STROKECOLOR;
7094
        }
15111 schaersvoo 7095
        if( strcmp(input_type, filled) == 0  ){
7614 schaersvoo 7096
        free(input_type);
7097
        return FILLED;
7098
        }
7099
        if( strcmp(input_type, http) == 0 ){
7100
        free(input_type);
7101
        return HTTP;
7102
        }
7103
        if( strcmp(input_type, rays) == 0 ){
7104
        free(input_type);
7105
        return RAYS;
7106
        }
7107
        if( strcmp(input_type, lattice) == 0 ){
7108
        free(input_type);
7109
        return LATTICE;
7110
        }
7111
        if( strcmp(input_type, bgimage) == 0 ){
7112
        free(input_type);
7113
        return BGIMAGE;
7114
        }
7115
        if( strcmp(input_type, bgcolor) == 0 ){
7116
        free(input_type);
7117
        return BGCOLOR;
7118
        }
7119
        if( strcmp(input_type, backgroundimage) == 0 ){
7120
        free(input_type);
7121
        return BGIMAGE;
7122
        }
7123
        if( strcmp(input_type, text) == 0 ){
7124
        free(input_type);
7125
        return FLY_TEXT;
7126
        }
7127
        if( strcmp(input_type, textup) == 0 ){
7128
        free(input_type);
7129
        return FLY_TEXTUP;
7130
        }
7131
        if( strcmp(input_type, mouse) == 0 ){
7132
        free(input_type);
7133
        return MOUSE;
7134
        }
7991 schaersvoo 7135
        if( strcmp(input_type, mousex) == 0 ){
7136
        free(input_type);
7137
        return MOUSEX;
7138
        }
7139
        if( strcmp(input_type, mousey) == 0 ){
7140
        free(input_type);
7141
        return MOUSEY;
7142
        }
8071 schaersvoo 7143
        if( strcmp(input_type, mouse_degree) == 0 ){
7144
        free(input_type);
7145
        return MOUSE_DEGREE;
7146
        }
7147
        if( strcmp(input_type, mouse_display) == 0 ){
7148
        free(input_type);
7149
        return MOUSE_DISPLAY;
7150
        }
7614 schaersvoo 7151
        if( strcmp(input_type, mouseprecision) == 0 ){
7152
        free(input_type);
7153
        return MOUSE_PRECISION;
7154
        }
7155
        if( strcmp(input_type, precision) == 0 ){
7156
        free(input_type);
7157
        return MOUSE_PRECISION;
7158
        }
7159
        if( strcmp(input_type, curve) == 0 ){
7160
        free(input_type);
7161
        return CURVE;
7162
        }
7163
        if( strcmp(input_type, dcurve) == 0 ){
7788 schaersvoo 7164
        use_dashed = TRUE;
7614 schaersvoo 7165
        free(input_type);
7166
        return CURVE;
7167
        }
7168
        if( strcmp(input_type, plot) == 0 ){
7169
        free(input_type);
7170
        return CURVE;
7171
        }
7172
        if( strcmp(input_type, dplot) == 0 ){
7788 schaersvoo 7173
        use_dashed = TRUE;
7614 schaersvoo 7174
        free(input_type);
7175
        return CURVE;
7176
        }
7788 schaersvoo 7177
        if( strcmp(input_type, levelcurve) == 0 ){
7178
        free(input_type);
7179
        return LEVELCURVE;
7180
        }
7614 schaersvoo 7181
        if( strcmp(input_type, plotsteps) == 0 ){
7182
        free(input_type);
7183
        return PLOTSTEPS;
7184
        }
7185
        if( strcmp(input_type, plotstep) == 0 ){
7186
        free(input_type);
7187
        return PLOTSTEPS;
7188
        }
7189
        if( strcmp(input_type, tsteps) == 0 ){
7190
        free(input_type);
7191
        return PLOTSTEPS;
7192
        }
7193
        if( strcmp(input_type, fontsize) == 0 ){
7194
        free(input_type);
7195
        return FONTSIZE;
7196
        }
7197
        if( strcmp(input_type, fontcolor) == 0 ){
7198
        free(input_type);
7199
        return FONTCOLOR;
7200
        }
7201
        if( strcmp(input_type, arrow2) == 0 ){
7202
        free(input_type);
7203
        return ARROW2;
7204
        }
7205
        if( strcmp(input_type, darrow) == 0 ){
7206
        free(input_type);
8071 schaersvoo 7207
        use_dashed = TRUE;
7614 schaersvoo 7208
        return ARROW;
7209
        }
7210
        if( strcmp(input_type, darrow2) == 0 ){
7211
        free(input_type);
7212
        use_dashed = TRUE;
7213
        return ARROW2;
7214
        }
8347 schaersvoo 7215
        if( strcmp(input_type, arrows2) == 0 ){
7216
        free(input_type);
7217
        return ARROWS2;
7218
        }
9382 schaersvoo 7219
        if( strcmp(input_type, arrows) == 0  || strcmp(input_type, vectors) == 0 ){
8304 schaersvoo 7220
        free(input_type);
7221
        return ARROWS;
7222
        }
9382 schaersvoo 7223
        if( strcmp(input_type, arrow) == 0 ||  strcmp(input_type, vector) == 0 ){
8304 schaersvoo 7224
        free(input_type);
7225
        return ARROW;
7226
        }
7614 schaersvoo 7227
        if( strcmp(input_type, zoom) == 0 ){
7228
        free(input_type);
7229
        return ZOOM;
7230
        }
7231
        if( strcmp(input_type, triangle) == 0 ){
7232
        free(input_type);
7233
        return TRIANGLE;
7234
        }
9306 schaersvoo 7235
        if( strcmp(input_type, triangles) == 0 ){
7236
        free(input_type);
7237
        return TRIANGLES;
7238
        }
9374 schaersvoo 7239
        if( strcmp(input_type, ftriangles) == 0 ){
7240
        free(input_type);
7241
        use_filled = TRUE;
7242
        return TRIANGLES;
7243
        }
7614 schaersvoo 7244
        if( strcmp(input_type, ftriangle) == 0 ){
7245
        free(input_type);
7246
        use_filled = TRUE;
7247
        return TRIANGLE;
7248
        }
7249
        if( strcmp(input_type, input) == 0 ){
7250
        free(input_type);
7251
        return INPUT;
7252
        }
15111 schaersvoo 7253
        if( strcmp(input_type, css) == 0 ){
7614 schaersvoo 7254
        free(input_type);
15111 schaersvoo 7255
        return CSS;
7614 schaersvoo 7256
        }
7257
        if( strcmp(input_type, textarea) == 0 ){
7258
        free(input_type);
7259
        return TEXTAREA;
7260
        }
7261
        if( strcmp(input_type, mathml) == 0 ){
7262
        free(input_type);
7263
        return MATHML;
7264
        }
7265
        if( strcmp(input_type, html) == 0 ){
7266
        free(input_type);
15111 schaersvoo 7267
        return HTML;
7614 schaersvoo 7268
        }
7269
        if( strcmp(input_type, fontfamily) == 0 ){
7270
        free(input_type);
7271
        return FONTFAMILY;
7272
        }
10975 schaersvoo 7273
        if( strcmp(input_type, polyline) == 0 ||  strcmp(input_type, path) == 0 || strcmp(input_type, brokenline) == 0 ){
7614 schaersvoo 7274
        free(input_type);
7275
        return POLYLINE;
7276
        }
8351 schaersvoo 7277
        if( strcmp(input_type, lines) == 0 ){
7278
        free(input_type);
7279
        return LINES;
7280
        }
9374 schaersvoo 7281
        if( strcmp(input_type, rects) == 0){
8363 schaersvoo 7282
        free(input_type);
7283
        return RECTS;
7284
        }
9383 schaersvoo 7285
        if( strcmp(input_type, frects) == 0 ){
8363 schaersvoo 7286
        free(input_type);
9374 schaersvoo 7287
        use_filled = TRUE;
8363 schaersvoo 7288
        return RECTS;
7289
        }
7614 schaersvoo 7290
        if( strcmp(input_type, rect) == 0  ||  strcmp(input_type, rectangle) == 0 ){
7291
        free(input_type);
7292
        return RECT;
7293
        }
9374 schaersvoo 7294
        if( strcmp(input_type, square) == 0 ){
7295
        free(input_type);
11991 schaersvoo 7296
        return SQUARE;
9374 schaersvoo 7297
        }
7298
        if( strcmp(input_type, fsquare) == 0 ){
7299
        free(input_type);
7300
        use_filled = TRUE;
7301
        return SQUARE;
7302
        }
7303
        if( strcmp(input_type, fsquares) == 0 ){
7304
        free(input_type);
7305
        use_filled = TRUE;
7306
        return RECTS;
7307
        }
8370 schaersvoo 7308
        if( strcmp(input_type, roundrects) == 0 ){
7309
        free(input_type);
7310
        return ROUNDRECTS;
7311
        }
7614 schaersvoo 7312
        if( strcmp(input_type, roundrect) == 0  ||  strcmp(input_type, roundrectangle) == 0 ){
7313
        free(input_type);
7314
        return ROUNDRECT;
7315
        }
9374 schaersvoo 7316
        if( strcmp(input_type, froundrects) == 0 ){
7614 schaersvoo 7317
        free(input_type);
7318
        use_filled = TRUE;
9374 schaersvoo 7319
        return ROUNDRECTS;
7614 schaersvoo 7320
        }
9374 schaersvoo 7321
        if( strcmp(input_type, froundrect) == 0 ){
7614 schaersvoo 7322
        free(input_type);
7323
        use_filled = TRUE;
9374 schaersvoo 7324
        return ROUNDRECT;
7614 schaersvoo 7325
        }
7326
        if( strcmp(input_type, dline) == 0 ){
7327
        use_dashed = TRUE;
7328
        free(input_type);
7329
        return LINE;
7330
        }
7786 schaersvoo 7331
        if( strcmp(input_type, dvline) == 0 ){
7332
        use_dashed = TRUE;
7333
        free(input_type);
7334
        return VLINE;
7335
        }
7336
        if( strcmp(input_type, dhline) == 0 ){
7337
        use_dashed = TRUE;
7338
        free(input_type);
7339
        return HLINE;
7340
        }
15111 schaersvoo 7341
        if( strcmp(input_type, halflines) == 0 || strcmp(input_type, demilines) == 0  ){
9386 schaersvoo 7342
        free(input_type);
7343
        return HALFLINES;
7344
        }
15111 schaersvoo 7345
        if( strcmp(input_type, halfline) == 0 || strcmp(input_type, demiline) == 0  ){
9386 schaersvoo 7346
        free(input_type);
7347
        return HALFLINE;
7348
        }
7614 schaersvoo 7349
        if( strcmp(input_type, frect) == 0 || strcmp(input_type, frectangle) == 0 ){
7350
        use_filled = TRUE;
7351
        free(input_type);
7352
        return RECT;
7353
        }
8304 schaersvoo 7354
        if( strcmp(input_type, circles) == 0 ){
7355
        free(input_type);
7356
        return CIRCLES;
7357
        }
7614 schaersvoo 7358
        if( strcmp(input_type, fcircle) == 0  ||  strcmp(input_type, disk) == 0 ){
7359
        use_filled = TRUE;
7360
        free(input_type);
7361
        return CIRCLE;
7362
        }
9374 schaersvoo 7363
        if( strcmp(input_type, fcircles) == 0  ||  strcmp(input_type, disks) == 0 ){
7364
        use_filled = TRUE;
7365
        free(input_type);
7366
        return CIRCLES;
7367
        }
7614 schaersvoo 7368
        if( strcmp(input_type, circle) == 0 ){
7369
        free(input_type);
7370
        return CIRCLE;
7371
        }
7372
        if( strcmp(input_type, point) == 0 ){
7373
        free(input_type);
7374
        return POINT;
7375
        }
7376
        if( strcmp(input_type, points) == 0 ){
7377
        free(input_type);
7378
        return POINTS;
7379
        }
9374 schaersvoo 7380
        if( strcmp(input_type, filledarc) == 0 || strcmp(input_type, farc) == 0 ){
7614 schaersvoo 7381
        use_filled = TRUE;
7382
        free(input_type);
7383
        return ARC;
7384
        }
7385
        if( strcmp(input_type, arc) == 0 ){
7386
        free(input_type);
7387
        return ARC;
7388
        }
7389
        if( strcmp(input_type, poly) == 0 ||  strcmp(input_type, polygon) == 0 ){
7390
        free(input_type);
7391
        return POLY;
7392
        }
7393
        if( strcmp(input_type, fpoly) == 0 ||  strcmp(input_type, filledpoly) == 0 || strcmp(input_type,filledpolygon) == 0  || strcmp(input_type,fpolygon) == 0  ){
7394
        use_filled = TRUE;
7395
        free(input_type);
7396
        return POLY;
7397
        }
7398
        if( strcmp(input_type, ellipse) == 0){
7399
        free(input_type);
7400
        return ELLIPSE;
7401
        }
12110 schaersvoo 7402
        if( strcmp(input_type, ellipses) == 0){
7403
        free(input_type);
7404
        return ELLIPSES;
7405
        }
7614 schaersvoo 7406
        if( strcmp(input_type, string) == 0 ){
7407
        free(input_type);
7408
        return STRING;
7409
        }
7410
        if( strcmp(input_type, stringup) == 0 ){
7411
        free(input_type);
7412
        return STRINGUP;
7413
        }
9385 schaersvoo 7414
        if( strcmp(input_type, opacity) == 0 || strcmp(input_type, transparent) == 0 ){
7614 schaersvoo 7415
        free(input_type);
7416
        return OPACITY;
7417
        }
7418
        if( strcmp(input_type, comment) == 0){
7419
        free(input_type);
7420
        return COMMENT;
7421
        }
7422
        if( strcmp(input_type, fellipse) == 0){
7423
        free(input_type);
7424
        use_filled = TRUE;
7425
        return ELLIPSE;
8224 bpr 7426
        }
9386 schaersvoo 7427
        if( strcmp(input_type, clearbutton) == 0 || strcmp(input_type, erase) == 0 || strcmp(input_type, delete) == 0){
7614 schaersvoo 7428
        free(input_type);
8146 schaersvoo 7429
        return CLEARBUTTON;
7614 schaersvoo 7430
        }
15111 schaersvoo 7431
        if( strcmp(input_type, translation) == 0 ||  strcmp(input_type, translate) == 0  ){
7614 schaersvoo 7432
        free(input_type);
7433
        return TRANSLATION;
7434
        }
15716 schaersvoo 7435
        if( strcmp(input_type, kill) == 0 ){
7436
        free(input_type);
7437
        return KILL;
7438
        }
7614 schaersvoo 7439
        if( strcmp(input_type, killtranslation) == 0 ||  strcmp(input_type, killtranslate) == 0){
7440
        free(input_type);
7441
        return KILLTRANSLATION;
7442
        }
7443
        if( strcmp(input_type, rotate) == 0){
7444
        free(input_type);
7445
        return ROTATE;
7446
        }
9907 schaersvoo 7447
        if( strcmp(input_type, killrotate) == 0){
7448
        free(input_type);
7449
        return KILLROTATE;
7450
        }
7451
        if( strcmp(input_type, rotationcenter) == 0){
7452
        free(input_type);
7453
        return ROTATION_CENTER;
7454
        }
7785 schaersvoo 7455
        if( strcmp(input_type, affine) == 0){
7456
        free(input_type);
7457
        return AFFINE;
7458
        }
15111 schaersvoo 7459
        if( strcmp(input_type, linear) == 0){
7460
        free(input_type);
7461
        return LINEAR;
7462
        }
7785 schaersvoo 7463
        if( strcmp(input_type, killaffine) == 0){
7464
        free(input_type);
7465
        return KILLAFFINE;
7466
        }
15111 schaersvoo 7467
        if( strcmp(input_type, killlinear) == 0 || strcmp(input_type, killinear) == 0  ){
7468
        free(input_type);
7469
        return KILLLINEAR;
7470
        }
7614 schaersvoo 7471
        if( strcmp(input_type, slider) == 0 ){
7472
        free(input_type);
7473
        return SLIDER;
7474
        }
8101 schaersvoo 7475
        if( strcmp(input_type, killslider) == 0 ){
7476
        free(input_type);
7477
        return KILLSLIDER;
7478
        }
7614 schaersvoo 7479
        if( strcmp(input_type, copy) == 0 ){
7480
        free(input_type);
7481
        return COPY;
7482
        }
7483
        if( strcmp(input_type, copyresized) == 0 ){
7484
        free(input_type);
7485
        return COPYRESIZED;
7486
        }
7487
        if( strcmp(input_type, xlogscale) == 0 ){
7488
        free(input_type);
7489
        return XLOGSCALE;
7490
        }
7491
        if( strcmp(input_type, ylogscale) == 0 ){
7492
        free(input_type);
7493
        return YLOGSCALE;
7494
        }
7495
        if( strcmp(input_type, xylogscale) == 0 ){
7496
        free(input_type);
7497
        return XYLOGSCALE;
7498
        }
7499
        if( strcmp(input_type, ylogscale) == 0 ){
7500
        free(input_type);
7501
        return YLOGSCALE;
7502
        }
7735 schaersvoo 7503
        if( strcmp(input_type, xlogbase) == 0 ){
7614 schaersvoo 7504
        free(input_type);
7735 schaersvoo 7505
        return XLOGBASE;
7614 schaersvoo 7506
        }
7735 schaersvoo 7507
        if( strcmp(input_type, ylogbase) == 0 ){
7508
        free(input_type);
7509
        return YLOGBASE;
7510
        }
7614 schaersvoo 7511
        if( strcmp(input_type, intooltip) == 0 ){
7512
        free(input_type);
7513
        return INTOOLTIP;
7514
        }
9329 schaersvoo 7515
        if( strcmp(input_type, popup) == 0 ){
7516
        free(input_type);
7517
        return POPUP;
7518
        }
7614 schaersvoo 7519
        if( strcmp(input_type,video) == 0 ){
7520
        free(input_type);
7521
        return VIDEO;
7522
        }
15111 schaersvoo 7523
        if( strcmp(input_type,math) == 0 || strcmp(input_type,latex) == 0 ||  strcmp(input_type,katex) == 0 ){
14225 schaersvoo 7524
        free(input_type);
7525
        return LATEX;
7526
        }
11772 schaersvoo 7527
        if( strcmp(input_type,fillall) == 0 ){
7528
        free(input_type);
7529
        return FILLALL;
7530
        }
7614 schaersvoo 7531
        if( strcmp(input_type,floodfill) == 0 || strcmp(input_type,fill) == 0 ){
7532
        free(input_type);
7533
        return FLOODFILL;
8224 bpr 7534
        }
7614 schaersvoo 7535
        if( strcmp(input_type,filltoborder) == 0 ){
7536
        free(input_type);
7537
        return FILLTOBORDER;
8224 bpr 7538
        }
14038 schaersvoo 7539
        if( strcmp(input_type, curvedarrow2) == 0 ){
7540
        free(input_type);
7541
        return CURVEDARROW2;
7542
        }
7543
        if( strcmp(input_type, curvedarrow) == 0 ){
7544
        free(input_type);
7545
        return CURVEDARROW;
7546
        }
7547
        if( strcmp(input_type, curvedarrows) == 0 ){
7548
        free(input_type);
7549
        return CURVEDARROWS;
7550
        }
7551
        if( strcmp(input_type, curvedarrows2) == 0 ){
7552
        free(input_type);
7553
        return CURVEDARROWS2;
7554
        }
7614 schaersvoo 7555
        if( strcmp(input_type, replyformat) == 0 ){
7556
        free(input_type);
7557
        return REPLYFORMAT;
7558
        }
7559
        if( strcmp(input_type, pixelsize) == 0 ){
7560
        free(input_type);
7561
        return PIXELSIZE;
7562
        }
7563
        if( strcmp(input_type, setpixel) == 0 ){
7564
        free(input_type);
7565
        return SETPIXEL;
7566
        }
7567
        if( strcmp(input_type, pixels) == 0 ){
7568
        free(input_type);
7569
        return PIXELS;
7570
        }
7571
        if( strcmp(input_type, xaxis) == 0 || strcmp(input_type, xaxistext) == 0 ){
7572
        free(input_type);
7573
        return X_AXIS_STRINGS;
7574
        }
9341 schaersvoo 7575
        if( strcmp(input_type, xaxisup) == 0 || strcmp(input_type, xaxistextup) == 0 ){
7576
        free(input_type);
7577
        return X_AXIS_STRINGS_UP;
7578
        }
7614 schaersvoo 7579
        if( strcmp(input_type, yaxis) == 0  ||  strcmp(input_type, yaxistext) == 0 ){
7580
        free(input_type);
7581
        return Y_AXIS_STRINGS;
7582
        }
15111 schaersvoo 7583
        if( strcmp(input_type, legend) == 0  ){
7614 schaersvoo 7584
        free(input_type);
7585
        return LEGEND;
7586
        }
15111 schaersvoo 7587
        if( strcmp(input_type, legendcolors) == 0  ){
7614 schaersvoo 7588
        free(input_type);
7589
        return LEGENDCOLORS;
7590
        }
15111 schaersvoo 7591
        if( strcmp(input_type, xlabel) == 0  ){
7614 schaersvoo 7592
        free(input_type);
7593
        return XLABEL;
7594
        }
15111 schaersvoo 7595
        if( strcmp(input_type, ylabel) == 0  ){
7614 schaersvoo 7596
        free(input_type);
7597
        return YLABEL;
7598
        }
15111 schaersvoo 7599
        if( strcmp(input_type, bezier) == 0  ){
8370 schaersvoo 7600
        free(input_type);
7601
        return BEZIER;
7602
        }
15111 schaersvoo 7603
        if( strcmp(input_type, animate) == 0  ){
7614 schaersvoo 7604
        free(input_type);
7605
        return ANIMATE;
7606
        }
9354 schaersvoo 7607
        /* these are bitmap related flydraw commands...must be removed. eventually */
7614 schaersvoo 7608
        if( strcmp(input_type, transparent) == 0 ){
7609
        free(input_type);
7610
        return TRANSPARENT;
7611
        }
7877 schaersvoo 7612
        if( strcmp(input_type, status) == 0 || strcmp(input_type, nostatus) == 0 ){
7614 schaersvoo 7613
        free(input_type);
7614
        return STATUS;
7615
        }
7784 schaersvoo 7616
        if( strcmp(input_type, xsnaptogrid) == 0 ){
7617
        free(input_type);
7618
        return XSNAPTOGRID;
7619
        }
7620
        if( strcmp(input_type, ysnaptogrid) == 0 ){
7621
        free(input_type);
7622
        return YSNAPTOGRID;
7623
        }
8379 schaersvoo 7624
        if( strcmp(input_type, snaptogrid) == 0 ){
7625
        free(input_type);
7626
        return SNAPTOGRID;
7627
        }
7628
        if( strcmp(input_type, snaptopoints) == 0 ){
7629
        free(input_type);
7630
        return SNAPTOPOINTS;
7631
        }
9213 schaersvoo 7632
        if( strcmp(input_type, snaptofunction) == 0  || strcmp(input_type, snaptofun) == 0 ){
7633
        free(input_type);
7634
        return SNAPTOFUNCTION;
7635
        }
7652 schaersvoo 7636
        if( strcmp(input_type, userinput_xy) == 0 ){
7614 schaersvoo 7637
        free(input_type);
7652 schaersvoo 7638
        return USERINPUT_XY;
7639
        }
8193 schaersvoo 7640
        if( strcmp(input_type, userinput_function) == 0 ){
7641
        free(input_type);
7642
        return USERINPUT_FUNCTION;
7643
        }
8222 schaersvoo 7644
        if( strcmp(input_type, userinput) == 0 ){
7645
        free(input_type);
7646
        return USERINPUT;
7647
        }
8105 schaersvoo 7648
        if( strcmp(input_type, angle) == 0 ){
7996 schaersvoo 7649
        free(input_type);
8105 schaersvoo 7650
        return ANGLE;
7651
        }
15315 bpr 7652
        if( strcmp(input_type, functionlabel) == 0 ||  strcmp(input_type, functionlabels) == 0 ){
8244 schaersvoo 7653
        free(input_type);
8297 schaersvoo 7654
        return FUNCTION_LABEL;
7655
        }
9213 schaersvoo 7656
        if( strcmp(input_type, sliderfunction_x) == 0 ){
8297 schaersvoo 7657
        free(input_type);
9213 schaersvoo 7658
        return SLIDER_X;
7659
        }
7660
        if( strcmp(input_type, sliderfunction_y) == 0 ){
7661
        free(input_type);
7662
        return SLIDER_Y;
7663
        }
7664
        if( strcmp(input_type, multidraw) == 0 ){
7665
        free(input_type);
7666
        return MULTIDRAW;
7667
        }
7668
        if( strcmp(input_type, multistrokeopacity) == 0 ){
7669
        free(input_type);
7670
        return MULTISTROKEOPACITY;
7671
        }
7672
        if( strcmp(input_type, multifillopacity) == 0 ){
7673
        free(input_type);
7674
        return MULTIFILLOPACITY;
7675
        }
15111 schaersvoo 7676
        if( strcmp(input_type, multilinewidth) == 0 || strcmp(input_type, linewidths) == 0 ){
9213 schaersvoo 7677
        free(input_type);
7678
        return MULTILINEWIDTH;
7679
        }
15111 schaersvoo 7680
        if( strcmp(input_type, multistrokecolors) == 0 || strcmp(input_type,multicolors) == 0  || strcmp(input_type,strokecolors) == 0 ||  strcmp(input_type,colors) == 0 ){
9213 schaersvoo 7681
        free(input_type);
7682
        return MULTISTROKECOLORS;
7683
        }
7684
        if( strcmp(input_type, multifill) == 0 ){
7685
        free(input_type);
7686
        return MULTIFILL;
7687
        }
15111 schaersvoo 7688
        if( strcmp(input_type, multifillcolors) == 0 || strcmp(input_type, fillcolors) == 0  ){
9213 schaersvoo 7689
        free(input_type);
7690
        return MULTIFILLCOLORS;
7691
        }
7692
        if( strcmp(input_type, multilabel) == 0 ){
7693
        free(input_type);
7694
        return MULTILABEL;
7695
        }
7696
        if( strcmp(input_type, multidash) == 0 ){
7697
        free(input_type);
7698
        return MULTIDASH;
7699
        }
14038 schaersvoo 7700
        if( strcmp(input_type, multisnaptogrid) == 0  ||  strcmp(input_type, multisnap) == 0 ){
9213 schaersvoo 7701
        free(input_type);
7702
        return MULTISNAPTOGRID;
7703
        }
15111 schaersvoo 7704
        if( strcmp(input_type, multiuserinput) == 0 || strcmp(input_type, multiinput) == 0  ){
9213 schaersvoo 7705
        free(input_type);
7706
        return MULTIUSERINPUT;
7707
        }
9386 schaersvoo 7708
        if( strcmp(input_type, parallel) == 0 ){
7709
        free(input_type);
7710
        return PARALLEL;
7711
        }
9289 schaersvoo 7712
        if( strcmp(input_type, protractor) == 0 ){
7713
        free(input_type);
7714
        return PROTRACTOR;
7715
        }
7716
        if( strcmp(input_type, ruler) == 0 ){
7717
        free(input_type);
7718
        return RULER;
7719
        }
9386 schaersvoo 7720
        if( strcmp(input_type, cursor) == 0 ||  strcmp(input_type, pointer) == 0 ){
9213 schaersvoo 7721
        free(input_type);
9386 schaersvoo 7722
        return CURSOR;
7723
        }
7724
        if( strcmp(input_type, sgraph) == 0 ){
7725
        free(input_type);
7726
        return SGRAPH;
7727
        }
7728
        if( strcmp(input_type, jsmath) == 0 ){
7729
        free(input_type);
7730
        return JSMATH;
7731
        }
7732
        if( strcmp(input_type, trace_jscurve) == 0 ){
7733
        free(input_type);
7734
        return TRACE_JSCURVE;
7735
        }
7736
        if( strcmp(input_type, jscurve) == 0  ||  strcmp(input_type, jsplot) == 0 ){
7737
        free(input_type);
7738
        return JSCURVE;
7739
        }
7740
        if( strcmp(input_type, centerstring) == 0 || strcmp(input_type, title) == 0 ){
7741
        free(input_type);
7742
        return CENTERSTRING;
7743
        }
7744
        if( strcmp(input_type, setlimits) == 0 ){
7745
        free(input_type);
7746
        return SETLIMITS;
7747
        }
7748
        if( strcmp(input_type, xunit) == 0 ){
7749
        free(input_type);
7750
        return XUNIT;
7751
        }
7752
        if( strcmp(input_type, yunit) == 0 ){
7753
        free(input_type);
7754
        return YUNIT;
7755
        }
7756
        if( strcmp(input_type, fill) == 0 ){
7757
        free(input_type);
7758
        return FLOODFILL;
7759
        }
7760
        if( strcmp(input_type, end) == 0){
7761
        free(input_type);
7762
        return END;
7763
        }
7764
        if( strcmp(input_type, blink) == 0 ){
7765
        free(input_type);
7766
        return BLINK;
7767
        }
7768
        if( strcmp(input_type, audio) == 0 ){
7769
        free(input_type);
7770
        return AUDIO;
7771
        }
7772
        if( strcmp(input_type, audioobject) == 0 ){
7773
        free(input_type);
7774
        return AUDIOOBJECT;
7775
        }
7776
        if( strcmp(input_type, patternfill) == 0 ){
7777
        free(input_type);
7778
        return PATTERNFILL;
7779
        }
7780
        if( strcmp(input_type, hatchfill) == 0 ){
7781
        free(input_type);
7782
        return HATCHFILL;
7783
        }
15111 schaersvoo 7784
        if( strcmp(input_type, diafill) == 0  || strcmp(input_type, diamondfill) == 0  ){
9386 schaersvoo 7785
        free(input_type);
7786
        return DIAMONDFILL;
7787
        }
7788
        if( strcmp(input_type, dotfill) == 0 ){
7789
        free(input_type);
7790
        return DOTFILL;
7791
        }
11830 schaersvoo 7792
        if( strcmp(input_type, textfill) == 0 ){
7793
        free(input_type);
7794
        return TEXTFILL;
7795
        }
9386 schaersvoo 7796
        if( strcmp(input_type, gridfill) == 0 ){
7797
        free(input_type);
7798
        return GRIDFILL;
7799
        }
7800
        if( strcmp(input_type, imagefill) == 0 ){
7801
        free(input_type);
7802
        return IMAGEFILL;
7803
        }
7804
        if( strcmp(input_type, clicktile_colors) == 0 ){
7805
        free(input_type);
7806
        return CLICKTILE_COLORS;
7807
        }
7808
        if( strcmp(input_type, clicktile) == 0 ){
7809
        free(input_type);
7810
        return CLICKTILE;
7811
        }
15111 schaersvoo 7812
        if( strcmp(input_type, piechart) == 0  ){
9386 schaersvoo 7813
        free(input_type);
7814
        return PIECHART;
7815
        }
15111 schaersvoo 7816
        if( strcmp(input_type, boxplot) == 0  ){
9433 schaersvoo 7817
        free(input_type);
7818
        return BOXPLOT;
7819
        }
15111 schaersvoo 7820
        if( strcmp(input_type, boxplotdata) == 0  ){
9433 schaersvoo 7821
        free(input_type);
9465 schaersvoo 7822
        return BOXPLOTDATA;
9433 schaersvoo 7823
        }
15111 schaersvoo 7824
        if( strcmp(input_type, userboxplot) == 0  ){
9465 schaersvoo 7825
        free(input_type);
7826
        return USERBOXPLOT;
7827
        }
15111 schaersvoo 7828
        if( strcmp(input_type, userboxplotdata) == 0  ){
9465 schaersvoo 7829
        free(input_type);
7830
        return USERBOXPLOT;
7831
        }
15111 schaersvoo 7832
        if( strcmp(input_type, barchart) == 0  ){
9386 schaersvoo 7833
        free(input_type);
7834
        return BARCHART;
7835
        }
15111 schaersvoo 7836
        if( strcmp(input_type, linegraph) == 0  ){
9386 schaersvoo 7837
        free(input_type);
7838
        return LINEGRAPH;
7839
        }
15111 schaersvoo 7840
        if( strcmp(input_type, clock) == 0  ){
9386 schaersvoo 7841
        free(input_type);
7842
        return CLOCK;
7843
        }
15111 schaersvoo 7844
        if( strcmp(input_type, yerrorbars) == 0  ){
9386 schaersvoo 7845
        free(input_type);
9427 schaersvoo 7846
        return YERRORBARS;
7847
        }
15111 schaersvoo 7848
        if( strcmp(input_type, xerrorbars) == 0  ){
9427 schaersvoo 7849
        free(input_type);
7850
        return XERRORBARS;
7851
        }
15111 schaersvoo 7852
        if( strcmp(input_type, canvastype) == 0  ){
9427 schaersvoo 7853
        free(input_type);
11006 schaersvoo 7854
        return CANVASTYPE;
7855
        }
15111 schaersvoo 7856
        if( strcmp(input_type, noyaxis) == 0  ){
11006 schaersvoo 7857
        free(input_type);
11044 schaersvoo 7858
        return NOYAXIS;
7859
        }
15111 schaersvoo 7860
        if( strcmp(input_type, noxaxis) == 0  ){
11044 schaersvoo 7861
        free(input_type);
7862
        return NOXAXIS;
7863
        }
15111 schaersvoo 7864
        if( strcmp(input_type, colorpalette) == 0  ){
11044 schaersvoo 7865
        free(input_type);
11767 schaersvoo 7866
        return COLORPALETTE;
7867
        }
15111 schaersvoo 7868
        if( strcmp(input_type, imagepalette) == 0  ){
14038 schaersvoo 7869
        free(input_type);
7870
        return IMAGEPALETTE;
7871
        }
15111 schaersvoo 7872
        if( strcmp(input_type, resetoffset) == 0  ){
11767 schaersvoo 7873
        free(input_type);
11802 schaersvoo 7874
        return RESETOFFSET;
7875
        }
15111 schaersvoo 7876
        if( strcmp(input_type, xyoffset) == 0  ){
11802 schaersvoo 7877
        free(input_type);
7878
        return XYOFFSET;
7879
        }
12063 schaersvoo 7880
        if( strcmp(input_type, centered) == 0 ){
11802 schaersvoo 7881
        free(input_type);
12063 schaersvoo 7882
        return CENTERED;
11802 schaersvoo 7883
        }
15111 schaersvoo 7884
        if( strcmp(input_type, yoffset) == 0   ){
11802 schaersvoo 7885
        free(input_type);
11811 schaersvoo 7886
        return YOFFSET;
7887
        }
15111 schaersvoo 7888
        if( strcmp(input_type, xoffset) == 0   ){
12063 schaersvoo 7889
        free(input_type);
7890
        return XOFFSET;
7891
        }
15601 schaersvoo 7892
        if( strcmp(input_type, fillpattern) == 0 ||  strcmp(input_type, settile) == 0  ){
11811 schaersvoo 7893
        free(input_type);
11837 schaersvoo 7894
        return FILLPATTERN;
7895
        }
11890 schaersvoo 7896
        if( strcmp(input_type, numberline) == 0 ){
11837 schaersvoo 7897
        free(input_type);
11890 schaersvoo 7898
        return NUMBERLINE;
7899
        }
15111 schaersvoo 7900
        if( strcmp(input_type, obabel) == 0 ){
7901
        free(input_type);
7902
        return OBABEL;
7903
        }
7904
        if( strcmp(input_type, chemtex) == 0 ){
7905
        free(input_type);
7906
        return CHEMTEX;
7907
        }
7908
        if( strcmp(input_type, noreset) == 0  || strcmp(input_type, killreset) == 0 ){
7909
         return NORESET;
7910
        }
14393 schaersvoo 7911
        if( strcmp(input_type, duplicates) == 0 || strcmp(input_type, allowdups) == 0 ){
11890 schaersvoo 7912
        free(input_type);
14393 schaersvoo 7913
        return ALLOW_DUPLICATES;
7914
        }
15690 schaersvoo 7915
        if( strcmp(input_type, arrowarc) == 0 || strcmp(input_type, arcarrow) == 0 ){
14393 schaersvoo 7916
        free(input_type);
15690 schaersvoo 7917
        return ARCARROW;
7918
        }
7919
        free(input_type);
7614 schaersvoo 7920
        ungetc(c,infile);
7921
        return 0;
7922
}
15611 schaersvoo 7923
 
15613 schaersvoo 7924
 
7925