~ubuntu-branches/ubuntu/utopic/xscreensaver/utopic

« back to all changes in this revision

Viewing changes to hacks/config/ant.xml

  • Committer: Bazaar Package Importer
  • Author(s): Ted Gould
  • Date: 2008-08-28 16:15:25 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080828161525-mxga521aoezxjq8h
Tags: 5.07-0ubuntu1
* Upgrade upstream version
* debian/control: Remove suggest xdaliclock as it is no longer
  included
* Remove 10_jwz-screensaver-randr-patch-3.patch as it has been merged
  upstream.
* Add 24_hacks_xsublim_enable.patch as it seems that xsublim was dropped
  from the build files.  There is nothing in the Changelog about it
  so I believe it was accidental.
* Updating the .desktop files from the XML files using gnome-screensaver's
  utility to do so.  Lots of text updates.  Also:
    * Added: abstractile.desktop
    * Added: cwaves.desktop
    * Added: m6502.desktop
    * Added: skytentacles.desktop
    * Removed: xteevee.desktop
* xscreensaver-gl-extra.files: Added skytentacles
* xscreensaver-data-extra.files: Added abstractile, cwaves and m6502
* xscreensaver-data.files: Remove partial abstractile, m6502 and cwaves

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
  <command arg="-root"/>
6
6
 
7
 
  <boolean id="sharpturn" _label="Sharp Turns" arg-set="-sharpturn"/>
8
 
 
9
 
  <boolean id="truchet" _label="Truchet Lines" arg-set="-truchet"/>
10
 
 
11
 
  <boolean id="eyes" _label="Draw Eyes" arg-set="-eyes"/>
12
 
 
13
7
  <number id="delay" type="slider" arg="-delay %"
14
 
          _label="Speed" _low-label="Slow" _high-label="Fast"
15
 
          low="0" high="80000" default="1000"
 
8
          _label="Frame rate" _low-label="Low" _high-label="High"
 
9
          low="0" high="100000" default="20000"
16
10
          convert="invert"/>
17
11
 
18
12
  <number id="cycles" type="slider" arg="-cycles %"
19
13
           _label="Timeout" _low-label="Small" _high-label="Large"
20
14
          low="0" high="800000" default="40000"/>
21
15
 
22
 
  <number id="count" type="spinbutton" arg="-count %"
23
 
          _label="Ants Count" low="-20" high="20" default="-3"/>
 
16
  <hgroup>
 
17
   <boolean id="sharpturn" _label="Sharp turns" arg-set="-sharpturn"/>
 
18
   <boolean id="truchet" _label="Truchet lines" arg-set="-truchet"/>
 
19
   <boolean id="eyes" _label="Draw eyes" arg-set="-eyes"/>
 
20
  </hgroup>
24
21
 
25
 
  <number id="size" type="spinbutton" arg="-size %"
26
 
           _label="Ant Size" low="-18" high="18" default="-12"/>
 
22
  <hgroup>
 
23
   <number id="count" type="spinbutton" arg="-count %"
 
24
           _label="Ants count" low="-20" high="20" default="-3"/>
 
25
   <number id="size" type="spinbutton" arg="-size %"
 
26
            _label="Ant size" low="-18" high="18" default="-12"/>
 
27
  </hgroup>
27
28
 
28
29
  <select id="neighbors">
29
 
    <option id="rand" _label="Random Cell Shape"/>
30
 
    <option id="three" _label="Three Sided Cells"
 
30
    <option id="rand" _label="Random cell shape"/>
 
31
    <option id="three" _label="Three sided cells"
31
32
            arg-set="-neighbors 3"/>
32
 
    <option id="four" _label="Four Sided Cells"
 
33
    <option id="four" _label="Four sided cells"
33
34
            arg-set="-neighbors 4"/>
34
 
    <option id="six" _label="Six Sided Cells"
 
35
    <option id="six" _label="Six sided cells"
35
36
            arg-set="-neighbors 6"/>
36
 
    <option id="nine" _label="Nine Sided Cells"
 
37
    <option id="nine" _label="Nine sided cells"
37
38
            arg-set="-neighbors 9"/>
38
 
    <option id="twelve" _label="Twelve Sided Cells"
 
39
    <option id="twelve" _label="Twelve sided cells"
39
40
            arg-set="-neighbors 12"/>
40
41
  </select>
41
42
 
42
43
  <number id="ncolors" type="slider" arg="-ncolors %"
43
 
            _label="Number of Colors" _low-label="Two" _high-label="Many"
44
 
            low="2" high="255" default="64"/>
 
44
            _label="Number of colors" _low-label="Three" _high-label="Many"
 
45
            low="3" high="255" default="64"/>
 
46
 
 
47
  <boolean id="showfps" _label="Show frame rate" arg-set="-fps"/>
45
48
 
46
49
  <_description>
47
50
A cellular automaton that is really a two-dimensional Turing machine:
49
52
values in their path.  Then, as they pass over changed pixels, their
50
53
behavior is influenced.
51
54
 
 
55
http://en.wikipedia.org/wiki/Langton%27s_ant
 
56
http://en.wikipedia.org/wiki/Turing_machine
 
57
 
52
58
Written by David Bagley; 1997.
53
59
  </_description>
54
60
</screensaver>