Page 1 of 1
Swarm in newLISP
Posted: Sun Nov 27, 2005 7:30 pm
by Fanda
I am playing with the simulation of swarm.
You can find it here as a file swarm.lsp:
http://www.volny.cz/fsodomka/newlisp/
Enjoy, Fanda
Posted: Sun Nov 27, 2005 8:09 pm
by newdep
Thats a dammmmm nice one !
Posted: Sun Nov 27, 2005 8:42 pm
by Lutz
Fantastic, beautiful!
Lutz
Posted: Sun Nov 27, 2005 8:55 pm
by Fanda
Feel free to change parameters to see what it does. It's really addicting :-)
Fanda
Posted: Mon Nov 28, 2005 10:07 am
by pjot
Very cool!
Peter
Posted: Tue Nov 29, 2005 2:30 pm
by Lutz
Here is a simple program to run Fanda's swarm.lsp and inversi.lsp without newlisp-tk just using the concole app newlisp and a Tcl/Tk installation:
http://newlisp.org/index.cgi?page=Tk_and_newLISP
Lutz
Posted: Tue Nov 29, 2005 8:26 pm
by Fanda
Unfortunately, 'peek' is only available on UNIX like operating systems =>
will not work on Windows.
Just wanted to let you know...
Fanda
Posted: Tue Nov 29, 2005 8:38 pm
by Lutz
Oops, I forgot, thanks for letting me know, on Win32 you still got to do: newlisp-tk swarm.lsp .
Lutz
Posted: Tue Nov 29, 2005 10:45 pm
by Dmi
Just checked. Cool thing!
Posted: Thu Dec 01, 2005 7:56 am
by Fanda
Hello!
I have been trying to make it work on Windows.
Some scripts run just fine, when I comment the line:
(while (= (peek myin) 0))
I added error checking and divided (write-line ...) into 2 lines. Inversi doesn't want to run, if I write (write-line ...) on 1 line only. (I don't know why.)
Code: Select all
; tk function to pass commands to Tcl/Tk
(define (tk)
(write-line (append "if { [catch { puts [" (apply string (args)) "] }] } { " [text] tk_messageBox -message "$errorInfo"; exit }
[/text]) myout)
(read-line myin))
(global 'tk)
I also tried some tests for tk function:
Code: Select all
; call inside the call
(tk "tk_messageBox -type ok -message {You clicked '" (tk "tk_messageBox -type yesno -message {Click on something :-)}") "'!}")
; catches error correctly:
;(tk "set x [expr {1 +}]")
; it doesn't catch bad brackets -> freezes up afterwards!
;(tk "set x {whatever here")
With this tk function both Inversi and Swarm run fine on Windows.
Fanda
Posted: Thu Dec 01, 2005 10:16 am
by Lutz
You may check if the the 'read-line' on a pipe in Windows blocks or not when no data is available. On Unix 'read-line' will not block but return a 'nil'. This is why the (peek myin) comes in handy.
If 'read-line' doesn't block on Windows either, you might just put (sleep ..) statements before reading to make sure data is available. Perhaps splitting the 'write-line' changes the timing.
Or, if it blocks, make sure there is always data to read ready from the TclTk side. If no data is available and it blocks, newLISP would sit in the 'read-line' and freeze.
I will try your new (tk ..) function with error checking when I get to a Windows machine and incorporate it into nl-tcltk.
Lutz
Posted: Thu Dec 01, 2005 7:14 pm
by Fanda
- I believe that 'read-line' on Windows blocks when no data is available. I think, we can prove it using "call inside the call" - without 'peek' on Unix it should return "You clicked 'nil'". (Could anybody try it on Unix without 'peek', please?)
On Windows it waits and says correctly 'yes' or 'no'.
- We could write 2 versions of tk function:
if OS is Unix -> tk with 'peek' - else - tk without it
- My guess when splitting the 'write-line' to 2 lines was that Tcl needs some spaces or end of line characters to correctly process the command(s).
- The 3rd tk test of catching the bad brackets freezes up because Tcl can't process the command correctly - it's missing the brackets, but will not throw an error because there is no clear beginning and the end of commands (including catch and puts).
- I would like to add a constant to nl-tcltk
Code: Select all
; constant to differentiate between newlisp-tk and this wrapper
(constant (global 'NL-TCLTK) true)
It's useful when exiting the script
nelisp-tk -> deiconify '.'
wrapper -> exit wish and exit newlisp
Fanda
Posted: Thu Dec 01, 2005 7:27 pm
by Lutz
On UNIX/OSX:
get first dialog box "click on something",
click 'yes' which brings a second dialog box "you clicked on 'yes'",
click 'ok' which returns "ok" in newLISP.
Lutz
Posted: Thu Dec 01, 2005 7:32 pm
by Lutz
But I am not sure if it will always work? becuase I have put in the (peek ..) because I had instances where it would go into read-line to fast and return 'nil' before a string had arrived.
Lutz
Posted: Thu Dec 01, 2005 7:36 pm
by Fanda
Cool, it means that this can be used as a test if 'read-line' blocks or not.
Fanda
Posted: Thu Dec 01, 2005 7:37 pm
by Lutz
.. and it also runs fine Demo.lsp, Hanoi.lsp, Turtle.lsp and Random.lsp. Have not figured out yet why it doesn't run Mouse.lsp after color change, but now with your new 'tk' I get at least ans error message box and it wouldn't run on the old 'tk' either.
Lutz
Posted: Mon Dec 05, 2005 5:47 am
by Fanda
There is a new version 0.07:
- it doesn't show an error when closing the window (=> it's a little bit slower than 0.06)
- window has a different size in x and y (MX MY) and can be resized!
- Tk code clean up
- can be run by both newlisp-tk and Tk wrapper (exits correctly)
Visually it's pretty much the same...
Fanda
Posted: Fri Dec 30, 2005 10:20 pm
by newdep
Posted: Thu Jan 05, 2006 8:20 pm
by Fanda