Skip to content

Commit

Permalink
huge update, logic rework start, autotracking settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Br00ty committed Oct 18, 2023
1 parent 7f15bbd commit f4ce65e
Show file tree
Hide file tree
Showing 14 changed files with 397 additions and 108 deletions.
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"Lua.diagnostics.globals": [
"Tracker",
"ScriptHost",
"onSetReply",
"onClear",
"Archipelago",
"onItem",
"onLocation",
"onScout",
"onBounce",
"PopVersion",
"AutoTracker"
],
"Lua.diagnostics.disable": [
"lowercase-global"
]
}
Binary file added images/logic_settings/expert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logic_settings/hard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logic_settings/lunatic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logic_settings/normal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logic_settings/obscure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions items/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,42 @@
"img": "images/items/gameover.png",
"codes": "gameover"
},
// LOGIC
{
"name": "Logic Levels",
"type": "progressive",
"allow_disabled": false,
"initial_stage_idx": 0,
"loop": true,
"stages": [
{
"img": "images/logic_settings/normal.png",
"codes": "logic,normal",
"inherit_codes": true
},
{
"img": "images/logic_settings/hard.png",
"codes": "logic,hard",
"inherit_codes": true
},
{
"img": "images/logic_settings/expert.png",
"codes": "logic,expert",
"inherit_codes": true
},
{
"img": "images/logic_settings/lunatic.png",
"codes": "logic,lunatic",
"inherit_codes": true
}
]
},
{
"name": "Obscure Knowledge",
"type": "toggle",
"img": "images/logic_settings/obscure.png",
"codes": "obscure"
},
// EXAMPLE CODE
{
"name": "Progressive",
Expand Down
37 changes: 32 additions & 5 deletions layouts/broadcast.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,45 @@
//sets the layout for the broadcast view
{
{
"tracker_broadcast": {
"type": "array",
"orientation": "vertical",
"margin": "0,0",
"content": [
{
"type": "array",
"orientation": "horizontal",
"orientation": "vertical",
"margin": "0,0",
"content": [
{
"type": "layout",
"key": "shared_item_grid"
"type": "itemgrid",
"item_margin": "5, 7",
"item_size": 60,
"h_alignment": "left",
"rows": [
[
"breaker",
"slide"
],
[
"sunsetter",
"strikebreak"
],
[
"greaves",
"heliacal"
],
[
"cutter",
"solar"
],
[
"ascendant",
"cling"
],
[
"smallkey",
"majorkey"
]
]
}
]
}
Expand Down
17 changes: 16 additions & 1 deletion layouts/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"content": [
{
"type": "array",
"orientation": "horizontal",
"orientation": "vertical",
"margin": "0,0",
"content": [
{
Expand Down Expand Up @@ -40,6 +40,21 @@
"majorkey"
]
]
},
{
"type": "itemgrid",
//"margin": "0,40",
"item_margin": "0,5",
"item_size": "140, 46",
"h_alignment": "left",
"rows": [
[
"normal"
],
[
"obscure"
]
]
}
]
}
Expand Down
Loading

0 comments on commit f4ce65e

Please sign in to comment.