zet23t / td2play

A followup library for the TinyScreen+

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TinyDuino 2 Play Lib

This is my 2nd library for the TinyDuino that is specifically targeting the TinyScreen+ which is a much more potent processor with more RAM and processing power.

Patreon page

I have a dedicated Patreon page with the stuff I do for the Tiny Arcade platform: https://www.patreon.com/zet23t

I am posting regular updates there for free.

Project state

I am still working on this library (as of January 2018) in my spare free time (which I don't have much of anyway).

The code reflects this: Bad structure, naming conventions not followed, shortcuts taken, incomplete features, broken features that used to work in certain modes but are broken due to lack of testing and so on.

Projects of mine using this library:

Project structure

  • ./srclib: The library files (headers) to be included in the arduino files
  • ./arduino: The arduino projects to test with
  • ./simulator: A simple simulator that enables compilation on PC for testing
  • ./screenshots: A collection of screenshots I'm making over the course of development
  • ./tools: Tools that may be used during development
  • ./pagebufferscript: A scripting language for TD environment - concept only so far
  • ./external: Other libraries I depend on

For more information, please read the readme files in the respective directories.

Requirements

  • The simulator depends on GLFW3 which is crossplatform
  • Codeblocks project files are provided to compile the simulator and projects on windows - this could be adapted quite easily however
  • The image converter is written in HTML/JavaScript and allows converting images to C code quite easily
  • Other scripts and tools use Lua in combination with the gd library. You'd need to install a Lua interpreter together with the required libraries in order to run these tools

Feature list

  • (stable) Rendering via command buffer list, which is less memory consuming than offscreen buffering
  • (stable) Color depth support for 8bit and 16bit coloring
  • (stable) Fixed point math library
  • (stable) Textures (must have power of two sizes, can be non-square)
  • (stable/not all modes) Textures with transparency mask
  • (experimental/not all modes) blend modes for sprite drawings
  • (work in progress) Tilemap rendering
  • (work in progress) Tiled .tmx import script
  • (stable) Javascript image conversion tool
  • (stable) Lua based asset transformation pipeline (it's very hacky)

Regarding tests

There are a few tests around the math libraries that can be compiled and run quite easily (no fancy frameworks needed, just a bunch of asserts that crash the test if the outcome is wrong).

Next to that there are some basic testing projects that demonstrate one or two functionalities that can be compiled and run via simulator or tiny screen. Sadly I don't know how to automate testing the functionalities in a better way yet.

Regarding code quality

I deem this project's code quality as low by my own standards:

  • Naming of files is inconsistent
  • Naming of classes is inconsistent
  • No meaningful namespacing
  • Bad architecture / organization

Here are my excuses:

  • I'm really new to C++
  • I'm quite new to Arduino & Embedded programming
  • The Arduino IDE (compiler) doesn't allow subdirectories in a project to be used. This makes organization difficult.
  • I have very little time to work out things, let alone denting out previously made decissions.

Please share your thoughts of concern how to improve this.

About

A followup library for the TinyScreen+

License:MIT License


Languages

Language:C++ 97.3%Language:Lua 1.4%Language:HTML 0.6%Language:Objective-C 0.5%Language:Python 0.1%Language:C 0.0%Language:CSS 0.0%Language:Shell 0.0%Language:Batchfile 0.0%