Oxygen Basic

Information => Open Forum => Topic started by: JRS on January 17, 2015, 12:17:40 AM

Title: Gauche Scheme
Post by: JRS on January 17, 2015, 12:17:40 AM
I discovered Gauche Scheme interpreter today and compiled it under Ubuntu 64 bit. I also compiled the OpenGL extension module. Here is a Mandelbrot example. (it displayed almost instantly) What is really unique (to me) is if I resize the window, the image is redrawn instantly.

Gauche Project Site (http://practical-scheme.net/gauche/index.html)

Note: This was the Scheme used on the Coding Ground (CompileOnLine.com) site.

Code: Scheme
  1. ;;
  2. ;; Calculate and show Mandelbrot set.
  3. ;;
  4.  
  5. (use gauche.uvector)
  6. (use gl)
  7. (use gl.glut)
  8. (use math.const)
  9.  
  10. (define *size*  256)
  11. (define *image* (make-u8vector (* *size* *size* 3) 0))
  12. (define *tex* #f)
  13.  
  14. (define *speed-phi* 0)
  15. (define *xrot* 0)
  16. (define *yrot* 0)
  17.  
  18. (define (fill-image)
  19.   (dotimes (y *size*)
  20.     (dotimes (x *size*)
  21.       (let ((i (* (+ (* y *size*) x) 3))
  22.             (z (make-rectangular (- (* 3 (/ x *size*)) 2)
  23.                                  (- (* 3 (/ y *size*)) 1.5))))
  24.         (letrec ((rank (lambda (zn n)
  25.                          (cond ((>= n 16) 0)
  26.                                ((>= (magnitude zn) 2) n)
  27.                                (else (rank (+ (* zn zn) z) (+ n 1)))))))
  28.           (let ((r (rank z 0)))
  29.             (u8vector-set! *image* i       (ash (logand r #xc) 4))
  30.             (u8vector-set! *image* (+ i 1) (ash (logand r #x2) 6))
  31.             (u8vector-set! *image* (+ i 2) (ash (logand r #x1) 7))
  32.             ))))))
  33.  
  34. (define (init)
  35.   (fill-image)
  36.   (gl-clear-color 0.0 0.0 0.0 0.0)
  37.   (gl-shade-model GL_FLAT)
  38.   (set! *tex* (u32vector-ref (gl-gen-textures 1) 0))
  39.   (gl-bind-texture GL_TEXTURE_2D *tex*)
  40.   (gl-tex-parameter GL_TEXTURE_2D GL_TEXTURE_WRAP_S GL_REPEAT)
  41.   (gl-tex-parameter GL_TEXTURE_2D GL_TEXTURE_WRAP_T GL_REPEAT)
  42.   (gl-tex-parameter GL_TEXTURE_2D GL_TEXTURE_MAG_FILTER GL_NEAREST)
  43.   (gl-tex-parameter GL_TEXTURE_2D GL_TEXTURE_MIN_FILTER GL_NEAREST)
  44.   (gl-tex-image-2d GL_TEXTURE_2D 0 GL_RGB *size* *size* 0
  45.                    GL_RGB GL_UNSIGNED_BYTE *image*)
  46.   )
  47.  
  48. (define (disp)
  49.   (gl-clear GL_COLOR_BUFFER_BIT)
  50.   (gl-enable GL_TEXTURE_2D)
  51.   (gl-tex-env GL_TEXTURE_ENV GL_TEXTURE_ENV_MODE GL_REPLACE)
  52.   (gl-bind-texture GL_TEXTURE_2D *tex*)
  53.   (gl-push-matrix)
  54.   (gl-load-identity)
  55.   (gl-translate 0.5 0.5 0.0)
  56.   (gl-rotate *xrot* 1.0 0.0 0.0)
  57.   (gl-rotate *yrot* 0.0 1.0 0.0)
  58.   (gl-translate -0.5 -0.5 0.0)
  59.   (gl-begin GL_QUADS)
  60.   (gl-tex-coord '#f32(0.0 0.0)) (gl-vertex '#f32(0.0 0.0))
  61.   (gl-tex-coord '#f32(0.0 1.0)) (gl-vertex '#f32(0.0 1.0))
  62.   (gl-tex-coord '#f32(1.0 1.0)) (gl-vertex '#f32(1.0 1.0))
  63.   (gl-tex-coord '#f32(1.0 0.0)) (gl-vertex '#f32(1.0 0.0))
  64.   (gl-end)
  65.   (gl-pop-matrix)
  66.   (glut-swap-buffers)
  67.   (gl-disable GL_TEXTURE_2D)
  68.   (animate)
  69.   )
  70.  
  71. (define (reshape w h)
  72.   (gl-viewport 0 0 w h)
  73.   (gl-matrix-mode GL_PROJECTION)
  74.   (gl-load-identity)
  75.   (glu-ortho-2d 0 1 0 1)
  76.   (gl-matrix-mode GL_MODELVIEW)
  77.   (gl-load-identity)
  78.   )
  79.  
  80. (define (animate)
  81.   (let1 speed (abs (sin (* *speed-phi* pi/180)))
  82.     (set! *xrot* (fmod (+ *xrot* (/ speed 172.0)) 360.0))
  83.     (set! *yrot* (fmod (+ *yrot* (/ speed 334.0)) 360.0))
  84.     (set! *speed-phi* (fmod (+ *speed-phi* 0.003) 360.0)))
  85.   (glut-post-redisplay)
  86.   )
  87.  
  88. (define (main args)
  89.   (glut-init args)
  90.   (glut-init-display-mode (logior GLUT_DOUBLE GLUT_RGB))
  91.   (glut-init-window-size 256 256)
  92.   (glut-create-window "mandelbrot")
  93.   (init)
  94. ;  (glut-idle-func animate)
  95.   (glut-reshape-func reshape)
  96.   (glut-display-func disp)
  97.   (glut-main-loop)
  98.   0
  99.   )
  100.  

.
Title: Re: Gauche Scheme
Post by: RobbeK on January 17, 2015, 03:09:31 AM
Hi John,

rather fast , made in Japan it seems , full numeric tower and takes some interesting ideas from Common Lisp (dotimes , incf , decf etc ...)
also installs SLIB  !!!

testing : splitting 10,000,000 numbers (0...  ..999)  in even and odd

Setting up gauche (0.9.3.3-8ubuntu1) ...
Setting up slib (3b1-3.1) ...
Processing triggers for libc-bin (2.19-0ubuntu6.4) ...
gerd@gerd-HP-Pavilion-dv4000-EK987EA-UUG:~$ gosh
gosh> (define (tst)
       (let ((a 0) (b 0))
        (dotimes (i 10000000 (list a b))
         (if (even? i) (inc! a) (inc! b)))))
tst
gosh> (tst)
(5000000 5000000)
gosh> (time (tst))
;(time (tst))
; real   1.942
; user   1.810
; sys    0.000
(5000000 5000000)

faster than NewLISP (which is fast)

newLISP v.10.6.0 32-bit on Linux IPv4/6 libffi, options: newlisp -h

>
(lambda ()
 (let ((a 0) (b 0))
  (dotimes (i 10000000)
   (if (even? i)
    (++ a)
    (++ b)))
  (list a b)))
> (time (tst))
2775.392


> compare with Austin Kyoto CL (interpreted and compiled)

GCL (GNU Common Lisp)  2.6.10 CLtL1    Apr  2 2014 14:19:37
Source License: LGPL(gcl,gmp), GPL(unexec,bfd,xgcl)
Binary License:  GPL due to GPL'ed components: (XGCL READLINE UNEXEC)
Modifications of this banner must retain notice of a compatible license
Dedicated to the memory of W. Schelter

Use (help) to get some basic information on how to use GCL.
Temporary directory for compiler files set to /tmp/

>(defun tst ()
  (let ((a 0) (b 0))
   (dotimes (i 10000000 (list a b))
    (if (evenp i) (incf a) (incf b)))))

TST

>(time (tst))

real time

      :      3.779 secs
run-gbc time    :      3.099 secs
child run time  :      0.000 secs
gbc time        :      0.109 secs
(5000000 5000000)

>(compile 'tst)

Compiling /tmp/gazonk_4102_0.lsp.
End of Pass 1. 
End of Pass 2. 
OPTIMIZE levels: Safety=0 (No runtime error checking), Space=0, Speed=3
Finished compiling /tmp/gazonk_4102_0.lsp.
Loading /tmp/gazonk_4102_0.o
start address -T 0x8a36d0 Finished loading /tmp/gazonk_4102_0.o
#<compiled-function TST>
NIL
NIL

>(time (tst))

real time       :      0.059 secs
run-gbc time    :      0.039 secs
child run time  :      0.000 secs
gbc time        :      0.000 secs
(5000000 5000000)

>
best, Rob
Title: Re: Gauche Scheme
Post by: RobbeK on January 18, 2015, 05:26:07 AM
Hi John,

http://www.koguro.net/prog/dyncomp/index.html

Starting to like Gauche very much  8)

best, Rob
Title: Re: Gauche Scheme
Post by: JRS on January 18, 2015, 08:54:37 AM
Rob,

That is great news! I'm glad you found a Scheme language you like. Are your running Gauche under Linux or Windows?

John
Title: Re: Gauche Scheme
Post by: RobbeK on January 18, 2015, 10:10:47 AM
Hi John,

Under Linux for the moment , but the editor under Wine (LispIDE  -- has Scheme syntax highlighting and parens matching ), but on another computer I have it both for Win and Linux (I always had Ubuntu on it - mainly for the web, mobile network (tethering etc..)  and repair windows files hit by malware , the Libre Office , export to PDF , reading PS and deja-vu files, edit PDF's  etc ..  )  I do my very best not to use pirated software (which is imo the success of windows --  I mean the high amount of pirate copies makes it popular - everyone has a PhotoShop these days ,  99 out of 100 an illegal copy  :-[    (and furthermore used by people who simply do not need such complicated programs  --it's amazing what I get in my mailbox sometimes -- invitations made on a spread sheet etc ...    it's very sad ...  if they had to buy legal copies , Linux would be much more popular (though i'm somewhat worried about the increasing fragmentation at this moment)

best, Rob 
Title: Re: Gauche Scheme
Post by: JRS on January 18, 2015, 10:25:26 AM
Quote
it's very sad ...  if they had to buy legal copies , Linux would be much more popular (though i'm somewhat worried about the increasing fragmentation at this moment)

Actually bootleg software helps more than it hurts. Think about it. People buy software they plan to use. Most users have been burnt and spent money on crap the vendor did a great marketing effort on. Most bootleg software installs go in one of two directions. The pirate likes the software and ends up buying it for the support and upgrade aspect. The other direction is it's used once or twice and then deleted for the next item on the plate.

Linux and open source eliminates those steps and mess that goes along with it. The idea behind open source is to use existing code and make whatever your doing better.
 
Title: Re: Gauche Scheme
Post by: JRS on January 18, 2015, 08:31:40 PM
Quote from: Rob
but the editor under Wine (LispIDE  -- has Scheme syntax highlighting and parens matching )

I use UltraEdit under Linux and Windows. The license covers up to three instances of whatever OS it supports. This example is using the Scheme syntax highlighting definition file. They are easy to expand on and the options are extensive. The other cool thing about UE is it's scripting engine is JavaScript.





.
Title: Re: Gauche Scheme
Post by: JRS on January 18, 2015, 10:38:22 PM
Rob,

I built the Gauche GtkGLExt and GD (with PangoFT2 support) which should finally wean you off the JAPI tit.  ;D

301 in 5.010643 seconds = 60.07213046309625 FPS

Code: Scheme
  1. ;;
  2. ;; 3-D gear wheels.  This program is in the public domain.
  3. ;;
  4. ;; Brian Paul
  5. ;;
  6. ;; Conversion to GLUT by Mark J. Kilgard
  7. ;; Conversion to GtkGLExt by Naofumi Yasufuku
  8. ;; Port to Scheme by Shiro Kawai
  9.  
  10. (use math.const)
  11. (use gtk)
  12. (use gtk.gtkgl)
  13. (use gl)
  14.  
  15. ;; Draw a gear wheel.  You'll probably want to call this function when
  16. ;; building a display list since we do a lot of trig here.
  17. ;;
  18. ;; Input:  inner_radius - radius of hole at center
  19. ;; outer_radius - radius at center of teeth
  20. ;; width - width of gear
  21. ;; teeth - number of teeth
  22. ;; tooth_depth - depth of tooth
  23.  
  24. (define (gear inner-radius outer-radius width teeth tooth-depth)
  25.   (let ((r0 inner-radius)
  26.         (r1 (- outer-radius (/ tooth-depth 2.0)))
  27.         (r2 (+ outer-radius (/ tooth-depth 2.0)))
  28.         (da (* 2.0 (/ pi teeth 4.0))))
  29.     (gl-shade-model GL_FLAT)
  30.     (gl-normal 0.0 0.0 1.0)
  31.  
  32.     ;; draw front face
  33.     (gl-begin GL_QUAD_STRIP)
  34.     (dotimes (i (+ teeth 1))
  35.       (let1 angle (* i 2.0 (/ pi teeth))
  36.         (gl-vertex (* r0 (cos angle)) (* r0 (sin angle)) (* width 0.5))
  37.         (gl-vertex (* r1 (cos angle)) (* r1 (sin angle)) (* width 0.5))
  38.         (when (< i teeth)
  39.           (gl-vertex (* r0 (cos angle)) (* r0 (sin angle)) (* width 0.5))
  40.           (gl-vertex (* r1 (cos (+ angle (* 3 da))))
  41.                      (* r1 (sin (+ angle (* 3 da))))
  42.                      (* width 0.5)))))
  43.     (gl-end)
  44.  
  45.     ;; draw front sides of teeth
  46.     (gl-begin GL_QUADS)
  47.     (dotimes (i teeth)
  48.       (let1 angle (* i 2.0 (/ pi teeth))
  49.         (gl-vertex (* r1 (cos angle)) (* r1 (sin angle)) (* width 0.5))
  50.         (gl-vertex (* r2 (cos (+ angle da)))
  51.                    (* r2 (sin (+ angle da)))
  52.                    (* width 0.5))
  53.         (gl-vertex (* r2 (cos (+ angle (* 2 da))))
  54.                    (* r2 (sin (+ angle (* 2 da))))
  55.                    (* width 0.5))
  56.         (gl-vertex (* r1 (cos (+ angle (* 3 da))))
  57.                    (* r1 (sin (+ angle (* 3 da))))
  58.                    (* width 0.5))))
  59.     (gl-end)
  60.  
  61.     (gl-normal 0.0 0.0 -1.0)
  62.  
  63.     ;; draw back face
  64.     (gl-begin GL_QUAD_STRIP)
  65.     (dotimes (i (+ teeth 1))
  66.       (let1 angle (* i 2.0 (/ pi teeth))
  67.         (gl-vertex (* r1 (cos angle)) (* r1 (sin angle)) (* width -0.5))
  68.         (gl-vertex (* r0 (cos angle)) (* r0 (sin angle)) (* width -0.5))
  69.         (when (< i teeth)
  70.           (gl-vertex (* r1 (cos (+ angle (* 3 da))))
  71.                      (* r1 (sin (+ angle (* 3 da))))
  72.                      (* width -0.5))
  73.           (gl-vertex (* r0 (cos angle)) (* r0 (sin angle)) (* width -0.5)))))
  74.     (gl-end)
  75.  
  76.     ;; draw back sides of teeth
  77.     (gl-begin GL_QUADS)
  78.     (dotimes (i teeth)
  79.       (let1 angle (* i 2.0 (/ pi teeth))
  80.         (gl-vertex (* r1 (cos (+ angle (* 3 da))))
  81.                    (* r1 (sin (+ angle (* 3 da))))
  82.                    (* width -0.5))
  83.         (gl-vertex (* r2 (cos (+ angle (* 2 da))))
  84.                    (* r2 (sin (+ angle (* 2 da))))
  85.                    (* width -0.5))
  86.         (gl-vertex (* r2 (cos (+ angle da)))
  87.                    (* r2 (sin (+ angle da)))
  88.                    (* width -0.5))
  89.         (gl-vertex (* r1 (cos angle)) (* r1 (sin angle)) (* width -0.5))))
  90.     (gl-end)
  91.  
  92.     ;; draw outward faces of teeth
  93.     (gl-begin GL_QUAD_STRIP)
  94.     (dotimes (i teeth)
  95.       (let* ((angle (* i 2.0 (/ pi teeth)))
  96.              (u (- (* r2 (cos (+ angle da))) (* r1 (cos angle))))
  97.              (v (- (* r2 (sin (+ angle da))) (* r1 (sin angle))))
  98.              (len (sqrt (+ (* u u) (* v v))))
  99.              (uu (/ u len))
  100.              (vv (/ v len)))
  101.         (gl-vertex (* r1 (cos angle)) (* r1 (sin angle)) (* width 0.5))
  102.         (gl-vertex (* r1 (cos angle)) (* r1 (sin angle)) (* width -0.5))
  103.         (gl-normal v (- u) 0.0)
  104.         (gl-vertex (* r2 (cos (+ angle da)))
  105.                    (* r2 (sin (+ angle da)))
  106.                    (* width 0.5))
  107.         (gl-vertex (* r2 (cos (+ angle da)))
  108.                    (* r2 (sin (+ angle da)))
  109.                    (* width -0.5))
  110.         (gl-normal (cos angle) (sin angle) 0.0)
  111.         (gl-vertex (* r2 (cos (+ angle da da)))
  112.                    (* r2 (sin (+ angle da da)))
  113.                    (* width 0.5))
  114.         (gl-vertex (* r2 (cos (+ angle da da)))
  115.                    (* r2 (sin (+ angle da da)))
  116.                    (* width -0.5))
  117.         (gl-normal (- (* r1 (sin (+ angle da da da)))
  118.                       (* r2 (sin (+ angle da da))))
  119.                    (- (- (* r1 (cos (+ angle da da da)))
  120.                       (* r2 (cos (+ angle da da)))))
  121.                    0.0)
  122.         (gl-vertex (* r1 (cos (+ angle da da da)))
  123.                    (* r1 (sin (+ angle da da da)))
  124.                    (* width 0.5))
  125.         (gl-vertex (* r1 (cos (+ angle da da da)))
  126.                    (* r1 (sin (+ angle da da da)))
  127.                    (* width -0.5))
  128.         (gl-normal (cos angle) (sin angle) 0.0)))
  129.     (gl-vertex (* r1 (cos 0)) (* r1 (sin 0)) (* width 0.5))
  130.     (gl-vertex (* r1 (cos 0)) (* r1 (sin 0)) (* width -0.5))
  131.     (gl-end)
  132.  
  133.     (gl-shade-model GL_SMOOTH)
  134.     ;; draw inside radius cylinder
  135.     (gl-begin GL_QUAD_STRIP)
  136.     (dotimes (i (+ teeth 1))
  137.       (let1 angle (* i 2.0 (/ pi teeth))
  138.         (gl-normal (- (cos angle)) (- (sin angle)) 0.0)
  139.         (gl-vertex (* r0 (cos angle)) (* r0 (sin angle)) (* width -0.5))
  140.         (gl-vertex (* r0 (cos angle)) (* r0 (sin angle)) (* width 0.5))))
  141.     (gl-end)
  142.     ))
  143.  
  144. (define *view-rotx* 20.0)
  145. (define *view-roty* 30.0)
  146. (define *view-rotz* 0.0)
  147. (define *gear1* 0)
  148. (define *gear2* 0)
  149. (define *gear3* 0)
  150. (define *angle* 0.0)
  151. (define *timer* #f)
  152. (define *frames* 0)
  153.  
  154. (define (draw widget . _)
  155.   (let ((glcontext (gtk-widget-get-gl-context widget))
  156.         (gldrawable (gtk-widget-get-gl-drawable widget)))
  157.     ;;*** OpenGL BEGIN ***
  158.     (when (gdk-gl-drawable-gl-begin gldrawable glcontext)
  159.       (gl-clear (logior GL_COLOR_BUFFER_BIT GL_DEPTH_BUFFER_BIT))
  160.       (begin
  161.         (gl-push-matrix)
  162.         (gl-rotate *view-rotx* 1.0 0.0 0.0)
  163.         (gl-rotate *view-roty* 0.0 1.0 0.0)
  164.         (gl-rotate *view-rotz* 0.0 0.0 1.0)
  165.         (begin
  166.           (gl-push-matrix)
  167.           (gl-translate -3.0 -2.0 0.0)
  168.           (gl-rotate *angle* 0.0 0.0 1.0)
  169.           (gl-call-list *gear1*)
  170.           (gl-pop-matrix))
  171.         (begin
  172.           (gl-push-matrix)
  173.           (gl-translate 3.1 -2.0 0.0)
  174.           (gl-rotate (- (* -2.0 *angle*) 9.0) 0.0 0.0 1.0)
  175.           (gl-call-list *gear2*)
  176.           (gl-pop-matrix))
  177.         (begin
  178.           (gl-push-matrix)
  179.           (gl-translate -3.1 4.2 0.0)
  180.           (gl-rotate (- (* -2.0 *angle*) 25.0) 0.0 0.0 1.0)
  181.           (gl-call-list *gear3*)
  182.           (gl-pop-matrix))
  183.         (gl-pop-matrix))
  184.       (if (gdk-gl-drawable-is-double-buffered gldrawable)
  185.           (gdk-gl-drawable-swap-buffers gldrawable)
  186.           (gl-flush))
  187.       (gdk-gl-drawable-gl-end gldrawable))
  188.    
  189.     (inc! *frames*)
  190.     (let1 seconds (g-timer-elapsed *timer*)
  191.       (when (>= seconds 5.0)
  192.         (print #`",*frames* in ,seconds seconds = ,(/ *frames* seconds) FPS")
  193.         (g-timer-reset *timer*)
  194.         (set! *frames* 0)))
  195.     #t))
  196.  
  197. ;; new window size or exposure
  198. (define (reshape widget . _)
  199.   (let* ((glcontext (gtk-widget-get-gl-context widget))
  200.          (gldrawable (gtk-widget-get-gl-drawable widget))
  201.          (wsize (ref widget 'allocation))
  202.          (h (/ (ref wsize 'height) (ref wsize 'width))))
  203.     ;;*** OpenGL BEGIN ***
  204.     (when (gdk-gl-drawable-gl-begin gldrawable glcontext)
  205.       (gl-viewport 0 0 (ref wsize 'width) (ref wsize 'height))
  206.       (gl-matrix-mode GL_PROJECTION)
  207.       (gl-load-identity)
  208.       (gl-frustum -1.0 1.0 (- h) h 5.0 60.0)
  209.       (gl-matrix-mode GL_MODELVIEW)
  210.       (gl-load-identity)
  211.       (gl-translate 0.0 0.0 -40.0)
  212.       (gdk-gl-drawable-gl-end gldrawable))
  213.     ;;*** OpenGL END ***
  214.     #t))
  215.  
  216. (define (init widget)
  217.   (let ((glcontext (gtk-widget-get-gl-context widget))
  218.         (gldrawable (gtk-widget-get-gl-drawable widget)))
  219.     ;;*** OpenGL BEGIN ***
  220.     (when (gdk-gl-drawable-gl-begin gldrawable glcontext)
  221.       (gl-light GL_LIGHT0 GL_POSITION '#f32(5.0 5.0 10.0 0.0))
  222.       (gl-enable GL_CULL_FACE)
  223.       (gl-enable GL_LIGHTING)
  224.       (gl-enable GL_LIGHT0)
  225.       (gl-enable GL_DEPTH_TEST)
  226.  
  227.       ;; make the gears
  228.       (set! *gear1* (gl-gen-lists 1))
  229.       (gl-new-list *gear1* GL_COMPILE)
  230.       (gl-material GL_FRONT GL_AMBIENT_AND_DIFFUSE '#f32(0.8 0.1 0.0 1.0))
  231.       (gear 1.0 4.0 1.0 20 0.7)
  232.       (gl-end-list)
  233.  
  234.       (set! *gear2* (gl-gen-lists 1))
  235.       (gl-new-list *gear2* GL_COMPILE)
  236.       (gl-material GL_FRONT GL_AMBIENT_AND_DIFFUSE '#f32(0.0 0.8 0.2 1.0))
  237.       (gear 0.5 2.0 2.0 10 0.7)
  238.       (gl-end-list)
  239.  
  240.       (set! *gear3* (gl-gen-lists 1))
  241.       (gl-new-list *gear3* GL_COMPILE)
  242.       (gl-material GL_FRONT GL_AMBIENT_AND_DIFFUSE '#f32(0.2 0.2 1.0 1.0))
  243.       (gear 1.3 2.0 0.5 10 0.7)
  244.       (gl-end-list)
  245.      
  246.       (gl-enable GL_NORMALIZE)
  247.  
  248.       (print)
  249.       (print #`"GL_RENDERER   = ,(gl-get-string GL_RENDERER)")
  250.       (print #`"GL_VERSION    = ,(gl-get-string GL_VERSION)")
  251.       (print #`"GL_VENDOR     = ,(gl-get-string GL_VENDOR)")
  252.       (print #`"GL_EXTENSIONS = ,(gl-get-string GL_EXTENSIONS)")
  253.       (print)
  254.  
  255.       (gdk-gl-drawable-gl-end gldrawable))
  256.     ;;*** OpenGL END ***
  257.  
  258.     ;; create timer
  259.     (unless *timer* (set! *timer* (g-timer-new)))
  260.     (g-timer-start *timer*)
  261.     ))
  262.  
  263. (define (idle widget)
  264.   (inc! *angle* 0.5)
  265.   (if (> *angle* 360) (set! *angle* (fmod *angle* 360)))
  266.   (gtk-widget-queue-draw widget)
  267.   #t)
  268.  
  269. (define *idle-id* 0)
  270.  
  271. (define (map widget . _)
  272.   (when (zero? *idle-id*)
  273.     (set! *idle-id* (gtk-idle-add-priority GDK_PRIORITY_REDRAW
  274.                                            (lambda _ (idle widget)))))
  275.   #t)
  276.  
  277. (define (unmap widget . _)
  278.   (unless (zero? *idle-id*)
  279.     (gtk-idle-remove *idle-id*)
  280.     (set! *idle-id* 0))
  281.   #t)
  282.  
  283. (define (visible widget event)
  284.   (if (= (ref event 'state) GDK_VISIBILITY_FULLY_OBSCURED)
  285.       (unless (zero? *idle-id*)
  286.               (gtk-idle-remove *idle-id*)
  287.               (set! *idle-id* 0))
  288.       (when (zero? *idle-id*)
  289.         (set! *idle-id* (gtk-idle-add-priority GDK_PRIORITY_REDRAW
  290.                                                (lambda _ (idle widget))))))
  291.   #t)
  292.  
  293. ;; change view angle, exit upon ESC
  294. (define (key widget event)
  295.   (let ((kv (ref event 'keyval))
  296.         (q  (lambda () (gtk-widget-queue-draw widget))))
  297.     (cond
  298.      ((= kv GDK_KEY_z)      (set! *view-rotz* (fmod (+ *view-rotz* 5.0) 360)) (q))
  299.      ((= kv GDK_KEY_Z)      (set! *view-rotz* (fmod (- *view-rotz* 5.0) 360)) (q))
  300.      ((= kv GDK_KEY_Up)     (set! *view-rotx* (fmod (+ *view-rotx* 5.0) 360)) (q))
  301.      ((= kv GDK_KEY_Down)   (set! *view-rotx* (fmod (- *view-rotx* 5.0) 360)) (q))
  302.      ((= kv GDK_KEY_Left)   (set! *view-roty* (fmod (+ *view-roty* 5.0) 360)) (q))
  303.      ((= kv GDK_KEY_Right)  (set! *view-roty* (fmod (- *view-roty* 5.0) 360)) (q))
  304.      ((= kv GDK_KEY_Escape) (gtk-main-quit))))
  305.   #t)
  306.  
  307. (define (main args)
  308.   (gtk-init args)
  309.   (unless (gdk-gl-query-extension)
  310.     (error "*** OpenGL is not supported."))
  311.  
  312.   ;;
  313.   ;; Configure OpenGL-capable visual.
  314.   ;;
  315.   (let1 glconfig (or (gdk-gl-config-new-by-mode (logior GDK_GL_MODE_RGB
  316.                                                         GDK_GL_MODE_DEPTH
  317.                                                         GDK_GL_MODE_DOUBLE))
  318.                      (begin
  319.                        (warn "*** Cannot find the double-buffered visual.\n*** Trying single-buffered visual.\n")
  320.                        (gdk-gl-config-new-by-mode (logior GDK_GL_MODE_RGB
  321.                                                           GDK_GL_MODE_DEPTH)))
  322.                      (error "*** No appropriate OpenGL-capable visual found.")
  323.                      )
  324.     ;;
  325.     ;; Top-level window.
  326.     ;;
  327.     (let1 window (gtk-window-new GTK_WINDOW_TOPLEVEL)
  328.       (gtk-window-set-title window "gears")
  329.       (g-signal-connect window "delete_event" (lambda _ (gtk-main-quit)))
  330.       (g-signal-connect window "key_press_event" key)
  331.       (g-signal-connect window "unmap_event" unmap)
  332.       (let1 vbox (gtk-vbox-new #f 0)
  333.         (gtk-container-add window vbox)
  334.         (gtk-widget-show vbox)
  335.         ;;
  336.         ;; Drawing area for drawing OpenGL scene.
  337.         ;;
  338.         (let1 drawing-area (gtk-drawing-area-new)
  339.           (gtk-widget-set-size-request drawing-area 300 300)
  340.           ;; Set OpenGL-capability to the widget.
  341.           (gtk-widget-set-gl-capability drawing-area glconfig #f #t
  342.                                         GDK_GL_RGBA_TYPE)
  343.           (gtk-box-pack-start vbox drawing-area #t #t 0)
  344.           (gtk-widget-set-events drawing-area
  345.                                  (logior GDK_EXPOSURE_MASK
  346.                                          GDK_BUTTON_PRESS_MASK
  347.                                          GDK_VISIBILITY_NOTIFY_MASK))
  348.           (g-signal-connect drawing-area "realize" init)
  349.           (g-signal-connect drawing-area "configure_event" reshape)
  350.           (g-signal-connect drawing-area "expose_event" draw)
  351.           (g-signal-connect drawing-area "map_event" map)
  352.           (g-signal-connect drawing-area "unmap_event" unmap)
  353.           (g-signal-connect drawing-area "visibility_notify_event" visible)
  354.           (gtk-widget-show drawing-area))
  355.         ;;
  356.         ;; Simple quit button.
  357.         ;;
  358.         (let1 button (gtk-button-new-with-label "Quit")
  359.           (gtk-box-pack-start vbox button #f #f 0)
  360.           (g-signal-connect button "clicked" (lambda _ (gtk-main-quit)))
  361.           (gtk-widget-show button))
  362.         );vbox
  363.       (gtk-widget-show window)
  364.       )
  365.     (gtk-main)
  366.     0))
  367.  


.
Title: Re: Gauche Scheme
Post by: JRS on January 18, 2015, 10:46:23 PM
Here is the Gtk GL GD example. As you mouse over the window client area, the color of the buttons change.

Code: Scheme
  1. ;;
  2. ;; like "simple", but using higher-level <gtk-graph-area> widget.
  3. ;; $Id: simple2.scm,v 1.2 2007/01/13 01:36:30 maruska Exp $
  4. ;;
  5.  
  6. (use gtk)
  7. (use gtk.gtkgl)
  8. (use gtk.glgd)
  9.  
  10. (define *attr-geometry* 0)
  11. (define *attr-skeleton* 1)
  12. (define *attr-current* GLGD_ATTR_FORCEVISIBLE)
  13.  
  14. (define (main args)
  15.   (gtk-init args)
  16.   (unless (gdk-gl-query-extension)
  17.     (error "*** OpenGL is not supported."))
  18.  
  19.   (let1 window (gtk-window-new GTK_WINDOW_TOPLEVEL)
  20.     (gtk-window-set-title window "objview")
  21.     (g-signal-connect window "delete_event" (lambda _ (gtk-main-quit)))
  22.     (let1 vbox (gtk-vbox-new #f 0)
  23.       (gtk-container-add window vbox)
  24.       (gtk-widget-show vbox)
  25.       ;;
  26.       ;; Drawing area for drawing OpenGL scene.
  27.       ;;
  28.       (let1 graph-area (make <gtk-graph-area>)
  29.         (gtk-widget-set-size-request graph-area 640 480)
  30.         (gtk-box-pack-start vbox graph-area #t #t 0)
  31.         (graph-build-simple (ref graph-area 'graph))
  32.         (gtk-widget-show graph-area))
  33.       ;;
  34.       ;; Simple quit button.
  35.       ;;
  36.       (let1 button (gtk-button-new-with-label "Quit")
  37.         (gtk-box-pack-start vbox button #f #f 0)
  38.         (g-signal-connect button "clicked" (lambda _ (gtk-main-quit)))
  39.         (gtk-widget-show button))
  40.       )
  41.     (gtk-widget-show window)
  42.     (gtk-main)
  43.     0))
  44.  
  45. ;; create a simple graph
  46. (define (graph-build-simple graph)
  47.   (glgd-graph-init graph)
  48.   (let* ((model (glgd-node-create))
  49.          (geometry (glgd-node-create))
  50.          (torso (glgd-node-create))
  51.          (arms (glgd-node-create))
  52.          (legs (glgd-node-create))
  53.          (skeleton (glgd-node-create))
  54.          (hip (glgd-node-create))
  55.          (thighLeft (glgd-node-create))
  56.          (thighRight (glgd-node-create)))
  57.     (glgd-node-info-set model "model" 0)
  58.     (glgd-node-attribute-set model *attr-geometry*)
  59.     (glgd-node-info-set geometry "geometry" 1)
  60.     (glgd-node-attribute-set geometry *attr-geometry*)
  61.     (glgd-node-info-set skeleton "skeleton" 2)
  62.     (glgd-node-attribute-set skeleton *attr-skeleton*)
  63.     (glgd-node-info-set torso "torso" 3)
  64.     (glgd-node-attribute-set torso *attr-geometry*)
  65.     (glgd-node-info-set arms "arms" 4)
  66.     (glgd-node-attribute-set arms *attr-geometry*)
  67.     (glgd-node-info-set legs "legs" 5)
  68.     (glgd-node-attribute-set legs *attr-geometry*)
  69.     (glgd-node-info-set hip "hip" 6)
  70.     (glgd-node-attribute-set hip *attr-skeleton*)
  71.     (glgd-node-info-set thighLeft "thighLeft" 7)
  72.     (glgd-node-attribute-set thighLeft *attr-skeleton*)
  73.     (glgd-node-info-set thighRight "thighRight" 8)
  74.     (glgd-node-attribute-set thighRight *attr-skeleton*)
  75.     (glgd-graph-node-add graph model)
  76.     (glgd-graph-node-add graph geometry)
  77.     (glgd-graph-node-add graph skeleton)
  78.     (glgd-graph-node-add graph torso)
  79.     (glgd-graph-node-add graph arms)
  80.     (glgd-graph-node-add graph legs)
  81.     (glgd-graph-node-add graph hip)
  82.     (glgd-graph-node-add graph thighLeft)
  83.     (glgd-graph-node-add graph thighRight)
  84.     (let* ((list (glgd-link-list-create))
  85.            (m2g (glgd-link-create))
  86.            (g2t (glgd-link-create))
  87.            (g2a (glgd-link-create))
  88.            (g2l (glgd-link-create))
  89.            (m2s (glgd-link-create))
  90.            (s2h (glgd-link-create))
  91.            (h2tl (glgd-link-create))
  92.            (h2tr (glgd-link-create))
  93.            (tr2h (glgd-link-create))
  94.            (tr2s (glgd-link-create)))
  95.       (glgd-link-set m2g model geometry)
  96.       (glgd-link-set g2t geometry torso)
  97.       (glgd-link-set g2a geometry arms)
  98.       (glgd-link-set g2l geometry legs)
  99.       (glgd-link-set m2s model skeleton)
  100.       (glgd-link-set s2h skeleton hip)
  101.       (glgd-link-set h2tl hip thighLeft)
  102.       (glgd-link-set h2tr hip thighRight)
  103.       (glgd-link-set tr2h thighRight hip)
  104.       (glgd-link-set tr2s thighRight skeleton)
  105.       (glgd-graph-link-add graph list m2g)
  106.       (glgd-graph-link-add graph list m2s)
  107.       (glgd-graph-link-add graph list g2t)
  108.       (glgd-graph-link-add graph list g2a)
  109.       (glgd-graph-link-add graph list g2l)
  110.       (glgd-graph-link-add graph list s2h)
  111.       (glgd-graph-link-add graph list h2tl)
  112.       (glgd-graph-link-add graph list h2tr)
  113.       (glgd-graph-link-add graph list tr2h)
  114.       (glgd-graph-link-add graph list tr2s)
  115.       (glgd-graph-link-list-add graph list)))
  116.   (glgd-graph-attribute-set graph *attr-current*)
  117.   (glgd-graph-auto-organize graph 0.0 0.0)
  118.   (glgd-graph-link-list-dump graph)
  119.   #t)
  120.  


.
Title: Re: Gauche Scheme
Post by: Mike Lobanovsky on January 19, 2015, 12:19:10 AM
Despite the apparent complexity, the gears example isn't very representative of software throughput.

Below is a snapshot of gears example running in Fabrice Bellard's (he's the author of Tiny C Compiler, the engine behind FBSL Dynamic C) TinyGL software renderer under KolibriOS within the VMware Player virtual machine.

TinyGL is a tiny subset of OpenGL-like API reimplemented with the aid of pure GDI calls. KolibriOS is an absolutely tiny open-source non-Linux indie graphical operating system written in pure assembly; its basic distro w/o the game set fits on a 1.44MB floppy disk! KolibriOS's graphics doesn't enjoy any hardware acceleration either.

Yet watch the absolutely amazing FPS rate of this example in a KolibryOS TinyGL window.

.
Title: Re: Gauche Scheme
Post by: RobbeK on January 19, 2015, 11:34:02 AM
Thanks, John Mike for all this interesting stuff !!

John - up to date with your specs now -- (some small problems with the libutils (seems to be libutils-gold that I needed ).
Great, I can "mouse wheel" into the widgets.
Can't get DynLoad package working , but the C-Wrapper is working

gosh> (use c-wrapper)
#<undef>
gosh> (c-load "stdio.h")
#<undef>
gosh> (printf "Hello \n")
Hello
7
gosh>  :)   -- great stuff,

thanks !!




Title: Re: Gauche Scheme
Post by: JRS on January 19, 2015, 12:41:45 PM
I'm glad we both found something we like and can work together on.

Let me know what the issues are and I'll take a shot and finding a solution. Worse case we can beg Mike to help.  ;D
Title: Re: Gauche Scheme
Post by: Mike Lobanovsky on January 19, 2015, 04:08:37 PM
Mike bad, Mike angry, Mike eat little kids for supper! :'(

;D
Title: Re: Gauche Scheme
Post by: JRS on January 19, 2015, 08:48:25 PM
No!

You translated that incorrectly.

(http://lowres.jantoo.com/religion-hospitalized-clinics-injury-accidents-hospital-19031035_low.jpg)
Title: Re: Gauche Scheme
Post by: RobbeK on January 23, 2015, 02:56:49 AM
John , all ,

tk/tcl is very easy to set up on Gauche and newLISP  ( http://www.tcl.tk/ ).  Linux already comes with it (be it a somewhat older version) , easy to install under Win and Mac.  There's a package for the CL compilers CLISP , Clozure , Steel Bank , CMUCL , ECL , Mankay etc..
In newLISP and Gauche there's even no need to compile anything , just setting up the pipes :

(map set '(myin tcout) (pipe))
(map set '(tcin myout) (pipe))
(process "/usr/bin/wish" tcin tcout)

;; passing the commands
(define (tk)
  (write-line myout (append "if { [catch { puts ["
              (apply string (args)) "] }] } { "
              [text] tk_messageBox -message $errorInfo; exit }
    [/text]))

and the listener :
(while (read-line myin)
    (eval-string (current-line)))

tk data can be read p.e.

(tk "set A_tcl_variable something")
and caught by newLisp
(setq a-newlisp-variable (tk "puts $A_tcl_variable"))
................   complete interactive, both scripts (lisp+tcl)  can be mixed in the code !!

p.e.     (tk (append "..............  tcl code .................. " (string (.............. lisp code ..............)) ....   etc ...........  ))

any number of call-backs can be set up easily

I also could set up OpenGL , glut under newLISP - a newLISP standalone exec should be less than 300 Kb + characters of the code  8)
(working on standalone Gauche distro's , but they are a lot fatter , more later )

best Rob

attached 2x newLISP
- swarm ,  tk + newLISP  (no widgets here, but those are easy to set up)
- gprimes ,  Gaussprimes , OpenGL + newLISP
Linux only / you will probably have to set the permissions before running.

addendum : added wineswarm.exe -- same code, bundled under Wine for Win -- however it expects the  exact c:\tcl\bin\wish.exe location  (the standard installation of tk/tcl under Win).  -- (infact the code can be written in a universal way where the code reads the OS and sets the respec. definition ).

for the OpenGL , libGL.so , libglut.so should be in your /usr/lib

.
Title: Re: Gauche Scheme
Post by: JRS on January 23, 2015, 08:52:10 AM
Thanks Rob for the Gauche update. I'm glad you're having so much fun.  :)
Title: Re: Gauche Scheme
Post by: RobbeK on January 27, 2015, 07:12:30 AM
OK , some Gauche then ...  1st code ..  (2D skeleton, stolen from the examples  ;)

a test, iteration and recursion seem to run at the same speed

(use gl)
(use gl.glut)

(define (init)
  (gl-clear-color 0.0 0.0 0.0 0.0)
  (gl-shade-model GL_SMOOTH))

(define (sq x) (* x x))

(define (julia x y rc ic maxiter it orb)     ;;   recursion
  (if (or (= it maxiter) (> orb 4.0)) it
    (julia (+ (- (sq x) (sq y)) rc) (+ ic (* 2.0 x y)) rc ic maxiter (+ it 1) (abs (* y x)) )
))

(define (julia-it x y rc ic maxiter)            ;; iteration
  (let (( it 0) (orb 0) (tmp 0) )
    (while (and (< it maxiter) (< orb 4.0))
      (set! tmp x)
      (set! x (+ rc (- (sq x) (sq y))))
      (set! y (+ ic (* 2.0 tmp y)))
      (inc! it)
      (set! orb (abs (* x y))) )
 it ))

(define (fractal)
 
  (gl-begin GL_POINTS)
   (do ((i -2.5 (+ i 0.008)))
       ((> i 1.5))
    (do ((j -2.0 (+ j 0.008)))
        ((> j 2.0))
  (let ((k (/ (julia i j i j 16 0 0.0) 16.0)))
   (gl-color  0.0 k 0.0)
    )
   (gl-vertex  i j) ))
   (gl-end))

(define (disp)
  (gl-clear GL_COLOR_BUFFER_BIT)
  (fractal)
  (gl-flush)
  )

(define (reshape w h)
  (gl-viewport 0 0 w h)
  (gl-matrix-mode GL_PROJECTION)
  (gl-load-identity)
      (glu-ortho-2d -2.5 1.5 -2.0 2.0)
  (gl-matrix-mode GL_MODELVIEW)
  )

(define (keyboard key x y)
  (when (= key 27) (exit 0)))

(define (main args)
  (glut-init args)
  (glut-init-display-mode (logior GLUT_SINGLE GLUT_RGB))
  (glut-init-window-size 500 500)
  (glut-init-window-position 100 100)
  (glut-create-window "JULIA - MANDELBROT")
  (init)
  (gl-clear GL_COLOR_BUFFER_BIT)
  (gl-flush)
  (glut-display-func disp)
  (glut-reshape-func reshape)
  (glut-keyboard-func keyboard)
   
  (glut-main-loop)
  0)

both scripts attached

best Rob  (surface about 3x bigger than what came with the examples)

(jullia x y x y ....  ) is identical with a (mandelbrot x y ...... )
this formula does both   p.e.   (julia x y 0.0 -1.0  ....   ) is the dendrithe (?not correct anglais i think)

.
Title: Re: Gauche Scheme
Post by: JRS on January 27, 2015, 09:11:15 AM
Thanks Rob!

You're right. I can't see any difference between the iteration and recursion versions.

Either way it's FAST.

Note: My tests are running on Ubuntu in true 64 bit while Rob is running on a 32 bit version of Linux.



.
Title: Re: Gauche Scheme
Post by: RobbeK on January 27, 2015, 11:28:44 AM
Hi John,

Can even be sped up  ..
An advantage of lisp (in general) is that one does not need to set up UDT's to return composite values of functions ,  changed the code a little and the Julia (recursive ) gives back a list with both the orbit value and the number of iterations , here the orbit is used for the greens .

(julia .... )    ->  (list it orb)    ::   car -> iteration escape level   ::   cadr -> orbit escape level.

the knowledge about the performance of recursion is important (to me), because very often math. formulae are easier expressed by recursion , program flow certainly not  ;)

best Rob

 addendum : added fastMandel2.scm   calculates the orbit the classic way by its distance to (0,0) (infact it does the square of the distance ::: xÂČ+yÂČ  -- the speed is remarkable for a scripting language (imho)

.
Title: Re: Gauche Scheme
Post by: JRS on January 27, 2015, 01:04:53 PM
Quote
the speed is remarkable for a scripting language

The difference between an interpreter and compiler in many cases is you don't have to look at ugly with the interpreter.   :o
Title: Re: Gauche Scheme
Post by: JRS on January 27, 2015, 04:32:23 PM
Very Nice!

It displayed instantly here so I can't see what a compiler brings to the table.

Code: Scheme
  1. (use gl)
  2. (use gl.glut)
  3.  
  4. (define (init)
  5.   (gl-clear-color 0.0 0.0 0.0 0.0)
  6.   (gl-shade-model GL_SMOOTH))
  7.  
  8. (define (sq x) (* x x))
  9.  
  10. (define (julia x y rc ic maxiter it orb)
  11.   (if (or (= it maxiter) (> orb 4.0)) (list it orb)
  12.     (julia (+ (- (sq x) (sq y)) rc) (+ ic (* 2.0 x y)) rc ic maxiter (+ it 1) (+ (sq x) (sq y)) )
  13. ))
  14.  
  15. (define (julia-it x y rc ic maxiter)
  16.   (let (( it 0) (orb 0) (tmp 0) )
  17.     (while (and (< it maxiter) (< orb 4.0))
  18.       (set! tmp x)
  19.       (set! x (+ rc (- (sq x) (sq y))))
  20.       (set! y (+ ic (* 2.0 tmp y)))
  21.       (inc! it)
  22.       (set! orb (abs (* x y))) )
  23.  it ))
  24.  
  25. (define (fractal)
  26.  
  27.   (gl-begin GL_POINTS)
  28.    (do ((i -2.5 (+ i 0.008)))
  29.        ((> i 1.5))
  30.     (do ((j -2.0 (+ j 0.008)))
  31.         ((> j 0.0))
  32.   (let* ((info (julia i j i j 17 0 0.0))
  33.          (k (/ (car info) 17.0))
  34.          (orb (cadr info)  ))
  35.  
  36.    (gl-color  (sq k) (/ 1.8 orb) 0.1)
  37.     )
  38.    (gl-vertex  i j)
  39.    (gl-vertex i (- (abs j) 0.008)  )))
  40.    (gl-end))
  41.  
  42.  
  43. (define (disp)
  44.   (gl-clear GL_COLOR_BUFFER_BIT)
  45.   (fractal)
  46.   (gl-flush)
  47.   )
  48.  
  49. (define (reshape w h)
  50.   (gl-viewport 0 0 w h)
  51.   (gl-matrix-mode GL_PROJECTION)
  52.   (gl-load-identity)
  53.       (glu-ortho-2d -2.5 1.5 -2.0 2.0)
  54.   (gl-matrix-mode GL_MODELVIEW)
  55.   )
  56.  
  57. (define (keyboard key x y)
  58.   (when (= key 27) (exit 0)))
  59.  
  60. (define (main args)
  61.   (glut-init args)
  62.   (glut-init-display-mode (logior GLUT_SINGLE GLUT_RGB))
  63.   (glut-init-window-size 500 500)
  64.   (glut-init-window-position 100 100)
  65.   (glut-create-window "JULIA - MANDELBROT")
  66.   (init)
  67.   (gl-clear GL_COLOR_BUFFER_BIT)
  68.   (gl-flush)
  69.   (glut-display-func disp)
  70.   (glut-reshape-func reshape)
  71.   (glut-keyboard-func keyboard)
  72.    
  73.   (glut-main-loop)
  74.   0)
  75.  

.
Title: Re: Gauche Scheme
Post by: Mike Lobanovsky on January 27, 2015, 07:30:17 PM
Hi Rob,



The uglyest looking Mandelbrot presentation I ever saw. All made up of taste buds on the tongue of a little green alien.

(http://www.oxygenbasic.org/forum/index.php?action=dlattach;topic=1271.0;attach=3837)



Some light at the end of the tunnel.

(http://www.oxygenbasic.org/forum/index.php?action=dlattach;topic=1271.0;attach=3840)


 ;D
Title: Re: Gauche Scheme
Post by: RobbeK on January 28, 2015, 06:22:25 AM
Hi John, Mike

the ugliest , yep , quickly changed into the tunnel view  ;)

Tested the complex numbers now :  working with complex numbers always slows down things - but writing a complex 4th degree function in x, y takes some time on paper (while not difficult).   (see attachment , also including Sin(zÂČ) )   speed is still very good.
The whole Mandelbrot/Julia simplifies into

(define (juliaC z c maxiter it orb)
   (if (or (= it maxiter) (> orb 4.0)) (list it orb)
     (juliaC (+  (* z z)  c) c maxiter (+ it 1) (abs (* z z)))))


Tk/Tcl is working too now -- just (John) do you find any info on any kind of  FFI  ??  (there are some texts in Japanese , but ;..)

best Rob

.
Title: Re: Gauche Scheme
Post by: JRS on January 28, 2015, 09:58:55 AM
Hi Rob,

Can you try this FFI extension for Gauche?

c-wrapper - A Generic Wrapper for C Libraries (http://www.koguro.net/prog/c-wrapper/)

Let me know how it goes.
Title: Re: Gauche Scheme
Post by: JRS on January 28, 2015, 01:06:02 PM
The c-wrapper library compiled for me and was able to run the Breakout SDL example.

Code: Scheme
  1. ;; -*- coding: utf-8; mode: scheme -*-
  2. ;;
  3. ;; breakout.scm - Breakout
  4. ;;
  5. ;;   Copyright (c) 2007 KOGURO, Naoki (naoki@koguro.net)
  6. ;;   All rights reserved.
  7. ;;
  8. ;;   Redistribution and use in source and binary forms, with or without
  9. ;;   modification, are permitted provided that the following conditions
  10. ;;   are met:
  11. ;;
  12. ;;   1. Redistributions of source code must retain the above copyright
  13. ;;      notice, this list of conditions and the following disclaimer.
  14. ;;   2. Redistributions in binary form must reproduce the above copyright
  15. ;;      notice, this list of conditions and the following disclaimer in the
  16. ;;      documentation and/or other materials provided with the distribution.
  17. ;;   3. Neither the name of the authors nor the names of its contributors
  18. ;;      may be used to endorse or promote products derived from this
  19. ;;      software without specific prior written permission.
  20. ;;
  21. ;;   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. ;;   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. ;;   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  24. ;;   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  25. ;;   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  26. ;;   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  27. ;;   TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  28. ;;   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  29. ;;   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  30. ;;   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  31. ;;   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. ;;
  33. ;;   $Id: $
  34. ;;
  35.  
  36. (use c-wrapper)
  37. (use srfi-1)
  38. (use srfi-27)
  39.  
  40. (c-load '("SDL.h" "SDL_mixer.h" "stdio.h" "stdlib.h" "sdl_helper.c")
  41.         :cppflags-cmd "sdl-config --cflags"
  42.         :libs-cmd "sdl-config --libs; echo '-lSDL_mixer'"
  43.         :import (list (lambda (header sym)
  44.                         (#/\/SDL\/.*\.h$/ header))
  45.                       'NULL
  46.                       'run_sdl_main)
  47.         :compiled-lib "sdllib")
  48.  
  49. (define *screen* #f)
  50. (define-constant *screen-width* 640)
  51. (define-constant *screen-height* 480)
  52. (define-constant *screen-depth* 8)
  53. (define *unit* 8)
  54.  
  55. (define *ball-rect* #f)
  56. ;; vx and vy must be a multiple of *unit*.
  57. (define *ball-vx* 0)
  58. (define *ball-vy* 0)
  59. (define *ball-count* 0)
  60. (define-constant *ball-size* *unit*)
  61.  
  62. (define *paddle-rect* #f)
  63. (define *paddle-width* (* 8 *unit*))
  64. (define *paddle-vx* 0)
  65.  
  66. (define *block-list* '())
  67. (define *block-start-x* 0)
  68. (define *block-start-y* 0)
  69. (define *block-end-x* 0)
  70. (define *block-end-y* 0)
  71.  
  72. (define-constant *block-width* (* 6 *unit*))
  73. (define-constant *block-height* (* 3 *unit*))
  74.  
  75. (define *tick* 0)
  76. (define *tick-threshold* 20)
  77.  
  78. (define *bounce-sound* #f)
  79. (define *shoot-sound* #f)
  80.  
  81. (define (init)
  82.   (SDL_Init (logior SDL_INIT_VIDEO SDL_INIT_AUDIO))
  83.   (set! *screen* (SDL_SetVideoMode *screen-width* *screen-height*
  84.                                    *screen-depth*
  85.                                    (logior SDL_HWSURFACE
  86.                                            SDL_DOUBLEBUF)))
  87.   (SDL_WM_SetCaption "Breakout" NULL)
  88.   (set! *paddle-rect* (make <SDL_Rect>))
  89.   (set! (ref *paddle-rect* 'w) *paddle-width*)
  90.   (set! (ref *paddle-rect* 'h) *unit*)
  91.  
  92.   (Mix_OpenAudio 44100 AUDIO_S16SYS 2 1024)
  93.   (set! *bounce-sound* (Mix_LoadWAV "cursor5.wav"))
  94.   (set! *shoot-sound* (Mix_LoadWAV "cursor6.wav"))
  95.   (init-game))
  96.  
  97. (define (init-game)
  98.   (set! (ref *paddle-rect* 'x) (- (/ *screen-width* 2)
  99.                                   (/ (ref *paddle-rect* 'w) 2)))
  100.   (set! (ref *paddle-rect* 'y) (- *screen-height* (* 3 *unit*)))
  101.   (set! *ball-count* 2)
  102.   (make-blocks))
  103.  
  104. (define (make-block x y color)
  105.   (let ((rect (make <SDL_Rect>)))
  106.     (set! (ref rect 'x) (+ x 1))
  107.     (set! (ref rect 'y) (+ y 1))
  108.     (set! (ref rect 'w) (- *block-width* 2))
  109.     (set! (ref rect 'h) (- *block-height* 2))
  110.   (vector (list x y (+ x *block-width*) (+ y *block-height*))
  111.           rect
  112.           color)))
  113.  
  114. (define (block-vertical-reflect? block x y vx)
  115.   (receive (sx sy ex ey) (apply values (vector-ref block 0))
  116.     (and (<= sy y ey)
  117.          (or (and (= x sx) (< 0 vx))
  118.              (and (= x ex) (< vx 0))))))
  119.  
  120. (define (block-horizontal-reflect? block x y vy)
  121.   (receive (sx sy ex ey) (apply values (vector-ref block 0))
  122.     (and (<= sx x ex)
  123.          (or (and (= y sy) (< 0 vy))
  124.              (and (= y ey) (< vy 0))))))
  125.  
  126. (define (block-hit? block x y)
  127.   (receive (sx sy ex ey) (apply values (vector-ref block 0))
  128.     (and (<= sx x ex) (<= sy y ey))))
  129.  
  130. (define (make-blocks)
  131.   (do ((block-list '())
  132.        (level 0 (+ level 1))
  133.        (colors '(#o700 #o770 #o373 #o077 #o007) (cdr colors))
  134.        (y (* 7 *unit*) (+ y *block-height*)))
  135.       ((<= 5 level)
  136.        (set! *block-list* block-list))
  137.     (do ((x (* 1 *unit*) (+ x *block-width*)))
  138.         ((<= *screen-width* (+ x *block-width*)))
  139.       (push! block-list (make-block x y (car colors)))))
  140.   (set! *block-start-x* *screen-width*)
  141.   (set! *block-start-y* *screen-height*)
  142.   (set! *block-end-x* 0)
  143.   (set! *block-end-y* 0)
  144.   (for-each (lambda (block)
  145.               (receive (sx sy ex ey) (apply values (vector-ref block 0))
  146.                 (when (< sx *block-start-x*)
  147.                   (set! *block-start-x* sx))
  148.                 (when (< sy *block-start-y*)
  149.                   (set! *block-start-y* sy))
  150.                 (when (< *block-end-x* ex)
  151.                   (set! *block-end-x* ex))
  152.                 (when (< *block-end-y* ey)
  153.                   (set! *block-end-y* ey))))
  154.             *block-list*))
  155.                
  156. (define (teardown)
  157.   (Mix_CloseAudio)
  158.   (SDL_Quit))
  159.  
  160. (define clear-screen
  161.   (let ((rect (make <SDL_Rect>)))
  162.     (set! (ref rect 'x) 0)
  163.     (set! (ref rect 'y) 0)
  164.     (set! (ref rect 'w) *screen-width*)
  165.     (set! (ref rect 'h) *screen-height*)
  166.     (lambda ()
  167.       (SDL_FillRect *screen* (ptr rect) 0))))
  168.  
  169. (define (draw-paddle)
  170.   (SDL_FillRect *screen* (ptr *paddle-rect* ) #o777))
  171.  
  172. (define (move-paddle-left)
  173.   (set! *paddle-vx* (- *unit*)))
  174.  
  175. (define (move-paddle-right)
  176.   (set! *paddle-vx* *unit*))
  177.  
  178. (define (move-paddle)
  179.   (let ((new-x (+ (ref *paddle-rect* 'x) *paddle-vx*))
  180.         (w (ref *paddle-rect* 'w)))
  181.     (when (< new-x 0)
  182.       (set! new-x 0))
  183.     (when (< (- *screen-width* w) new-x)
  184.       (set! new-x (- *screen-width* w)))
  185.     (set! (ref *paddle-rect* 'x) new-x)))
  186.  
  187. (define (stop-paddle)
  188.   (set! *paddle-vx* 0))
  189.  
  190. (define (draw-ball)
  191.   (when *ball-rect*
  192.     (SDL_FillRect *screen* (ptr *ball-rect*) #o777)))
  193.  
  194. (define (move-ball)
  195.   (let ((reflect? #f))
  196.     (define (reflect-x)
  197.       (set! *ball-vx* (- *ball-vx*))
  198.       (set! reflect? #t))
  199.     (define (reflect-y)
  200.       (set! *ball-vy* (- *ball-vy*))
  201.       (set! reflect? #t))
  202.     (when *ball-rect*
  203.       (let ((new-x (+ (ref *ball-rect* 'x) *ball-vx*))
  204.             (new-y (+ (ref *ball-rect* 'y) *ball-vy*))
  205.             (paddle-x (ref *paddle-rect* 'x))
  206.             (paddle-y (ref *paddle-rect* 'y))
  207.             (paddle-w (ref *paddle-rect* 'w))
  208.           (paddle-h (ref *paddle-rect* 'h))
  209.           (w (ref *ball-rect* 'w))
  210.           (h (ref *ball-rect* 'h)))
  211.         (when (< new-x 0)
  212.           (reflect-x)
  213.           (set! new-x (- new-x)))
  214.         (when (< (- *screen-width* w) new-x)
  215.           (reflect-x)
  216.           (set! new-x (- (* 2 (- *screen-width* w)) new-x)))
  217.         (when (< new-y 0)
  218.           (reflect-y)
  219.           (set! new-y 0))
  220.         (when (and (<= paddle-y new-y (+ paddle-y paddle-h))
  221.                    (<= paddle-x new-x (+ paddle-x paddle-w)))
  222.           (reflect-y)
  223.           (when (or (and (= paddle-x new-x)
  224.                          (< 0 *ball-vx*))
  225.                     (and (= (+ paddle-x paddle-w (- *unit*)) new-x)
  226.                          (< *ball-vx* 0)))
  227.             (reflect-x))
  228.           (set! new-y (- paddle-y h)))
  229.         (when (< (- *screen-height* h) new-y)
  230.           (dec! *ball-count*)
  231.           (set! *ball-rect* #f))
  232.         (when (and (<= *block-start-x* new-x *block-end-x*)
  233.                    (<= *block-start-x* new-y *block-end-y*))
  234.           (do ((block-list *block-list* (cdr block-list))
  235.                (result '() (cons (car block-list) result)))
  236.               ((or (null? block-list)
  237.                    (block-hit? (car block-list) new-x new-y))
  238.                (unless (null? block-list)
  239.                  (when (block-vertical-reflect? (car block-list) new-x new-y
  240.                                                 *ball-vx*)
  241.                    (reflect-x))
  242.                  (when (block-horizontal-reflect? (car block-list) new-x new-y
  243.                                                   *ball-vy*)
  244.                    (reflect-y))
  245.                  (set! *block-list* (append result (cdr block-list)))))))
  246.         (when *ball-rect*
  247.           (set! (ref *ball-rect* 'x) new-x)
  248.           (set! (ref *ball-rect* 'y) new-y))
  249.         (when reflect?
  250.           (Mix_PlayChannel -1 *bounce-sound* 0))))))
  251.  
  252. (define (shoot-ball)
  253.   (unless *ball-rect*
  254.     (let ((paddle-x (ref *paddle-rect* 'x))
  255.           (paddle-y (ref *paddle-rect* 'y))
  256.           (paddle-w (ref *paddle-rect* 'w))
  257.           (paddle-h (ref *paddle-rect* 'h)))
  258.       (set! *ball-rect* (make <SDL_Rect>))
  259.       (set! (ref *ball-rect* 'w) *ball-size*)
  260.       (set! (ref *ball-rect* 'h) *ball-size*)
  261.       (set! (ref *ball-rect* 'x) (+ paddle-x (/ paddle-w 2)))
  262.       (set! (ref *ball-rect* 'y) paddle-y)
  263.       (set! *ball-vx* (* (- (* 2 (random-integer 2)) 1) *unit*))
  264.       (set! *ball-vy* (- *unit*))
  265.       (format #t "ball: ~a~%" *ball-count*)
  266.       (Mix_PlayChannel -1 *shoot-sound* 0))))
  267.  
  268. (define (draw-blocks)
  269.   (for-each (lambda (block)
  270.               (SDL_FillRect *screen*
  271.                             (ptr (vector-ref block 1))
  272.                             (vector-ref block 2)))
  273.             *block-list*))
  274.  
  275. (define (poll-event event)
  276.   (SDL_PollEvent (ptr event))
  277.   (unless (< 0 (SDL_PollEvent (ptr event)))
  278.     (let ((type (ref event 'type)))
  279.       (cond
  280.        ((eq? type SDL_QUIT)
  281.         #f)
  282.        ((eq? type SDL_KEYDOWN)
  283.         (case (ref* event 'key 'keysym 'sym)
  284.           ((27)
  285.            #f)
  286.           ((32)
  287.            (shoot-ball)
  288.            #t)
  289.           ((122)
  290.            (move-paddle-left)
  291.            #t)
  292.           ((120)
  293.            (move-paddle-right)
  294.            #t)
  295.           (else
  296.            #t)))
  297.        (else
  298.         #t)))))
  299.  
  300. (define (sdl-main argc argv)
  301.   (init)
  302.   (let ((event (make <SDL_Event>)))
  303.     (do ((continue? (poll-event event) (poll-event event)))
  304.         ((not continue?) #f)
  305.       (clear-screen)
  306.       (move-paddle)
  307.       (let ((delta (- (SDL_GetTicks) *tick*)))
  308.         (when (< *tick-threshold* delta)
  309.           (move-ball)
  310.           (set! *tick* (SDL_GetTicks))))
  311.       (draw-paddle)
  312.       (draw-ball)
  313.       (draw-blocks)
  314.       (stop-paddle)
  315.       (SDL_Flip *screen*)
  316.       (cond
  317.        ((< *ball-count* 0)
  318.         (print "GAME OVER!!")
  319.         (init-game))
  320.        ((null? *block-list*)
  321.         (set! *ball-rect* #f)
  322.         (make-blocks)))))
  323.   (teardown)
  324.   0)
  325.  
  326. (define (main args)
  327.   (run_sdl_main (length args) args sdl-main))
  328.  
  329. ;; end of file
  330.  


.
Title: Re: Gauche Scheme
Post by: RobbeK on January 28, 2015, 01:28:57 PM
Hi John,

No success here , tells me libc.so.6 is not present  in /libx32...   , while it is there both in /libx32  and /usr/libx32  ..somewhat annoying
There is a lazy-ffi I found on a Jap site , but it also gives an error (reported (recently) by others - this code is 8 yrs. old and seemed to work in the past)  trying DynComp now


best Rob   
Title: Re: Gauche Scheme
Post by: JRS on January 28, 2015, 01:39:21 PM
FWIW - I use the --prefix=/usr for all my 64 bit package builds.

Code: [Select]
./configure --prefix=/usr
make
sudo make install
Title: Re: Gauche Scheme
Post by: JRS on January 28, 2015, 08:27:31 PM
I thought I would run the testsuite examples but there were no compiled .so libraries, just source. The Makefile in the directory when run said nothing to be done.  :-\

I compile the gcc_extension.c example manually so I could run the corresponding Gauche .scm example.

Code: C
  1. #include "gcc_extension.h"
  2.  
  3. void inc_foo(struct foo *v, int mode)
  4. {
  5.     ++(v->a);
  6.     switch (mode) {
  7.     case FLOAT_MODE:
  8.         ++(v->b);
  9.         break;
  10.     case STRUCT_MODE:
  11.         ++(v->c);
  12.         ++(v->d);
  13.         break;
  14.     default:
  15.         break;
  16.     }
  17.     ++(v->e);
  18.     ++(v->f);
  19.     ++(v->g);
  20. }
  21.  

Code: Scheme
  1. ;;;
  2. ;;; Test GCC extension
  3. ;;;
  4.  
  5. (use gauche.test)
  6.  
  7. (test-start "gcc_extension")
  8. (use c-wrapper)
  9. (test-module 'c-wrapper)
  10.  
  11. (c-load-library "./gcc_extension")
  12. (c-include "./gcc_extension.h")
  13.  
  14. (test "Unnamed struct/union fields within structs/unions 1"
  15.       '(2 3.0 4 5 6.0)
  16.       (lambda ()
  17.         (let ((foo (make (c-struct 'foo))))
  18.           (set! (ref foo 'a) 1)
  19.           (set! (ref foo 'b) 2)
  20.           (set! (ref foo 'e) 3)
  21.           (set! (ref foo 'f) 4)
  22.           (set! (ref foo 'g) 5)
  23.           (inc_foo (ptr foo) FLOAT_MODE)
  24.           (map (cut ref foo <>) '(a b e f g)))))
  25.  
  26. (test "Unnamed struct/union fields within structs/unions 2"
  27.       '(2 3 4.0 5 6 7.0)
  28.       (lambda ()
  29.         (let ((foo (make (c-struct 'foo))))
  30.           (set! (ref foo 'a) 1)
  31.           (set! (ref foo 'c) 2)
  32.           (set! (ref foo 'd) 3)
  33.           (set! (ref foo 'e) 4)
  34.           (set! (ref foo 'f) 5)
  35.           (set! (ref foo 'g) 6)
  36.           (inc_foo (ptr foo) STRUCT_MODE)
  37.           (map (cut ref foo <>) '(a c d e f g)))))
  38.  
  39. ;; epilogue
  40. (test-end)
  41.  


jrs@laptop:~/c-wrapper/testsuite$ gcc gcc_extension.c -c -fPIC -o gcc_extension.o
jrs@laptop:~/c-wrapper/testsuite$ gcc -shared gcc_extension.o -o gcc_extension.so
jrs@laptop:~/c-wrapper/testsuite$ gosh gcc_extension-test.scm
Testing gcc_extension ...                                       
testing bindings in #<module c-wrapper> ... ok
test Unnamed struct/union fields within structs/unions 1, expects (2 3.0 4 5 6.0) ==> ok
test Unnamed struct/union fields within structs/unions 2, expects (2 3 4.0 5 6 7.0) ==> ok
passed.
jrs@laptop:~/c-wrapper/testsuite$


 
Title: Re: Gauche Scheme
Post by: RobbeK on January 29, 2015, 01:56:16 AM
Hi John,

Some of the tests work,  but the important

Testing c-wrapper (inline) ...                                   
gosh: "error": can't load libc (/libx32/libc.so.6: cannot open shared object file: No such file or directory)

but , it's there and when I do a sudo apt-get install , it tells I have the most up to date version.
Does it expect the libc.so.6 tp be in another path ????

I rebuilt the packages the way you do it

./configure --prefix=/usr
make clean .............    etc

 :-\   Rob


however, what i urgently need is this one :
http://quasiquote.org/log2/Scheme/Gauche/Gauche-lazy-ffi        (libffi-dev is intalled, but can not get the lazy-ffi working for the moment)

but :

/usr/lib/gauche-0.9/site/i686-pc-linux-gnu/lazy-ffi.so: undefined symbol: strlcpy
"(stdin)":1:(use lazy-ffi)
..........................;

Title: Re: Gauche Scheme
Post by: JRS on January 29, 2015, 09:34:14 AM
Rob,

I was able to get the c-wrapper inline-test.scm example to work. I had to use the full path for libc.so.6 and compile ffitest.so.

Code: Scheme
  1. ;;;
  2. ;;; inline function test
  3. ;;;
  4.  
  5. (use gauche.test)
  6.  
  7. (test-start "c-wrapper (inline)")
  8. (use c-wrapper)
  9.  
  10. (c-load-library "/lib/x86_64-linux-gnu/libc.so.6")
  11. (c-load-library "./ffitest")
  12. (c-include '("stdio.h" "stdlib.h" "./ffitest.h"))
  13.  
  14. (test "constant"
  15.       1
  16.       (lambda ()
  17.         (return_const)))
  18.  
  19. (test "string"
  20.       "foo"
  21.       (lambda ()
  22.         (x->string (return_string))))
  23.  
  24. (test "ref array"
  25.       10
  26.       (lambda ()
  27.         (let ((a (make (c-array <c-int> 3))))
  28.           (set! (ref a 0) 0)
  29.           (set! (ref a 1) 10)
  30.           (set! (ref a 2) 20)
  31.           (ref_array a))))
  32.  
  33. (test "func call without argument"
  34.       '(-2 -1 0 1 2)
  35.       (lambda ()
  36.         (funccall1)
  37.         (list (ref test_array 0)
  38.               (ref test_array 1)
  39.               (ref test_array 2)
  40.               (ref test_array 3)
  41.               (ref test_array 4))))
  42.  
  43. (test "func call with arguments"
  44.       3
  45.       (lambda ()
  46.         (funcall2 1 2)))
  47.  
  48. (test "ref struct (. operator)"
  49.       1
  50.       (lambda ()
  51.         (ref_struct1)))
  52.  
  53. (test "ref struct (-> operator)"
  54.       1
  55.       (lambda ()
  56.         (let ((a (make (c-struct 'test_sint))))
  57.           (set! (ref a 'value) 1)
  58.           (ref_struct2 (ptr a)))))
  59.  
  60.  
  61. (test "post increment"
  62.       2
  63.       (lambda ()
  64.         (post_inc)))
  65.  
  66. (test "post decrement"
  67.       1
  68.       (lambda ()
  69.         (post_dec)))
  70.  
  71. (test "pre increment"
  72.       2
  73.       (lambda ()
  74.         (pre_inc)))
  75.  
  76. (test "pre decrement"
  77.       1
  78.       (lambda ()
  79.         (pre_dec)))
  80.  
  81. (test "unary plus"
  82.       1
  83.       (lambda ()
  84.         (unary_plus)))
  85.  
  86. (test "unary minus"
  87.       -1
  88.       (lambda ()
  89.         (unary_minus)))
  90.  
  91. (test "unary logical negation"
  92.       '(0 1)
  93.       (lambda ()
  94.         (list (unary_logneg 1) (unary_logneg 0))))
  95.  
  96. (test "unary bitwise negation"
  97.       -2
  98.       (lambda ()
  99.         (unary_bitneg 1)))
  100.  
  101. (test "unary reference"
  102.       123
  103.       (lambda ()
  104.         (unary_ref)))
  105.  
  106. (test "unary dereference"
  107.       456
  108.       (lambda ()
  109.         (ref (deref (unary_deref)))))
  110.  
  111. (test "sizeof"
  112.       #t
  113.       (lambda ()
  114.         (eq? (c-sizeof <c-int>) (op_sizeof))))
  115.  
  116. (test "mul"
  117.       6
  118.       (lambda ()
  119.         (mul 2 3)))
  120.  
  121. (test "divi"
  122.       3
  123.       (lambda ()
  124.         (divi 18 6)))
  125.  
  126. (test "mod"
  127.       1
  128.       (lambda ()
  129.         (mod 5 2)))
  130.  
  131. (test "add"
  132.       3
  133.       (lambda ()
  134.         (add 1 2)))
  135.  
  136. (test "sub"
  137.       -1
  138.       (lambda ()
  139.         (sub 1 2)))
  140.  
  141. (test "left shift"
  142.       4
  143.       (lambda ()
  144.         (left_shift 1 2)))
  145.  
  146. (test "right shift"
  147.       2
  148.       (lambda ()
  149.         (right_shift 8 2)))
  150.  
  151. (test "lesser than"
  152.       '(1 0 0)
  153.       (lambda  ()
  154.         (list (op_lt 1 2) (op_lt 2 2) (op_lt 2 1))))
  155.  
  156. (test "greater than"
  157.       '(0 0 1)
  158.       (lambda  ()
  159.         (list (op_gt 1 2) (op_gt 2 2) (op_gt 2 1))))
  160.  
  161. (test "lesser than or equal"
  162.       '(1 1 0)
  163.       (lambda  ()
  164.         (list (op_lteq 1 2) (op_lteq 2 2) (op_lteq 2 1))))
  165.  
  166. (test "greater than or equal"
  167.       '(0 1 1)
  168.       (lambda  ()
  169.         (list (op_gteq 1 2) (op_gteq 2 2) (op_gteq 2 1))))
  170.  
  171. (test "equal"
  172.       '(0 1 0)
  173.       (lambda  ()
  174.         (list (op_eq 1 2) (op_eq 2 2) (op_eq 2 1))))
  175.  
  176. (test "not equal"
  177.       '(1 0 1)
  178.       (lambda  ()
  179.         (list (op_noteq 1 2) (op_noteq 2 2) (op_noteq 2 1))))
  180.  
  181. (test "bitwise and"
  182.       1
  183.       (lambda ()
  184.         (bitand 11 5)))
  185.  
  186. (test "bitwise or"
  187.       15
  188.       (lambda ()
  189.         (bitor 11 5)))
  190.  
  191. (test "bitwise xor"
  192.       14
  193.       (lambda ()
  194.         (bitxor 11 5)))
  195.  
  196. (test "logical and"
  197.       '(1 0 0 0)
  198.       (lambda ()
  199.         (list (op_logand 1 1 1)
  200.               (op_logand 1 1 0)
  201.               (op_logand 0 1 1)
  202.               (op_logand 0 1 0))))
  203.  
  204. (test "logical or"
  205.       '(1 1 1 0)
  206.       (lambda ()
  207.         (list (op_logor 1 1 1)
  208.               (op_logor 1 1 0)
  209.               (op_logor 0 1 1)
  210.               (op_logor 0 1 0))))
  211.  
  212. (test "assign mul"
  213.       6
  214.       (lambda ()
  215.         (assign_mul 2 3)))
  216.  
  217. (test "assign div"
  218.       3
  219.       (lambda ()
  220.         (assign_div 18 6)))
  221.  
  222. (test "assign mod"
  223.       1
  224.       (lambda ()
  225.         (assign_mod 5 2)))
  226.  
  227. (test "assign_add"
  228.       3
  229.       (lambda ()
  230.         (assign_add 1 2)))
  231.  
  232. (test "assign_sub"
  233.       -1
  234.       (lambda ()
  235.         (assign_sub 1 2)))
  236.  
  237. (test "assign left shift"
  238.       4
  239.       (lambda ()
  240.         (assign_left_shift 1 2)))
  241.  
  242. (test "assign right shift"
  243.       2
  244.       (lambda ()
  245.         (assign_right_shift 8 2)))
  246.  
  247. (test "assign bitwise and"
  248.       1
  249.       (lambda ()
  250.         (assign_bitand 11 5)))
  251.  
  252. (test "assign bitwise or"
  253.       15
  254.       (lambda ()
  255.         (assign_bitor 11 5)))
  256.  
  257. (test "assign bitwise xor"
  258.       14
  259.       (lambda ()
  260.         (assign_bitxor 11 5)))
  261.  
  262. (test "multi expr"
  263.       10
  264.       (lambda ()
  265.         (multi_expr 2 5)))
  266.  
  267. (test "while"
  268.       55
  269.       (lambda ()
  270.         (test_while)))
  271.                
  272. (test "while break"
  273.       55
  274.       (lambda ()
  275.         (test_while_break)))
  276.                
  277. (test "while continue"
  278.       55
  279.       (lambda ()
  280.         (test_while_continue)))
  281.                
  282. (test "do while"
  283.       55
  284.       (lambda ()
  285.         (test_dowhile)))
  286.                
  287. (test "do while break"
  288.       55
  289.       (lambda ()
  290.         (test_dowhile_break)))
  291.                
  292. (test "do while continue"
  293.       0
  294.       (lambda ()
  295.         (test_dowhile_continue)))
  296.                
  297. (test "for"
  298.       55
  299.       (lambda ()
  300.         (test_for)))
  301.                
  302. (test "for noinit, notest, noupdate"
  303.       55
  304.       (lambda ()
  305.         (test_for_noinit_notest_noupdate)))
  306.                
  307. (test "for noinit, notest"
  308.       55
  309.       (lambda ()
  310.         (test_for_noinit_notest)))
  311.                
  312. (test "for noinit, noupdate"
  313.       55
  314.       (lambda ()
  315.         (test_for_noinit_noupdate)))
  316.                
  317. (test "for noinit"
  318.       55
  319.       (lambda ()
  320.         (test_for_noinit_noupdate)))
  321.  
  322. (test "for notest, noupdate"
  323.       55
  324.       (lambda ()
  325.         (test_for_notest_noupdate)))
  326.                
  327. (test "for notest"
  328.       55
  329.       (lambda ()
  330.         (test_for_notest)))
  331.                
  332. (test "for noupdate"
  333.       55
  334.       (lambda ()
  335.         (test_for_noupdate)))
  336.  
  337. (test "offset"
  338.       #t
  339.       (lambda ()
  340.         (eq? (offset_calc) (c-offsetof (c-struct 'test_uchar) 'value))))
  341.  
  342. (test "not_supported"
  343.       #t
  344.       (lambda ()
  345.         (procedure? not_supported)))
  346.  
  347. ;; epilogue
  348. (test-end)
  349.  


jrs@laptop:~/c-wrapper/testsuite$ gosh inline-test.scm
Testing c-wrapper (inline) ...                                   
test constant, expects 1 ==> ok
test string, expects "foo" ==> ok
test ref array, expects 10 ==> ok
test func call without argument, expects (-2 -1 0 1 2) ==> ok
test func call with arguments, expects 3 ==> ok
test ref struct (. operator), expects 1 ==> ok
test ref struct (-> operator), expects 1 ==> ok
test post increment, expects 2 ==> ok
test post decrement, expects 1 ==> ok
test pre increment, expects 2 ==> ok
test pre decrement, expects 1 ==> ok
test unary plus, expects 1 ==> ok
test unary minus, expects -1 ==> ok
test unary logical negation, expects (0 1) ==> ok
test unary bitwise negation, expects -2 ==> ok
test unary reference, expects 123 ==> ok
test unary dereference, expects 456 ==> ok
test sizeof, expects #t ==> ok
test mul, expects 6 ==> ok
test divi, expects 3 ==> ok
test mod, expects 1 ==> ok
test add, expects 3 ==> ok
test sub, expects -1 ==> ok
test left shift, expects 4 ==> ok
test right shift, expects 2 ==> ok
test lesser than, expects (1 0 0) ==> ok
test greater than, expects (0 0 1) ==> ok
test lesser than or equal, expects (1 1 0) ==> ok
test greater than or equal, expects (0 1 1) ==> ok
test equal, expects (0 1 0) ==> ok
test not equal, expects (1 0 1) ==> ok
test bitwise and, expects 1 ==> ok
test bitwise or, expects 15 ==> ok
test bitwise xor, expects 14 ==> ok
test logical and, expects (1 0 0 0) ==> ok
test logical or, expects (1 1 1 0) ==> ok
test assign mul, expects 6 ==> ok
test assign div, expects 3 ==> ok
test assign mod, expects 1 ==> ok
test assign_add, expects 3 ==> ok
test assign_sub, expects -1 ==> ok
test assign left shift, expects 4 ==> ok
test assign right shift, expects 2 ==> ok
test assign bitwise and, expects 1 ==> ok
test assign bitwise or, expects 15 ==> ok
test assign bitwise xor, expects 14 ==> ok
test multi expr, expects 10 ==> ok
test while, expects 55 ==> ok
test while break, expects 55 ==> ok
test while continue, expects 55 ==> ok
test do while, expects 55 ==> ok
test do while break, expects 55 ==> ok
test do while continue, expects 0 ==> ok
test for, expects 55 ==> ok
test for noinit, notest, noupdate, expects 55 ==> ok
test for noinit, notest, expects 55 ==> ok
test for noinit, noupdate, expects 55 ==> ok
test for noinit, expects 55 ==> ok
test for notest, noupdate, expects 55 ==> ok
test for notest, expects 55 ==> ok
test for noupdate, expects 55 ==> ok
test offset, expects #t ==> ok
test not_supported, expects #t ==> ok
passed.
jrs@laptop:~/c-wrapper/testsuite$

Title: Re: Gauche Scheme
Post by: RobbeK on January 29, 2015, 12:45:38 PM
Many thanks John  :)

Testing c-wrapper (ffi) ...                                     
testing bindings in #<module c-wrapper> ... ok
test dlopen, expects #f ==> ok
test dlsym, expects #f ==> ok
test ffi_prep_cif, expects 0 ==> ok
test ffi_call, expects 3 ==> ok
test ffi_closure, expects #t ==> ok
test call callback, expects 5 ==> ok
passed.
gerd@gerd-HP-Pavilion-dv4000-EK987EA-UUG:~/Downloads/c-wrapper-0.6.1/testsuite$ gosh inline-test.scm
Testing c-wrapper (inline) ...                                   
test constant, expects 1 ==> ok
test string, expects "foo" ==> ok
test ref array, expects 10 ==> ok
test func call without argument, expects (-2 -1 0 1 2) ==> ok
test func call with arguments, expects 3 ==> ok
test ref struct (. operator), expects 1 ==> ok
test ref struct (-> operator), expects 1 ==> ok
test post increment, expects 2 ==> ok
test post decrement, expects 1 ==> ok
test pre increment, expects 2 ==> ok
test pre decrement, expects 1 ==> ok
test unary plus, expects 1 ==> ok
test unary minus, expects -1 ==> ok
test unary logical negation, expects (0 1) ==> ok
test unary bitwise negation, expects -2 ==> ok
test unary reference, expects 123 ==> ok
test unary dereference, expects 456 ==> ok
test sizeof, expects #t ==> ok
test mul, expects 6 ==> ok
test divi, expects 3 ==> ok
test mod, expects 1 ==> ok
test add, expects 3 ==> ok
test sub, expects -1 ==> ok
test left shift, expects 4 ==> ok
test right shift, expects 2 ==> ok
test lesser than, expects (1 0 0) ==> ok
test greater than, expects (0 0 1) ==> ok
test lesser than or equal, expects (1 1 0) ==> ok
test greater than or equal, expects (0 1 1) ==> ok
test equal, expects (0 1 0) ==> ok
test not equal, expects (1 0 1) ==> ok
test bitwise and, expects 1 ==> ok
test bitwise or, expects 15 ==> ok
test bitwise xor, expects 14 ==> ok
test logical and, expects (1 0 0 0) ==> ok
test logical or, expects (1 1 1 0) ==> ok
test assign mul, expects 6 ==> ok
test assign div, expects 3 ==> ok
test assign mod, expects 1 ==> ok
test assign_add, expects 3 ==> ok
test assign_sub, expects -1 ==> ok
test assign left shift, expects 4 ==> ok
test assign right shift, expects 2 ==> ok
test assign bitwise and, expects 1 ==> ok
test assign bitwise or, expects 15 ==> ok
test assign bitwise xor, expects 14 ==> ok
test multi expr, expects 10 ==> ok
test while, expects 55 ==> ok
test while break, expects 55 ==> ok
test while continue, expects 55 ==> ok
test do while, expects 55 ==> ok
test do while break, expects 55 ==> ok
test do while continue, expects 0 ==> ok
test for, expects 55 ==> ok
test for noinit, notest, noupdate, expects 55 ==> ok
test for noinit, notest, expects 55 ==> ok
test for noinit, noupdate, expects 55 ==> ok
test for noinit, expects 55 ==> ok
test for notest, noupdate, expects 55 ==> ok
test for notest, expects 55 ==> ok
test for noupdate, expects 55 ==> ok
test offset, expects #t ==> ok
test not_supported, expects #t ==> ok
passed.


great ,  Rob
Title: Re: Gauche Scheme
Post by: JRS on January 29, 2015, 01:22:02 PM
Can I assume this will keep you from drifting off to Lisp land?  :)

(http://www.notebookreview.com/assets/4612.jpg)

Our next challenge.  ;D
Title: Re: Gauche Scheme
Post by: RobbeK on January 30, 2015, 05:24:42 AM
 :)

(Lisp took my breath and syntax away ...   )

In the mean time (newLisp comes without complex numbers and fractions) , I made a lib for doing this -- compiled it for Linux32 for the moment, but can compile into a DLL.
.. it uses the structure complex :::  double , double  ..  (it's based on the one from FreePascal/Lazarus)

if someone can use this to extend her/his code , just ask (it's around 130 Kb)  -- it even does logGamma (complex)
An example made with these a Mandelcrab based on Z^2.28 + C  -- graphics not optimized

best Rob

also attached the Gauche source (not exactly a fair compare , bigger window - around 1.6x (surface wise))

.
Title: Re: Gauche Scheme
Post by: JRS on January 30, 2015, 09:14:08 AM
I think I like to original better.

.
Title: Re: Gauche Scheme
Post by: RobbeK on January 30, 2015, 01:41:12 PM
Hi,

c-wrapper is working fine :  (wrote a little lib - doing the mean of two doubles )

gosh> (use c-wrapper)
#<undef>
gosh> (c-load-library "libmean.so.1.0.1")
#<undef>
gosh> (c-include "mean.h")
#<undef>
gosh> (mean 9.7 8.8)
9.25
gosh> (mean 9 8)
8.5

a lot of Scheme here : http://community.schemewiki.org/?scheme-faq-standards

best, Rob
Title: Re: Gauche Scheme
Post by: JRS on January 30, 2015, 02:15:13 PM
An interpreter is useless without a C interface.  I'm glad c-wrapper worked out for you.

This reminds me of CERN ROOT in a twisted way.
Title: Re: Gauche Scheme
Post by: RobbeK on January 31, 2015, 12:32:02 PM
Hi John,

Yes, but i'm not very familiar with C --  When young it was still B  ::)   -- and in Europe, Pascal was favored and educated.
Infact this may be better called a CFFI ; newLISP and Racket Scheme have more universal tools, and accept libs made with FreePascal etc ...

Racket Scheme seems to be in use with Boeing USAF , and while not a compiler - I think it is a very advanced tool with lots of interesting packages.  Maybe I'll switch into this one - runs under Win , Linux , MacOS

FFI works in a simple way :   from the screen Lib I made :

 (require ffi/unsafe   ffi/unsafe/define)
 
 
 (define-ffi-definer mylib-define (ffi-lib "/usr/lib/libscreen2"))
 (mylib-define PIXEL (_fun _int _int _int _int _int  -> _void ))
 (mylib-define ENDSCREEN(_fun -> _void))
 (mylib-define SETSCREEN (_fun _int _int _int _int -> _ulong ))
 (mylib-define SCRCLR (_fun -> _void))
 (mylib-define SCRLOCK (_fun -> _void))
 (mylib-define SCRUNLOCK (_fun -> _void))
 (mylib-define SCR (_fun _int -> _void))
 (mylib-define SCRSLEEP (_fun -> _void))
 (mylib-define JULIA (_fun _double _double _double _double _int -> (_list-struct _int _double)))


compiles to executables and distributions - attached  (not the fastest graphics, if wanted i can directly poke into the frame's back buffer)

best Rob
 c  also  http://www.pawfal.org/fluxus/

.
Title: Re: Gauche Scheme
Post by: JRS on January 31, 2015, 12:45:14 PM
Like it!

Now that you're on Linux, you have many more options to chose from without breaking the bank.
Title: Re: Gauche Scheme
Post by: RobbeK on February 01, 2015, 07:42:31 AM
Yep, little Rob @ the candy store --   ::)

The code compiled for windows attached --  A distribution that should run without Racket being installed (tested on Wine and on an alien computer running win7   32bit )

Did not test the previous Linux distribution if working with Racket Scheme not installed -- looking for a way keeping the shared lib inside the package without having to install it into /usr/..

Code uses direct poking into the back buffer , and has a little animation.   

best, Rob

.
Title: Re: Gauche Scheme
Post by: JRS on February 01, 2015, 11:03:46 AM
Quote
looking for a way keeping the shared lib inside the package without having to install it into /usr/..

Putting the .so library in the same directory as your executable should work as it is part of the search path. You can also use UPX to create a single file bundle to share.

Ran fine under Wine.

Note: Attached image name indicates this is a Gauche rendering when it's not. Sorry!

.
Title: Re: Gauche Scheme
Post by: Mike Lobanovsky on February 01, 2015, 11:41:47 AM
Thanks Rob,

Looks good and works for me though somewhat slow; the animation runs at some 0.5 seconds per frame only.
Title: Re: Gauche Scheme
Post by: RobbeK on February 01, 2015, 12:59:39 PM
Thanks , John , Mike

Yes rather slow , probably this is the "slow downer"   (still in Racket bytecode )

 
 (define (poke x y r g b)
   (let ((pos (* 4 (+ x (* 500 y)))))
     (ptr-set! ptr _byte pos b)
     (ptr-set! ptr _byte (+ pos 1) g)
     (ptr-set! ptr _byte (+ pos 2) r)))

ptr is the position of the back buffer , but for one frame this has to be ran 250000 times -- much better will be to include it into the main calculation routine and increasing the address  by 4bytes every cycle   (p += 4 in basic)  , here pos is just an offset to the base address ptr.  There may be a problem (due to the modern OOP way of thinking --   ptr is an object , not a number (it is a cpointer) )  , i still have to use the pointer and the offset separated , while it is in fact just a number.   Very often objects do the opposite of their (raison d'ĂȘtre) reason of existence , they make coding difficult and  result slow execution time -- Racket Scheme goes that far that even a color is an object (make-object color% etc ... ) and then you need methods getting a color / rgb channel of a color etc ...   

(define gray (send the-color-database find-color "gray"))     :'(

 
"O TEMPORA O MORES"  ;)

best , Rob

(i'll replace this uselessness  by adding in my FreePascal generated LIB   --    poke (scrptr + pos , ubyte) --  simple as that, no need to make things more complicated than they are )

   
(when (agree?)
      ( defmacro I() 'we ))

Title: Re: Gauche Scheme
Post by: JRS on February 01, 2015, 10:32:16 PM
Rob,

Would it be difficult to create a rose using the Julia direction your using currently?

While you're thinking about it, here is another Julia Rose.

(http://static.mediabang.org/people-photos/big/110/110047/12c45c1d74f2d8a190eeed9518efe456.jpg)

John
Title: Re: Gauche Scheme
Post by: Mike Lobanovsky on February 02, 2015, 05:38:37 AM
Will this one do? :)

(http://i1240.photobucket.com/albums/gg490/FbslGeek/OGL_Rose_1.png)


It's an OpenGL sample script from a regular FBSL installation. It's purely procedural, i.e. there is no 3D model behind it; everything in it is calculated in real time.
Title: Re: Gauche Scheme
Post by: JRS on February 02, 2015, 10:25:50 AM
I can almost smell it and no thorns which was surprising.  ;D

Thanks Mike.
Title: Re: Gauche Scheme
Post by: RobbeK on February 02, 2015, 03:49:31 PM
Hi John,

A Rose with Julia -- I'm afraid not , the problem is  that Julia generates an infinite number of attractors (except C=(0,0) and then it only will generate (boring) concentric circles)  --  but a rose within a rose ...  within a rose ... etc , yes. 
But , I can work something out   ( i need a few days for it --  only a few years ago they could make some code generating a (more or less realistic) snow flake ..

there are more than enough tries around :
http://th04.deviantart.net/fs70/PRE/f/2011/122/1/f/fractal_rose_by_thorbet-d3fetl3.png

but these are not petal shapes (but of course beautiful)

let's try

Rob


Title: Re: Gauche Scheme
Post by: JRS on February 02, 2015, 03:58:34 PM
WOW!

I'm already happy with that. If you can improve on that rose, I'm sitting on the edge of my chair.  :)
Title: Re: Gauche Scheme
Post by: RobbeK on February 05, 2015, 07:58:46 AM
Well, I started with the basics ..

found a formula that generates something flower like , it's based on the cardiode , but i changed the parameter that does the cycles ( 6 i.o. 2)
This is just a shape, the gradients , distortions , rotations , scaling etc come later.

but, but - written in Racket Scheme - i'm very surprised how slow this language is (you will notice when running the code (Win32 or Wine) )
The whole concept of Racket imho is very academic

: colors are objects
: for gaining some speed I work on a bitmap -- to be able to transfer the bitmap to the canvas you have to set up a callback which is triggered by on-paint
: the pixel setting on the bmp is also slow -- this should give hope there is some boundery checking,but there is none

(any good scripting language should outperform this ...  )

: the processor activity during editing , coding , running any scheme source is upto the limit any time.

maybe not the good start for a rose --  more a papaver/poppy --  but in my langauge it is called " klaproos or kollenbloem " (kol = heks = old english hex i think   ...    so a hexflower

patience is needed when running attached code (wine or win32)   -- it's nothing yet , just the geometry


best Rob

.
Title: Re: Gauche Scheme
Post by: JRS on February 05, 2015, 10:59:33 AM
Looks like a great start Rob! Please keep us updated as this unfolds.

Title: Re: Gauche Scheme
Post by: Mike Lobanovsky on February 06, 2015, 12:41:56 AM
Awesome indeed! Can't wait to see the final shape. :)
Title: Re: Gauche Scheme
Post by: RobbeK on February 06, 2015, 02:42:03 AM
Thanks  ;)

In glorious 3D now - mixed it with a paraboloid (Z value) --  compiled with GFA under Wine (the nice thing is , here the hlp files do work)

More later - the number of petals can be changed now (not included in the interface) -- compositions next (spirals , concentric etc ...)


best Rob
(will convert to Gauche as a test - already around 110.000 points calculated)

added : the exec. 9 petals  (somewhat nicer)  -- runs from the flower3D.exe locations 

addendum : the Gauche Scheme script -- amazingly fast speed (measured on setting up the GL_COMPILE list ) -- easy interface :
use the mouse to start / stop rotation (left/right)  -- (display (number->string pi))  may be removed from the script (just checking the value)
identical script runs on Win32 / Wine / Linux
-------------------------------
(use gl)
(use gl.glut)

(define pi (* 2.0 (acos 0)))

(display (number->string pi))

(define (Fflower a t nr)
  (let ((x (* a (- (* nr (cos t)) (cos (* nr t)))))
        (y (* a (- (* nr (sin t)) (sin (* nr t)))))
        (z (* a a 0.5) ))
    (list x y z)))


(define *spin* 0.0)
(define *title* "Left mouse to start rotation - Right to stop")

(define (init)
  (gl-clear-color 0.0 0.0 0.0 0.0)
  (gl-shade-model GL_FLAT)
  )

(define (make-list)
   (gl-new-list 1 GL_COMPILE)
   (gl-begin GL_POINTS)
     
     (do ((a 0.2 (+ a 0.06)))
      ((> a 5.0))
      (do ((t 0.0 (+ t (/ pi 500))))
        ((> t (* 2 pi)))
      (let ((res (Fflower a t 8.0)) (color (/ a 5.0)) )
      (gl-color color (- 1 color) 0.0)
      (gl-vertex (car res) (cadr res) (caddr res) ))))
   (gl-end)
   (gl-end-list))   



(define (disp)
  (gl-clear GL_COLOR_BUFFER_BIT)
  (gl-push-matrix)
 
  (gl-rotate *spin* 1.0 1.0 1.0)
  (gl-call-list 1)
  (gl-pop-matrix)
  (glut-swap-buffers)
  )

(define (spin-display)
  (set! *spin* (modulo (+ *spin* 2.0) 360.0))
  (glut-post-redisplay)
  )

(define (reshape w h)
  (gl-viewport 0 0 w h)
  (gl-matrix-mode GL_PROJECTION)
  (gl-load-identity)
  (gl-ortho -50.0 50.0 -50.0 50.0 -100.0 100.0)
  (gl-matrix-mode GL_MODELVIEW)
  (gl-load-identity)
  )

(define (mouse button state x y)
  (cond
    ((= button GLUT_LEFT_BUTTON)
     (when (= state GLUT_DOWN) (glut-idle-func spin-display)))
    ((= button GLUT_RIGHT_BUTTON)
     (when (= state GLUT_DOWN) (glut-idle-func #f))))
  )

(define (keyboard key x y)
  (cond
   ((= key 27) (exit 0))
   ))

(define (main args)
  (glut-init args)
  (glut-init-display-mode (logior GLUT_DOUBLE GLUT_RGB))
  (glut-init-window-size 500 500)
  (glut-init-window-position 100 100)
  (glut-create-window *title*)
  (init)
  (glut-display-func disp)
  (glut-reshape-func reshape)
  (glut-keyboard-func keyboard)
  (glut-mouse-func mouse)
  (make-list)
  (glut-main-loop)
  0)
---------------------------------------------------------------------

.
Title: Re: Gauche Scheme
Post by: JRS on February 06, 2015, 11:19:42 AM
I see this trending to an animated bloom.  8)
Title: Re: Gauche Scheme
Post by: RobbeK on February 07, 2015, 05:41:15 AM
possibly it may become a late bloomer  8)

What's your opinion about the tk interface , John --  something worthy -- it only needs one scm source into the lib directory , very easy (tk/tcl should be present on most UNIX distributions)


attached the scm script ,  changed to solids now (quads) -- everything ready to produce some more complex (even fractal) constructions.
Possibly input interfacing with the ogl windows is too devious ??  (some buttons, textfields could be set up -- in the examples there's something with bitmap font char's that can be used )

best Rob   

already made something worth looking at :  compoFlower.scm (imho a good start for some serious work)

.