File size: 4,968 Bytes
f56a29b | 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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | /**
* Widget Configuration Types for Ultra Interaction Mode
*/
// ==================== Base Types ====================
export type WidgetType = 'simulation' | 'diagram' | 'code' | 'game' | 'visualization3d';
export interface TeacherAction {
id: string;
type: 'speech' | 'highlight' | 'annotation' | 'reveal' | 'setState';
target?: string; // Element ID or selector to highlight/annotate
content?: string; // Speech text or annotation text
state?: Record<string, unknown>; // Widget state to set
label?: string; // Short label for UI button (e.g., "Next", "Try This")
}
// ==================== Simulation Widget ====================
export interface SimulationVariable {
name: string;
label: string;
min: number;
max: number;
default: number;
unit?: string;
step?: number;
}
export interface SimulationConfig {
type: 'simulation';
concept: string;
description: string;
variables: SimulationVariable[];
presets?: Array<{
name: string;
variables: Record<string, number>;
}>;
teacherActions?: TeacherAction[];
}
// ==================== Diagram Widget ====================
export interface DiagramNode {
id: string;
label: string;
position?: { x: number; y: number };
details?: string;
type?: 'default' | 'decision' | 'start' | 'end';
}
export interface DiagramEdge {
id: string;
from: string;
to: string;
label?: string;
}
export interface DiagramConfig {
type: 'diagram';
diagramType: 'flowchart' | 'mindmap' | 'hierarchy' | 'system';
description: string;
nodes: DiagramNode[];
edges: DiagramEdge[];
revealOrder?: string[]; // Node IDs in reveal sequence
teacherActions?: TeacherAction[];
}
// ==================== Code Widget ====================
export interface CodeTestCase {
id: string;
input: string;
expected: string;
description?: string;
isHidden?: boolean;
}
export interface CodeConfig {
type: 'code';
language: 'python' | 'javascript' | 'typescript' | 'java' | 'cpp';
description: string;
starterCode: string;
testCases: CodeTestCase[];
hints: string[];
solution: string;
teacherActions?: TeacherAction[];
}
// ==================== Game Widget ====================
export interface GameQuestion {
id: string;
question: string;
type: 'single' | 'multiple';
options: string[];
correct: number | number[];
explanation?: string;
points?: number;
}
export interface GameConfig {
type: 'game';
gameType: 'quiz' | 'puzzle' | 'strategy' | 'card';
description: string;
questions?: GameQuestion[];
scoring: {
correctPoints: number;
speedBonus?: number;
comboMultiplier?: number;
penalty?: number;
};
achievements?: Array<{
id: string;
name: string;
description: string;
icon: string;
condition: string;
}>;
teacherActions?: TeacherAction[];
}
// ==================== 3D Visualization Widget ====================
export interface Visualization3DObject {
id: string;
type: 'sphere' | 'box' | 'cylinder' | 'cone' | 'torus' | 'plane' | 'custom';
name?: string;
position?: { x: number; y: number; z: number };
rotation?: { x: number; y: number; z: number };
scale?: number | { x: number; y: number; z: number };
material?: {
type: 'basic' | 'lambert' | 'phong' | 'standard' | 'emissive';
color?: string;
emissive?: string;
wireframe?: boolean;
transparent?: boolean;
opacity?: number;
};
// For animated objects
animation?: {
type: 'orbit' | 'rotate' | 'bounce' | 'pulse';
speed?: number;
axis?: 'x' | 'y' | 'z';
};
// For hierarchical objects
children?: Visualization3DObject[];
}
export interface Visualization3DInteraction {
type: 'orbit' | 'zoom' | 'pan' | 'slider' | 'button' | 'toggle';
target?: string; // Object ID or 'camera'
label?: string;
param?: string;
min?: number;
max?: number;
default?: number;
step?: number;
}
export interface Visualization3DConfig {
type: 'visualization3d';
visualizationType: 'molecular' | 'solar' | 'anatomy' | 'geometry' | 'physics' | 'custom';
description: string;
objects: Visualization3DObject[];
interactions?: Visualization3DInteraction[];
camera?: {
position?: { x: number; y: number; z: number };
target?: { x: number; y: number; z: number };
fov?: number;
};
lighting?: {
ambient?: { color?: string; intensity?: number };
directional?: Array<{
color?: string;
intensity?: number;
position?: { x: number; y: number; z: number };
}>;
point?: Array<{
color?: string;
intensity?: number;
position?: { x: number; y: number; z: number };
}>;
};
presets?: Array<{
name: string;
description?: string;
state: Record<string, unknown>;
}>;
teacherActions?: TeacherAction[];
}
// ==================== Union Types ====================
export type WidgetConfig =
| SimulationConfig
| DiagramConfig
| CodeConfig
| GameConfig
| Visualization3DConfig;
|