summaryrefslogtreecommitdiff
path: root/frontends/calculator/CEdev/examples/gfx_char
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2019-04-24 11:03:58 -0400
committerAndrew Opalach <andrew@akon.city> 2019-04-24 11:03:58 -0400
commit4d9d7b5600ab615d68f671df5f8bc6c9fe4a5a09 (patch)
treefe63c3525b2e14f12b4492f87d3e875c4dcec0e4 /frontends/calculator/CEdev/examples/gfx_char
parent6152e965868f3e010c79d91ce3da0036758fda4d (diff)
downloadcetris-4d9d7b5600ab615d68f671df5f8bc6c9fe4a5a09.tar.gz
cetris-4d9d7b5600ab615d68f671df5f8bc6c9fe4a5a09.tar.bz2
cetris-4d9d7b5600ab615d68f671df5f8bc6c9fe4a5a09.zip
add pause to curses, remove unfinished calculator frontend
Diffstat (limited to 'frontends/calculator/CEdev/examples/gfx_char')
-rw-r--r--frontends/calculator/CEdev/examples/gfx_char/autotester.json30
-rw-r--r--frontends/calculator/CEdev/examples/gfx_char/makefile15
-rw-r--r--frontends/calculator/CEdev/examples/gfx_char/readme.md10
-rw-r--r--frontends/calculator/CEdev/examples/gfx_char/screenshot.pngbin967 -> 0 bytes
-rw-r--r--frontends/calculator/CEdev/examples/gfx_char/src/main.c52
5 files changed, 0 insertions, 107 deletions
diff --git a/frontends/calculator/CEdev/examples/gfx_char/autotester.json b/frontends/calculator/CEdev/examples/gfx_char/autotester.json
deleted file mode 100644
index fabde19..0000000
--- a/frontends/calculator/CEdev/examples/gfx_char/autotester.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "rom": "84pce_515.rom",
- "transfer_files": [
- "bin/DEMO.8xp"
- ],
- "target": {
- "name": "DEMO",
- "isASM": true
- },
- "sequence": [
- "action|launch",
- "hashWait|1",
- "key|enter",
- "hashWait|2"
- ],
- "hashes": {
- "1": {
- "description": "Test flipped text on black background",
- "start": "vram_start",
- "size": "vram_8_size",
- "expected_CRCs": [ "198A8841" ]
- },
- "2": {
- "description": "Back to the home screen (exit check)",
- "start": "vram_start",
- "size": "vram_16_size",
- "expected_CRCs": [ "FFAF89BA", "101734A5", "9DA19F44" ]
- }
- }
-}
diff --git a/frontends/calculator/CEdev/examples/gfx_char/makefile b/frontends/calculator/CEdev/examples/gfx_char/makefile
deleted file mode 100644
index d3deba8..0000000
--- a/frontends/calculator/CEdev/examples/gfx_char/makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# ----------------------------
-# Set NAME to the program name
-# Set ICON to the png icon file name
-# Set DESCRIPTION to display within a compatible shell
-# Set COMPRESSED to "YES" to create a compressed program
-# ----------------------------
-
-NAME ?= DEMO
-COMPRESSED ?= NO
-ICON ?= iconc.png
-DESCRIPTION ?= "C SDK Demo"
-
-# ----------------------------
-
-include $(CEDEV)/include/.makefile
diff --git a/frontends/calculator/CEdev/examples/gfx_char/readme.md b/frontends/calculator/CEdev/examples/gfx_char/readme.md
deleted file mode 100644
index 10ba641..0000000
--- a/frontends/calculator/CEdev/examples/gfx_char/readme.md
+++ /dev/null
@@ -1,10 +0,0 @@
-### GraphX Character Demo
-
-A simple demo showing an upside down string.
-
-![Screenshot](screenshot.png)
-
----
-
-This demo is a part of the C SDK Toolchain for use on the CE.
-
diff --git a/frontends/calculator/CEdev/examples/gfx_char/screenshot.png b/frontends/calculator/CEdev/examples/gfx_char/screenshot.png
deleted file mode 100644
index 6eefa42..0000000
--- a/frontends/calculator/CEdev/examples/gfx_char/screenshot.png
+++ /dev/null
Binary files differ
diff --git a/frontends/calculator/CEdev/examples/gfx_char/src/main.c b/frontends/calculator/CEdev/examples/gfx_char/src/main.c
deleted file mode 100644
index a7f108e..0000000
--- a/frontends/calculator/CEdev/examples/gfx_char/src/main.c
+++ /dev/null
@@ -1,52 +0,0 @@
-#include <stdbool.h>
-#include <stddef.h>
-#include <stdint.h>
-#include <tice.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <graphx.h>
-
-/* Use some random color as the transparent one */
-#define TRANSPARENT_COLOR 10
-#define FONT_WIDTH 8
-#define FONT_HEIGHT 8
-
-/* Function prototypes */
-void printu(char *str, int x, int y);
-
-const char *my_str = "!!DEPPILF si txet sihT";
-
-void main(void) {
- /* Initialize the 8bpp graphics */
- gfx_Begin();
- gfx_FillScreen(gfx_black);
-
- /* Setup the colors */
- gfx_SetTextFGColor(gfx_white);
-
- /* Set the transparent text background color */
- gfx_SetTextBGColor(TRANSPARENT_COLOR);
- gfx_SetTextTransparentColor(TRANSPARENT_COLOR);
- gfx_SetMonospaceFont(FONT_WIDTH);
-
- /* Print some upside down text */
- printu(my_str, (LCD_WIDTH - gfx_GetStringWidth(my_str)) / 2, (LCD_HEIGHT - FONT_HEIGHT) / 2);
-
- /* Wait for key */
- while (!os_GetCSC());
-
- /* Finish the graphics */
- gfx_End();
-}
-
-void printu(char *str, int x, int y) {
- gfx_TempSprite(my_char, 8, 8);
-
- while (*str) {
- gfx_TransparentSprite(gfx_RotateSpriteHalf(gfx_GetSpriteChar(*str), my_char), x, y);
- x += gfx_GetCharWidth(*str++);
- }
-}