summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-06 15:37:47 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-06 15:37:47 -0300
commit833fdcdecabc3317558c46274cf4ef7a9854f54e (patch)
tree47ecb25601de8784f71cddf8208baa99522ba467
parentc2d8051bf65adaa2d58fca30fe9fc495e79f0726 (diff)
Add ym7101 mode
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ym7101.lua125
1 files changed, 125 insertions, 0 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ym7101.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ym7101.lua
new file mode 100644
index 0000000..04b8299
--- /dev/null
+++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ym7101.lua
@@ -0,0 +1,125 @@
+return {
+ screen = {
+ default = {
+ width = 320,
+ height = 224,
+ fps = 29.97,
+ origin = {
+ x = 0,
+ y = 0,
+ },
+ },
+ pal = {
+ width = 320,
+ height = 240,
+ fps = 25,
+ origin = {
+ x = 0,
+ y = 0,
+ },
+ },
+ },
+ colors = {
+ '9bpp',
+ transparent = 'colorKey',
+ },
+ mesh = false,
+ api = false,
+ shader = {
+ false,
+ fragment = false,
+ },
+ physic = false,
+ sprite = {
+ true,
+ colors = '4bpp',
+ limits = {
+ true,
+ screen = 80,
+ line = 20,
+ },
+ rotate = false,
+ scale = false,
+ shear = false,
+ affine = false,
+ size = {
+ small = {
+ width = 8,
+ height = 8,
+ },
+ default = {
+ width = 16,
+ height = 16,
+ },
+ big = {
+ width = 24,
+ height = 24,
+ },
+ huge = {
+ width = 32,
+ height = 32,
+ },
+ },
+ },
+ tile = {
+ layer = {
+ a = {
+ colors = '4bpp',
+ specifyColors = false,
+ moveIndividual = 'w',
+ rotate = true,
+ scale = true,
+ shear = true,
+ affine = true,
+ size = {
+ default = {
+ width = 64,
+ height = 64,
+ },
+ bigW = {
+ width = 128,
+ height = 32,
+ },
+ },
+ },
+ b = {
+ colors = '4bpp',
+ specifyColors = false,
+ moveIndividual = false,
+ rotate = true,
+ scale = true,
+ shear = true,
+ affine = true,
+ size = {
+ default = {
+ width = 64,
+ height = 64,
+ },
+ bigW = {
+ width = 128,
+ height = 32,
+ },
+ },
+ },
+ w = {
+ colors = '4bpp',
+ specifyColors = false,
+ moveIndividual = 'a',
+ rotate = false,
+ scale = false,
+ shear = false,
+ affine = false,
+ size = {
+ default = {
+ width = 32,
+ height = 32,
+ },
+ bigW = {
+ width = 64,
+ height = 32,
+ },
+ },
+ },
+ },
+ },
+}