Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/cca/file/a308291203ea/Help/Help.html
Дата изменения: Unknown
Дата индексирования: Sun Feb 3 17:57:03 2013
Кодировка:
cca: a308291203ea Help/Help.html

cca

view Help/Help.html @ 102:a308291203ea

Extracted examples from .zip file zip gives: - smaller overall size - more work to add new examples - more work for end user - inability for VCS to track each example separately Mercurial itself does compress it's history, so, by adding one large binary file you may have even increased the repository size, not decreased it.
author Daniil Alexeyevsky <me.dendik@gmail.com>
date Wed, 15 Dec 2010 16:50:19 +0300
parents 6b149e6d8223
children
line source
1 <html>
2 <head>
3 <title>
4 Cyclic cellular automata editor
5 </title>
6 <meta http-equv="content-type" content="text/html; charset=windows-1251">
7 <style type="text/css">
8 body {background-color:#F0F0F0}
9 A:link {color:green; text-decoration:none}
10 A:active {color:green; text-decoration:none}
11 A:visited {color:green; text-decoration:none}
12 h4 {text-indent:40}
13 p {text-indent:40}
14 </style>
15 </head>
16 <body>
17 <h3 align="center">
18 CCA - Cyclic cellular automata editor
19 <h3>
20 <h4>
21 CCA is cyclic cellular automata creation, editing and visualization tool.
22 </h4>
23 <p>
24 <b>Cellular automaton</b> is a set of cells. Each cell can be in one of several possible states. Cell can change its state, according to state of neighbors of the cell. This process is determined by transition rules. <b>Cyclic cellular automaton</b> is a kind of cellular automaton, its set of states is a cycle, and cell changes its state to next one, according to cycle order. It works with <b>2-dimentional cyclic cellular automaton</b> with rectangular field. Transition rules should be defined through number of neighbors of the cell in same state. This program allows user to change number of cell`s states, order of states and transition rules for each state. Other options are automaton step duration, scale of field, colors of cell in defferent states.
25 </p>
26 <p align="center">
27 <br><big>Window of the program</big><br><br>
28 <img src="window.png">
29 </p>
30 <p>
31 Window of the program contains menubar, automaton field and status line. Status line displays current size of field, automaton status (running/paused), and speed as inverse value of delay between automaton conditions in running state.
32 </p>
33 <h3 align="center">
34 Menubar
35 </h3>
36 <p>
37 Menubar includes <b>File</b>, <b>Action</b>, <b>Automaton</b> and <b>Help</b> items. <b>File</b> menu contains <b>New</b>, <b>Open ..</b>, <b>Save ..</b> and <b>Exit</b> items.<br><br>
38 <b>New</b> creates new CCA progect with empty field and "Life" type of automaton.<br>
39 <b>Open ..</b> allows to load automaton from CAF file, that was created with this program.<br>
40 <b>Save ..</b> allows to save current automaton in CAF file.<br>
41 <b>Exit</b> finishes work of the program.
42 </p>
43 <p>
44 <b>Action</b> menu contains <b>Start</b>, <b>Stop</b>, <b>Next step</b>, <b>Increase speed</b>, <b>Decrease speed</b>, <b>Zoom in</b>, <b>Zoom out</b>, <b>Clean field</b>, <b>Fill randomly</b> and <b>Change size</b> items.<br><br>
45 <b>Start</b> switches automaton to running state.<br>
46 <b>Stop</b> stops automaton, if it is in running state.<br>
47 <b>Next step</b> places automaton into next condition, stops automaton, if it is in running state.<br>
48 <b>Increase speed</b> decreases delay between contitions of automaton twofold while it is in running state.<br>
49 <b>Decrease speed</b> increases delay between contitions of automaton twofold while it is in running state.<br>
50 <b>Zoom in</b> increases size of cells.<br>
51 <b>Zoom out</b> decreases size of cells.<br>
52 <b>Clean field</b> converts all cells in first state of automaton list of states.<br>
53 <b>Fill randomly</b> converts all cells in accidental state of states list with identical probabilities.<br>
54 <b>Change size</b> opens change size window.
55 </p>
56 <p align="center">
57 <br><big>Change size window</big><br><br>
58 <img src="size_window.png">
59 </p>
60 <p>
61 Change size window allows user to change size of the field on certain side. Side can be appointed through group of nine buttons. If choosen button side have no neighbor buttons, equal side of field will not be changed. New dimensions of field should be determinated through entry fields (X dimention <b>x</b> Y dimention).
62 </p>
63 <p>
64 <b>Automaton</b> item opens automaton window. It contains list of states, group of buttons of changing states order in list and change/add state area, that includes tools for changing parameters of state. "Change" button changes choosen state and "Add" button adds new one. Each state should have name, unique symbol, color and unique key. Key is keyboard key, that simplify changing cells state to conformable state.
65 </p>
66 <p align="center">
67 <br><big>Automaton window</big><br><br>
68 <img src="automaton_window.png">
69 </p>
70 <p>
71 To set name, key or symbol of state, use entry fields. To set state color, press to the colored area and then choose new color. To set transition rules, use checkboxes. If checkbox with label <b>N</b> is choosen (<b>N</b> = 0, 1, ... 8), then cell in the state will change it, if the cell have <b>N</b> neighbors in same state.
72 </p>
73 <h3 align="center">
74 Mouse drawing
75 </h3>
76 <p>
77 User have ability to change cells states with mouse. Pressing <b>left button</b> of mouse results in changing of cell state to <b>next</b> one. <b>Right button</b> changes state to <b>previous</b> one. If keyboard <b>key</b> is being pressed during motion of mouse with pressed button, cells change their state to that corresponds to the key.
78 </p>
79 </body>
80 </html>