From 61207011c466bc9cd7d4f275d6befabee1b75ae7 Mon Sep 17 00:00:00 2001 From: "coadde [Márcio Alexandre Silva Delgado]" Date: Sat, 3 Dec 2016 19:31:00 -0300 Subject: Keep the code more KISS - part 3 --- .../scripts/gpu/mali400.lua | 61 --------- .../scripts/gpu/ppu_rp2c02.lua | 57 -------- .../scripts/gpu/s-ppux_5c7x-0x.lua | 143 --------------------- 3 files changed, 261 deletions(-) delete mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua delete mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua delete mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/s-ppux_5c7x-0x.lua (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu') diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua deleted file mode 100644 index 5570d82..0000000 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua +++ /dev/null @@ -1,61 +0,0 @@ -return { - screen = { - default = { - width = 1920, - height = 1080, - fps = 30 - origin = { - x = 0, - y = 0, - }, - }, - big = { - width = 3840, - height = 2160, - fps = 30 - origin = { - x = 0, - y = 0, - }, - }, - }, - api = 'opengl_es_2_0' - shader = { - true, - fragment = true, - }, - physic = true, - sprite = { - true, - layers = many, - limits = { - false, - screen = false, - line = false, - }, - size = { - default = { - width = 64, - height = 64, - }, - big = { - width = 128, - height = 128, - }, - }, - }, - tile = { - true, - layers = many, - size = { - default = { - width = 128, - height = 128, - }, - big = { - width = 256, - height = 256, - }, - }, - }, -} diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua deleted file mode 100644 index d60214d..0000000 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua +++ /dev/null @@ -1,57 +0,0 @@ -return { - screen = { - default = { - width = 256, - height = 224, - fps = 29.97 - origin = { - x = 0, - y = -8, - }, - }, - pal = { - width = 256, - height = 240, - fps = 25 - origin = { - x = 0, - y = 0, - }, - }, - }, - api = false, - shader = { - false, - fragment = false, - }, - physic = false, - sprite = { - true, - layers = 4, - limits = { - true, - screen = 64, - line = 8, - }, - size = { - default = { - width = 8, - height = 8, - }, - bigH = { - width = 8, - height = 16, - }, - }, - }, - tile = { - true, - layers = 4, - size = { - default = { - width = 16, - height = 16, - }, - }, - }, -} diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/s-ppux_5c7x-0x.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/s-ppux_5c7x-0x.lua deleted file mode 100644 index 928ee80..0000000 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/s-ppux_5c7x-0x.lua +++ /dev/null @@ -1,143 +0,0 @@ -return { - screen = { - default = { - width = 256, - height = 224, - fps = 29.97 - origin = { - x = 0, - y = 0, - }, - }, - pal = { - width = 256, - height = 240, - fps = 25 - origin = { - x = 0, - y = 0, - }, - }, - bigNTSC = { - width = 512, - height = 448, - fps = 29.97 - origin = { - x = 0, - y = 0, - }, - }, - bigPAL = { - width = 512, - height = 480, - fps = 25 - origin = { - x = 0, - y = 0, - }, - }, - }, - api = false, - shader = { - false, - fragment = false, - }, - physic = false, - sprite = { - true, - layers = 4, - limits = { - true, - screen = 128, - line = 34, - }, - size = { - small = { - width = 8, - height = 8, - }, - default = { - width = 16, - height = 16, - }, - defaultW = { - width = 16, - height = 8, - }, - defaultH = { - width = 8, - height = 16, - }, - big = { - width = 32, - height = 32, - }, - bigW = { - width = 32, - height = 16, - }, - bigH = { - width = 16, - height = 32, - }, - huge = { - width = 64, - height = 64, - }, - hugeW = { - width = 64, - height = 32, - }, - hugeH = { - width = 32, - height = 64, - }, - }, - }, - tile = { - true, - layers = 4, - size = { - tiny = { - width = 8, - height = 8, - }, - small = { - width = 16, - height = 16, - }, - smallW = { - width = 16, - height = 8, - }, - smallH = { - width = 8, - height = 16, - }, - default = { - width = 32, - height = 32, - }, - defaultW = { - width = 32, - height = 16, - }, - defaultH = { - width = 16, - height = 32, - }, - big = { - width = 64, - height = 64, - }, - bigW = { - width = 64, - height = 32, - }, - bigH = { - width = 32, - height = 64, - }, - }, - }, -} -- cgit v1.2.3-54-g00ecf