diff --git a/data/json/ui/activity.json b/data/json/ui/activity.json new file mode 100644 index 0000000000000..a1263f58341e3 --- /dev/null +++ b/data/json/ui/activity.json @@ -0,0 +1,10 @@ +[ + { + "id": "activity_desc", + "type": "widget", + "label": "Activity", + "style": "text", + "var": "activity_text", + "//": "Uses display::activity_text_color" + } +] diff --git a/data/json/ui/body_temp.json b/data/json/ui/body_temp.json new file mode 100644 index 0000000000000..c6c4387325f38 --- /dev/null +++ b/data/json/ui/body_temp.json @@ -0,0 +1,10 @@ +[ + { + "id": "body_temp_desc", + "type": "widget", + "label": "Heat", + "style": "text", + "var": "body_temp_text", + "//": "Uses display::temp_text_color" + } +] diff --git a/data/json/ui/date.json b/data/json/ui/date.json new file mode 100644 index 0000000000000..537318655ffb8 --- /dev/null +++ b/data/json/ui/date.json @@ -0,0 +1,9 @@ +[ + { + "id": "date_desc", + "type": "widget", + "label": "Date", + "style": "text", + "var": "date_text" + } +] diff --git a/data/json/ui/encumbrance.json b/data/json/ui/encumbrance.json new file mode 100644 index 0000000000000..4c3d30c3362e7 --- /dev/null +++ b/data/json/ui/encumbrance.json @@ -0,0 +1,73 @@ +[ + { + "id": "encumbrance_graph", + "type": "widget", + "style": "graph", + "var_max": 50, + "width": 5, + "symbols": "-vX", + "fill": "bucket" + }, + { + "id": "encumbrance_head_graph", + "type": "widget", + "label": "e:H", + "var": "bp_encumb", + "bodypart": "head", + "copy-from": "encumbrance_graph" + }, + { + "id": "encumbrance_torso_graph", + "type": "widget", + "label": "e:T", + "var": "bp_encumb", + "bodypart": "torso", + "copy-from": "encumbrance_graph" + }, + { + "id": "encumbrance_left_arm_graph", + "type": "widget", + "label": "e:LA", + "var": "bp_encumb", + "bodypart": "arm_l", + "copy-from": "encumbrance_graph" + }, + { + "id": "encumbrance_right_arm_graph", + "type": "widget", + "label": "e:RA", + "var": "bp_encumb", + "bodypart": "arm_r", + "copy-from": "encumbrance_graph" + }, + { + "id": "encumbrance_left_leg_graph", + "type": "widget", + "label": "e:LL", + "var": "bp_encumb", + "bodypart": "leg_l", + "copy-from": "encumbrance_graph" + }, + { + "id": "encumbrance_right_leg_graph", + "type": "widget", + "label": "e:RL", + "var": "bp_encumb", + "bodypart": "leg_r", + "copy-from": "encumbrance_graph" + }, + { + "id": "encumbrance_top_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "encumbrance_left_arm_graph", "encumbrance_head_graph", "encumbrance_right_arm_graph" ] + }, + { + "id": "encumbrance_bottom_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "encumbrance_left_leg_graph", "encumbrance_torso_graph", "encumbrance_right_leg_graph" ] + } +] diff --git a/data/json/ui/env_temp.json b/data/json/ui/env_temp.json new file mode 100644 index 0000000000000..6d294ef5f3865 --- /dev/null +++ b/data/json/ui/env_temp.json @@ -0,0 +1,10 @@ +[ + { + "id": "env_temp_desc", + "type": "widget", + "label": "Temperature", + "style": "text", + "var": "env_temp_text", + "//": "Uses display::get_temp" + } +] diff --git a/data/json/ui/fatigue.json b/data/json/ui/fatigue.json new file mode 100644 index 0000000000000..f88ca299ae6a8 --- /dev/null +++ b/data/json/ui/fatigue.json @@ -0,0 +1,29 @@ +[ + { + "id": "fatigue_num", + "type": "widget", + "label": "Fatigue", + "var": "fatigue", + "style": "number" + }, + { + "id": "fatigue_graph", + "type": "widget", + "label": "Fatig", + "var": "fatigue", + "var_max": 1000, + "style": "graph", + "fill": "bucket", + "width": 5, + "symbols": "-fF", + "colors": [ "c_green", "c_yellow", "c_red" ] + }, + { + "id": "fatigue_desc", + "type": "widget", + "label": "Rest", + "style": "text", + "var": "fatigue_text", + "//": "Uses display::fatigue_text_color" + } +] diff --git a/data/json/ui/focus.json b/data/json/ui/focus.json new file mode 100644 index 0000000000000..0243dfe66c798 --- /dev/null +++ b/data/json/ui/focus.json @@ -0,0 +1,9 @@ +[ + { + "id": "focus_num", + "type": "widget", + "label": "Focus", + "var": "focus", + "style": "number" + } +] diff --git a/data/json/ui/hp.json b/data/json/ui/hp.json new file mode 100644 index 0000000000000..536a8bb598800 --- /dev/null +++ b/data/json/ui/hp.json @@ -0,0 +1,182 @@ +[ + { + "id": "hitpoint_graph", + "type": "widget", + "style": "graph", + "width": 5, + "symbols": ".\\|", + "fill": "bucket", + "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] + }, + { + "id": "hitpoint_num", + "type": "widget", + "style": "number", + "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] + }, + { + "id": "hp_head_graph", + "type": "widget", + "label": "HEAD", + "var": "bp_hp", + "bodypart": "head", + "copy-from": "hitpoint_graph" + }, + { + "id": "hp_torso_graph", + "type": "widget", + "label": "TORSO", + "var": "bp_hp", + "bodypart": "torso", + "copy-from": "hitpoint_graph" + }, + { + "id": "hp_left_arm_graph", + "type": "widget", + "label": "L ARM", + "var": "bp_hp", + "bodypart": "arm_l", + "copy-from": "hitpoint_graph" + }, + { + "id": "hp_right_arm_graph", + "type": "widget", + "label": "R ARM", + "var": "bp_hp", + "bodypart": "arm_r", + "copy-from": "hitpoint_graph" + }, + { + "id": "hp_left_leg_graph", + "type": "widget", + "label": "L LEG", + "var": "bp_hp", + "bodypart": "leg_l", + "copy-from": "hitpoint_graph" + }, + { + "id": "hp_right_leg_graph", + "type": "widget", + "label": "R LEG", + "var": "bp_hp", + "bodypart": "leg_r", + "copy-from": "hitpoint_graph" + }, + { + "id": "hp_head_num", + "type": "widget", + "label": "HEAD", + "var": "bp_hp", + "bodypart": "head", + "copy-from": "hitpoint_num" + }, + { + "id": "hp_torso_num", + "type": "widget", + "label": "TORSO", + "var": "bp_hp", + "bodypart": "torso", + "copy-from": "hitpoint_num" + }, + { + "id": "hp_left_arm_num", + "type": "widget", + "label": "L ARM", + "var": "bp_hp", + "bodypart": "arm_l", + "copy-from": "hitpoint_num" + }, + { + "id": "hp_right_arm_num", + "type": "widget", + "label": "R ARM", + "var": "bp_hp", + "bodypart": "arm_r", + "copy-from": "hitpoint_num" + }, + { + "id": "hp_left_leg_num", + "type": "widget", + "label": "L LEG", + "var": "bp_hp", + "bodypart": "leg_l", + "copy-from": "hitpoint_num" + }, + { + "id": "hp_right_leg_num", + "type": "widget", + "label": "R LEG", + "var": "bp_hp", + "bodypart": "leg_r", + "copy-from": "hitpoint_num" + }, + { + "id": "hitpoint_graphs_top_layout", + "type": "widget", + "style": "layout", + "label": "HP Top", + "arrange": "columns", + "widgets": [ "hp_left_arm_graph", "hp_head_graph", "hp_right_arm_graph" ] + }, + { + "id": "hitpoint_graphs_bottom_layout", + "type": "widget", + "style": "layout", + "label": "HP Bottom", + "arrange": "columns", + "widgets": [ "hp_left_leg_graph", "hp_torso_graph", "hp_right_leg_graph" ] + }, + { + "id": "hitpoints_all_graphs_layout", + "type": "widget", + "style": "layout", + "label": "Hit Points", + "arrange": "rows", + "widgets": [ "hitpoints_top_layout", "hitpoints_bottom_layout" ] + }, + { + "id": "hitpoints_head_torso_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "hp_head_graph", "hp_torso_graph" ] + }, + { + "id": "hitpoints_arms_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "hp_left_arm_graph", "hp_right_arm_graph" ] + }, + { + "id": "hitpoints_legs_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "hp_left_leg_graph", "hp_right_leg_graph" ] + }, + { + "id": "hitpoint_nums_top_layout", + "type": "widget", + "label": "HP Nums Top", + "style": "layout", + "arrange": "columns", + "widgets": [ "hp_left_arm_num", "hp_head_num", "hp_right_arm_num" ] + }, + { + "id": "hitpoint_nums_bottom_layout", + "type": "widget", + "label": "HP Nums Bottom", + "style": "layout", + "arrange": "columns", + "widgets": [ "hp_left_leg_num", "hp_torso_num", "hp_right_leg_num" ] + }, + { + "id": "hitpoints_all_narrow_graphs_layout", + "type": "widget", + "style": "layout", + "label": "Hit Points", + "arrange": "rows", + "widgets": [ "hitpoints_head_torso_layout", "hitpoints_arms_layout", "hitpoints_legs_layout" ] + } +] diff --git a/data/json/ui/hunger.json b/data/json/ui/hunger.json new file mode 100644 index 0000000000000..a7663b6591837 --- /dev/null +++ b/data/json/ui/hunger.json @@ -0,0 +1,10 @@ +[ + { + "id": "hunger_desc", + "type": "widget", + "label": "Hunger", + "style": "text", + "var": "hunger_text", + "//": "Uses display::hunger_text_color" + } +] diff --git a/data/json/ui/layout.json b/data/json/ui/layout.json new file mode 100644 index 0000000000000..1732468e402be --- /dev/null +++ b/data/json/ui/layout.json @@ -0,0 +1,162 @@ +[ + { + "id": "stamina_fatigue_layout", + "type": "widget", + "style": "layout", + "label": "Stamina/Fatigue", + "arrange": "columns", + "widgets": [ "stamina_graph", "fatigue_graph" ] + }, + { + "id": "stats_narrow_layout", + "type": "widget", + "style": "layout", + "label": "Stats", + "arrange": "rows", + "widgets": [ "mood_focus_layout", "move_speed_layout", "str_dex_layout", "int_per_layout" ] + }, + { + "id": "speed_focus_layout", + "type": "widget", + "style": "layout", + "label": "Speed/Focus", + "arrange": "columns", + "widgets": [ "speed_num", "focus_num" ] + }, + { + "id": "weapon_style_layout", + "type": "widget", + "style": "layout", + "label": "Weapon/Style", + "arrange": "rows", + "widgets": [ "wielding_desc", "style_desc" ] + }, + { + "id": "needs_desc_layout", + "type": "widget", + "style": "layout", + "label": "Needs", + "arrange": "rows", + "widgets": [ "hunger_desc", "thirst_desc", "fatigue_desc", "pain_desc", "body_temp_desc" ] + }, + { + "id": "stamina_speed_layout", + "type": "widget", + "style": "layout", + "label": "Stamina/Speed", + "arrange": "columns", + "widgets": [ "stamina_graph_classic", "speed_num" ] + }, + { + "id": "stamina_activity_weary_layout", + "type": "widget", + "style": "layout", + "label": "Stamina/Weariness", + "arrange": "rows", + "widgets": [ "stamina_graph", "activity_desc", "weariness_desc", "weary_malus_desc" ] + }, + { + "id": "mood_focus_layout", + "type": "widget", + "style": "layout", + "label": "Mood/Focus", + "arrange": "columns", + "widgets": [ "mood_desc", "focus_num" ] + }, + { + "id": "stamina_fatigue_focus_layout", + "type": "widget", + "style": "layout", + "label": "Stamina/Fatigue/Focus", + "arrange": "columns", + "widgets": [ "stamina_graph_classic", "fatigue_graph", "focus_num" ] + }, + { + "id": "move_speed_layout", + "type": "widget", + "style": "layout", + "label": "Move/Speed", + "arrange": "columns", + "widgets": [ "move_num", "speed_num" ] + }, + { + "id": "move_cost_mode_layout", + "type": "widget", + "style": "layout", + "label": "Move Cost/Mode", + "arrange": "columns", + "widgets": [ "move_cost_num", "move_mode_desc" ] + }, + { + "id": "move_count_cost_layout", + "type": "widget", + "style": "layout", + "label": "Move count/cost", + "arrange": "columns", + "widgets": [ "move_num", "move_cost_num" ] + }, + { + "id": "move_mode_speed_layout", + "type": "widget", + "style": "layout", + "label": "Move mode/speed", + "arrange": "columns", + "widgets": [ "move_mode_desc", "speed_num" ] + }, + { + "id": "movement_layout", + "type": "widget", + "style": "layout", + "label": "Movement", + "arrange": "rows", + "widgets": [ "move_count_cost_layout", "move_mode_speed_layout" ] + }, + { + "id": "safe_sound_layout", + "type": "widget", + "style": "layout", + "label": "Safe/Sound", + "arrange": "columns", + "widgets": [ "safe_mode_desc", "sound_num" ] + }, + { + "id": "sound_fatigue_focus_layout", + "type": "widget", + "style": "layout", + "label": "Sound/Fatigue/Focus", + "arrange": "columns", + "widgets": [ "sound_num", "fatigue_graph", "focus_num" ] + }, + { + "id": "stamina_speed_move_layout", + "type": "widget", + "style": "layout", + "label": "Stamina/Speed/Move", + "arrange": "columns", + "widgets": [ "stamina_graph_classic", "speed_num", "move_num" ] + }, + { + "id": "sound_focus_layout", + "type": "widget", + "style": "layout", + "label": "Sound/Focus", + "arrange": "columns", + "widgets": [ "sound_num", "focus_num" ] + }, + { + "id": "light_moon_wind_temp_layout", + "type": "widget", + "label": "Environment", + "style": "layout", + "arrange": "rows", + "widgets": [ "lighting_desc", "moon_phase_desc", "wind_desc", "env_temp_desc" ] + }, + { + "id": "place_date_time_layout", + "type": "widget", + "label": "Place/Date/Time", + "style": "layout", + "arrange": "rows", + "widgets": [ "place_desc", "date_desc", "time_desc" ] + } +] diff --git a/data/json/ui/lighting.json b/data/json/ui/lighting.json new file mode 100644 index 0000000000000..d0d7e53cc8501 --- /dev/null +++ b/data/json/ui/lighting.json @@ -0,0 +1,9 @@ +[ + { + "id": "lighting_desc", + "type": "widget", + "label": "Lighting", + "style": "text", + "var": "lighting_text" + } +] diff --git a/data/json/ui/ma_style.json b/data/json/ui/ma_style.json new file mode 100644 index 0000000000000..c465859987e12 --- /dev/null +++ b/data/json/ui/ma_style.json @@ -0,0 +1,9 @@ +[ + { + "id": "style_desc", + "type": "widget", + "label": "Style", + "style": "text", + "var": "style_text" + } +] diff --git a/data/json/ui/moon.json b/data/json/ui/moon.json new file mode 100644 index 0000000000000..970f5bef7d5c5 --- /dev/null +++ b/data/json/ui/moon.json @@ -0,0 +1,10 @@ +[ + { + "id": "moon_phase_desc", + "type": "widget", + "label": "Moon", + "style": "text", + "var": "moon_phase_text", + "//": "Uses display::get_moon" + } +] diff --git a/data/json/ui/morale.json b/data/json/ui/morale.json new file mode 100644 index 0000000000000..3236ded70441f --- /dev/null +++ b/data/json/ui/morale.json @@ -0,0 +1,17 @@ +[ + { + "id": "morale_num", + "type": "widget", + "label": "Morale", + "var": "morale_level", + "style": "number" + }, + { + "id": "mood_desc", + "type": "widget", + "label": "Mood", + "style": "text", + "var": "mood_text", + "//": "Uses display::morale_face_color" + } +] diff --git a/data/json/ui/move_cost.json b/data/json/ui/move_cost.json deleted file mode 100644 index 1179acd140fb4..0000000000000 --- a/data/json/ui/move_cost.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "id": "move_cost_num", - "type": "widget", - "label": "Move cost", - "style": "number", - "var": "move_cost", - "//": "Modified base move cost, from Character::run_cost" - } -] diff --git a/data/json/ui/move_mode.json b/data/json/ui/movement.json similarity index 58% rename from data/json/ui/move_mode.json rename to data/json/ui/movement.json index 1ad01de913338..83033125b02f0 100644 --- a/data/json/ui/move_mode.json +++ b/data/json/ui/movement.json @@ -14,5 +14,20 @@ "style": "text", "var": "move_mode_letter", "//": "Single-letter W/R/C/P, from display::move_mode_letter_color" + }, + { + "id": "move_num", + "type": "widget", + "label": "Move count", + "var": "move", + "style": "number" + }, + { + "id": "move_cost_num", + "type": "widget", + "label": "Move cost", + "style": "number", + "var": "move_cost", + "//": "Modified base move cost, from Character::run_cost" } ] diff --git a/data/json/ui/pain.json b/data/json/ui/pain.json new file mode 100644 index 0000000000000..0fe0127b5ae81 --- /dev/null +++ b/data/json/ui/pain.json @@ -0,0 +1,17 @@ +[ + { + "id": "pain_num", + "type": "widget", + "label": "Pain", + "var": "pain", + "style": "number" + }, + { + "id": "pain_desc", + "type": "widget", + "label": "Pain", + "style": "text", + "var": "pain_text", + "//": "Uses display::pain_text_color" + } +] diff --git a/data/json/ui/place.json b/data/json/ui/place.json new file mode 100644 index 0000000000000..aed9f17bca235 --- /dev/null +++ b/data/json/ui/place.json @@ -0,0 +1,9 @@ +[ + { + "id": "place_desc", + "type": "widget", + "label": "Place", + "style": "text", + "var": "place_text" + } +] diff --git a/data/json/ui/power.json b/data/json/ui/power.json new file mode 100644 index 0000000000000..8b4940c150ba9 --- /dev/null +++ b/data/json/ui/power.json @@ -0,0 +1,9 @@ +[ + { + "id": "power_desc", + "type": "widget", + "label": "Bionic Power", + "style": "text", + "var": "power_text" + } +] diff --git a/data/json/ui/radiation.json b/data/json/ui/radiation.json new file mode 100644 index 0000000000000..44788c3efa1a6 --- /dev/null +++ b/data/json/ui/radiation.json @@ -0,0 +1,10 @@ +[ + { + "id": "rad_badge_desc", + "type": "widget", + "label": "Radiation", + "style": "text", + "var": "rad_badge_text", + "//": "Shows worn/wielded radiation badge color from display::rad_badge_text_color" + } +] diff --git a/data/json/ui/safe_mode.json b/data/json/ui/safe_mode.json new file mode 100644 index 0000000000000..0e44c24e43c02 --- /dev/null +++ b/data/json/ui/safe_mode.json @@ -0,0 +1,9 @@ +[ + { + "id": "safe_mode_desc", + "type": "widget", + "label": "Safe", + "style": "text", + "var": "safe_mode_text" + } +] diff --git a/data/json/ui/sidebar.json b/data/json/ui/sidebar.json index bd64bb4b060fc..4fd225b470cdc 100644 --- a/data/json/ui/sidebar.json +++ b/data/json/ui/sidebar.json @@ -1,881 +1,4 @@ [ - { - "id": "hitpoint_graph", - "type": "widget", - "style": "graph", - "width": 5, - "symbols": ".\\|", - "fill": "bucket", - "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] - }, - { - "id": "hitpoint_num", - "type": "widget", - "style": "number", - "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] - }, - { - "id": "encumbrance_graph", - "type": "widget", - "style": "graph", - "var_max": 50, - "width": 5, - "symbols": "-vX", - "fill": "bucket" - }, - { - "id": "warmth_num", - "type": "widget", - "style": "number", - "var_max": 10000, - "colors": [ "c_blue", "c_cyan", "c_light_blue", "c_green", "c_yellow", "c_light_red", "c_red" ] - }, - { - "id": "wetness_num", - "type": "widget", - "style": "number", - "var_max": 100 - }, - { - "id": "wetness_graph", - "type": "widget", - "style": "graph", - "var_max": 50, - "width": 5, - "symbols": ".oO", - "fill": "bucket", - "colors": [ "c_blue", "c_light_blue", "c_cyan", "c_white" ] - }, - { - "id": "hp_head_graph", - "type": "widget", - "label": "HEAD", - "var": "bp_hp", - "bodypart": "head", - "copy-from": "hitpoint_graph" - }, - { - "id": "hp_torso_graph", - "type": "widget", - "label": "TORSO", - "var": "bp_hp", - "bodypart": "torso", - "copy-from": "hitpoint_graph" - }, - { - "id": "hp_left_arm_graph", - "type": "widget", - "label": "L ARM", - "var": "bp_hp", - "bodypart": "arm_l", - "copy-from": "hitpoint_graph" - }, - { - "id": "hp_right_arm_graph", - "type": "widget", - "label": "R ARM", - "var": "bp_hp", - "bodypart": "arm_r", - "copy-from": "hitpoint_graph" - }, - { - "id": "hp_left_leg_graph", - "type": "widget", - "label": "L LEG", - "var": "bp_hp", - "bodypart": "leg_l", - "copy-from": "hitpoint_graph" - }, - { - "id": "hp_right_leg_graph", - "type": "widget", - "label": "R LEG", - "var": "bp_hp", - "bodypart": "leg_r", - "copy-from": "hitpoint_graph" - }, - { - "id": "hp_head_num", - "type": "widget", - "label": "HEAD", - "var": "bp_hp", - "bodypart": "head", - "copy-from": "hitpoint_num" - }, - { - "id": "hp_torso_num", - "type": "widget", - "label": "TORSO", - "var": "bp_hp", - "bodypart": "torso", - "copy-from": "hitpoint_num" - }, - { - "id": "hp_left_arm_num", - "type": "widget", - "label": "L ARM", - "var": "bp_hp", - "bodypart": "arm_l", - "copy-from": "hitpoint_num" - }, - { - "id": "hp_right_arm_num", - "type": "widget", - "label": "R ARM", - "var": "bp_hp", - "bodypart": "arm_r", - "copy-from": "hitpoint_num" - }, - { - "id": "hp_left_leg_num", - "type": "widget", - "label": "L LEG", - "var": "bp_hp", - "bodypart": "leg_l", - "copy-from": "hitpoint_num" - }, - { - "id": "hp_right_leg_num", - "type": "widget", - "label": "R LEG", - "var": "bp_hp", - "bodypart": "leg_r", - "copy-from": "hitpoint_num" - }, - { - "id": "warmth_head_num", - "type": "widget", - "label": "w:H", - "var": "bp_warmth", - "bodypart": "head", - "copy-from": "warmth_num" - }, - { - "id": "warmth_torso_num", - "type": "widget", - "label": "w:T", - "var": "bp_warmth", - "bodypart": "torso", - "copy-from": "warmth_num" - }, - { - "id": "warmth_left_arm_num", - "type": "widget", - "label": "w:LA", - "var": "bp_warmth", - "bodypart": "arm_l", - "copy-from": "warmth_num" - }, - { - "id": "warmth_right_arm_num", - "type": "widget", - "label": "w:RA", - "var": "bp_warmth", - "bodypart": "arm_r", - "copy-from": "warmth_num" - }, - { - "id": "warmth_left_leg_num", - "type": "widget", - "label": "w:LL", - "var": "bp_warmth", - "bodypart": "leg_l", - "copy-from": "warmth_num" - }, - { - "id": "warmth_right_leg_num", - "type": "widget", - "label": "w:RL", - "var": "bp_warmth", - "bodypart": "leg_r", - "copy-from": "warmth_num" - }, - { - "id": "wetness_head_num", - "type": "widget", - "label": "wet:HE", - "var": "bp_wetness", - "bodypart": "head", - "copy-from": "wetness_num" - }, - { - "id": "wetness_torso_num", - "type": "widget", - "label": "wet:TO", - "var": "bp_wetness", - "bodypart": "torso", - "copy-from": "wetness_num" - }, - { - "id": "wetness_left_arm_num", - "type": "widget", - "label": "wet:LA", - "var": "bp_wetness", - "bodypart": "arm_l", - "copy-from": "wetness_num" - }, - { - "id": "wetness_right_arm_num", - "type": "widget", - "label": "wet:RA", - "var": "bp_wetness", - "bodypart": "arm_r", - "copy-from": "wetness_num" - }, - { - "id": "wetness_left_leg_num", - "type": "widget", - "label": "wet:LL", - "var": "bp_wetness", - "bodypart": "leg_l", - "copy-from": "wetness_num" - }, - { - "id": "wetness_right_leg_num", - "type": "widget", - "label": "wet:RL", - "var": "bp_wetness", - "bodypart": "leg_r", - "copy-from": "wetness_num" - }, - { - "id": "encumbrance_head_graph", - "type": "widget", - "label": "e:H", - "var": "bp_encumb", - "bodypart": "head", - "copy-from": "encumbrance_graph" - }, - { - "id": "encumbrance_torso_graph", - "type": "widget", - "label": "e:T", - "var": "bp_encumb", - "bodypart": "torso", - "copy-from": "encumbrance_graph" - }, - { - "id": "encumbrance_left_arm_graph", - "type": "widget", - "label": "e:LA", - "var": "bp_encumb", - "bodypart": "arm_l", - "copy-from": "encumbrance_graph" - }, - { - "id": "encumbrance_right_arm_graph", - "type": "widget", - "label": "e:RA", - "var": "bp_encumb", - "bodypart": "arm_r", - "copy-from": "encumbrance_graph" - }, - { - "id": "encumbrance_left_leg_graph", - "type": "widget", - "label": "e:LL", - "var": "bp_encumb", - "bodypart": "leg_l", - "copy-from": "encumbrance_graph" - }, - { - "id": "encumbrance_right_leg_graph", - "type": "widget", - "label": "e:RL", - "var": "bp_encumb", - "bodypart": "leg_r", - "copy-from": "encumbrance_graph" - }, - { - "id": "stamina_graph_classic", - "type": "widget", - "label": "Stam", - "var": "stamina", - "style": "graph", - "width": 5, - "symbols": ".\\|", - "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] - }, - { - "id": "stamina_graph", - "type": "widget", - "label": "Stamina", - "var": "stamina", - "style": "graph", - "width": 10, - "symbols": ".\\|", - "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] - }, - { - "id": "focus_num", - "type": "widget", - "label": "Focus", - "var": "focus", - "style": "number" - }, - { - "id": "speed_num", - "type": "widget", - "label": "Speed", - "var": "speed", - "style": "number" - }, - { - "id": "stamina_num", - "type": "widget", - "label": "Stamina", - "var": "stamina", - "style": "number" - }, - { - "id": "fatigue_num", - "type": "widget", - "label": "Fatigue", - "var": "fatigue", - "style": "number" - }, - { - "id": "fatigue_graph", - "type": "widget", - "label": "Fatig", - "var": "fatigue", - "var_max": 1000, - "style": "graph", - "fill": "bucket", - "width": 5, - "symbols": "-fF", - "colors": [ "c_green", "c_yellow", "c_red" ] - }, - { - "id": "weariness_num", - "type": "widget", - "label": "Weariness", - "var": "weariness_level", - "style": "number" - }, - { - "id": "weariness_graph", - "type": "widget", - "label": "Weariness", - "var": "weariness_level", - "var_max": 10, - "style": "graph", - "fill": "pool", - "width": 5, - "symbols": "-wW", - "colors": [ "c_white", "c_yellow", "c_red" ] - }, - { - "id": "sound_num", - "type": "widget", - "label": "Sound", - "var": "sound", - "style": "number" - }, - { - "id": "morale_num", - "type": "widget", - "label": "Morale", - "var": "morale_level", - "style": "number" - }, - { - "id": "pain_num", - "type": "widget", - "label": "Pain", - "var": "pain", - "style": "number" - }, - { - "id": "str_num", - "type": "widget", - "label": "Str", - "var": "stat_str", - "style": "number" - }, - { - "id": "dex_num", - "type": "widget", - "label": "Dex", - "var": "stat_dex", - "style": "number" - }, - { - "id": "int_num", - "type": "widget", - "label": "Int", - "var": "stat_int", - "style": "number" - }, - { - "id": "per_num", - "type": "widget", - "label": "Per", - "var": "stat_per", - "style": "number" - }, - { - "id": "hitpoint_graphs_top_layout", - "type": "widget", - "style": "layout", - "label": "HP Top", - "arrange": "columns", - "widgets": [ "hp_left_arm_graph", "hp_head_graph", "hp_right_arm_graph" ] - }, - { - "id": "hitpoint_graphs_bottom_layout", - "type": "widget", - "style": "layout", - "label": "HP Bottom", - "arrange": "columns", - "widgets": [ "hp_left_leg_graph", "hp_torso_graph", "hp_right_leg_graph" ] - }, - { - "id": "hitpoints_all_graphs_layout", - "type": "widget", - "style": "layout", - "label": "Hit Points", - "arrange": "rows", - "widgets": [ "hitpoints_top_layout", "hitpoints_bottom_layout" ] - }, - { - "id": "hitpoints_head_torso_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "hp_head_graph", "hp_torso_graph" ] - }, - { - "id": "hitpoints_arms_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "hp_left_arm_graph", "hp_right_arm_graph" ] - }, - { - "id": "hitpoints_legs_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "hp_left_leg_graph", "hp_right_leg_graph" ] - }, - { - "id": "hitpoint_nums_top_layout", - "type": "widget", - "label": "HP Nums Top", - "style": "layout", - "arrange": "columns", - "widgets": [ "hp_left_arm_num", "hp_head_num", "hp_right_arm_num" ] - }, - { - "id": "hitpoint_nums_bottom_layout", - "type": "widget", - "label": "HP Nums Bottom", - "style": "layout", - "arrange": "columns", - "widgets": [ "hp_left_leg_num", "hp_torso_num", "hp_right_leg_num" ] - }, - { - "id": "hitpoints_all_narrow_graphs_layout", - "type": "widget", - "style": "layout", - "label": "Hit Points", - "arrange": "rows", - "widgets": [ "hitpoints_head_torso_layout", "hitpoints_arms_layout", "hitpoints_legs_layout" ] - }, - { - "id": "encumbrance_top_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "encumbrance_left_arm_graph", "encumbrance_head_graph", "encumbrance_right_arm_graph" ] - }, - { - "id": "encumbrance_bottom_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "encumbrance_left_leg_graph", "encumbrance_torso_graph", "encumbrance_right_leg_graph" ] - }, - { - "id": "warmth_top_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "warmth_left_arm_num", "warmth_head_num", "warmth_right_arm_num" ] - }, - { - "id": "warmth_bottom_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "warmth_left_leg_num", "warmth_torso_num", "warmth_right_leg_num" ] - }, - { - "id": "stamina_fatigue_layout", - "type": "widget", - "style": "layout", - "label": "Stamina/Fatigue", - "arrange": "columns", - "widgets": [ "stamina_graph", "fatigue_graph" ] - }, - { - "id": "wetness_top_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "wetness_left_arm_num", "wetness_head_num", "wetness_right_arm_num" ] - }, - { - "id": "wetness_bottom_layout", - "type": "widget", - "style": "layout", - "arrange": "columns", - "widgets": [ "wetness_left_leg_num", "wetness_torso_num", "wetness_right_leg_num" ] - }, - { - "id": "speed_focus_layout", - "type": "widget", - "style": "layout", - "label": "Speed/Focus", - "arrange": "columns", - "widgets": [ "speed_num", "focus_num" ] - }, - { - "id": "weapon_style_layout", - "type": "widget", - "style": "layout", - "label": "Weapon/Style", - "arrange": "rows", - "widgets": [ "wielding_desc", "style_desc" ] - }, - { - "id": "needs_desc_layout", - "type": "widget", - "style": "layout", - "label": "Needs", - "arrange": "rows", - "widgets": [ "hunger_desc", "thirst_desc", "fatigue_desc", "pain_desc", "body_temp_desc" ] - }, - { - "id": "stamina_speed_layout", - "type": "widget", - "style": "layout", - "label": "Stamina/Speed", - "arrange": "columns", - "widgets": [ "stamina_graph_classic", "speed_num" ] - }, - { - "id": "stamina_activity_weary_layout", - "type": "widget", - "style": "layout", - "label": "Stamina/Weariness", - "arrange": "rows", - "widgets": [ "stamina_graph", "activity_desc", "weariness_desc", "weary_malus_desc" ] - }, - { - "id": "mood_focus_layout", - "type": "widget", - "style": "layout", - "label": "Mood/Focus", - "arrange": "columns", - "widgets": [ "mood_desc", "focus_num" ] - }, - { - "id": "stamina_fatigue_focus_layout", - "type": "widget", - "style": "layout", - "label": "Stamina/Fatigue/Focus", - "arrange": "columns", - "widgets": [ "stamina_graph_classic", "fatigue_graph", "focus_num" ] - }, - { - "id": "move_speed_layout", - "type": "widget", - "style": "layout", - "label": "Move/Speed", - "arrange": "columns", - "widgets": [ "move_num", "speed_num" ] - }, - { - "id": "move_cost_mode_layout", - "type": "widget", - "style": "layout", - "label": "Move Cost/Mode", - "arrange": "columns", - "widgets": [ "move_cost_num", "move_mode_desc" ] - }, - { - "id": "move_count_cost_layout", - "type": "widget", - "style": "layout", - "label": "Move count/cost", - "arrange": "columns", - "widgets": [ "move_num", "move_cost_num" ] - }, - { - "id": "move_mode_speed_layout", - "type": "widget", - "style": "layout", - "label": "Move mode/speed", - "arrange": "columns", - "widgets": [ "move_mode_desc", "speed_num" ] - }, - { - "id": "movement_layout", - "type": "widget", - "style": "layout", - "label": "Movement", - "arrange": "rows", - "widgets": [ "move_count_cost_layout", "move_mode_speed_layout" ] - }, - { - "id": "safe_sound_layout", - "type": "widget", - "style": "layout", - "label": "Safe/Sound", - "arrange": "columns", - "widgets": [ "safe_mode_desc", "sound_num" ] - }, - { - "id": "sound_fatigue_focus_layout", - "type": "widget", - "style": "layout", - "label": "Sound/Fatigue/Focus", - "arrange": "columns", - "widgets": [ "sound_num", "fatigue_graph", "focus_num" ] - }, - { - "id": "stamina_speed_move_layout", - "type": "widget", - "style": "layout", - "label": "Stamina/Speed/Move", - "arrange": "columns", - "widgets": [ "stamina_graph_classic", "speed_num", "move_num" ] - }, - { - "id": "sound_focus_layout", - "type": "widget", - "style": "layout", - "label": "Sound/Focus", - "arrange": "columns", - "widgets": [ "sound_num", "focus_num" ] - }, - { - "id": "stats_layout", - "type": "widget", - "style": "layout", - "label": "Stats", - "arrange": "columns", - "widgets": [ "str_num", "dex_num", "int_num", "per_num" ] - }, - { - "id": "str_dex_layout", - "type": "widget", - "style": "layout", - "label": "Str/Dex", - "arrange": "columns", - "widgets": [ "str_num", "dex_num" ] - }, - { - "id": "int_per_layout", - "type": "widget", - "style": "layout", - "label": "Int/Per", - "arrange": "columns", - "widgets": [ "int_num", "per_num" ] - }, - { - "id": "stats_narrow_layout", - "type": "widget", - "style": "layout", - "label": "Stats", - "arrange": "rows", - "widgets": [ "mood_focus_layout", "str_dex_layout", "int_per_layout" ] - }, - { - "id": "activity_desc", - "type": "widget", - "label": "Activity", - "style": "text", - "var": "activity_text", - "//": "Uses display::activity_text_color" - }, - { - "id": "body_temp_desc", - "type": "widget", - "label": "Heat", - "style": "text", - "var": "body_temp_text", - "//": "Uses display::temp_text_color" - }, - { - "id": "env_temp_desc", - "type": "widget", - "label": "Temperature", - "style": "text", - "var": "env_temp_text", - "//": "Uses display::get_temp" - }, - { - "id": "mood_desc", - "type": "widget", - "label": "Mood", - "style": "text", - "var": "mood_text", - "//": "Uses display::morale_face_color" - }, - { - "id": "moon_phase_desc", - "type": "widget", - "label": "Moon", - "style": "text", - "var": "moon_phase_text", - "//": "Uses display::get_moon" - }, - { - "id": "pain_desc", - "type": "widget", - "label": "Pain", - "style": "text", - "var": "pain_text", - "//": "Uses display::pain_text_color" - }, - { - "id": "rad_badge_desc", - "type": "widget", - "label": "Radiation", - "style": "text", - "var": "rad_badge_text", - "//": "Shows worn/wielded radiation badge color from display::rad_badge_text_color" - }, - { - "id": "thirst_desc", - "type": "widget", - "label": "Thirst", - "style": "text", - "var": "thirst_text", - "//": "Uses display::thirst_text_color" - }, - { - "id": "fatigue_desc", - "type": "widget", - "label": "Rest", - "style": "text", - "var": "fatigue_text", - "//": "Uses display::fatigue_text_color" - }, - { - "id": "weight_desc", - "type": "widget", - "label": "Weight", - "style": "text", - "var": "weight_text", - "//": "Uses display::weight_text_color" - }, - { - "id": "hunger_desc", - "type": "widget", - "label": "Hunger", - "style": "text", - "var": "hunger_text", - "//": "Uses display::hunger_text_color" - }, - { - "id": "weary_malus_desc", - "type": "widget", - "label": "Weary Malus", - "style": "text", - "var": "weary_malus_text", - "//": "Uses display::weary_malus_text_color" - }, - { - "id": "weariness_desc", - "type": "widget", - "label": "Weariness", - "style": "text", - "var": "weariness_text", - "//": "Uses display::weariness_text_color" - }, - { - "id": "wielding_desc", - "type": "widget", - "label": "Wield", - "style": "text", - "var": "wielding_text" - }, - { - "id": "style_desc", - "type": "widget", - "label": "Style", - "style": "text", - "var": "style_text" - }, - { - "id": "date_desc", - "type": "widget", - "label": "Date", - "style": "text", - "var": "date_text" - }, - { - "id": "time_desc", - "type": "widget", - "label": "Time", - "style": "text", - "var": "time_text" - }, - { - "id": "place_desc", - "type": "widget", - "label": "Place", - "style": "text", - "var": "place_text" - }, - { - "id": "power_desc", - "type": "widget", - "label": "Bionic Power", - "style": "text", - "var": "power_text" - }, - { - "id": "wind_desc", - "type": "widget", - "label": "Wind", - "style": "text", - "var": "wind_text" - }, - { - "id": "lighting_desc", - "type": "widget", - "label": "Lighting", - "style": "text", - "var": "lighting_text" - }, - { - "id": "safe_mode_desc", - "type": "widget", - "label": "Safe", - "style": "text", - "var": "safe_mode_text" - }, - { - "id": "light_moon_wind_temp_layout", - "type": "widget", - "label": "Environment", - "style": "layout", - "arrange": "rows", - "widgets": [ "lighting_desc", "moon_phase_desc", "weather_desc", "wind_desc", "env_temp_desc" ] - }, - { - "id": "place_date_time_layout", - "type": "widget", - "label": "Place/Date/Time", - "style": "layout", - "arrange": "rows", - "widgets": [ "place_desc", "date_desc", "time_desc" ] - }, { "id": "custom_sidebar", "type": "widget", diff --git a/data/json/ui/sound.json b/data/json/ui/sound.json new file mode 100644 index 0000000000000..8bb06f1d93bf3 --- /dev/null +++ b/data/json/ui/sound.json @@ -0,0 +1,9 @@ +[ + { + "id": "sound_num", + "type": "widget", + "label": "Sound", + "var": "sound", + "style": "number" + } +] diff --git a/data/json/ui/speed.json b/data/json/ui/speed.json new file mode 100644 index 0000000000000..b2d12992a46ca --- /dev/null +++ b/data/json/ui/speed.json @@ -0,0 +1,9 @@ +[ + { + "id": "speed_num", + "type": "widget", + "label": "Speed", + "var": "speed", + "style": "number" + } +] diff --git a/data/json/ui/stamina.json b/data/json/ui/stamina.json new file mode 100644 index 0000000000000..d87faef38371d --- /dev/null +++ b/data/json/ui/stamina.json @@ -0,0 +1,29 @@ +[ + { + "id": "stamina_graph_classic", + "type": "widget", + "label": "Stam", + "var": "stamina", + "style": "graph", + "width": 5, + "symbols": ".\\|", + "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] + }, + { + "id": "stamina_graph", + "type": "widget", + "label": "Stamina", + "var": "stamina", + "style": "graph", + "width": 10, + "symbols": ".\\|", + "colors": [ "c_red", "c_light_red", "c_yellow", "c_light_green", "c_green" ] + }, + { + "id": "stamina_num", + "type": "widget", + "label": "Stamina", + "var": "stamina", + "style": "number" + } +] diff --git a/data/json/ui/stats.json b/data/json/ui/stats.json new file mode 100644 index 0000000000000..d738b7197c145 --- /dev/null +++ b/data/json/ui/stats.json @@ -0,0 +1,54 @@ +[ + { + "id": "str_num", + "type": "widget", + "label": "Str", + "var": "stat_str", + "style": "number" + }, + { + "id": "dex_num", + "type": "widget", + "label": "Dex", + "var": "stat_dex", + "style": "number" + }, + { + "id": "int_num", + "type": "widget", + "label": "Int", + "var": "stat_int", + "style": "number" + }, + { + "id": "per_num", + "type": "widget", + "label": "Per", + "var": "stat_per", + "style": "number" + }, + { + "id": "stats_layout", + "type": "widget", + "style": "layout", + "label": "Stats", + "arrange": "columns", + "widgets": [ "str_num", "dex_num", "int_num", "per_num" ] + }, + { + "id": "str_dex_layout", + "type": "widget", + "style": "layout", + "label": "Str/Dex", + "arrange": "columns", + "widgets": [ "str_num", "dex_num" ] + }, + { + "id": "int_per_layout", + "type": "widget", + "style": "layout", + "label": "Int/Per", + "arrange": "columns", + "widgets": [ "int_num", "per_num" ] + } +] diff --git a/data/json/ui/thirst.json b/data/json/ui/thirst.json new file mode 100644 index 0000000000000..11f9afac8313e --- /dev/null +++ b/data/json/ui/thirst.json @@ -0,0 +1,10 @@ +[ + { + "id": "thirst_desc", + "type": "widget", + "label": "Thirst", + "style": "text", + "var": "thirst_text", + "//": "Uses display::thirst_text_color" + } +] diff --git a/data/json/ui/time.json b/data/json/ui/time.json new file mode 100644 index 0000000000000..e02bc8e15f0e7 --- /dev/null +++ b/data/json/ui/time.json @@ -0,0 +1,9 @@ +[ + { + "id": "time_desc", + "type": "widget", + "label": "Time", + "style": "text", + "var": "time_text" + } +] diff --git a/data/json/ui/warmth.json b/data/json/ui/warmth.json new file mode 100644 index 0000000000000..385fd1d855c69 --- /dev/null +++ b/data/json/ui/warmth.json @@ -0,0 +1,71 @@ +[ + { + "id": "warmth_num", + "type": "widget", + "style": "number", + "var_max": 10000, + "colors": [ "c_blue", "c_cyan", "c_light_blue", "c_green", "c_yellow", "c_light_red", "c_red" ] + }, + { + "id": "warmth_head_num", + "type": "widget", + "label": "w:H", + "var": "bp_warmth", + "bodypart": "head", + "copy-from": "warmth_num" + }, + { + "id": "warmth_torso_num", + "type": "widget", + "label": "w:T", + "var": "bp_warmth", + "bodypart": "torso", + "copy-from": "warmth_num" + }, + { + "id": "warmth_left_arm_num", + "type": "widget", + "label": "w:LA", + "var": "bp_warmth", + "bodypart": "arm_l", + "copy-from": "warmth_num" + }, + { + "id": "warmth_right_arm_num", + "type": "widget", + "label": "w:RA", + "var": "bp_warmth", + "bodypart": "arm_r", + "copy-from": "warmth_num" + }, + { + "id": "warmth_left_leg_num", + "type": "widget", + "label": "w:LL", + "var": "bp_warmth", + "bodypart": "leg_l", + "copy-from": "warmth_num" + }, + { + "id": "warmth_right_leg_num", + "type": "widget", + "label": "w:RL", + "var": "bp_warmth", + "bodypart": "leg_r", + "copy-from": "warmth_num" + }, + { + "id": "warmth_top_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "warmth_left_arm_num", "warmth_head_num", "warmth_right_arm_num" ] + }, + { + "id": "warmth_bottom_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "warmth_left_leg_num", "warmth_torso_num", "warmth_right_leg_num" ] + } +] diff --git a/data/json/ui/weariness.json b/data/json/ui/weariness.json new file mode 100644 index 0000000000000..82bafe91c71f7 --- /dev/null +++ b/data/json/ui/weariness.json @@ -0,0 +1,37 @@ +[ + { + "id": "weariness_num", + "type": "widget", + "label": "Weariness", + "var": "weariness_level", + "style": "number" + }, + { + "id": "weariness_graph", + "type": "widget", + "label": "Weariness", + "var": "weariness_level", + "var_max": 10, + "style": "graph", + "fill": "pool", + "width": 5, + "symbols": "-wW", + "colors": [ "c_white", "c_yellow", "c_red" ] + }, + { + "id": "weary_malus_desc", + "type": "widget", + "label": "Weary Malus", + "style": "text", + "var": "weary_malus_text", + "//": "Uses display::weary_malus_text_color" + }, + { + "id": "weariness_desc", + "type": "widget", + "label": "Weariness", + "style": "text", + "var": "weariness_text", + "//": "Uses display::weariness_text_color" + } +] diff --git a/data/json/ui/weight.json b/data/json/ui/weight.json new file mode 100644 index 0000000000000..483bb41539c59 --- /dev/null +++ b/data/json/ui/weight.json @@ -0,0 +1,10 @@ +[ + { + "id": "weight_desc", + "type": "widget", + "label": "Weight", + "style": "text", + "var": "weight_text", + "//": "Uses display::weight_text_color" + } +] diff --git a/data/json/ui/wetness.json b/data/json/ui/wetness.json new file mode 100644 index 0000000000000..e51ec56d02324 --- /dev/null +++ b/data/json/ui/wetness.json @@ -0,0 +1,80 @@ +[ + { + "id": "wetness_num", + "type": "widget", + "style": "number", + "var_max": 100 + }, + { + "id": "wetness_graph", + "type": "widget", + "style": "graph", + "var_max": 50, + "width": 5, + "symbols": ".oO", + "fill": "bucket", + "colors": [ "c_blue", "c_light_blue", "c_cyan", "c_white" ] + }, + { + "id": "wetness_head_num", + "type": "widget", + "label": "wet:HE", + "var": "bp_wetness", + "bodypart": "head", + "copy-from": "wetness_num" + }, + { + "id": "wetness_torso_num", + "type": "widget", + "label": "wet:TO", + "var": "bp_wetness", + "bodypart": "torso", + "copy-from": "wetness_num" + }, + { + "id": "wetness_left_arm_num", + "type": "widget", + "label": "wet:LA", + "var": "bp_wetness", + "bodypart": "arm_l", + "copy-from": "wetness_num" + }, + { + "id": "wetness_right_arm_num", + "type": "widget", + "label": "wet:RA", + "var": "bp_wetness", + "bodypart": "arm_r", + "copy-from": "wetness_num" + }, + { + "id": "wetness_left_leg_num", + "type": "widget", + "label": "wet:LL", + "var": "bp_wetness", + "bodypart": "leg_l", + "copy-from": "wetness_num" + }, + { + "id": "wetness_right_leg_num", + "type": "widget", + "label": "wet:RL", + "var": "bp_wetness", + "bodypart": "leg_r", + "copy-from": "wetness_num" + }, + { + "id": "wetness_top_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "wetness_left_arm_num", "wetness_head_num", "wetness_right_arm_num" ] + }, + { + "id": "wetness_bottom_layout", + "type": "widget", + "style": "layout", + "arrange": "columns", + "widgets": [ "wetness_left_leg_num", "wetness_torso_num", "wetness_right_leg_num" ] + } +] diff --git a/data/json/ui/wield.json b/data/json/ui/wield.json new file mode 100644 index 0000000000000..26f5d3868052c --- /dev/null +++ b/data/json/ui/wield.json @@ -0,0 +1,9 @@ +[ + { + "id": "wielding_desc", + "type": "widget", + "label": "Wield", + "style": "text", + "var": "wielding_text" + } +] diff --git a/data/json/ui/wind.json b/data/json/ui/wind.json new file mode 100644 index 0000000000000..427253ce6a135 --- /dev/null +++ b/data/json/ui/wind.json @@ -0,0 +1,9 @@ +[ + { + "id": "wind_desc", + "type": "widget", + "label": "Wind", + "style": "text", + "var": "wind_text" + } +]