1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
import { PanelSectionRow, ButtonItem } from "@decky/ui";
import { FaExternalLinkAlt } from "react-icons/fa";
interface ConfigType {
enableLsfg: boolean;
multiplier: number;
flowScale: number;
hdr: boolean;
perfMode: boolean;
immediateMode: boolean;
}
interface UsageInstructionsProps {
config: ConfigType;
}
export function UsageInstructions({ config }: UsageInstructionsProps) {
// Build manual environment variables string based on current config
const buildManualEnvVars = (): string => {
const envVars: string[] = [];
if (config.enableLsfg) {
envVars.push("ENABLE_LSFG=1");
}
// Always include multiplier and flow_scale if LSFG is enabled, as they have defaults
if (config.enableLsfg) {
envVars.push(`LSFG_MULTIPLIER=${config.multiplier}`);
envVars.push(`LSFG_FLOW_SCALE=${config.flowScale}`);
}
if (config.hdr) {
envVars.push("LSFG_HDR=1");
}
if (config.perfMode) {
envVars.push("LSFG_PERF_MODE=1");
}
if (config.immediateMode) {
envVars.push("MESA_VK_WSI_PRESENT_MODE=immediate");
}
return envVars.length > 0 ? `${envVars.join(" ")} %command%` : "%command%";
};
const handleWikiClick = () => {
window.open("https://github.com/PancakeTAS/lsfg-vk/wiki", "_blank");
};
return (
<>
<PanelSectionRow>
<div
style={{
fontSize: "13px",
marginTop: "12px",
padding: "8px",
backgroundColor: "rgba(255, 255, 255, 0.05)",
borderRadius: "4px"
}}
>
<div style={{ fontWeight: "bold", marginBottom: "6px" }}>
Usage Instructions:
</div>
<div style={{ marginBottom: "4px" }}>
Option 1: Use the lsfg script (recommended):
</div>
<div
style={{
fontFamily: "monospace",
backgroundColor: "rgba(0, 0, 0, 0.3)",
padding: "4px",
borderRadius: "2px",
fontSize: "12px",
marginBottom: "6px"
}}
>
~/lsfg %command%
</div>
<div style={{ marginBottom: "4px" }}>
Option 2: Manual environment variables:
</div>
<div
style={{
fontFamily: "monospace",
backgroundColor: "rgba(0, 0, 0, 0.3)",
padding: "4px",
borderRadius: "2px",
fontSize: "12px",
marginBottom: "6px"
}}
>
{buildManualEnvVars()}
</div>
</div>
</PanelSectionRow>
<PanelSectionRow>
<ButtonItem
layout="below"
onClick={handleWikiClick}
>
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
<FaExternalLinkAlt />
<div>LSFG-VK Wiki</div>
</div>
</ButtonItem>
</PanelSectionRow>
</>
);
}
|