line.4th 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. \ ctp line drawing
  2. base @ decimal
  3. variable down
  4. : line-draw ( -- )
  5. lcd-cls
  6. s" Line Drawing" lcd-type
  7. lcd-cr lcd-cr
  8. s" Touch screen to draw line" lcd-type
  9. 9 lcd-text-rows 1- lcd-at-xy
  10. s" Clear" lcd-type
  11. 10 lcd-spaces
  12. s" Exit" lcd-type
  13. button-flush
  14. key-flush
  15. ctp-flush
  16. false down !
  17. lcd-black
  18. begin
  19. ctp-pos? if
  20. ctp-pos dup 0<
  21. if
  22. 2drop
  23. false down !
  24. else
  25. down @
  26. if
  27. lcd-line-to
  28. else
  29. lcd-move-to
  30. true down !
  31. then
  32. then
  33. then
  34. button? if
  35. button
  36. case
  37. button-left of
  38. lcd-cls
  39. false down !
  40. endof
  41. button-centre of
  42. endof
  43. button-right of
  44. exit
  45. endof
  46. endcase
  47. then
  48. key? if
  49. key-flush
  50. then
  51. wait-for-event
  52. again
  53. ;
  54. base !