aboutsummaryrefslogtreecommitdiff
path: root/bin/printer.py
AgeCommit message (Collapse)Author
2024-02-29Added minimal mode.Paul Oliver
[#25] Toggle minimal mode with 'M' key. When on minimal mode, only current cycle, epoch and process count are shown.
2024-02-29Fast scroll on Process page.Paul Oliver
[#24] Capital W and S keys now apply fast vertical scroll on Process page.
2024-02-29Format tweaks to Python files [#30]Paul Oliver
2024-02-29Removed Memory module's MEM_BLOCK_START flag.Paul Oliver
[#28] This flag served no purpose except to facilitate rendering. However, performance has a higher priority so I've eliminated this feature. Block start rendering can still be implemented via other methods.
2024-02-29Removed Memory module's IP flag.Paul Oliver
[#28] IP flag served no purpose except to facilitate rendering. However, performance has a higher priority so I've eliminated this feature. IP rendering can still be implemented via other methods.
2024-02-29Added generic code for back-space key.Paul Oliver
[#14] This new code makes back-space work correctly through SSH. It still needs to be tested in Cygwin.
2024-02-29Fixed bug described on issue [#23].Paul Oliver
2024-02-29Changed all 'addch()' commands to 'addstr()'Paul Oliver
This seems to be the correct way to print individual characters. Salis now keeps correct background colors through SSH.
2024-02-29ESCAPE key no longer quits simulation.Paul Oliver
[#19] I felt it was too easy to quit the simulation accidentally. Now, a user has to type 'q' or 'quit' on the console in order to exit.
2024-02-29Selected process now listed in PROCESS view.Paul Oliver
This solves issue [#18].
2024-02-29Removed executed instruction counter.Paul Oliver
[#17] After having removed organisms' reward/punishment mechanisms, the number of executed instructions will always match the number of processes. No need to keep this.
2024-02-29PIDs and gene scroll on PROCESS view now toggle between hex/decimal.Paul Oliver
This fixes issue [#13].
2024-02-29Handle resize event when console is open.Paul Oliver
[#5] Whenever terminal gets resized with the console open, we call the Printer.on_resize() method to adequately query the new window size.
2024-02-29Refactored all python modules to use name scrambling.Paul Oliver
[#4] Modules now utilize better naming conventions for differentiating between public and private members and methods. We no longer make use of properties.
2024-02-29Bug fixed on cursor's process selection process.Paul Oliver
[#1] Cursor process selection loop was searching for processes under the cursor by iterating based on process count, instead of process queue capacity.
2024-02-29Initial commit.Paul Oliver