I have been working on a project where I am recreating the character rendering from the colony sim dwarf fortress (and other old games) and I am trying to create code to re-render the screen fast enough that it would not be annoying to drag around to look somewhere else (the goal is 30 fps, but 5 is probably more achievable).
Explanation for what my custom block that does all of the rendering is doing, and what feeds into it:
My code takes in an image that is pink and white and splits each image 16 times horizontally and vertically, and then replaces the white with 16 different colors creating a massive list of costumes. I then have a block that takes in information about a location to place a character, the scale of the character, the color, and which character to draw out of the massive list of costumes. The block turns all of that information into a list containing a costume and the other rendering data, and puts it in a list of things to render, which are processed as fast as possible in a first in first out order. Finally, the information is taken out and then ran into this block which renders the character onto the screen.
Currently my code is capable of drawing a costume to the screen around 10,700 times every second at minimum, but that only allows for the whole screen to be refreshed 3 times per second, and that is without any gameplay code added which would slow it down more.
Here is what is contained within the block:
Which goes to a position, if this is the first time the code is ran, set the scale, and don't do that again, switches to the costume it is provided, and then stamps it onto the stage.
Any help with optimization, or suggestions will be appreciated.