-
Notifications
You must be signed in to change notification settings - Fork 2
Added error section #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tmptrash
wants to merge
4
commits into
mxpoliakov:master
Choose a base branch
from
tmptrash:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,58 +1,69 @@ | ||
| # Fungera: A two-dimensional evolution simulator | ||
|
|
||
| ### Organism structure | ||
|
|
||
| - Main memory block | ||
| - Child memory block (optional) | ||
| - Instruction pointer | ||
| - Delta (direction) | ||
| - 4 general purpose registers | ||
| - A stack of 8 values | ||
|
|
||
| ### Instruction set | ||
|
|
||
| | Symbol | Max ops | Description | Type | | ||
| |--------|---------|-------------------------------------------------|-------------| | ||
| | `.` | 0 | Template constructor | Template | | ||
| | `:` | 0 | Template constructor | Template | | ||
| | `a` | 0 | Register modifier | Register | | ||
| | `b` | 0 | Register modifier | Register | | ||
| | `c` | 0 | Register modifier | Register | | ||
| | `d` | 0 | Register modifier | Register | | ||
| | `^` | 0 | Direction modifier (up) | Direction | | ||
| | `v` | 0 | Direction modifier (down) | Direction | | ||
| | `>` | 0 | Direction modifier (right) | Direction | | ||
| | `<` | 0 | Direction modifier (left) | Direction | | ||
| | `x` | 0 | Operation modifier | Operation | | ||
| | `y` | 0 | Operation modifier | Operation | | ||
| | `&` | 2+ | Find template, put its address in register | Matching | | ||
| | `?` | 4 | If not zero | Conditional | | ||
| | `0` | 1 | Put [0, 0] vector into the register | Arithmetic | | ||
| | `1` | 1 | Put [1, 1] vector into the register | Arithmetic | | ||
| | `-` | 2 | Decrement value in register | Arithmetic | | ||
| | `+` | 2 | Increment value in register | Arithmetic | | ||
| | `~` | 3 | Subtract registers and store result in register | Arithmetic | | ||
| | `W` | 2 | Write instruction from register to address | Replication | | ||
| | `L` | 2 | Load instruction from address to register | Replication | | ||
| | `@` | 2 | Allocate child memory of size | Replication | | ||
| | `$` | 0 | Split child organism | Replication | | ||
| | `S` | 1 | Push value from register into the stack | Stack | | ||
| | `P` | 1 | Pop value of register into the stack | Stack | | ||
| | ------ | ------- | ----------------------------------------------- | ----------- | | ||
| | `.` | 0 | Template constructor | Template | | ||
| | `:` | 0 | Template constructor | Template | | ||
| | `a` | 0 | Register modifier | Register | | ||
| | `b` | 0 | Register modifier | Register | | ||
| | `c` | 0 | Register modifier | Register | | ||
| | `d` | 0 | Register modifier | Register | | ||
| | `^` | 0 | Direction modifier (up) | Direction | | ||
| | `v` | 0 | Direction modifier (down) | Direction | | ||
| | `>` | 0 | Direction modifier (right) | Direction | | ||
| | `<` | 0 | Direction modifier (left) | Direction | | ||
| | `x` | 0 | Operation modifier | Operation | | ||
| | `y` | 0 | Operation modifier | Operation | | ||
| | `&` | 2+ | Find template, put its address in register | Matching | | ||
| | `?` | 4 | If not zero | Conditional | | ||
| | `0` | 1 | Put [0, 0] vector into the register | Arithmetic | | ||
| | `1` | 1 | Put [1, 1] vector into the register | Arithmetic | | ||
| | `-` | 2 | Decrement value in register | Arithmetic | | ||
| | `+` | 2 | Increment value in register | Arithmetic | | ||
| | `~` | 3 | Subtract registers and store result in register | Arithmetic | | ||
| | `W` | 2 | Write instruction from register to address | Replication | | ||
| | `L` | 2 | Load instruction from address to register | Replication | | ||
| | `@` | 2 | Allocate child memory of size | Replication | | ||
| | `$` | 0 | Split child organism | Replication | | ||
| | `S` | 1 | Push value from register into the stack | Stack | | ||
| | `P` | 1 | Pop value of register into the stack | Stack | | ||
|
|
||
| ### Running Fungera | ||
| Python 3.7 is required to run Fungera. Once it is installed, running Fungera is simple. | ||
|
|
||
| Python 3.7 is required to run Fungera. Once it is installed, running Fungera is simple. | ||
|
|
||
| ``` | ||
| python -m pip install -r requirements.txt | ||
| python fungera.py --name "Simulation 1" | ||
| ``` | ||
|
|
||
| ### Install issues | ||
|
|
||
| In case of issues with "curses" library under windows 10, please use [this](https://stackoverflow.com/questions/32417379/what-is-needed-for-curses-in-python-3-4-on-windows7) approach. And than, install all dependencies from "requirements.txt" file manually (except "curses"). | ||
|
|
||
| ### TUI controls | ||
| | Key | Action | | ||
| |--------------------|-----------------------------------------------------| | ||
| | <kbd>space</kbd> | Start/pause simulation | | ||
|
|
||
| | Key | Action | | ||
| | ------------------ | -------------------------------- | | ||
| | <kbd>space</kbd> | Start/pause simulation | | ||
| | <kbd>c</kbd> | Advance 1 cycle (only if paused) | | ||
| | <kbd>↑</kbd> | Move memory view up | | ||
| | <kbd>↓</kbd> | Move memory view down | | ||
| | <kbd>←</kbd> | Move memory view left | | ||
| | <kbd>→</kbd> | Move memory view right | | ||
| | <kbd>d</kbd> | Select next organism | | ||
| | <kbd>a</kbd> | Select previous organism | | ||
| | <kbd>p</kbd> | Save simulation | | ||
| | <kbd>l</kbd> | Load last saved simulation | | ||
| | <kbd>m</kbd> | Toogle minimal mode | | ||
| | <kbd>↑</kbd> | Move memory view up | | ||
| | <kbd>↓</kbd> | Move memory view down | | ||
| | <kbd>←</kbd> | Move memory view left | | ||
| | <kbd>→</kbd> | Move memory view right | | ||
| | <kbd>d</kbd> | Select next organism | | ||
| | <kbd>a</kbd> | Select previous organism | | ||
| | <kbd>p</kbd> | Save simulation | | ||
| | <kbd>l</kbd> | Load last saved simulation | | ||
| | <kbd>m</kbd> | Toogle minimal mode | | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.