summaryrefslogtreecommitdiff
path: root/src/hardware_data/graphics/uze_atmega644_mode7.lua
blob: 9258f8f51dbe98c2162ac6027502593dfa5b63d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
-- Information:                             --
-- Video Mode 7 - Video Player (official)   --
--                                          --

-- Sites:
-- http://uzebox.org/wiki/index.php?title=Video_Modes
-- https://github.com/Uzebox/uzebox
-- https://raw.githubusercontent.com/Uzebox/uzebox/master/kernel/videoMode7/videoMode7.def.h
-- https://raw.githubusercontent.com/Uzebox/uzebox/master/kernel/videoMode7/videoMode7.s

return {
  screen  = {
    width    = 170,
    height   = 114,
    vsync    =  30,
    origin   = {
      x = 0,
      y = 0,
    },
    -- Total of unique texels, pixels and vertices on VRAM --
    pixels   = 24480,
    texels   =     1,
    vertices = false,
  },
  colours = {
    total       = 256,
    limit       = false,
    transparent = {
      sprite = false,
      tile   = false,
    },
    palettes    = false,
  },
  meshes  = false,
  shaders = {
    api          = false,
    version      = false,
    fragment     = false,
    vectex       = false,
    geometry     = false,
    tessellation = false,
  },
  physic  = false,
  sprites = false,
  tiles   = {
    layers = {
      {
        -- Total tiles and pixels on VRAM --
        onVRAM         = {
          screenSections = {
            all = {
              Xtiles =     1,
              Ytiles =     1,
              tiles  =     1,
              pixels = 24480,
            },
          },
          tiles          = 'screenSections',
          pixels         = 'screenSections',
        },
        -- Total tiles and pixels on screen (is same as VRAM) --
        onScreen       = 'vram',
        -- Total of unique tiles on VRAM --
        unique         = 1,
        screenSections = {
          mirror = false,
          main   = {
            optional    = false,
            moveSection = false,
            {
              startSection = {
                x = 'startVRAM',
                y = 'startVRAM',
              },
              endSection   = {
                x = 'endVRAM',
                y = 'endVRAM',
              },
              size         = {
                -- Tile size in pixels --
                width  = 170,
                height = 114,
              },
              transform    = {
                move   = false,
                rotate = false,
                scale  = false,
                shear  = false,
                affine = false,
              },
            },
          },
        },
      },
    },
  },
}