http://packetstormsecurity.org/UNIX/admin/xscreensaver-4.00.tar.gz
[xscreensaver] / hacks / config / ant.xml
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2
3 <screensaver name="ant" _label="Ant">
4
5   <command arg="-root"/>
6
7   <boolean id="sharpturn" _label="Sharp Turns" arg-set="-sharpturns"/>
8
9   <boolean id="truchet" _label="Truchet Lines" arg-set="-truchet"/>
10
11   <number id="speed" type="slider" arg="-delay %"
12           _label="Speed" _low-label="Slow" _high-label="Fast"
13           low="0" high="80000" default="1000"
14           convert="invert"/>
15
16   <number id="cycles" type="slider" arg="-cycles %"
17            _label="Timeout" _low-label="Small" _high-label="Large"
18           low="0" high="800000" default="40000"/>
19
20   <number id="count" type="spinbutton" arg="-count %"
21           _label="Ants Count" low="-20" high="20" default="-3"/>
22
23   <number id="size" type="spinbutton" arg="-size %"
24            _label="Ant Size" low="-18" high="18" default="-12"/>
25
26   <select id="neighbors">
27     <option id="rand" _label="Random Cell Shape"/>
28     <option id="three" _label="Three Sided Cells" 
29             arg-set="-neighbors 3"/>
30     <option id="four" _label="Four Sided Cells"
31             arg-set="-neighbors 4"/>
32     <option id="six" _label="Six Sided Cells" enable="sharpturn"
33             arg-set="-neighbors 6"/>
34     <option id="nine" _label="Nine Sided Cells"
35             arg-set="-neighbors 9"/>
36     <option id="twelve" _label="Twelve Sided Cells" enable="sharpturn"
37             arg-set="-neighbors 12"/>
38   </select>
39
40   <number id="ncolors" type="slider" arg="-ncolors %"
41             _label="Number of Colors" _low-label="Two" _high-label="Many"
42             low="2" high="255" default="64"/>
43
44   <_description>
45 A cellular automaton that is really a two-dimensional Turing machine:
46 as the heads (``ants'') walk along the screen, they change pixel
47 values in their path.  Then, as they pass over changed pixels, their
48 behavior is influenced.  Written by David Bagley.
49   </_description>
50 </screensaver>