File size: 5,785 Bytes
ec50620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac97894
ec50620
 
 
 
 
 
 
 
 
 
 
ac97894
 
 
ec50620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac97894
 
 
a6a0252
ac97894
ec50620
 
 
 
 
 
 
 
ac97894
ec50620
 
 
 
 
 
 
 
 
a6a0252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ec50620
 
 
 
 
 
 
 
 
 
 
 
 
ac97894
 
 
 
 
 
 
 
 
 
ec50620
 
 
 
a6a0252
 
 
 
 
 
 
 
 
 
 
 
ac97894
 
 
a6a0252
ac97894
 
ec50620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac97894
ec50620
 
 
 
 
 
 
 
 
 
 
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!doctype html>
<html lang="en">

<head>
	<meta charset="utf-8" />
	<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<meta name="theme-color" content="#000000" />
	<meta name="description" content="Web site created using create-react-app" />
	<link rel="preconnect" href="https://fonts.googleapis.com" />
	<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
	<link href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
		rel="stylesheet" />
	<link
		href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&display=block"
		rel="stylesheet" />
	<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js"></script>
	<script src="https://cdn.jsdelivr.net/gh/molleindustria/p5.play/lib/p5.play.js"></script>
	<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
	<title>Gemini Live API + p5.js</title>
</head>

<body>
	<noscript>You need to enable JavaScript to run this app.</noscript>
	<div id="root"></div>
	<script>
		let mySketch;
		
		// Function to remove existing sketch instance
		window.removeSketch = function() {
			if (mySketch) {
				if (mySketch._cleanup) {
					mySketch._cleanup();
				}
				mySketch.remove();
				mySketch = null;
			}
		};

		// Function to update the sketch with new code
		window.updateSketch = function(sketchCode, container) {
			console.log("Updating sketch with new code");
			
			try {
				// Remove existing sketch if any
				window.removeSketch();
				
				// Create new sketch instance
				mySketch = new p5((p) => {
					// Store container reference in p5 instance
					p.containerWidth = container.clientWidth;
					p.containerHeight = container.clientHeight;
					p.container = container; // Store container reference

					// Add the sketch code to p5 instance scope
					const sketchFunction = new Function('p', `
						with (p) {
							${sketchCode}
							
							// If setup/draw weren't defined, provide defaults
							if (typeof setup !== 'function') {
								setup = function() {
									createCanvas(containerWidth, containerHeight);
								}
							}
							
							if (typeof draw !== 'function') {
								draw = function() {
									background(0);
								}
							}
							
							// Return all defined p5 functions
							return {
								setup,
								draw,
								// Mouse events
								mousePressed: typeof mousePressed === 'function' ? mousePressed : undefined,
								mouseReleased: typeof mouseReleased === 'function' ? mouseReleased : undefined,
								mouseMoved: typeof mouseMoved === 'function' ? mouseMoved : undefined,
								mouseDragged: typeof mouseDragged === 'function' ? mouseDragged : undefined,
								mouseClicked: typeof mouseClicked === 'function' ? mouseClicked : undefined,
								doubleClicked: typeof doubleClicked === 'function' ? doubleClicked : undefined,
								mouseWheel: typeof mouseWheel === 'function' ? mouseWheel : undefined,
								// Keyboard events
								keyPressed: typeof keyPressed === 'function' ? keyPressed : undefined,
								keyReleased: typeof keyReleased === 'function' ? keyReleased : undefined,
								keyTyped: typeof keyTyped === 'function' ? keyTyped : undefined
							};
						}
					`);
					
					// Get the sketch functions
					const functions = sketchFunction(p);
					
					// Assign the functions to p5 instance
					p.setup = () => {
						functions.setup.call(p);
						// Ensure canvas is in container
						if (container) {
							container.innerHTML = "";
							container.appendChild(p._renderer.canvas);
							
							// Fix accessibility tooltip issue
							if (p._renderer.canvas) {
								// Remove the default accessibility attributes that cause tooltips
								p._renderer.canvas.removeAttribute('aria-label');
								p._renderer.canvas.removeAttribute('role');
								
								// Add a custom class to help with styling
								p._renderer.canvas.classList.add('p5-managed-canvas');
							}
						}
					};
					
					p.draw = functions.draw.bind(p);
					
					// Bind all mouse and keyboard event handlers
					if (functions.mousePressed) p.mousePressed = functions.mousePressed.bind(p);
					if (functions.mouseReleased) p.mouseReleased = functions.mouseReleased.bind(p);
					if (functions.mouseMoved) p.mouseMoved = functions.mouseMoved.bind(p);
					if (functions.mouseDragged) p.mouseDragged = functions.mouseDragged.bind(p);
					if (functions.mouseClicked) p.mouseClicked = functions.mouseClicked.bind(p);
					if (functions.doubleClicked) p.doubleClicked = functions.doubleClicked.bind(p);
					if (functions.mouseWheel) p.mouseWheel = functions.mouseWheel.bind(p);
					if (functions.keyPressed) p.keyPressed = functions.keyPressed.bind(p);
					if (functions.keyReleased) p.keyReleased = functions.keyReleased.bind(p);
					if (functions.keyTyped) p.keyTyped = functions.keyTyped.bind(p);
					
					// Cleanup when sketch is removed
					p._cleanup = () => {
						// No cleanup needed anymore
					};
				}, container);
				
				console.log("Successfully created new sketch");
				return true;
			} catch (error) {
				console.error("Error creating sketch:", error);
				return false;
			}
		};

		window.initSketch = function (container) {
			console.log("Initialize empty sketch");
			if (mySketch) {
				return;
			}
			
			// Create initial empty sketch
			window.updateSketch(`
				function setup() {
					createCanvas(containerWidth, containerHeight);
				}
				
				function draw() {
					background(0);
				}
			`, container);
		};
	</script>
</body>

</html>