Skip to content

Commit 0991fd5

Browse files
Move subsystem config to the combined configuration panel (#1097)
2 parents 1e72d60 + 7c0e4aa commit 0991fd5

11 files changed

+294
-321
lines changed

fission/src/Synthesis.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ import ThemeEditorModal from "@/modals/configuring/theme-editor/ThemeEditorModal
3636
import MatchModeModal from "@/modals/spawning/MatchModeModal"
3737
import RobotSwitchPanel from "@/panels/RobotSwitchPanel"
3838
import SpawnLocationsPanel from "@/panels/SpawnLocationPanel"
39-
import ConfigureSubsystemsPanel from "@/ui/panels/configuring/ConfigureSubsystemsPanel.tsx"
4039
import ScoreboardPanel from "@/panels/information/ScoreboardPanel"
4140
import DriverStationPanel from "@/panels/simulation/DriverStationPanel"
4241
import PokerPanel from "@/panels/PokerPanel.tsx"
@@ -236,7 +235,6 @@ const initialPanels: ReactElement[] = [
236235
<WSViewPanel key="ws-view" panelId="ws-view" />,
237236
<DebugPanel key="debug" panelId="debug" />,
238237
<ConfigurePanel key="configure" panelId="configure" />,
239-
<ConfigureSubsystemsPanel key="subsystem-config" panelId="subsystem-config" openLocation="right" sidePadding={8} />,
240238
]
241239

242240
export default Synthesis

fission/src/ui/components/MainHUD.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,6 @@ const MainHUD: React.FC = () => {
144144
icon={SynthesisIcons.MagnifyingGlass}
145145
onClick={() => openModal("view")}
146146
/> */}
147-
<MainHUDButton
148-
value={"Subsystems"}
149-
icon={SynthesisIcons.Gear}
150-
onClick={() => openPanel("subsystem-config")}
151-
/>
152147
<MainHUDButton
153148
value={"Configure Assets"}
154149
icon={SynthesisIcons.Wrench}

fission/src/ui/components/SelectMenu.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Label, { LabelSize } from "./Label"
55
import {
66
AddButtonInteractiveColor,
77
ButtonIcon,
8+
CustomTooltip,
89
DeleteButton,
910
SectionDivider,
1011
SectionLabel,
@@ -44,8 +45,10 @@ const CustomButton = styled(MUIButton)({
4445
/** Extend this to make a type that contains custom data */
4546
export class SelectMenuOption {
4647
name: string
47-
constructor(name: string) {
48+
tooltipText?: string
49+
constructor(name: string, tooltipText?: string) {
4850
this.name = name
51+
this.tooltipText = tooltipText
4952
}
5053
}
5154

@@ -83,6 +86,7 @@ const OptionCard: React.FC<OptionCardProps> = ({ value, index, onSelected, onDel
8386
{/* Indentation before the name */}
8487
<Box width="8px" />
8588
{/* Label for joint index and type (grey if child) */}
89+
8690
<SectionLabel
8791
key={value.name + index}
8892
size={LabelSize.Small}
@@ -102,6 +106,7 @@ const OptionCard: React.FC<OptionCardProps> = ({ value, index, onSelected, onDel
102106
sx={{ borderColor: "#888888" }}
103107
id={`select-button-${value.name}`}
104108
/>
109+
{value.tooltipText && CustomTooltip(value.tooltipText)}
105110
{/** Delete button only if onDelete is defined */}
106111
{onDelete && includeDelete && (
107112
<>

fission/src/ui/components/StyledComponents.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export class SynthesisIcons {
6464
public static EditLarge = (<IoPencil size={"1.25rem"} />)
6565
public static LeftArrowLarge = (<FaArrowLeft size={"1.25rem"} />)
6666
public static BugLarge = (<FaBug size={"1.25rem"} />)
67+
public static XmarkLarge = (<FaXmark size={"1.25rem"} />)
6768

6869
public static OpenHudIcon = (
6970
<FaAngleRight

fission/src/ui/modals/configuring/SettingsModal.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,12 @@ const SettingsModal: React.FC<ModalPropsImpl> = ({ modalId }) => {
126126
}}
127127
/>
128128
<Checkbox
129-
label="Subsystem Realistic Gravity"
129+
label="Realistic Subsystem Gravity"
130130
defaultState={PreferencesSystem.getGlobalPreference<boolean>("SubsystemGravity")}
131131
onClick={checked => {
132132
setSubsystemGravity(checked)
133133
}}
134+
tooltipText="Allows you to set a target torque or force for subsystems and joints. If not properly configured, joints may not be able to resist gravity or may not behave as intended."
134135
/>
135136
<Checkbox
136137
label="Show Score Zones"

fission/src/ui/panels/configuring/ConfigureSubsystemsPanel.tsx

-279
This file was deleted.

0 commit comments

Comments
 (0)