Subversion Repositories wimsdev

Rev

Rev 18129 | Rev 18339 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. #! /bin/sh
  2.  
  3. tablist="prep color obj"
  4. prepstruct="
  5.         char *name;
  6.         int typ;
  7. "
  8. colorstruct="
  9.         char *name;
  10.         char *def;
  11. "
  12. objstruct="
  13.         char *name;
  14.         int required_parms,color_pos,fill_tag,subst;
  15.         void (*routine) (objparm *pm);
  16. "
  17. export prepstruct colorstruct objstruct
  18. /* for fill_tag, -1:dashed, 1:filled, 0: nothing */
  19. header="
  20.         /* This file is automatically generated! Do not edit it. */
  21. #include \"flydraw.h\"
  22. "
  23.  
  24. names=`cat <<@
  25. brush   t_color "-1,-1,-255"
  26. brushed t_color "-1,-1,-255"
  27. style   t_color "-1,-255,-1"
  28. styled  t_color "-1,-255,-1"
  29. tile    t_color "-255,-1,-1"
  30. tiled   t_color "-255,-1,-1"
  31.  
  32. color   t_prep  p_color
  33. colour  t_prep  p_color
  34. colors  t_prep  p_color
  35. colours t_prep  p_color
  36.  
  37. tiny    t_prep  p_font
  38. small   t_prep  p_font
  39. medium  t_prep  p_font
  40. large   t_prep  p_font
  41. huge    t_prep  p_font
  42. giant   t_prep  p_font
  43.  
  44. reset t_obj     0,0,0,0,        obj_reset
  45. noreset t_obj   0,0,0,0,        obj_noreset
  46. dashed t_obj    0,0,0,0,        obj_dashed
  47. filled t_obj    0,0,0,0,        obj_filled
  48. affine          t_obj   6,0,0,0,        obj_affine
  49. arrow           t_obj   5,1,0,1,        obj_arrow
  50. arrow2          t_obj   5,1,0,1,        obj_arrow2
  51. arrows          t_obj   5,-1,0,1,       obj_arrows
  52. arrows2         t_obj   5,-1,0,1,       obj_arrows2
  53. darrow          t_obj   5,1,-1,1,       obj_arrow
  54. darrow2         t_obj   5,1,-1,1,       obj_arrow2
  55. darrows         t_obj   5,-1,-1,1,      obj_arrows
  56. darrows2        t_obj   5,-1,-1,1,      obj_arrows2
  57. dasharrow       t_obj   5,1,-1,1,       obj_arrow
  58. dasharrow2      t_obj   5,1,-1,1,       obj_arrow2
  59. dashedarrow     t_obj   5,1,-1,1,       obj_arrow
  60. dashedarrow2    t_obj   5,1,-1,1,       obj_arrow2
  61. arc             t_obj   6,1,0,3, obj_arc
  62. angle t_obj 5,1,0,3, obj_angle
  63. ball            t_obj   3,1,1,0,        obj_circle
  64. circle          t_obj   3,1,0,3,        obj_circle
  65. circles         t_obj   3,-1,0,3,       obj_circles
  66. comment         t_obj   0,0,0,0,        obj_comment
  67. copy            t_obj   6,0,0,0,        obj_copy
  68. copyresized     t_obj   8,0,0,0,        obj_copyresize
  69. crosshair       t_obj   2,1,0,1,        obj_crosshair
  70. crosshairs      t_obj   2,-1,0,1,       obj_crosshairs
  71. crosshairsize   t_obj   1,0,0,0,        obj_crosshairsize
  72. curve   t_obj   0,-1,0,1,       obj_plot
  73. dashhalfline    t_obj   4,1,-1,3,       obj_halfline
  74. dashedline      t_obj   4,1,0,1,        obj_dline
  75. dashedlines     t_obj   4,-1,0,1,       obj_dlines
  76. dashline        t_obj   4,1,0,1,        obj_dline
  77. dashlines       t_obj   4,-1,0,1,       obj_dlines
  78. dashsegment     t_obj   4,1,0,1,        obj_dline
  79. demiline        t_obj   4,1,0,3,        obj_halfline
  80. diafill         t_obj   4,1,1,0,        obj_diafill
  81. diamondfill     t_obj   4,1,1,0,        obj_diafill
  82. disk            t_obj   3,1,1,0,        obj_circle
  83. diskfill        t_obj   4,1,1,0,        obj_dotfill
  84. dline           t_obj   4,1,0,1,        obj_dline
  85. dlines          t_obj   4,-1,0,1,       obj_dlines
  86. dhline          t_obj   2,1,-1,1,       obj_hline
  87. dpolyline       t_obj   4,-1,-1,1,      obj_dlines
  88. dotfill         t_obj   4,1,1,0,        obj_dotfill
  89. dplot           t_obj   0,-1,0,1,       obj_dplot
  90. dsegment        t_obj   4,1,0,1,        obj_dline
  91. dvline          t_obj   2,1,-1,1,       obj_vline
  92. ellipse         t_obj   4,1,0,3,        obj_ellipse
  93. ellipses        t_obj   4,-1,0,3,       obj_ellipses
  94. existing        t_obj   0,0,0,0,        obj_existing
  95. fcircle         t_obj   3,1,1,0,        obj_circle
  96. fcircles                t_obj   3,-1,1,3,       obj_circles
  97. fellipse        t_obj   4,1,1,0,        obj_ellipse
  98. fill            t_obj   2,1,1,0,        obj_fill
  99. filledcircle    t_obj   3,1,1,0,        obj_circle
  100. filledellipse   t_obj   4,1,1,0,        obj_ellipse
  101. filledpoly      t_obj   4,-1,1,0,       obj_poly
  102. filledpolygon   t_obj   4,-1,1,0,       obj_poly
  103. filledrect      t_obj   4,1,1,0,        obj_rect
  104. filledrectangle t_obj   4,1,1,0,        obj_rect
  105. filledsquare    t_obj   3,1,1,0,        obj_square
  106. filledtriangle  t_obj   6,1,1,0,        obj_triangle
  107. fillcircle      t_obj   3,1,1,0,        obj_circle
  108. fillellipse     t_obj   4,1,1,0,        obj_ellipse
  109. fillpoly        t_obj   4,-1,1,0,       obj_poly
  110. fillpolygon     t_obj   4,-1,1,0,       obj_poly
  111. fillrect        t_obj   4,1,1,0,        obj_rect
  112. fillrectangle   t_obj   4,1,1,0,        obj_rect
  113. fillsquare      t_obj   3,1,1,0,        obj_square
  114. filltriangle    t_obj   6,1,1,0,        obj_triangle
  115. filltoborder    t_obj   2,2,1,0,        obj_fillb
  116. flood           t_obj   2,1,1,0,        obj_fill
  117. floodfill       t_obj   2,1,1,0,        obj_fill
  118. fpoly           t_obj   4,-1,1,0,       obj_poly
  119. fpolygon        t_obj   4,-1,1,0,       obj_poly
  120. frect           t_obj   4,1,1,0,        obj_rect
  121. frectangle      t_obj   4,1,1,0,        obj_rect
  122. fsquare         t_obj   3,1,1,0,        obj_square
  123. ftriangle       t_obj   6,1,1,0,        obj_triangle
  124. gridfill        t_obj   4,1,1,0,        obj_gridfill
  125. halfline        t_obj   4,1,0,3,        obj_halfline
  126. hatchfill       t_obj   4,1,1,0,        obj_hatchfill
  127. hline           t_obj   2,1,0,3,        obj_hline
  128. hdline          t_obj   2,1,-1,1,       obj_hline
  129. insert          t_obj   6,0,0,0,        obj_copy
  130. interlace       t_obj   0,0,0,0,        obj_interlace
  131. killaffine      t_obj   0,0,0,0,        obj_killaffine
  132. killbrush       t_obj   0,0,0,0,        obj_killbrush
  133. killlinear      t_obj   0,0,0,0,        obj_killlinear
  134. killrotate      t_obj   0,0,0,0,        obj_killlinear
  135. killrotation    t_obj   0,0,0,0,        obj_killlinear
  136. killstyle       t_obj   0,0,0,0,        obj_killstyle
  137. killtile        t_obj   0,0,0,0,        obj_killtile
  138. killtranslate   t_obj   0,0,0,0,        obj_killtranslation
  139. killtranslation t_obj   0,0,0,0,        obj_killtranslation
  140. lattice         t_obj   8,1,0,1,        obj_lattice
  141. line            t_obj   4,1,0,3,        obj_line
  142. linear          t_obj   4,0,0,0,        obj_linear
  143. lines           t_obj   4,-1,0,3,       obj_lines
  144. rays            t_obj   4,-1,0,3,       obj_rays
  145. linewidth       t_obj   1,0,0,0,        obj_linewidth
  146. new             t_obj   0,0,0,0,        obj_new
  147. output          t_obj   0,0,0,0,        obj_output
  148. parallel        t_obj   7,1,0,3,        obj_parallel
  149. pixels          t_obj   2,-1,-1,0,      obj_points
  150. point           t_obj   2,1,0,1,        obj_point
  151. pointfill       t_obj   4,1,1,0,        obj_dotfill
  152. points          t_obj   2,-1,0,1,       obj_points
  153. poly            t_obj   4,-1,0,3,       obj_poly
  154. polygon         t_obj   4,-1,0,3,       obj_poly
  155. polyline        t_obj   4,-1,0,3,       obj_lines
  156. brokenline              t_obj   4,-1,0,3,       obj_lines
  157. print           t_obj   2,-1,0,0,       obj_string
  158. range           t_obj   4,0,0,0,        obj_range
  159. rangex          t_obj   2,0,0,0,        obj_xrange
  160. rangey          t_obj   2,0,0,0,        obj_yrange
  161. ranget          t_obj   2,0,0,0,        obj_trange
  162. rect            t_obj   4,1,0,3,        obj_rect
  163. rectangle       t_obj   4,1,0,3,        obj_rect
  164. rotate          t_obj   1,0,0,0,        obj_rotation
  165. rotation        t_obj   1,0,0,0,        obj_rotation
  166. seg             t_obj   4,1,0,3,        obj_line
  167. segment         t_obj   4,1,0,3,        obj_line
  168. segments                t_obj   4,-1,0,3,       obj_segments
  169. setbrush        t_obj   0,0,0,0,        obj_setbrush
  170. setpixel        t_obj   2,1,-1,0,       obj_point
  171. setstyle        t_obj   0,0,0,0,        obj_setstyle
  172. settile         t_obj   0,0,-1,0,       obj_setbrush
  173. size            t_obj   2,0,0,0,        obj_size
  174. square          t_obj   3,1,0,3,        obj_square
  175. string          t_obj   2,-1,0,0,       obj_string
  176. stringup        t_obj   2,-1,-1,0,      obj_string
  177. text            t_obj   2,-1,0,0,       obj_string
  178. textup          t_obj   2,-1,-1,0,      obj_string
  179. translate       t_obj   2,0,0,0,        obj_translation
  180. translation     t_obj   2,0,0,0,        obj_translation
  181. transparent     t_obj   0,-1,0,0,       obj_transp
  182. triangle        t_obj   6,1,0,3,        obj_triangle
  183. vline           t_obj   2,1,0,3,        obj_vline
  184. vdline          t_obj   2,1,-1,1,       obj_vline
  185. write           t_obj   2,-1,0,0,       obj_string
  186. writeup         t_obj   2,-1,-1,0,      obj_string
  187. xrange          t_obj   2,0,0,0,        obj_xrange
  188. yrange          t_obj   2,0,0,0,        obj_yrange
  189. trange          t_obj   2,0,0,0,        obj_trange
  190. tstep           t_obj   1,0,0,0,        obj_tstep
  191. tsteps          t_obj   1,0,0,0,        obj_tstep
  192. plotstep        t_obj   1,0,0,0,        obj_tstep
  193. plotsteps       t_obj   1,0,0,0,        obj_tstep
  194. plot            t_obj   0,-1,0,1,       obj_plot
  195. plotjump        t_obj   1,0,0,0,        obj_plotjump
  196. levelcurve      t_obj   0,-1,0,1,       obj_levelcurve
  197. levelstep       t_obj   1,0,0,0,        obj_levelstep
  198. animstep        t_obj   1,0,0,0,        obj_animstep
  199. wims_linecount  t_obj   1,0,0,0,        obj_linecount
  200. wims_end        t_obj   0,0,0,0,        obj_end
  201. setmatrix       t_obj   5,0,0,0,        obj_setmatrix
  202. resetmatrix     t_obj   1,0,0,0,        obj_resetmatrix
  203. setvector       t_obj   3,0,0,0,        obj_setvector
  204. resetvector     t_obj   1,0,0,0,        obj_resetvector
  205. settransform    t_obj   7,0,0,0,        obj_settransform
  206. resettransform  t_obj   1,0,0,0,        obj_resettransform
  207. setparallelogram        t_obj   6,0,0,0,        obj_setparallelogram
  208. resetparallelogram      t_obj   0,0,0,0,        obj_resetparallelogram
  209. multicopy       t_obj   0,0,0,0,        obj_multicopy
  210. vimgfile        t_obj   0,0,0,0,        obj_vimgfile
  211. vimg            t_obj   1,0,0,0,        obj_vimg
  212. tikzfile                t_obj   0,0,0,0,        obj_tikzfile
  213. @
  214. `
  215. namecolor=`awk 'NF==2 {print $1"        t_color \""$2"\""}' colors`
  216. namelist=`sort -k 1,1 <<@ | uniq
  217. $namecolor
  218. $names
  219. @
  220. `
  221.  
  222. o_list=`echo "$namelist" | grep t_obj | awk '{print substr($4,5)}' | sort | uniq`
  223.  
  224. cd `dirname $0`
  225. echo "$header" >nametab.c
  226. for o in $o_list
  227. do
  228.  echo "void obj_$o(objparm *pm);" >>nametab.c
  229. done
  230.  
  231. tab=tab
  232. no=_no
  233. for t in $tablist
  234. do
  235.  eval def='$'$t'struct'
  236.  list=`echo "$namelist" | grep t_$t`
  237.  ll=`echo "$list" | awk '
  238.         NF>1 {print "{\""$1"\", "$3" "$4" "$5"},"}
  239.         '`
  240.  echo "$list" | awk '
  241.         BEGIN {a=0};
  242.         NF>1 {print "\""$1"\",  ",$2",  "a; a=a+1;};
  243. '>.nametab.$t
  244.  echo "struct $t$tab $t$tab[]={
  245. $ll
  246. };
  247.  
  248. int $t$no=(sizeof($t$tab)/sizeof($t$tab[0]));
  249. " >>nametab.c
  250. done
  251.  
  252. list=`cat .nametab.* | sort -k 1,1 | awk '{print "{"$0"},"}'`
  253. cat <<@ >>nametab.c
  254. struct nametab nametab[]={
  255. $list
  256. };
  257.  
  258. int nametab_no=(sizeof(nametab)/sizeof(nametab[0]));
  259.  
  260. @
  261.  
  262. rm -f .nametab.* >/dev/null 2>&1
  263.