1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
/* mathgl.cpp is part of UDAV
* Copyright (C) 2007-2014 Alexey Balakin <mathgl.abalakin@gmail.ru>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "mgl2/mgl.h"
#include "mgllab.h"
#include "../widgets/image.h"
//-----------------------------------------------------------------------------
mglParse *Parse=0;
//-----------------------------------------------------------------------------
mreal MGL_FUNC_PURE udav_delay(void *v)
{ return ((Fl_MGL*)v)->delay; }
void udav_reload(void *v)
{ Parse->RestoreOnce(); ((Fl_MGL*)v)->update(); }
//-----------------------------------------------------------------------------
void udav_next(void *v) { ((Fl_MGL*)v)->next_frame(); }
void Fl_MGL::next_frame()
{
size_t n=anim.size();
if(n==0 && animate_cb(this)) { gr->toggle_sshow(); return; }
n=anim.size();
cur = (cur+1)%n;
Parse->AddParam(0,anim[cur].c_str());
update();
}
//-----------------------------------------------------------------------------
void udav_prev(void *v) { ((Fl_MGL*)v)->prev_frame(); }
void Fl_MGL::prev_frame()
{
size_t n=anim.size();
if(n==0 && animate_cb(this)) { gr->toggle_sshow(); return; }
n=anim.size();
cur = (cur+n-1)%n;
Parse->AddParam(0,anim[cur].c_str());
update();
}
//-----------------------------------------------------------------------------
Fl_MGL::Fl_MGL(Fl_MGLView *GR)
{
if(!Parse) Parse = new mglParse;
Parse->AllowSetSize(true);
gr = GR; gr->par = this; e = 0;
gr->next = udav_next; gr->delay = udav_delay;
gr->prev = udav_prev; gr->reload = udav_reload;
gr->FMGL->set_draw(this);
gr->FMGL->set_show_warn(false);
a1=a2=0; da=1; cur=0; delay=0.5;
}
//-----------------------------------------------------------------------------
Fl_MGL::~Fl_MGL() {}
//-----------------------------------------------------------------------------
void Fl_MGL::Param(char id, const char *val)
{ Parse->AddParam(id<='9' ? id-'0' : id-'a'+10, val); }
//-----------------------------------------------------------------------------
void Fl_MGL::Reload()
{
Parse->RestoreOnce();
e->graph->update();
}
//-----------------------------------------------------------------------------
void Fl_MGL::Click()
{
int id = e->graph->FMGL->get_last_id();
if(id>0)
{
Fl_Text_Editor::kf_ctrl_move(FL_Home, e->editor);
for(int i=0;i<id;i++) Fl_Text_Editor::kf_down(0, e->editor);
Fl_Text_Editor::kf_up(0, e->editor);
Fl::focus(e->editor);
}
e->graph->update();
}
//-----------------------------------------------------------------------------
int Fl_MGL::Draw(mglGraph *gr)
{
if(exec_save) save_cb(0,e);
Parse->Execute(gr,script.c_str());
if(textbuf)
{
char *text = textbuf->text();
if(highlight) gr->Highlight(e->graph->FMGL->get_last_id());
Parse->Execute(gr,text);
free(text);
}
// TODO go to line with warning?!!
message_set(gr->Message(), e);
if(e && e->rtab) e->rtab->value(e->gplot);
return 0;
}
//-----------------------------------------------------------------------------
void Fl_MGL::update()
{
// NOTE: hint for old style View(). May be I should remove it!
char *text = textbuf->text();
if(script.empty() || !text || !strstr(text,"rotate"))
mgl_rotate(gr->get_graph(),0,0,0);
gr->update();
for(long i=0;i<Parse->GetNumVar();i++)
{
mglDataA *v = Parse->GetVar(i);
if(v && v->o) ((TableWindow *)v->o)->update(v);
}
}
//-----------------------------------------------------------------------------
// void add_suffix(char *fname, const char *ext)
// {
// long n=strlen(fname);
// if(n>4 && fname[n-4]=='.')
// { fname[n-3]=ext[0]; fname[n-2]=ext[1]; fname[n-1]=ext[2]; }
// else { strcat(fname,"."); strcat(fname,ext); }
// }
//-----------------------------------------------------------------------------
class ArgsDlg : public GeneralDlg
{
Fl_Input *arg[10];
public:
void cb_ok()
{
for(int i=0;i<10;i++) Parse->AddParam(i,arg[i]->value());
hide();
}
void set(int id, const char *val)
{
if(id>=0 && id<10)
{ arg[id]->value(val); Parse->AddParam(id,val); }
}
void init()
{ // NOTE I'm not sure that I need to get current arguments. So keep function empty.
}
ArgsDlg() : GeneralDlg()
{
w = new Fl_Double_Window(290, 320, _("Set script arguments"));
arg[1] = new Fl_Input(5, 20, 135, 30, _("String for $1"));
arg[1]->align(FL_ALIGN_TOP_LEFT);
arg[2] = new Fl_Input(150, 20, 135, 30, _("String for $2"));
arg[2]->align(FL_ALIGN_TOP_LEFT);
arg[3] = new Fl_Input(5, 75, 135, 30, _("String for $3"));
arg[3]->align(FL_ALIGN_TOP_LEFT);
arg[4] = new Fl_Input(150, 75, 135, 30, _("String for $4"));
arg[4]->align(FL_ALIGN_TOP_LEFT);
arg[5] = new Fl_Input(5, 130, 135, 30, _("String for $5"));
arg[5]->align(FL_ALIGN_TOP_LEFT);
arg[6] = new Fl_Input(150, 130, 135, 30, _("String for $6"));
arg[6]->align(FL_ALIGN_TOP_LEFT);
arg[7] = new Fl_Input(5, 185, 135, 30, _("String for $7"));
arg[7]->align(FL_ALIGN_TOP_LEFT);
arg[8] = new Fl_Input(150, 185, 135, 30, _("String for $8"));
arg[8]->align(FL_ALIGN_TOP_LEFT);
arg[9] = new Fl_Input(5, 240, 135, 30, _("String for $9"));
arg[9]->align(FL_ALIGN_TOP_LEFT);
arg[0] = new Fl_Input(150, 240, 135, 30, _("String for $0"));
arg[0]->align(FL_ALIGN_TOP_LEFT);
Fl_Button* o = new Fl_Button(60, 290, 75, 25, _("Cancel"));
o->callback(cb_dlg_cancel, this);
o = new Fl_Return_Button(155, 290, 75, 25, _("Set"));
o->callback(cb_dlg_ok, this);
w->set_modal(); w->end();
}
} args_dlg;
//-----------------------------------------------------------------------------
void args_dlg_cb(Fl_Widget *, void *) { args_dlg.show(); }
void argument_set(int id, const char *val) { args_dlg.set(id,val); }
//-----------------------------------------------------------------------------
void cb_anim_put(Fl_Widget *, void *);
void cb_dlg_only(Fl_Widget*,void *v) { ((Fl_Round_Button*)v)->setonly(); }
class AnimateDlg : public GeneralDlg
{
public:
Fl_MGL* dr;
AnimateDlg() : GeneralDlg()
{
w = new Fl_Double_Window(335, 350, _("Animation"));
new Fl_Box(10, 5, 315, 25, _("Redraw picture for $0 equal to"));
rt = new Fl_Round_Button(10, 30, 200, 25, _("strings"));
rt->callback(cb_dlg_only, rt);
rv = new Fl_Round_Button(220, 30, 105, 25, _("values"));
rv->callback(cb_dlg_only, rv);
txt = new Fl_Multiline_Input(10, 60, 200, 250);
x0 = new Fl_Float_Input(220, 80, 105, 25, _("from")); x0->align(FL_ALIGN_TOP_LEFT);
x1 = new Fl_Float_Input(220, 130, 105, 25, _("to")); x1->align(FL_ALIGN_TOP_LEFT);
dx = new Fl_Float_Input(220, 180, 105, 25, _("with step")); dx->align(FL_ALIGN_TOP_LEFT);
Fl_Button *o;
o = new Fl_Button(230, 215, 80, 25, _("Cancel")); o->callback(cb_dlg_cancel, this);
o = new Fl_Return_Button(230, 250, 80, 25, _("OK"));o->callback(cb_dlg_ok, this);
save = new Fl_Check_Button(220, 285, 105, 25, _("save slides"));
save->tooltip(_("Keep slides in memory (faster animation but require more memory)"));
save->down_box(FL_DOWN_BOX); save->deactivate();
o = new Fl_Button(10, 315, 100, 25, _("Put to script")); o->callback(cb_anim_put,w);
dt = new Fl_Float_Input(220, 315, 105, 25, _("Delay (in sec)"));// dx->align(FL_ALIGN_TOP_LEFT);
w->end();
}
void init()
{
if(e) dr = e->draw;
if(dr && dr->da*(dr->a2-dr->a1)>0)
{
char buf[128]; rv->setonly();
snprintf(buf,127,"%g",dr->a1); x0->value(buf);
snprintf(buf,127,"%g",dr->a2); x1->value(buf);
snprintf(buf,127,"%g",dr->da); dx->value(buf);
}
else if(dr)
{
rt->setonly();
std::string str;
for(size_t i=0;i<dr->anim.size();i++)
str += dr->anim[i]+'\n';
txt->value(str.c_str());
}
}
void prepare()
{
result.clear();
if(dr) dr->anim.clear();
if(rv->value())
{
const char *s1=x0->value(), *s2=x1->value(), *s3=dx->value();
double a1=s1?atof(s1):NAN, a2=s2?atof(s2):NAN, a3=s3?atof(s3):1;
if(a3*(a2-a1)>0)
{
result = result + "##c "+(s1?s1:"nan")+' '+(s2?s2:"nan")+' '+(s3?s3:"1")+'\n';
if(dr)
{
dr->a1=a1; dr->a2=a2; dr->da=a3;
for(double a=a1;a3*(a2-a)>=0;a+=a3)
{
char buf[128]; snprintf(buf,128,"%g",a);
dr->anim.push_back(buf);
}
}
}
else fl_alert(_("Incompatible loop parameters!"));
}
else if(rt->value())
{
const char *s = txt->value();
while(s && *s)
{
const char *j = strchr(s,'\n');
size_t len = j?(j-s):strlen(s);
std::string val(s,len);
if(dr) dr->anim.push_back(val);
result = result+"##a "+val+'\n';
s=j?j+1:NULL;
}
}
else fl_message(_("No selection. So nothing to do"));
}
void into_script()
{
prepare();
if(e)
{
int p = textbuf->line_start(e->editor->insert_position());
textbuf->insert(p, (result+'\n').c_str());
}
}
void cb_ok()
{
if(!dr) return;
prepare();
const char *s = dt->value();
if(s && *s) dr->delay = atof(s);
hide();
}
protected:
bool swap;
Fl_Round_Button *rt, *rv;
Fl_Multiline_Input *txt;
Fl_Float_Input *x0, *x1, *dx, *dt;
Fl_Check_Button *save;
void create_dlg();
} animate_dlg;
//-----------------------------------------------------------------------------
void animate_dlg_cb(Fl_Widget *, void *v)
{ animate_dlg.e = (ScriptWindow*)v; animate_dlg.show(); }
void cb_anim_put(Fl_Widget *, void *) { animate_dlg.into_script(); }
//-----------------------------------------------------------------------------
bool animate_cb(Fl_MGL *d)
{ animate_dlg.dr = d; animate_dlg.show(); return animate_dlg.wait(); }
//-----------------------------------------------------------------------------
void fill_animate(const char *text, Fl_MGL *dr)
{
char tmp[4]="#$0";
for(int i=0;i<10;i++) // first read script arguments (if one)
{
tmp[2] = '0'+i;
const char *str=strstr(text,tmp);
if(str)
{
str+=3;
while(*str>0 && *str<=' ' && *str!='\n') str++;
if(*str>' ')
{
size_t j=0; while(str[j]>' ') j++;
std::string val(str,j);
argument_set(i,val.c_str());
}
}
}
dr->anim.clear();
std::string ids;
std::vector<std::string> par;
mgl_parse_comments(text, dr->a1, dr->a2, dr->da, dr->anim, ids, par);
if(!ids.empty()) dr->gr->dialog(ids,par);
}
//-----------------------------------------------------------------------------
Fl_Text_Display::Style_Table_Entry stylemess[2] = { // Style table
{ FL_BLACK, FL_COURIER, 12, 0 }, // A - Plain
{ FL_RED, FL_COURIER, 12, 0 } }; // B - Strings
void mess_parse(const char *text, char *style, int /*length*/)
{
size_t n=strlen(text);
// Style letters: A - Plain; B - Error
for(size_t i=0;i<n;i++) style[i] = 'A';
const char *l1=text, *l2=strchr(l1, '\n');
while(l1)
{
size_t len = l2?l2-l1:strlen(l1), st=l1-text;
const char *p = strstr(l1,"in line");
if(p && size_t(p-l1)<len)
for(size_t i=0;i<len;i++) style[i+st]='B';
l1=l2?l2+1:NULL; l2=l1?strchr(l1, '\n'):NULL;
}
}
//-----------------------------------------------------------------------------
static Fl_Text_Buffer *sbuf=0;
void mess_update(int pos, int nInserted, int nDeleted, int, const char *, void *cbArg)
{
Fl_Text_Buffer *mbuf=((Fl_Text_Editor *)cbArg)->buffer();
long start, end; // Start and end of text
char last, *style, *text; // Text data
if (nInserted == 0 && nDeleted == 0) { sbuf->unselect(); return; }
if (nInserted > 0)
{
style = new char[nInserted + 1];
memset(style, 'A', nInserted);
style[nInserted] = '\0';
sbuf->replace(pos, pos + nDeleted, style);
delete[] style;
}
else sbuf->remove(pos, pos + nDeleted);
sbuf->select(pos, pos + nInserted - nDeleted);
start = mbuf->line_start(pos);
end = mbuf->line_end(pos + nInserted);
text = mbuf->text_range(start, end);
style = sbuf->text_range(start, end);
if (start==end) last = 0;
else last = style[end-start-1];
mess_parse(text, style, end - start);
sbuf->replace(start, end, style);
((Fl_Text_Editor *)cbArg)->redisplay_range(start, end);
if (start==end || last != style[end-start-1])
{
// Either the user deleted some text, or the last character on
// the line changed styles, so reparse the remainder of the buffer...
free(text); free(style);
end = mbuf->length();
text = mbuf->text_range(start, end);
style = sbuf->text_range(start, end);
mess_parse(text, style, end - start);
sbuf->replace(start, end, style);
((Fl_Text_Editor *)cbArg)->redisplay_range(start, end);
}
free(text); free(style);
}
//-----------------------------------------------------------------------------
void style_unfinished_cb(int, void*);
void cb_mess_copy(Fl_Widget*,void *v);
void cb_mess_jump(Fl_Widget*,void *v);
class MessDlg : public GeneralDlg
{
Fl_Text_Display *mess;
Fl_Text_Buffer *mbuf;
int pos, last;
public:
MessDlg() : GeneralDlg()
{
Fl_Button *o;
w = new Fl_Double_Window(500, 195, _("MGL messages"));
mess = new Fl_Text_Display(30, 5, 460, 190);
o = new Fl_Return_Button(5,5,25,25); o->callback(cb_mess_jump,e);
o = new Fl_Button(5,35,25,25); o->callback(cb_mess_copy,e); o->image(img_copy);
w->end(); w->resizable(mess);
mbuf = new Fl_Text_Buffer; sbuf = new Fl_Text_Buffer;
mess->buffer(mbuf); pos=last=0;
mess->highlight_data(sbuf, stylemess, sizeof(stylemess) / sizeof(stylemess[0]), 'A', style_unfinished_cb, 0);
mbuf->add_modify_callback(mess_update, mess);
mbuf->call_modify_callbacks();
}
void copy()
{
char *s = mbuf->selection_text();
if(s && *s==0) { free(s); s=0; }
if(!s) s = mbuf->text();
Fl::copy(s,strlen(s),1); free(s);
}
void jump()
{
if(!e) return;
char *s = mbuf->text();
if(*s==0) { free(s); return; }
int ipos = mess->line_start(mess->insert_position());
if(ipos!=last) last=pos=ipos;
int id=-1;
const char *p = strstr(s+pos,"in line");
if(p) { pos = p-s+7; id = atoi(p+8); }
else // try from beginning
{
p = strstr(s,"in line");
if(p) { pos = p-s+7; id = atoi(p+8); }
}
free(s);
if(id>=0)
{
Fl_Text_Editor::kf_ctrl_move(FL_Home, e->editor);
for(int i=0;i<id;i++) Fl_Text_Editor::kf_down(0, e->editor);
Fl_Text_Editor::kf_up(0, e->editor);
Fl::focus(e->editor);
}
}
void set(const char *s)
{ mbuf->text(s); show(); }
} mess_wnd;
//-----------------------------------------------------------------------------
void message_cb(Fl_Widget*,void *v)
{ animate_dlg.e = (ScriptWindow*)v; mess_wnd.show(); }
//-----------------------------------------------------------------------------
void message_set(const char *s, ScriptWindow *e)
{ mess_wnd.e = e; if(s && *s) mess_wnd.set(s); else mess_wnd.hide(); }
//-----------------------------------------------------------------------------
void cb_mess_copy(Fl_Widget*,void *v) { mess_wnd.copy(); }
//-----------------------------------------------------------------------------
void cb_mess_jump(Fl_Widget*,void *v) { mess_wnd.jump(); }
//-----------------------------------------------------------------------------
|