The applications were created during recreational programming sessions. The
source code is developed solely in TempleOS, so the source files are in DolDoc
format. Since GitHub has limited syntax highlights for DolDoc you may find
constructions like $ID,2$
(which is an indentation). Also sources contain
binary data because DolDoc keeps sprites in the source files, so some files are
marked as binary by GitHub. It is recommended to read the source code with the
TempleOS editor.
All applications are available in Supplemental.ISO.C. You may use it as a CD-ROM image for TempleOS virtual machine. To mount in TempleOS execute the next commands:
MountIDEAuto;
Drv('T');
Dir;
TempleOS.Spirit.GuestOS.addon.mp4
Spirit is TempleOS guest agent, a helper background task which helps to exchange information between TempleOS and host machine.
Supported operations:
- Execute user command (spawn new TempleOS window and run provided command)
- Execute command silently and return result to host machine
- Get TempleOS clipboard
- Set TempleOS clipboard
Spirit designed to be run on a boot, to install run Install.HC
, and add to
the end of ~/HomeSys.HC
#include "~/Spirit/Load"
StartUpSpirit;
Communication with Spirit guest agent is made using host agent which is
available in ./SpiritApi/C.
Execute make
to build it on Linux system.
To make serial console available for the Spirit host agent you may share it
using tcp server. For the QEMU KVM add -serial
options:
-serial tcp:localhost:4321,server=on,wait=off
And then execute command using host agent
./build/spirit-agent -c tcp:127.0.0.1:4321 exec '"Hello World!\n";'
See ./build/spirit-agent -h
for detailed usage.
Tic-Tac-Toe game with sprites, dithering, and AI. Future plans:
- Control player (player vs ai, ai vs ai, ai vs player, etc...)
- Support dynamic board size
You may launch Tic-Tac-Toe game by including the Run.HC
:
#include "TicTacToe/Run";
scrn-cast.mp4
TempleOS Cloud Theme
It is based on Terry's TempleOS Theme, some code scarps were taken from AfterEgypt.
HexView'er is a viewer for binary files. Display HEX presentation of content side-by-side with printable characters.
Run with:
#include "HexView/Run";
Programmatic usage:
#include "HexView/Load"
HexView("C:/Once.HC.Z", 8);
I use a macro (I've put it on personal menu for quick access), which removes cursor marks and prepares a supplemental ISO file:
$MA,"Make supplemental ISO",LM="CursorRem(\"::/Home/Dev/*\"); RedSeaISO(\"::/Supplemental\", \"::/Home/Dev/\");\n"$
Then I mount TempleOS hard drive using modified
fusefat that supports the offset
option
(see second reference on how to find the offset) and rsync files into the repo
directory.
- TempleOS
- Tsoding TempleOS repo for AOC-2021. Take a look at sync.sh and mount.sh scripts that transfer files from/to TOS.
Copyright (c) 2023 Sergii Zasenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.