summaryrefslogtreecommitdiff
path: root/frontends/calculator/CEdev/examples/gfx_clipping
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_clipping
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_clipping')
-rw-r--r--frontends/calculator/CEdev/examples/gfx_clipping/autotester.json52
-rw-r--r--frontends/calculator/CEdev/examples/gfx_clipping/makefile15
-rw-r--r--frontends/calculator/CEdev/examples/gfx_clipping/readme.md10
-rw-r--r--frontends/calculator/CEdev/examples/gfx_clipping/screenshot.gifbin94716 -> 0 bytes
-rw-r--r--frontends/calculator/CEdev/examples/gfx_clipping/src/main.c85
5 files changed, 0 insertions, 162 deletions
diff --git a/frontends/calculator/CEdev/examples/gfx_clipping/autotester.json b/frontends/calculator/CEdev/examples/gfx_clipping/autotester.json
deleted file mode 100644
index a43dad7..0000000
--- a/frontends/calculator/CEdev/examples/gfx_clipping/autotester.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "rom": "84pce_515.rom",
- "transfer_files": [
- "bin/DEMO.8xp"
- ],
- "target": {
- "name": "DEMO",
- "isASM": true
- },
- "sequence": [
- "action|launch",
- "delay|300",
- "hash|1",
- "key|enter",
- "delay|300",
- "hash|2",
- "key|right",
- "key|left",
- "delay|300",
- "hash|3",
- "key|enter",
- "delay|300",
- "hashWait|4"
- ],
- "hashes": {
- "1": {
- "description": "Check text scaling",
- "start": "vram_start",
- "size": "vram_8_size",
- "expected_CRCs": [ "BCD2C22B" ]
- },
- "2": {
- "description": "Check text clipping",
- "start": "vram_start",
- "size": "vram_8_size",
- "expected_CRCs": [ "BCD2C22B" ]
- },
- "3": {
- "description": "Check clipped region movement and text clipping",
- "start": "vram_start",
- "size": "vram_8_size",
- "expected_CRCs": [ "BE2F6B1A" ]
- },
- "4": {
- "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_clipping/makefile b/frontends/calculator/CEdev/examples/gfx_clipping/makefile
deleted file mode 100644
index d3deba8..0000000
--- a/frontends/calculator/CEdev/examples/gfx_clipping/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_clipping/readme.md b/frontends/calculator/CEdev/examples/gfx_clipping/readme.md
deleted file mode 100644
index 819dd6d..0000000
--- a/frontends/calculator/CEdev/examples/gfx_clipping/readme.md
+++ /dev/null
@@ -1,10 +0,0 @@
-### GraphX Clipping Demo
-
-This example demonstrates alternating the clipping region and using clipped text properly.
-
-![Screenshot](screenshot.gif)
-
----
-
-This demo is a part of the C SDK Toolchain for use on the CE.
-
diff --git a/frontends/calculator/CEdev/examples/gfx_clipping/screenshot.gif b/frontends/calculator/CEdev/examples/gfx_clipping/screenshot.gif
deleted file mode 100644
index 1c1e5e3..0000000
--- a/frontends/calculator/CEdev/examples/gfx_clipping/screenshot.gif
+++ /dev/null
Binary files differ
diff --git a/frontends/calculator/CEdev/examples/gfx_clipping/src/main.c b/frontends/calculator/CEdev/examples/gfx_clipping/src/main.c
deleted file mode 100644
index 69308b1..0000000
--- a/frontends/calculator/CEdev/examples/gfx_clipping/src/main.c
+++ /dev/null
@@ -1,85 +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
-
-void main(void) {
- uint8_t key = 24;
-
- /* Starting text posistion */
- int x = (LCD_WIDTH / 2) - 20;
- int y = (LCD_HEIGHT / 2) - 5;
-
- int box_stride = 1;
- int box_scale = 20;
-
- /* Initialize the 8bpp graphics */
- gfx_Begin();
- gfx_FillScreen(gfx_black);
-
- /* Setup the colors */
- gfx_SetColor(gfx_white);
- gfx_SetTextFGColor(gfx_red);
-
- /* Set the transparent text background color */
- gfx_SetTextBGColor(TRANSPARENT_COLOR);
- gfx_SetTextTransparentColor(TRANSPARENT_COLOR);
-
- /* Print some scaled font */
- gfx_SetTextScale(2, 2);
- gfx_PrintStringXY("This text is SCALED!!", 15, 10);
-
- /* Wait for a key before continuing */
- while (!os_GetCSC());
-
- /* Configure the font to normal size, clipped, and monospaced */
- gfx_SetTextScale(1, 1);
- gfx_SetTextConfig(gfx_text_clip);
- gfx_SetMonospaceFont(FONT_WIDTH);
-
- /* Graphics routines draw to the back buffer */
- gfx_SetDrawBuffer();
-
- /* Run until the [ENTER] key is pressed */
- do {
- /* Check if any keys are pressed */
- if (key == sk_Left) { x--; }
- if (key == sk_Right) { x++; }
- if (key == sk_Down) { y++; }
- if (key == sk_Up) { y--; }
- if (key) {
- gfx_SetClipRegion((LCD_WIDTH/2) - box_scale, (LCD_HEIGHT/2) - box_scale, (LCD_WIDTH/2) + box_scale, (LCD_HEIGHT/2) + box_scale);
-
- gfx_FillScreen(gfx_black);
- gfx_PrintStringXY("FUN WITH CLIPPING", x, y);
-
- /* Draw a rectangle on the edges of the clipping region so we can see it */
- gfx_Rectangle_NoClip((LCD_WIDTH/2) - box_scale, (LCD_HEIGHT/2) - box_scale, box_scale * 2, box_scale * 2);
-
- /* Change the clipping region */
- box_scale += box_stride;
-
- /* Check if we should increase or decrease the clip region */
- if (box_scale > 100 || box_scale < 10) {
- box_stride = -box_stride;
- }
-
- /* Move the graphics so the user can see it */
- gfx_SwapDraw();
- }
- } while ((key = os_GetCSC()) != sk_Enter);
-
- /* Usual cleanup */
- gfx_End();
-}