mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
38 lines
1023 B
TypeScript
38 lines
1023 B
TypeScript
import { RefObject } from 'preact';
|
|
import Apple2IO, { slot } from '../apple2io';
|
|
import { MouseUI } from '../ui/mouse';
|
|
import MouseCard from '../cards/mouse';
|
|
import CPU6502 from '../cpu6502';
|
|
import { useEffect } from 'preact/hooks';
|
|
|
|
/**
|
|
* Mouse component properties.
|
|
*/
|
|
export interface MouseProps {
|
|
cpu: CPU6502 | undefined;
|
|
io: Apple2IO | undefined;
|
|
screenRef: RefObject<HTMLCanvasElement>;
|
|
slot: slot;
|
|
}
|
|
|
|
/**
|
|
* Mouse card component that adds a simple mouse driver.
|
|
*
|
|
* @param cpu CPU6502 object
|
|
* @param screen Screen element reference
|
|
* @param io Apple2IO object
|
|
* @param slot Slot to register card in
|
|
* @returns Mouse component
|
|
*/
|
|
export const Mouse = ({ cpu, screenRef, io, slot }: MouseProps) => {
|
|
useEffect(() => {
|
|
if (cpu && io && screenRef.current) {
|
|
const mouseUI = new MouseUI(screenRef.current);
|
|
const mouse = new MouseCard(cpu, mouseUI);
|
|
io.setSlot(slot, mouse);
|
|
}
|
|
}, [cpu, io, screenRef, slot]);
|
|
|
|
return null;
|
|
};
|