=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/lib/glib,v retrieving revision 1.11 retrieving revision 1.18 diff -u -p -r1.11 -r1.18 --- OpenXM_contrib2/asir2000/lib/glib 2002/09/10 06:18:46 1.11 +++ OpenXM_contrib2/asir2000/lib/glib 2006/03/08 04:58:15 1.18 @@ -1,10 +1,13 @@ -/* $OpenXM: OpenXM_contrib2/asir2000/lib/glib,v 1.10 2002/08/08 08:56:31 takayama Exp $ */ -/* $Id: glib,v 1.11 2002/09/10 06:18:46 takayama Exp $ */ +/* $OpenXM: OpenXM_contrib2/asir2000/lib/glib,v 1.17 2006/03/03 10:36:18 takayama Exp $ */ /* BUG: this library has not yet been adapted to the new automatic launcher of ox_plot. 2002, Aug, 4. Do not load glib more than twice. */ +extern Cfep_loaded$ + +#define DO_NOT_START_SERVER_EXPLICITLY + /* #define CLIP 1 */ /* #define DEBUG 1 */ #define LIST 4 @@ -34,9 +37,11 @@ def glib_ox_get_errors(P) { def reset_plot() { extern Glib_process; - print(" Sending signal to ox_plot",0); - ox_reset(Glib_process); - print(" Done."); + if (!Cfep_loaded) { + print(" Sending signal to ox_plot",0); + ox_reset(Glib_process); + print(" Done."); + } } Glib_ps = 0$ Glib_h = []$ @@ -45,29 +50,36 @@ Glib_canvas_y = 400$ Glib_xmin=0$ Glib_xmax=Glib_canvas_x$ Glib_ymin=0$ Glib_ymax=Glib_canvas_y$ Glib_math_coordinate=0$ -#define START_SERVER \ -extern Glib_server_started, Glib_process$ \ -if (type(Glib_server_started) == 0) { \ - Glib_process = ox_launch_nox(0,"ox_plot")$ \ - register_handler(reset_plot); \ - Glib_server_started = 1$ \ -}$ + Glib_canvas = -1$ Glib_xmag = 1$ Glib_ymag=1$ Glib_xoffset=0$ Glib_yoffset=0$ Glib_safe_mode = 2 $ Glib_counter = 100$ +extern Glib_ps_sx$ +extern Glib_ps_sy$ +Glib_ps_sx=2$ /* mag=1/2 for PS picture. cf. glib_ps_form, glib_tops */ +Glib_ps_sy=2$ /* mag=1/2 for PS picture */ + def open_Canvas(P,S) { - open_canvas(P,S); - R = ox_pop_cmo(P); -/* - if (glib_ox_get_errors(P) == []) { + extern Glib_process; + /* print("open_Canvas: ",0);print(S); */ + if (!Cfep_loaded) { + if (P < 0) P=open_canvas(S); /* BUG, get process No. */ + else open_canvas(P,S); + Glib_process = P; R = ox_pop_cmo(P); + /* + if (glib_ox_get_errors(P) == []) { + R = ox_pop_cmo(P); + }else{ + debug; + } + */ }else{ - debug; + R=cfep.open_canvas(S); } -*/ return(R); } @@ -81,9 +93,31 @@ end: */ def glib_open() { extern Glib_canvas_x, Glib_canvas_y, - Glib_process, Glib_canvas; - START_SERVER + Glib_process, Glib_canvas, + Glib_server_started, Glib_process$ + if (!Cfep_loaded) return glib_openx11(); + else { + Glib_canvas = open_Canvas(-1,[Glib_canvas_x,Glib_canvas_y])$ + Glib_server_started = 1$ + return(Glib_canvas); + } +} +def glib_openx11() { + extern Glib_canvas_x, Glib_canvas_y, + Glib_process, Glib_canvas, + Glib_server_started, Glib_process$ +#ifndef DO_NOT_START_SERVER_EXPLICITLY + if (type(Glib_server_started) == 0) { + Glib_process = ox_launch_nox(0,"ox_plot")$ + register_handler(reset_plot); + Glib_server_started = 1$ + }$ Glib_canvas = open_Canvas(Glib_process,[Glib_canvas_x,Glib_canvas_y])$ +#else + Glib_canvas = open_Canvas(-1,[Glib_canvas_x,Glib_canvas_y])$ + register_handler(reset_plot); + Glib_server_started = 1$ +#endif glib_check_strict(); return(Glib_canvas); } @@ -110,6 +144,7 @@ def glib_check_strict() { if (Glib_canvas < 0) { glib_open(); } + if (Cfep_loaded) return ; E = glib_ox_get_errors(Glib_process); if (E != []) { ox_pops(Glib_process,200); @@ -125,7 +160,7 @@ def glib_check_strict() { def glib_clear() { extern Glib_process, Glib_canvas; if (Glib_canvas < 0) glib_open(); - clear_canvas(Glib_process,Glib_canvas); + if (!Cfep_loaded) clear_canvas(Glib_process,Glib_canvas); } /*&usage begin: glib_window(Xmin,Ymin,Xmax,Ymax) @@ -186,10 +221,12 @@ def glib_putpixel(X,Y) { Glib_canvas_y-glib_floor(Glib_ymag*(Y+Glib_yoffset))]; } if ( type(C) != -1 ) { - draw_obj(Glib_process,Glib_canvas,Pos,C); + if (!Cfep_loaded) draw_obj(Glib_process,Glib_canvas,Pos,C); + else cfep.draw_obj2(Glib_process,Glib_canvas,Pos,C); if (Glib_ps) glib_history(["putpixel",Pos2,C]); }else{ - draw_obj(Glib_process,Glib_canvas,Pos); + if (!Cfep_loaded) draw_obj(Glib_process,Glib_canvas,Pos); + else cfep.draw_obj(Glib_process,Glib_canvas,Pos); if (Glib_ps) glib_history(["putpixel",Pos2,0]); } } @@ -265,10 +302,12 @@ if (Glib_ps) { glib_floor(X1),Glib_canvas_y-glib_floor(Y1)]; } if ( type(Color) != -1 ) { - draw_obj(Glib_process,Glib_canvas,Pos,Color); + if (!Cfep_loaded) draw_obj(Glib_process,Glib_canvas,Pos,Color); + else cfep.draw_obj2(Glib_process,Glib_canvas,Pos,Color); if (Glib_ps) glib_history(["line",Pos2,Color]); }else{ - draw_obj(Glib_process,Glib_canvas,Pos); + if (!Cfep_loaded) draw_obj(Glib_process,Glib_canvas,Pos); + else cfep.draw_obj(Glib_process,Glib_canvas,Pos); if (Glib_ps) glib_history(["line",Pos2,0]); } } @@ -339,10 +378,12 @@ def glib_print(X,Y,Text) { Glib_canvas_y-glib_floor(Glib_ymag*(Y+Glib_yoffset))]; } if ( type(C) != -1 ) { - draw_string(Glib_process,Glib_canvas,Pos,Text,C); + if (!Cfep_loaded) draw_string(Glib_process,Glib_canvas,Pos,Text,C); + else cfep.draw_string2(Glib_process,Glib_canvas,Pos,Text,C); if (Glib_ps) glib_history(["print",Pos2,Text,C]); }else{ - draw_string(Glib_process,Glib_canvas,Pos,Text); + if (!Cfep_loaded) draw_string(Glib_process,Glib_canvas,Pos,Text); + else cfep.draw_string(Glib_process,Glib_canvas,Pos,Text); if (Glib_ps) glib_history(["print",Pos2,Text,0]); } } @@ -361,6 +402,9 @@ def glib_history(L) { return 0; } +#define xxx(x) idiv(x,Glib_ps_sx) +#define yyy(y) idiv(y,Glib_ps_sy) + /*&usage begin: glib_tops() If Glib_ps is set to 1, it returns a postscript program to draw the picture on the canvas. @@ -371,23 +415,25 @@ def glib_tops() { return glib_ps(Glib_h); } def glib_ps(L) { - PS = ""; + extern Glib_ps_sx; + extern Glib_ps_sy; + PS = string_to_tb(""); Prev_color = 0; /* Prolog */ - PS += "%%!PS-Adobe-1.0\n"; - PS += "%%BoundingBox: 0 0 " + - rtostr(Glib_canvas_x) + " " + rtostr(Glib_canvas_y) + "\n"; - PS += "%%Creator: This is generated by ifplot\n"; - PS += "%%Title: ifplot\n"; - PS += "%%EndComments: \n"; - PS += "0.1 setlinewidth \n"; - PS += "2 setlinecap \n"; - PS += "2 setlinejoin \n"; - PS += "/ifplot_putpixel { \n"; - PS += " /yyy 2 1 roll def /xxx 2 1 roll def \n"; - PS += " gsave newpath xxx yyy .5 0 360 arc \n"; - PS += " fill grestore \n"; - PS += "} def \n"; + write_to_tb("%%!PS-Adobe-1.0\n",PS); + write_to_tb("%%BoundingBox: 0 0 " + + rtostr(xxx(Glib_canvas_x)) + " " + rtostr(yyy(Glib_canvas_y)) + "\n",PS); + write_to_tb("%%Creator: This is generated by ifplot\n",PS); + write_to_tb("%%Title: ifplot\n",PS); + write_to_tb("%%EndComments: \n",PS); + write_to_tb("0.1 setlinewidth \n",PS); + write_to_tb("2 setlinecap \n",PS); + write_to_tb("2 setlinejoin \n",PS); + write_to_tb("/ifplot_putpixel { \n",PS); + write_to_tb(" /yyy 2 1 roll def /xxx 2 1 roll def \n",PS); + write_to_tb(" gsave newpath xxx yyy .5 0 360 arc \n",PS); + write_to_tb(" fill grestore \n",PS); + write_to_tb("} def \n",PS); L = reverse(L); N = length(L); @@ -395,32 +441,58 @@ def glib_ps(L) { C = L[I]; if (C[length(C)-1] != Prev_color) { Prev_color = C[length(C)-1]; - PS += rtostr(deval(ishift(Prev_color,16)/256)) + " " + + write_to_tb(rtostr(deval(ishift(Prev_color,16)/256)) + " " + rtostr(deval(iand(ishift(Prev_color,8),0xff)/256)) + " " + - rtostr(deval(iand(Prev_color,0xff)/256)) + " setrgbcolor \n"; + rtostr(deval(iand(Prev_color,0xff)/256)) + " setrgbcolor \n",PS); } if (C[0] == "putpixel") { - PS += rtostr(C[1][0]) + " " + rtostr(C[1][1]) + " ifplot_putpixel \n"; + write_to_tb(rtostr(xxx(C[1][0])) + " " + rtostr(yyy(C[1][1])) + " ifplot_putpixel \n",PS); } if (C[0] == "line") { - PS += " newpath "; - PS += rtostr(C[1][0]) + " " + rtostr(C[1][1]) + " moveto " + - rtostr(C[1][2]) + " " + rtostr(C[1][3]) + " lineto stroke \n"; + write_to_tb(" newpath ",PS); + write_to_tb(rtostr(xxx(C[1][0])) + " " + rtostr(yyy(C[1][1])) + " moveto " + + rtostr(xxx(C[1][2])) + " " + rtostr(yyy(C[1][3])) + " lineto stroke \n",PS); } if (C[0] == "print") { - PS += "/Times-Roman findfont 10 scalefont setfont \n"; - PS += rtostr(C[1][0]) + " " + rtostr(C[1][1]) + " moveto "; - PS += "(" + C[2] + ") show \n"; + write_to_tb("/Times-Roman findfont 10 scalefont setfont \n",PS); + write_to_tb(rtostr(xxx(C[1][0])) + " " + rtostr(yyy(C[1][1])) + " moveto ",PS); + write_to_tb("(" + C[2] + ") show \n",PS); } } /* Epilog */ - PS += "0 0 0 setrgbcolor \n"; - PS += "showpage \n"; + write_to_tb("0 0 0 setrgbcolor \n",PS); + write_to_tb("showpage \n",PS); - return PS; + return tb_to_string(PS); } +/*&usage begin: glib_ps_form(S) + It returns the PS code generated by executing {S} + (experimental). + example: glib_ps_form(quote( glib_line(0,0,100,100) )); + example: glib_ps_form(quote([glib_line(0,0,100,100),glib_line(100,0,0,100)])); + ref: glib_tops +end: */ +/* Todo. Change the canvas size. */ +def glib_ps_form(F) { + extern Glib_h; + extern Glib_ps; + H = Glib_h; /* push Glib_h */ + P = Glib_ps; /* push Glib_ps */ + + Glib_ps=1; Glib_h = []; + if (type(F) != 17) { + return "Error: argument should be quote(...)."; + } + eval_quote(F); + /* bug. eval_str causes seg fault for ccurve.rr main(8) */ + R = glib_tops(); + Glib_h = H; /* pop Glib_h */ + Glib_ps = P; /* pop Glib_ps */ + return R; +} + /*&usage begin: glib_plot(F) It plots an object {F} on the glib canvas. example: glib_plot([[0,1],[0.1,0.9],[0.2,0.7],[0.3,0.5],[0.4,0.8]]); @@ -430,6 +502,47 @@ end: */ def glib_plot(F) { Opt = getopt(); taka_glib_plot(F,Opt); +} + +/*&usage begin: glib_flush(); + Flush the output. + (Cfep only. It also set initGL to 1.). +end: */ +def glib_flush() { + extern Glib_canvas; + if (Glib_canvas < 0) glib_open(); + if (Cfep_loaded) cfep.draw_flush(Glib_canvas); +} +/*&usage begin: glib_set_pixel_size(P) + Set the size of putpixel to P. 1.0 is the default. + (cfep only). +end: */ +def glib_set_pixel_size(X) { + extern Glib_canvas; + if (Glib_canvas < 0) glib_open(); + if (!Cfep_loaded) /*Not implemented.*/ ; + else cfep.glib_set_pixel_size(X); +} +/*&usage begin: glib_clear() + Clear the screen. + (cfep only). +end: */ +def glib_clear() { + extern Glib_canvas; + if (Glib_canvas < 0) glib_open(); + if (!Cfep_loaded) /*Not implemented.*/ ; + else cfep.glib_clear(); +} +/*&usage begin: glib_remove_last() + Remove the last object. glib_flush() should also be called to remove + the last object. + (cfep only). +end: */ +def glib_remove_last() { + extern Glib_canvas; + if (Glib_canvas < 0) glib_open(); + if (!Cfep_loaded) /*Not implemented.*/ ; + else cfep.glib_remove_last(); } end$