diff options
author | Yuta Doi <yuta-d@witz-inc.co.jp> | 2018-06-29 09:31:46 +0900 |
---|---|---|
committer | Yuta Doi <yuta-d@witz-inc.co.jp> | 2018-07-09 10:04:53 +0900 |
commit | dd72b1c91895058d14bd13c3aa9a50bd75f633b6 (patch) | |
tree | cc15ad1a3c7078bdb8f6cec08ff1b5b5c4e497d7 /src/db | |
parent | cf05c2b5c92b9a79635aa2277a9d55449e14fab6 (diff) |
Add configuration file for each area sizes
Add areas.db which has each area sizes.
less-than-0 values refer to (MAX + 1 - $VALUE)
and MAX is either screen width or height.
layers.json had each area sizes until now,
so removed the sizes from it.
Change-Id: I5cf283581daaca41e2b9e3ee6e947478bff1189c
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/areas.db | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/db/areas.db b/src/db/areas.db new file mode 100644 index 0000000..6c79bbf --- /dev/null +++ b/src/db/areas.db @@ -0,0 +1,85 @@ +{ + "areas": [ + { + "name": "fullscreen", + "rect": { + "x": 0, + "y": 0, + "w": -1, + "h": -1 + } + }, + { + "name": "normal.full", + "rect": { + "x": 0, + "y": 218, + "w": -1, + "h": -433 + } + }, + { + "name": "split.main", + "rect": { + "x": 0, + "y": 218, + "w": -1, + "h": 744 + } + }, + { + "name": "split.sub", + "rect": { + "x": 0, + "y": 962, + "w": -1, + "h": 744 + } + }, + { + "name": "software_keyboard", + "rect": { + "x": 0, + "y": 962, + "w": -1, + "h": 744 + } + }, + { + "name": "restriction.normal", + "rect": { + "x": 0, + "y": 218, + "w": -1, + "h": -433 + } + }, + { + "name": "restriction.split.main", + "rect": { + "x": 0, + "y": 218, + "w": -1, + "h": 744 + } + }, + { + "name": "restriction.split.sub", + "rect": { + "x": 0, + "y": 962, + "w": -1, + "h": 744 + } + }, + { + "name": "on_screen", + "rect": { + "x": 0, + "y": 218, + "w": -1, + "h": -433 + } + } + ] +} |