Newer
Older
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import React, { FC, useEffect, useRef, useState } from "react";
import { ButtonSwitch, Info, Pair, PanelTab } from "emukit";
import { GameboyEmulator, bufferToDataUrl } from "../../../ts";
import "./serial-section.css";
const DEVICE_ICON: { [key: string]: string } = {
Null: "🛑",
Logger: "📜",
Printer: "🖨️"
};
export type LoggerCallback = (data: Uint8Array) => void;
export type PrinterCallback = (imageBuffer: Uint8Array) => void;
type SerialSectionProps = {
emulator: GameboyEmulator;
style?: string[];
onLogger?: (onLoggerData: LoggerCallback) => void;
onPrinter?: (onPrinterData: PrinterCallback) => void;
};
export const SerialSection: FC<SerialSectionProps> = ({
emulator,
style = [],
onLogger,
onPrinter
}) => {
const classes = () => ["serial-section", ...style].join(" ");
const [loggerData, setLoggerData] = useState<string>();
const [printerImageUrls, setPrinterImageUrls] = useState<string[]>();
const loggerDataRef = useRef<string[]>([]);
const printerDataRef = useRef<string[]>([]);
const loggerRef = useRef<HTMLDivElement>(null);
const imagesRef = useRef<HTMLDivElement>(null);
const onLoggerData = (data: Uint8Array) => {
const byte = data[0];
const charByte = String.fromCharCode(byte);
loggerDataRef.current.push(charByte);
setLoggerData(loggerDataRef.current.join(""));
};
const onPrinterData = (imageBuffer: Uint8Array) => {
const imageUrl = bufferToDataUrl(imageBuffer, 160);
printerDataRef.current.unshift(imageUrl);
setPrinterImageUrls([...printerDataRef.current]);
};
useEffect(() => {
if (loggerRef.current) {
onLogger && onLogger(onLoggerData);
}
}, [loggerRef, loggerRef.current]);
useEffect(() => {
if (imagesRef.current) {
onPrinter && onPrinter(onPrinterData);
}
}, [imagesRef, imagesRef.current]);
const onEngineChange = (option: string) => {
switch (option) {
case "Null":
emulator.loadNullDevice();
break;
case "Logger":
emulator.loadLoggerDevice();
break;
case "Printer":
emulator.loadPrinterDevice();
break;
}
const optionIcon = DEVICE_ICON[option] ?? "";
emulator.handlers.showToast?.(
`${optionIcon} ${option} attached to the serial port & active`
);
};
const getTabs = () => {
return [
<Info>
<Pair
key="button-device"
name={"Device"}
valueNode={
<ButtonSwitch
options={["Null", "Logger", "Printer"]}
size={"large"}
style={["simple"]}
onChange={onEngineChange}
/>
}
/>
<Pair key="baud-rate" name={"Baud Rate"} value={"1 KB/s"} />
</Info>,
<div className="logger" ref={loggerRef}>
<div className="logger-data">
{loggerData || "Logger contents are empty."}
</div>
</div>,
<div className="printer" ref={imagesRef}>
<div className="printer-lines">
{printerImageUrls ? (
printerImageUrls.map((url, index) => (
<img
key={index}
className="printer-line"
src={url}
/>
))
) : (
<span className="placeholder">
Printer contents are empty.
</span>
)}
</div>
</div>
];
};
const getTabNames = () => {
return ["Settings", "Logger", "Printer"];
};
return (
<div className={classes()}>
<PanelTab
tabs={getTabs()}
tabNames={getTabNames()}
selectors={true}
/>
</div>
);
};
export default SerialSection;