]> gitweb.factorcode.org Git - factor.git/commitdiff
fix outdated comments in SDL examples
authorSlava Pestov <slava@factorcode.org>
Sun, 19 Dec 2004 00:06:10 +0000 (00:06 +0000)
committerSlava Pestov <slava@factorcode.org>
Sun, 19 Dec 2004 00:06:10 +0000 (00:06 +0000)
TODO.FACTOR.txt
examples/dejong.factor
examples/factoroids.factor
examples/mandel.factor
version.factor

index 405b674f307bacad3f84fb35e3e952a0afc2d896..5a58ac42cc209cd365c2b5a513040b0097ffd808 100644 (file)
@@ -13,7 +13,6 @@
 \r
 + linearizer/generator:\r
 \r
-- peephole optimizer\r
 - getenv/setenv: if literal arg, compile as a load/store\r
 - compiler: drop literal peephole optimization\r
 \r
 + oop:\r
 \r
 - union metaclass\r
-- make M: order-independent\r
-- bootstrapping generic words\r
+- add defined methods to a word prop\r
+- M: sort method list, build vtable, redefine generic\r
 - 2generic\r
 - move generic, 2generic from kernel vocabulary\r
 - generic = hashcode and math ops\r
+- no vtable word-prop\r
+- make see work with generics\r
+- doc comments of generics\r
+- GENERIC: don't install empty vtable if already defined\r
 \r
 + ffi:\r
 \r
@@ -42,7 +45,7 @@
 \r
 + listener/plugin:\r
 \r
-- word added >1 \r
+- word added >1 if external instance dies\r
 - sidekick: still parsing too much\r
 - errors don't always disappear\r
 - console: wrong history\r
 - rewrite accessors and mutators in Factor, with slot/set-slot primitive\r
 - replace -export-dynamic with sundry-xt\r
 - add a socket timeout\r
+- word, writes entire plist\r
+- do transfer-word in fixup\r
 \r
 + misc:\r
 \r
+- each-with map-with\r
 - step: print NEXT word to execute, not word that JUST executed\r
 - perhaps /i should work with all numbers\r
 - unit test weirdness: 2 lines appears at end\r
index ccd6972c9e2f98ce45e48c5843ebf1ca9f082be1..d700a6e959613985f74fffae6957de164343936e 100644 (file)
@@ -1,7 +1,7 @@
 ! DeJong attractor renderer.
 ! To run this code, start your interpreter like so:
 !
-! ./f -libraries:sdl=libSDL.so -libraries:sdl-gfx=libSDL_gfx.so
+! ./f -libraries:sdl:name=libSDL.so -libraries:sdl-gfx:name=libSDL_gfx.so
 !
 ! Then, enter this at the interpreter prompt:
 !
index d6209d482314050f58a6343bcc522d9f1dfe2884..ae83bd66dbcd8a2c1c74b6067f014f80b2be7db8 100644 (file)
@@ -2,7 +2,7 @@
 !
 ! To play the game:
 !
-! ./f factor.image -libraries:sdl=libSDL.so -libraries:sdl-gfx=libSDL_gfx.so
+! ./f -libraries:sdl:name=libSDL.so -libraries:sdl-gfx:name=libSDL_gfx.so
 !
 ! "examples/factoroids.factor" run-file
 
index 3d472591ec935aba39bacaa66af616c217f4614f..376baf5c5019d0199e694593feb2f1d94e4038cc 100644 (file)
@@ -1,7 +1,7 @@
 ! Graphical mandelbrot fractal renderer.
 ! To run this code, start your interpreter like so:
 !
-! ./f -libraries:sdl=libSDL.so -libraries:sdl-gfx=libSDL_gfx.so
+! ./f -libraries:sdl:name=libSDL.so -libraries:sdl-gfx:name=libSDL_gfx.so
 !
 ! Then, enter this at the interpreter prompt:
 !
index 8fb49d4201288d07ef0edca2bc0dca3d7e88d735..91a69b512b1be129e22b2c3865423fdf08f406e6 100644 (file)
@@ -1,2 +1,2 @@
 IN: kernel
-: version "0.70" ;
+: version "0.71" ;