mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
Added more standart devices from 8/16Bit era (#450)
This commit is contained in:
parent
1612346319
commit
45be4ee6b7
|
@ -13,16 +13,53 @@ class Template:
|
||||||
|
|
||||||
var aspect_ratio := 1.0
|
var aspect_ratio := 1.0
|
||||||
var templates := [
|
var templates := [
|
||||||
|
# Basic
|
||||||
Template.new(Vector2(16, 16)),
|
Template.new(Vector2(16, 16)),
|
||||||
Template.new(Vector2(32, 32)),
|
Template.new(Vector2(32, 32)),
|
||||||
Template.new(Vector2(64, 64)),
|
Template.new(Vector2(64, 64)),
|
||||||
Template.new(Vector2(128, 128)),
|
Template.new(Vector2(128, 128)),
|
||||||
|
|
||||||
|
# Nintendo
|
||||||
Template.new(Vector2(160, 144), "GB"),
|
Template.new(Vector2(160, 144), "GB"),
|
||||||
Template.new(Vector2(240, 160), "GBA"),
|
Template.new(Vector2(240, 160), "GBA"),
|
||||||
Template.new(Vector2(256, 224), "NES (NTSC)"),
|
Template.new(Vector2(256, 224), "NES (NTSC)"),
|
||||||
Template.new(Vector2(256, 240), "NES (PAL)"),
|
Template.new(Vector2(256, 240), "NES (PAL)"),
|
||||||
Template.new(Vector2(512, 448), "SNES (NTSC)"),
|
Template.new(Vector2(512, 448), "SNES (NTSC)"),
|
||||||
Template.new(Vector2(512, 480), "SNES (PAL)"),
|
Template.new(Vector2(512, 480), "SNES (PAL)"),
|
||||||
|
Template.new(Vector2(646, 486), "N64 (NTSC)"),
|
||||||
|
Template.new(Vector2(786, 576), "N64 (PAL)"),
|
||||||
|
|
||||||
|
# Sega
|
||||||
|
Template.new(Vector2(256, 192), "SMS (NTSC)"),
|
||||||
|
Template.new(Vector2(256, 224), "SMS (PAL)"),
|
||||||
|
Template.new(Vector2(160, 144), "GG"),
|
||||||
|
Template.new(Vector2(320, 224), "MD (NTSC)"),
|
||||||
|
Template.new(Vector2(320, 240), "MD (PAL)"),
|
||||||
|
|
||||||
|
# NEC
|
||||||
|
Template.new(Vector2(256, 239), "PC Engine"), #256×224 to 512×242 (mostly 256×239)
|
||||||
|
|
||||||
|
# DOS
|
||||||
|
Template.new(Vector2(320, 200), "DOS EGA"),
|
||||||
|
Template.new(Vector2(320, 200), "DOS VGA"),
|
||||||
|
Template.new(Vector2(620, 480), "DOS SVGA"),
|
||||||
|
Template.new(Vector2(640, 200), "DOS CGA (2-Colour)"),
|
||||||
|
Template.new(Vector2(320, 200), "DOS CGA (4-Colour)"),
|
||||||
|
Template.new(Vector2(160, 240), "DOS CGA (Composite)"),
|
||||||
|
Template.new(Vector2(160, 240), "Tandy"),
|
||||||
|
|
||||||
|
# Commodore
|
||||||
|
Template.new(Vector2(320, 200), "Amiga OCS LowRes (NTSC)"),
|
||||||
|
Template.new(Vector2(320, 256), "Amiga OCS LowRes (PAL)"),
|
||||||
|
Template.new(Vector2(640, 200), "Amiga OCS HiRes (NTSC)"),
|
||||||
|
Template.new(Vector2(640, 256), "Amiga OCS HiRes (PAL)"),
|
||||||
|
Template.new(Vector2(1280, 200), "Amiga ECS Super-HiRes (NTSC)"),
|
||||||
|
Template.new(Vector2(1280, 256), "Amiga ECS SuperHiRes (PAL)"),
|
||||||
|
Template.new(Vector2(640, 480), "Amiga ECS Multiscan"),
|
||||||
|
Template.new(Vector2(320, 200), "C64"),
|
||||||
|
|
||||||
|
# Sinclair
|
||||||
|
Template.new(Vector2(256, 192), "ZX Spectrum"),
|
||||||
]
|
]
|
||||||
|
|
||||||
onready var templates_options = find_node("TemplatesOptions")
|
onready var templates_options = find_node("TemplatesOptions")
|
||||||
|
|
Loading…
Reference in a new issue