aboutsummaryrefslogtreecommitdiff
path: root/bin/world.py
AgeCommit message (Collapse)Author
2024-02-29Store python modules on './bin/modules/' subdirectory. [#37]Paul Oliver
2024-02-29Fast vertical pan on World page.Paul Oliver
[#24] Capital W and S keys now apply fast vertical pan on World page.
2024-02-29Format tweaks to Python files [#30]Paul Oliver
2024-02-29Removed memory bit flags entirely.Paul Oliver
[#28] Bit flags were exclusively a cosmetic component, not needed at all to run the simulator. I've added a new 'render' module that takes care of appending bit flags to rendered memory images, providing the same aesthetic result, but only when requested.
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-29User may now toggle IP color layer on/off.Paul Oliver
[#12] Allowing to toggle the IP layer (white) can help the user better visualize of the underlying memory block structure.
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-29Initial commit.Paul Oliver