-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 053b512
Showing
78 changed files
with
24,997 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: c097cb495a9ebf8a2f5c10a9c5040d59 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Colors | ||
====== | ||
|
||
Overview | ||
~~~~~~~~ | ||
|
||
Some Celtic functions allow RGB 565 colors. A list of pre-defined colors can be found below. You can also use the `1555 color picker <https://roccoloxprograms.github.io/1555ColorPicker>`__ in 565 mode. | ||
|
||
Colors | ||
~~~~~~ | ||
|
||
Refer to the DCS wiki for a `list of pre-defined colors <https://dcs.cemetech.net/index.php?title=DCSE:BasicLibs:DispColor>`__. |
This file contains 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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
Converting Sprites | ||
================== | ||
|
||
Overview | ||
~~~~~~~~ | ||
|
||
Converting sprites by hand can be a pain, but thankfully it is possible to automate the process using a tool called `convimg <https://github.com/mateoconlechuga/convimg>`__ created by `MateoConLechuga <https://github.com/mateoconlechuga/>`__. | ||
|
||
Setup | ||
~~~~~ | ||
|
||
First you'll need to download the latest version of convimg from the `GitHub releases page <https://github.com/mateoconlechuga/convimg/releases/latest>`__. You should choose the zip for your platform. Next you'll need to add convimg to your Path. To do this follow the instructions for your OS below: | ||
|
||
.. note:: | ||
|
||
If you already have the CE C toolchain installed, chances are that convimg has already been installed and is in your Path. You can check this by opening a terminal and running :code:`convimg --version`. | ||
|
||
On Windows: | ||
* Extract the zip to a file path without spaces. | ||
* Open the start menu, then search and choose :guilabel:`Edit the system environment variables`. | ||
* Click :guilabel:`Enviro&nment Variables` and select :guilabel:`Path` under :guilabel:`&System variables`. Then press the :guilabel:`Ed&it` button. | ||
* Click :guilabel:`&New` and enter the path to convimg. | ||
* Click :guilabel:`OK` and exit the editor. You may need to restart your apps (Terminals, IDEs) for the changes to take effect. | ||
|
||
On Linux/macOS: | ||
* Extract the zip to a file path without spaces. | ||
* Open your system's rc file to add convimg to the path. This might be called :file:`.bashrc`, :file:`.zshrc`, or something else depending on your system. | ||
* On macOS you might add something like this: | ||
|
||
.. code-block:: bash | ||
export PATH=$PATH:/path/to/convimg | ||
* On Linux it might be something like this: | ||
|
||
.. code-block:: bash | ||
export PATH=/path/to/convimg:$PATH | ||
* You may need to restart your apps (Terminals, IDEs) for the changes to take effect. | ||
|
||
Once you've added convimg to your path, open a new terminal window and type :code:`convimg --version` to ensure it been added correctly. If everything worked, you should see something like this:: | ||
|
||
tiny@tinyUbuntu:~$ convimg --version | ||
convimg v9.0 by mateoconlechuga | ||
|
||
Conversion | ||
~~~~~~~~~~ | ||
|
||
In order to convert your sprites, you should first create a folder with all the sprites for your project, to keep it organized. Having different sprites all over the place gets very confusing and is not a good habit to have. | ||
Once you have your sprites in a directory, you'll need to create a :file:`convimg.yaml` file in that directory as well. This file has configuration options and information for convimg to convert your sprites. You can start out with a template file like this: | ||
|
||
.. code-block:: yaml | ||
converts: | ||
- name: images | ||
palette: xlibc | ||
width-and-height: false | ||
images: | ||
- image.png | ||
outputs: | ||
- type: basic | ||
include-file: images.txt | ||
converts: | ||
- images | ||
.. warning:: | ||
|
||
If you are using an older version of convimg you may need to specify the type as "ice" instead of "basic". You can also pick up the latest non-release build of convimg by going to the `GitHub Actions <https://github.com/mateoconlechuga/convimg/actions>`__ tab of the repo, selecting the most recent run, and downloading the version for your OS under "Artifacts". | ||
|
||
If you want to convert file names which follow specific patterns, you can use glob patterns. For example, to convert all png files in a directory, you can do something like this: | ||
|
||
.. code-block:: yaml | ||
images: | ||
- "*.png" | ||
.. note:: | ||
|
||
It is necessary for the pattern to be in quotes, even though that is not necessary for image names to be in quotes. | ||
|
||
Once you have completed your yaml, navigate to the directory with the sprites and the yaml in a terminal and run :code:`convimg`. If all goes well you should have a text file as specified in your yaml (In the example it is :file:`images.txt`) containing the converted sprites. It will look something like this: | ||
|
||
.. only:: html | ||
|
||
.. code-block:: txt | ||
image | 256 bytes | ||
"FFFFFFFF0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFF0000E6E6E6E6E6E6E6E60000FFFFFFFF0000E6E6E6E6E6E6E6E60000FFFF0000E6E60000E6E6E6E60000E6E600000000E6E60000E6E6E6E60000E6E600000000E6E60000E5E5E5E50000E6E600000000E6E60000E5E5E5E50000E6E600000000E5E5E5E5E5E5E5E5E5E5E5E500000000E5E5E5E5E5E5E5E5E5E5E5E500000000E5E5E5E500000000E5E5E5E500000000E5E5E5E500000000E5E5E5E50000FFFF0000E5E5E5E5E5E5E5E50000FFFFFFFF0000E5E5E5E5E5E5E5E50000FFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFF" | ||
.. only:: latex | ||
|
||
.. code-block:: txt | ||
image | 256 bytes | ||
"FFFFFFFF0000000000000000FFFFFFFFFFFFFFFF0000... (Data continues) | ||
You can then use the data in your programs by copying it into the source code or pasting it into a TI-BASIC IDE like `SourceCoder <https://www.cemetech.net/sc/>`__. | ||
|
||
For more documentation on convimg, check out the README `here <https://github.com/mateoconlechuga/convimg/blob/master/README.md>`__. For more info on glob patterns, look `here <https://en.wikipedia.org/wiki/Glob_(programming)>`__. |
This file contains 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 |
---|---|---|
@@ -0,0 +1,232 @@ | ||
Celtic 2 CSE Functions | ||
====================== | ||
|
||
Overview | ||
~~~~~~~~ | ||
These functions are the same as those included in Doors CSE 8 for the TI-84 Plus CSE, unless noted otherwise. Most documentation is from the `DCS Wiki <https://dcs.cemetech.net/index.php?title=Third-Party_BASIC_Libraries_(Color)>`__. | ||
|
||
Documentation | ||
~~~~~~~~~~~~~ | ||
|
||
.. function:: ReadLine: det(0); Str0 = variable name; Ans = line number | ||
|
||
Reads a line from a program or AppVar. If ``Ans`` (line number) equals 0, then Theta will be overwritten with the number of lines in the program being read, though it will still return the ``..NUMSTNG`` error, like the original Celtic 2 CSE. Otherwise, ``Ans`` refers to the line being read. | ||
|
||
.. warning:: | ||
If you attempt to read the line of an assembly program, there is a risk of a reset. If Celtic passes an invalid token to ``Str9``, it could cause a RAM clear. | ||
|
||
Parameters: | ||
* ``Str0``: Name of program to read from. | ||
* ``Ans``: Line number to read from, begins at 1. | ||
|
||
Returns: | ||
* ``Str9``: Contents of the line read. | ||
* ``Theta``: Number of lines if ``Ans`` was 0. | ||
|
||
Errors: | ||
* ``..NULLSTR`` if the line is empty. | ||
* ``..NT:EN:M`` if there is not enough memory to complete the action. | ||
|
||
------------ | ||
|
||
.. function:: ReplaceLine: det(1); Str0 = variable name; Ans = line number; Str9 = replacement | ||
|
||
Replaces (overwrites) a line in a program or AppVar. ``Ans`` refers to the line to replace. | ||
|
||
Parameters: | ||
* ``Str0``: Name of file to read from. | ||
* ``Ans``: Line number to replace, begins at 1. | ||
* ``Str9``: Contents to replace the line with. | ||
|
||
Returns: | ||
* ``Str9``: Intact if no error occured; otherwise, contains an error code. | ||
|
||
Errors: | ||
* ``..PGM:ARC`` if the file is archived. | ||
* ``..NT:EN:M`` if there is not enough memory to complete the action. | ||
|
||
------------ | ||
|
||
.. function:: InsertLine: det(2); Str0 = variable name; Ans = line number; Str9 = contents | ||
|
||
Inserts a line into a program or AppVar. ``Ans`` refers to the line number to write to. | ||
|
||
Parameters: | ||
* ``Str0``: Name of file to write to. | ||
* ``Ans``: Line number to write to, begins at 1. | ||
* ``Str9``: Material to insert into a program. The line that was occupied is shifted down one line and this string is inserted into the resulting location. | ||
|
||
Returns: | ||
* ``Str9``: Intact if no error occured; otherwise, contains an error code. | ||
|
||
Errors: | ||
* ``..PGM:ARC`` if the file is archived. | ||
* ``..NT:EN:M`` if there is not enough memory to complete the action. | ||
|
||
------------ | ||
|
||
.. function:: SpecialChars: det(3) | ||
|
||
Stores the ``->`` and ``"`` characters into ``Str9``. | ||
|
||
Returns: | ||
* ``Str9``: ``->`` and ``"``, respectively. you can use substrings to extract them. There are also 7 more characters in ``Str9``, which are junk. | ||
|
||
------------ | ||
|
||
.. function:: CreateVar: det(4); Str0 = variable name | ||
|
||
Create a program or AppVar given a name. | ||
|
||
Parameters: | ||
* ``Str0``: Name of program or AppVar to create. | ||
|
||
Alternative method for appvars: ``det(4, HEADER), Str0 = variable name`` | ||
* ``HEADER``: whether or not to include a header which allows `CEaShell <https://github.com/roccoloxprograms/shell>`__ to edit the appvar. This extra argument is optional. 1 to include the header, and 0 to not. | ||
|
||
Returns: | ||
* Creates the program or AppVar. | ||
|
||
Errors: | ||
* ``..P:IS:FN`` if the program already exists. | ||
|
||
------------ | ||
|
||
.. function:: ArcUnarcVar: det(5); Str0 = variable name | ||
|
||
Archive/unarchive a program or AppVar given a name. | ||
|
||
Parameters: | ||
* ``Str0``: Name of program or AppVar to move between Archive and RAM. | ||
|
||
Returns: | ||
* Moves a program or AppVar into RAM if it was in Archive, or into Archive if it was in RAM. | ||
|
||
------------ | ||
|
||
.. function:: DeleteVar: det(6); Str0 = variable name | ||
|
||
Delete a program variable or an AppVar given a name. | ||
|
||
Parameters: | ||
* ``Str0``: Name of program or AppVar to delete. | ||
|
||
Returns: | ||
* The indicated program or AppVar is deleted. | ||
|
||
------------ | ||
|
||
.. function:: DeleteLine: det(7); Str0 = variable name; Ans = line number | ||
|
||
Deletes a line from a program or AppVar. ``Ans`` is the line to delete. | ||
|
||
Parameters: | ||
* ``Str0``: Name of program or AppVar to delete from. | ||
* ``Ans``: Line number to delete from, begins at 1. | ||
|
||
Returns: | ||
* Deletes the specified line from the program or AppVar. | ||
|
||
------------ | ||
|
||
.. function:: VarStatus: det(8); Str0 = variable name | ||
|
||
Output a status string describing a program or AppVar's current state, including size, visibility, and more. | ||
|
||
Parameters: | ||
* ``Str0``: Name of program or AppVar to examine. | ||
|
||
Returns: | ||
* ``Str9``: Contains a 9 byte output code. | ||
* 1st character: ``A`` = Archived, ``R`` = RAM | ||
* 2nd character: ``V`` = Visible, ``H`` = Hidden | ||
* 3rd character: ``L`` = Locked, ``W`` = Writable | ||
* 4th character: ``_`` (Space character) | ||
* 5th - 9th character: Size, in bytes | ||
* Example: ``AVL 01337`` = Archived, visible, locked, 1337 bytes. | ||
|
||
------------ | ||
|
||
.. function:: BufSprite: det(9, width, x, y); Str9 = sprite data | ||
|
||
Draws indexed (palette-based) sprite onto the LCD and into the graph buffer. Copies the contents of the graph buffer under the sprite back into Str9, so that you can "erase" the sprite back to the original background. Good for moving player characters, cursors, and the like. Interacts politely with Pic variables and OS drawing commands like ``Line(``, ``Circle(``, ``Text(``, and so on. If you want to draw a lot of different sprites to the screen and won't need to erase them back to the background, then use BufSpriteSelect instead. | ||
|
||
Parameters: | ||
* ``Str9``: Sprite data as ASCII hex, one nibble per byte. The digits 1-F are valid colors (1 = blue, 2 = red, 3 = black, etc), while G will cause the routine to skip to the next line. 0 is normal transparency, and lets the background show through. H is a special kind of transparency that erases back to transparency instead of leaving the background color intact. | ||
* ``x``: x coordinate to the top-left corner of the sprite. | ||
* ``y``: y coordinate to the top-left corner of the sprite. | ||
* ``width``: Sprite width (height is computed). | ||
|
||
Returns: | ||
* ``Str9``: Same length as input, contains the previous contents of the graph buffer where the sprite was drawn. you can call ``det(9...)`` again without changing Str9 to effectively undo the first sprite draw. | ||
|
||
Errors: | ||
* ``..INVAL:S`` if the string contains invalid characters. | ||
|
||
------------ | ||
|
||
.. function:: BufSpriteSelect: det(10, width, x, y, start, length); Str9 = sprite data | ||
|
||
Draws indexed (palette-based) sprite onto the LCD and into the graph buffer. Good for drawing tilemaps, backgrounds, and other sprites that you won't want to individually erase. If you want to be able to erase the sprite drawn and restore the background, you should consider BufSprite instead. This routine takes an offset into Str9 and a sprite length as arguments, so that you can pack multiple sprites of different lengths into Str9. | ||
|
||
Parameters: | ||
* ``Str9``: Sprite data as ASCII hex, one nibble per byte. The digits 1-F are valid colors (1 = blue, 2 = red, 3 = black, etc), while G will cause the routine to skip to the next line. 0 is normal transparency, and lets the background show through. H is a special kind of transparency that erases back to transparency instead of leaving the background color intact. | ||
* ``x``: x coordinate to the top-left corner of the sprite. | ||
* ``y``: y coordinate to the top-left corner of the sprite. | ||
* ``width``: Sprite width (height is computed). | ||
* ``start``: Offset into ``Str9`` of the start of pixel data, begins at 0. | ||
* ``length``: Length of sprite data in characters. | ||
|
||
Returns: | ||
* Sprite drawn to LCD and stored to graph buffer. | ||
|
||
Errors: | ||
* ``..INVAL:S`` if the string contains invalid characters. | ||
|
||
------------ | ||
|
||
.. function:: ExecArcPrgm: det(11, function, temp_prog_number); Ans = program name | ||
|
||
Copies a program to the ``XTEMP`` program of the specified ``temp_prog_number``. ``temp_prog_number`` can only be 0 - 15. ``Ans`` is the name of the program to copy. ``function`` refers to the behavior of the ``ExecArcPrgm`` command, as seen in the table below: | ||
|
||
==== ================================================================ | ||
Code Function | ||
==== ================================================================ | ||
0 Copies the program in ``Ans`` to the ``XTEMP`` program specified. | ||
1 Deletes the ``XTEMP`` program with the specified number. | ||
2 Deletes all ``XTEMP`` programs. | ||
==== ================================================================ | ||
|
||
Parameters: | ||
* ``function``: The requested behavior of the function. Can be 0, 1, or 2. | ||
* ``temp_prog_number``: The number of the ``XTEMP`` program to create/delete. This must be within 0 - 15. | ||
* ``Ans``: Name of program to copy from. | ||
|
||
Returns: | ||
* Completes the specified function. | ||
|
||
Errors: | ||
* ``..NT:EN:M`` if there is not enough memory to complete the action. | ||
* ``..NT:EN:M`` if there is not enough memory to complete the action. (Only when creating an ``XTEMP`` program.) | ||
|
||
------------ | ||
|
||
.. function:: DispColor: det(12, fg_low, fg_high, bg_low, bg_high) | ||
|
||
Changes the foreground and background color for ``Output(``, ``Disp``, and ``Pause`` to arbitrary 16-bit colors, or disables this feature. Due to technical limitations, the foreground and background for ``Text()`` cannot be changed to arbitrary colors. To disable this mode, you should call ``det(12, 300)`` before exiting your program. | ||
|
||
Parameters: | ||
* ``fg_low``: low byte of foreground color. | ||
* ``fg_high``: high byte of foreground color. | ||
* ``bg_low``: low byte of background color. | ||
* ``bg_high``: high byte of background color. | ||
|
||
Alternative method: ``det(12, fg_os, bg_os)`` | ||
* ``fg_os``: Foreground color from TI-OS Colors menu, like RED or BLUE or NAVY. | ||
* ``bg_os``: Background color from TI-OS Colors menu, like RED or BLUE or NAVY. | ||
|
||
Colors: | ||
* A list of colors can be found `here <colors.html>`__. | ||
|
||
Returns: | ||
* See description. |
Oops, something went wrong.