mirror of
https://github.com/CrispyPin/ovr-utils.git
synced 2024-11-10 02:40:25 +01:00
clean up keyboard
This commit is contained in:
parent
be9ceeef9c
commit
8725763124
7 changed files with 34 additions and 15 deletions
|
@ -3,6 +3,7 @@
|
||||||
[node name="KeyRow" type="HBoxContainer"]
|
[node name="KeyRow" type="HBoxContainer"]
|
||||||
margin_right = 230.0
|
margin_right = 230.0
|
||||||
margin_bottom = 128.0
|
margin_bottom = 128.0
|
||||||
|
alignment = 1
|
||||||
__meta__ = {
|
__meta__ = {
|
||||||
"_edit_use_anchors_": false
|
"_edit_use_anchors_": false
|
||||||
}
|
}
|
||||||
|
|
BIN
src/overlay_resources/keyboard/key_normal.stylebox
Normal file
BIN
src/overlay_resources/keyboard/key_normal.stylebox
Normal file
Binary file not shown.
BIN
src/overlay_resources/keyboard/key_pressed.stylebox
Normal file
BIN
src/overlay_resources/keyboard/key_pressed.stylebox
Normal file
Binary file not shown.
Binary file not shown.
|
@ -7,11 +7,15 @@ const OVERLAY_PROPERTIES = {
|
||||||
export var key_size := 120
|
export var key_size := 120
|
||||||
export var key_row : PackedScene
|
export var key_row : PackedScene
|
||||||
export var key_button : PackedScene
|
export var key_button : PackedScene
|
||||||
|
export var row_container_path : NodePath
|
||||||
|
|
||||||
|
var row_container
|
||||||
|
|
||||||
var keymap := {}
|
var keymap := {}
|
||||||
var toggle_keys := []
|
var toggle_keys := []
|
||||||
|
|
||||||
func _ready():
|
func _ready():
|
||||||
|
row_container = get_node(row_container_path)
|
||||||
load_keys("res://overlay_resources/keyboard/layouts/layout_se.json")
|
load_keys("res://overlay_resources/keyboard/layouts/layout_se.json")
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +31,7 @@ func load_keys(fp: String):
|
||||||
func apply_keys():
|
func apply_keys():
|
||||||
for row in keymap.rows:
|
for row in keymap.rows:
|
||||||
var row_box = key_row.instance()
|
var row_box = key_row.instance()
|
||||||
$PanelContainer/CenterContainer/VBoxContainer.add_child(row_box)
|
row_container.add_child(row_box)
|
||||||
for key in row.keys:
|
for key in row.keys:
|
||||||
var btn = key_button.instance()
|
var btn = key_button.instance()
|
||||||
|
|
||||||
|
@ -59,11 +63,11 @@ func apply_keys():
|
||||||
row_box.add_child(gapbox)
|
row_box.add_child(gapbox)
|
||||||
|
|
||||||
# vertical gaps
|
# vertical gaps
|
||||||
if row.has("gap"):
|
if row.has("gap") and row.gap > 0:
|
||||||
var gapbox = Control.new()
|
var gapbox = Control.new()
|
||||||
gapbox.rect_min_size.y = row.gap * key_size
|
gapbox.rect_min_size.y = row.gap * key_size
|
||||||
gapbox.name = "Gap"
|
gapbox.name = "Gap"
|
||||||
$PanelContainer/CenterContainer/VBoxContainer.add_child(gapbox)
|
row_container.add_child(gapbox)
|
||||||
|
|
||||||
|
|
||||||
func key_toggled(state, code):
|
func key_toggled(state, code):
|
||||||
|
|
|
@ -56,8 +56,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"keycode": "F12",
|
"keycode": "F12",
|
||||||
"display": "F12",
|
"display": "F12"
|
||||||
"gap": 0.5
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,25 +15,40 @@ __meta__ = {
|
||||||
}
|
}
|
||||||
key_row = ExtResource( 3 )
|
key_row = ExtResource( 3 )
|
||||||
key_button = ExtResource( 4 )
|
key_button = ExtResource( 4 )
|
||||||
|
row_container_path = NodePath("CenterContainer/PanelContainer/RowContainer")
|
||||||
|
|
||||||
[node name="PanelContainer" type="PanelContainer" parent="."]
|
[node name="CenterContainer" type="CenterContainer" parent="."]
|
||||||
margin_right = 1024.0
|
anchor_right = 1.0
|
||||||
margin_bottom = 16.0
|
anchor_bottom = 1.0
|
||||||
|
margin_left = 8.0
|
||||||
|
margin_top = 8.0
|
||||||
|
margin_right = 8.0
|
||||||
|
margin_bottom = 8.0
|
||||||
size_flags_horizontal = 0
|
size_flags_horizontal = 0
|
||||||
size_flags_vertical = 0
|
size_flags_vertical = 0
|
||||||
__meta__ = {
|
__meta__ = {
|
||||||
"_edit_use_anchors_": false
|
"_edit_use_anchors_": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[node name="CenterContainer" type="CenterContainer" parent="PanelContainer"]
|
[node name="PanelContainer" type="PanelContainer" parent="CenterContainer"]
|
||||||
|
margin_left = 1016.0
|
||||||
|
margin_top = 1016.0
|
||||||
|
margin_right = 1032.0
|
||||||
|
margin_bottom = 1032.0
|
||||||
|
size_flags_horizontal = 0
|
||||||
|
size_flags_vertical = 0
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_use_anchors_": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[node name="RowContainer" type="VBoxContainer" parent="CenterContainer/PanelContainer"]
|
||||||
margin_left = 8.0
|
margin_left = 8.0
|
||||||
margin_top = 8.0
|
margin_top = 8.0
|
||||||
margin_right = 1016.0
|
margin_right = 8.0
|
||||||
margin_bottom = 8.0
|
margin_bottom = 8.0
|
||||||
|
|
||||||
[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer/CenterContainer"]
|
|
||||||
margin_left = 504.0
|
|
||||||
margin_right = 504.0
|
|
||||||
size_flags_horizontal = 0
|
size_flags_horizontal = 0
|
||||||
size_flags_vertical = 0
|
size_flags_vertical = 0
|
||||||
alignment = 1
|
alignment = 1
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_use_anchors_": false
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue