File size: 52,792 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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 | /**
* Stage 2: Scene content and action generation.
*
* Generates full scenes (slide/quiz/interactive/pbl with actions)
* from scene outlines.
*/
import { nanoid } from 'nanoid';
import katex from 'katex';
import { MAX_VISION_IMAGES } from '@/lib/constants/generation';
import type {
SceneOutline,
GeneratedSlideContent,
GeneratedQuizContent,
GeneratedInteractiveContent,
GeneratedPBLContent,
ScientificModel,
PdfImage,
ImageMapping,
WidgetOutline,
} from '@/lib/types/generation';
import type { WidgetType, WidgetConfig, TeacherAction } from '@/lib/types/widgets';
import type { PromptId } from '@/lib/prompts/types';
import type { LanguageModel } from 'ai';
import type { StageStore } from '@/lib/api/stage-api';
import { createStageAPI } from '@/lib/api/stage-api';
import { generatePBLContent } from '@/lib/pbl/generate-pbl';
import { buildPrompt, PROMPT_IDS } from '@/lib/prompts';
import { DEFAULT_LANGUAGE_DIRECTIVE } from './outline-generator';
import { postProcessInteractiveHtml } from './interactive-post-processor';
import { parseActionsFromStructuredOutput } from './action-parser';
import { parseJsonResponse } from './json-repair';
import {
buildCourseContext,
buildLanguageText,
formatAgentsForPrompt,
formatTeacherPersonaForPrompt,
formatImageDescription,
formatImagePlaceholder,
} from './prompt-formatters';
import type { PPTElement, Slide, SlideBackground, SlideTheme } from '@/lib/types/slides';
import type { QuizQuestion } from '@/lib/types/stage';
import type {
Action,
SpeechAction,
WidgetHighlightAction,
WidgetSetStateAction,
WidgetAnnotationAction,
WidgetRevealAction,
} from '@/lib/types/action';
import type {
AgentInfo,
SceneGenerationContext,
GeneratedSlideData,
AICallFn,
GenerationResult,
GenerationCallbacks,
} from './pipeline-types';
import type { ThinkingConfig } from '@/lib/types/provider';
import { createLogger } from '@/lib/logger';
const log = createLogger('Generation');
// ── Options interfaces for scene generation functions ──
export interface SceneContentOptions {
assignedImages?: PdfImage[];
imageMapping?: ImageMapping;
languageModel?: LanguageModel;
visionEnabled?: boolean;
generatedMediaMapping?: ImageMapping;
agents?: AgentInfo[];
languageDirective?: string;
thinkingConfig?: ThinkingConfig;
}
export interface SceneActionsOptions {
ctx?: SceneGenerationContext;
agents?: AgentInfo[];
userProfile?: string;
languageDirective?: string;
}
// ==================== Stage 2: Full Scenes (Two-Step) ====================
/**
* Stage 3: Generate full scenes (parallel version)
*
* Two steps:
* - Step 3.1: Outline -> Page content (slide/quiz)
* - Step 3.2: Content + script -> Action list
*
* All scenes generated in parallel using Promise.all
*/
export async function generateFullScenes(
sceneOutlines: SceneOutline[],
store: StageStore,
aiCall: AICallFn,
callbacks?: GenerationCallbacks,
languageDirective?: string,
): Promise<GenerationResult<string[]>> {
const api = createStageAPI(store);
const totalScenes = sceneOutlines.length;
let completedCount = 0;
callbacks?.onProgress?.({
currentStage: 3,
overallProgress: 66,
stageProgress: 0,
statusMessage: `正在并行生成 ${totalScenes} 个场景...`,
scenesGenerated: 0,
totalScenes,
});
// Generate all scenes in parallel
const results = await Promise.all(
sceneOutlines.map(async (outline, index) => {
try {
const sceneId = await generateSingleScene(outline, api, aiCall, languageDirective);
// Update progress (not atomic, but sufficient for UI display)
completedCount++;
callbacks?.onProgress?.({
currentStage: 3,
overallProgress: 66 + Math.floor((completedCount / totalScenes) * 34),
stageProgress: Math.floor((completedCount / totalScenes) * 100),
statusMessage: `已完成 ${completedCount}/${totalScenes} 个场景`,
scenesGenerated: completedCount,
totalScenes,
});
return { success: true, sceneId, index };
} catch (error) {
completedCount++;
callbacks?.onError?.(`Failed to generate scene ${outline.title}: ${error}`);
return { success: false, sceneId: null, index };
}
}),
);
// Collect successful sceneIds in original order
const sceneIds = results
.filter(
(r): r is { success: true; sceneId: string; index: number } =>
r.success && r.sceneId !== null,
)
.sort((a, b) => a.index - b.index)
.map((r) => r.sceneId);
return { success: true, data: sceneIds };
}
/**
* Generate a single scene (two-step process)
*
* Step 3.1: Generate content
* Step 3.2: Generate Actions
*/
async function generateSingleScene(
outline: SceneOutline,
api: ReturnType<typeof createStageAPI>,
aiCall: AICallFn,
languageDirective?: string,
): Promise<string | null> {
// Step 3.1: Generate content
log.info(`Step 3.1: Generating content for: ${outline.title}`);
const content = await generateSceneContent(outline, aiCall, { languageDirective });
if (!content) {
log.error(`Failed to generate content for: ${outline.title}`);
return null;
}
// Step 3.2: Generate Actions
log.info(`Step 3.2: Generating actions for: ${outline.title}`);
const actions = await generateSceneActions(outline, content, aiCall, { languageDirective });
log.info(`Generated ${actions.length} actions for: ${outline.title}`);
// Create complete Scene
return createSceneWithActions(outline, content, actions, api);
}
// ==================== Backward Compatibility Helpers ====================
/**
* Convert legacy interactiveConfig to unified widget fields
* For backward compatibility with old classrooms
*/
function convertInteractiveConfigToWidget(outline: SceneOutline): SceneOutline {
const config = outline.interactiveConfig;
if (!config) {
log.warn(
`Interactive outline missing both widget and interactiveConfig, falling back to simulation`,
);
return {
...outline,
widgetType: 'simulation' as WidgetType,
widgetOutline: { concept: outline.title },
};
}
const widgetType = inferWidgetType(
config.subject || '',
config.conceptName,
config.designIdea || '',
);
log.info(`Converting interactiveConfig to widget: ${widgetType} for "${outline.title}"`);
return {
...outline,
widgetType,
widgetOutline: buildWidgetOutline(widgetType, config),
};
}
/**
* Infer widget type from concept characteristics
*/
function inferWidgetType(subject: string, concept: string, designIdea: string): WidgetType {
const text = (subject + ' ' + concept + ' ' + designIdea).toLowerCase();
// Rule-based inference
if (
/physics|chemistry|力学|化学|运动|反应|force|motion|equilibrium|wave|电路|circuit/.test(text)
) {
return 'simulation';
}
if (/programming|code|algorithm|编程|算法|python|javascript|function|代码/.test(text)) {
return 'code';
}
if (/process|workflow|步骤|流程|逻辑|step|flow|系统|system/.test(text)) {
return 'diagram';
}
if (
/biology|anatomy|cell|molecular|生物|细胞|分子|3d|三维|solar|planet|skeleton|organ/.test(text)
) {
return 'visualization3d';
}
if (/game|quiz|practice|练习|游戏|puzzle|match|challenge|挑战/.test(text)) {
return 'game';
}
// Default fallback
return 'simulation';
}
/**
* Build widgetOutline from interactiveConfig for backward compatibility
*/
function buildWidgetOutline(
widgetType: WidgetType,
config: { conceptName: string; conceptOverview: string; designIdea: string },
): WidgetOutline {
const base: WidgetOutline = { concept: config.conceptName };
switch (widgetType) {
case 'simulation':
// Try to extract variables from designIdea
const varMatch = config.designIdea.match(/variables|参数|调整|adjust|slider/i);
return { ...base, keyVariables: varMatch ? [] : undefined };
case 'diagram':
return { ...base, diagramType: 'flowchart' };
case 'code':
return { ...base, language: 'python' };
case 'game':
return { ...base, gameType: 'quiz' };
case 'visualization3d':
return { ...base, visualizationType: 'custom', objects: [] };
default:
return base;
}
}
/**
* Step 3.1: Generate content based on outline
*/
export async function generateSceneContent(
outline: SceneOutline,
aiCall: AICallFn,
options: SceneContentOptions = {},
): Promise<
| GeneratedSlideContent
| GeneratedQuizContent
| GeneratedInteractiveContent
| GeneratedPBLContent
| null
> {
const {
assignedImages,
imageMapping,
languageModel,
visionEnabled,
generatedMediaMapping,
agents,
languageDirective,
thinkingConfig,
} = options;
// Unified path for interactive scenes (both normal and ultra mode)
if (outline.type === 'interactive') {
// Backward compatibility: convert legacy interactiveConfig
if (!outline.widgetType && outline.interactiveConfig) {
log.info(`Converting legacy interactiveConfig for: ${outline.title}`);
outline = convertInteractiveConfigToWidget(outline);
}
// If still no widgetType after conversion, fallback to simulation
if (!outline.widgetType) {
log.warn(
`Interactive outline "${outline.title}" has no widgetType, falling back to simulation`,
);
outline = {
...outline,
widgetType: 'simulation' as WidgetType,
widgetOutline: { concept: outline.title },
};
}
// Route to widget generation (handles all 5 types)
return generateWidgetContent(outline, aiCall, languageDirective);
}
switch (outline.type) {
case 'slide':
return generateSlideContent(
outline,
aiCall,
assignedImages,
imageMapping,
visionEnabled,
generatedMediaMapping,
agents,
languageDirective,
);
case 'quiz':
return generateQuizContent(outline, aiCall, languageDirective);
case 'pbl':
return generatePBLSceneContent(outline, languageModel, languageDirective, thinkingConfig);
default:
return null;
}
}
/**
* Check if a string looks like an image ID (e.g., "img_1", "img_2")
* rather than a base64 data URL or actual URL
*
* This function distinguishes between:
* - Image IDs: "img_1", "img_2", etc. → returns true
* - Base64 data URLs: "data:image/..." → returns false
* - HTTP URLs: "http://...", "https://..." → returns false
* - Relative paths: "/images/..." → returns false
*/
function isImageIdReference(value: string): boolean {
if (!value) return false;
// Exclude real URLs and paths
if (value.startsWith('data:')) return false;
if (value.startsWith('http://') || value.startsWith('https://')) return false;
if (value.startsWith('/')) return false; // Relative paths
// Match image ID format: img_1, img_2, etc.
return /^img_\d+$/i.test(value);
}
/**
* Check if a string looks like a generated image/video ID (e.g., "gen_img_1", "gen_img_xK8f2mQ")
* These are placeholders for AI-generated media, not PDF-extracted images.
*/
function isGeneratedImageId(value: string): boolean {
if (!value) return false;
return /^gen_(img|vid)_[\w-]+$/i.test(value);
}
/**
* Resolve image ID references in src field to actual base64 URLs
*
* AI generates: { type: "image", src: "img_1", ... }
* This function replaces: { type: "image", src: "data:image/png;base64,...", ... }
*
* Design rationale (Plan B):
* - Simpler: AI only needs to know one field (src)
* - Consistent: Generated JSON structure matches final PPTImageElement
* - Intuitive: src is the image source, first as ID then as actual URL
* - Less prompt complexity: No need to explain imageId vs src distinction
*/
function resolveImageIds(
elements: GeneratedSlideData['elements'],
imageMapping?: ImageMapping,
generatedMediaMapping?: ImageMapping,
): GeneratedSlideData['elements'] {
return elements
.map((el) => {
if (el.type === 'image') {
if (!('src' in el)) {
log.warn(`Image element missing src, removing element`);
return null; // Remove invalid image elements
}
const src = el.src as string;
// If src is an image ID reference, replace with actual URL
if (isImageIdReference(src)) {
if (!imageMapping || !imageMapping[src]) {
log.warn(`No mapping for image ID: ${src}, removing element`);
return null; // Remove invalid image elements
}
log.debug(`Resolved image ID "${src}" to base64 URL`);
return { ...el, src: imageMapping[src] };
}
// Generated image reference — keep as placeholder for async backfill
if (isGeneratedImageId(src)) {
if (generatedMediaMapping && generatedMediaMapping[src]) {
log.debug(`Resolved generated image ID "${src}" to URL`);
return { ...el, src: generatedMediaMapping[src] };
}
// Keep element with placeholder ID — frontend renders skeleton
log.debug(`Keeping generated image placeholder: ${src}`);
return el;
}
}
if (el.type === 'video') {
if (!('src' in el)) {
log.warn(`Video element missing src, removing element`);
return null;
}
const src = el.src as string;
if (isGeneratedImageId(src)) {
if (generatedMediaMapping && generatedMediaMapping[src]) {
log.debug(`Resolved generated video ID "${src}" to URL`);
return { ...el, src: generatedMediaMapping[src] };
}
// Keep element with placeholder ID — frontend renders skeleton
log.debug(`Keeping generated video placeholder: ${src}`);
return el;
}
}
return el;
})
.filter((el): el is NonNullable<typeof el> => el !== null);
}
/**
* Fix elements with missing required fields
* Adds default values for fields that AI might not have generated correctly
*/
function fixElementDefaults(
elements: GeneratedSlideData['elements'],
assignedImages?: PdfImage[],
): GeneratedSlideData['elements'] {
return elements.map((el) => {
// Fix line elements
if (el.type === 'line') {
const lineEl = el as Record<string, unknown>;
// Ensure points field exists with default values
if (!lineEl.points || !Array.isArray(lineEl.points) || lineEl.points.length !== 2) {
log.warn(`Line element missing points, adding defaults`);
lineEl.points = ['', ''] as [string, string]; // Default: no markers on either end
}
// Ensure start/end exist
if (!lineEl.start || !Array.isArray(lineEl.start)) {
lineEl.start = [el.left ?? 0, el.top ?? 0];
}
if (!lineEl.end || !Array.isArray(lineEl.end)) {
lineEl.end = [(el.left ?? 0) + (el.width ?? 100), (el.top ?? 0) + (el.height ?? 0)];
}
// Ensure style exists
if (!lineEl.style) {
lineEl.style = 'solid';
}
// Ensure color exists
if (!lineEl.color) {
lineEl.color = '#333333';
}
return lineEl as typeof el;
}
// Fix text elements
if (el.type === 'text') {
const textEl = el as Record<string, unknown>;
if (!textEl.defaultFontName) {
textEl.defaultFontName = 'Microsoft YaHei';
}
if (!textEl.defaultColor) {
textEl.defaultColor = '#333333';
}
if (!textEl.content) {
textEl.content = '';
}
return textEl as typeof el;
}
// Fix image elements
if (el.type === 'image') {
const imageEl = el as Record<string, unknown>;
if (imageEl.fixedRatio === undefined) {
imageEl.fixedRatio = true;
}
// Correct dimensions using known aspect ratio (src is still img_id at this point)
if (assignedImages && typeof imageEl.src === 'string') {
const imgMeta = assignedImages.find((img) => img.id === imageEl.src);
if (imgMeta?.width && imgMeta?.height) {
const knownRatio = imgMeta.width / imgMeta.height;
const curW = (el.width || 400) as number;
const curH = (el.height || 300) as number;
if (Math.abs(curW / curH - knownRatio) / knownRatio > 0.1) {
// Keep width, correct height
const newH = Math.round(curW / knownRatio);
if (newH > 462) {
// canvas 562.5 - margins 50×2
const newW = Math.round(462 * knownRatio);
imageEl.width = newW;
imageEl.height = 462;
} else {
imageEl.height = newH;
}
}
}
}
return imageEl as typeof el;
}
// Fix shape elements
if (el.type === 'shape') {
const shapeEl = el as Record<string, unknown>;
if (!shapeEl.viewBox) {
shapeEl.viewBox = `0 0 ${el.width ?? 100} ${el.height ?? 100}`;
}
if (!shapeEl.path) {
// Default to rectangle
const w = el.width ?? 100;
const h = el.height ?? 100;
shapeEl.path = `M0 0 L${w} 0 L${w} ${h} L0 ${h} Z`;
}
if (!shapeEl.fill) {
shapeEl.fill = '#5b9bd5';
}
if (shapeEl.fixedRatio === undefined) {
shapeEl.fixedRatio = false;
}
return shapeEl as typeof el;
}
return el;
});
}
/**
* Process LaTeX elements: render latex string to HTML using KaTeX.
* Fills in html and fixedRatio fields.
* Elements that fail conversion are removed.
*/
function processLatexElements(
elements: GeneratedSlideData['elements'],
): GeneratedSlideData['elements'] {
return elements
.map((el) => {
if (el.type !== 'latex') return el;
const latexStr = el.latex as string | undefined;
if (!latexStr) {
log.warn('Latex element missing latex string, removing');
return null;
}
try {
const html = katex.renderToString(latexStr, {
throwOnError: false,
displayMode: true,
output: 'html',
});
return {
...el,
html,
fixedRatio: true,
};
} catch (err) {
log.warn(`Failed to render latex "${latexStr}":`, err);
return null;
}
})
.filter((el): el is NonNullable<typeof el> => el !== null);
}
/**
* Generate slide content
*/
async function generateSlideContent(
outline: SceneOutline,
aiCall: AICallFn,
assignedImages?: PdfImage[],
imageMapping?: ImageMapping,
visionEnabled?: boolean,
generatedMediaMapping?: ImageMapping,
agents?: AgentInfo[],
languageDirective?: string,
): Promise<GeneratedSlideContent | null> {
// Build assigned images description for the prompt
let assignedImagesText = '无可用图片,禁止插入任何 image 元素';
let visionImages: Array<{ id: string; src: string }> | undefined;
if (assignedImages && assignedImages.length > 0) {
if (visionEnabled && imageMapping) {
// Vision mode: split into vision images and text-only
const withSrc = assignedImages.filter((img) => imageMapping[img.id]);
const visionSlice = withSrc.slice(0, MAX_VISION_IMAGES);
const textOnlySlice = withSrc.slice(MAX_VISION_IMAGES);
const noSrcImages = assignedImages.filter((img) => !imageMapping[img.id]);
const visionDescriptions = visionSlice.map((img) => formatImagePlaceholder(img));
const textDescriptions = [...textOnlySlice, ...noSrcImages].map((img) =>
formatImageDescription(img),
);
assignedImagesText = [...visionDescriptions, ...textDescriptions].join('\n');
visionImages = visionSlice.map((img) => ({
id: img.id,
src: imageMapping[img.id],
width: img.width,
height: img.height,
}));
} else {
assignedImagesText = assignedImages.map((img) => formatImageDescription(img)).join('\n');
}
}
const generatedImageEntries = outline.mediaGenerations?.filter((mg) => mg.type === 'image') ?? [];
const generatedVideoEntries = outline.mediaGenerations?.filter((mg) => mg.type === 'video') ?? [];
const hasAssignedImages = (assignedImages?.length ?? 0) > 0;
const generatedImageEnabled = generatedImageEntries.length > 0;
const generatedVideoEnabled = generatedVideoEntries.length > 0;
const imageElementEnabled = hasAssignedImages || generatedImageEnabled;
const mediaElementEnabled = imageElementEnabled || generatedVideoEnabled;
// Add generated media placeholders info (images + videos)
if (outline.mediaGenerations && outline.mediaGenerations.length > 0) {
const genImgDescs = generatedImageEntries
.map((mg) => `- ${mg.elementId}: "${mg.prompt}" (aspect ratio: ${mg.aspectRatio || '16:9'})`)
.join('\n');
const genVidDescs = generatedVideoEntries
.map((mg) => `- ${mg.elementId}: "${mg.prompt}" (aspect ratio: ${mg.aspectRatio || '16:9'})`)
.join('\n');
const mediaParts: string[] = [];
if (genImgDescs) {
mediaParts.push(`AI-Generated Images (use these IDs as image element src):\n${genImgDescs}`);
}
if (genVidDescs) {
mediaParts.push(`AI-Generated Videos (use these IDs as video element src):\n${genVidDescs}`);
}
if (mediaParts.length > 0) {
const mediaText = mediaParts.join('\n\n');
if (assignedImagesText.includes('禁止插入') || assignedImagesText.includes('No images')) {
assignedImagesText = mediaText;
} else {
assignedImagesText += `\n\n${mediaText}`;
}
}
}
// Canvas dimensions (matching viewportSize and viewportRatio)
const canvasWidth = 1000;
const canvasHeight = 562.5;
const teacherContext = formatTeacherPersonaForPrompt(agents);
const prompts = buildPrompt(PROMPT_IDS.SLIDE_CONTENT, {
title: outline.title,
description: outline.description,
keyPoints: (outline.keyPoints || []).map((p, i) => `${i + 1}. ${p}`).join('\n'),
elements: '(根据要点自动生成)',
assignedImages: assignedImagesText,
canvas_width: canvasWidth,
canvas_height: canvasHeight,
teacherContext,
languageDirective: languageDirective || '',
imageElementEnabled,
generatedImageEnabled,
generatedVideoEnabled,
mediaElementEnabled,
});
if (!prompts) {
return null;
}
log.debug(`Generating slide content for: ${outline.title}`);
if (assignedImages && assignedImages.length > 0) {
log.debug(`Assigned images: ${assignedImages.map((img) => img.id).join(', ')}`);
}
if (visionImages && visionImages.length > 0) {
log.debug(`Vision images: ${visionImages.map((img) => img.id).join(', ')}`);
}
const response = await aiCall(prompts.system, prompts.user, visionImages);
const generatedData = parseJsonResponse<GeneratedSlideData>(response);
if (!generatedData || !generatedData.elements || !Array.isArray(generatedData.elements)) {
log.error(`Failed to parse AI response for: ${outline.title}`);
return null;
}
log.debug(`Got ${generatedData.elements.length} elements for: ${outline.title}`);
// Debug: Log image elements before resolution
const imageElements = generatedData.elements.filter((el) => el.type === 'image');
if (imageElements.length > 0) {
log.debug(
`Image elements before resolution:`,
imageElements.map((el) => ({
type: el.type,
src:
(el as Record<string, unknown>).src &&
String((el as Record<string, unknown>).src).substring(0, 50),
})),
);
log.debug(`imageMapping keys:`, imageMapping ? Object.keys(imageMapping).length : '0 keys');
}
// Fix elements with missing required fields + aspect ratio correction (while src is still img_id)
const fixedElements = fixElementDefaults(generatedData.elements, assignedImages);
log.debug(`After element fixing: ${fixedElements.length} elements`);
// Process LaTeX elements: render latex string → HTML via KaTeX
const latexProcessedElements = processLatexElements(fixedElements);
log.debug(`After LaTeX processing: ${latexProcessedElements.length} elements`);
// Resolve image_id references to actual URLs
const resolvedElements = resolveImageIds(
latexProcessedElements,
imageMapping,
generatedMediaMapping,
);
log.debug(`After image resolution: ${resolvedElements.length} elements`);
// Process elements, assign unique IDs
const processedElements: PPTElement[] = resolvedElements.map((el) => ({
...el,
id: `${el.type}_${nanoid(8)}`,
rotate: 0,
})) as PPTElement[];
// Process background
let background: SlideBackground | undefined;
if (generatedData.background) {
if (generatedData.background.type === 'solid' && generatedData.background.color) {
background = { type: 'solid', color: generatedData.background.color };
} else if (generatedData.background.type === 'gradient' && generatedData.background.gradient) {
background = {
type: 'gradient',
gradient: generatedData.background.gradient,
};
}
}
return {
elements: processedElements,
background,
remark: generatedData.remark || outline.description,
};
}
/**
* Generate quiz content
*/
async function generateQuizContent(
outline: SceneOutline,
aiCall: AICallFn,
languageDirective?: string,
): Promise<GeneratedQuizContent | null> {
const quizConfig = outline.quizConfig || {
questionCount: 3,
difficulty: 'medium',
questionTypes: ['single'],
};
const prompts = buildPrompt(PROMPT_IDS.QUIZ_CONTENT, {
title: outline.title,
description: outline.description,
keyPoints: (outline.keyPoints || []).map((p, i) => `${i + 1}. ${p}`).join('\n'),
questionCount: quizConfig.questionCount,
difficulty: quizConfig.difficulty,
questionTypes: quizConfig.questionTypes.join(', '),
languageDirective: languageDirective || '',
});
if (!prompts) {
return null;
}
log.debug(`Generating quiz content for: ${outline.title}`);
const response = await aiCall(prompts.system, prompts.user);
const generatedQuestions = parseJsonResponse<QuizQuestion[]>(response);
if (!generatedQuestions || !Array.isArray(generatedQuestions)) {
log.error(`Failed to parse AI response for: ${outline.title}`);
return null;
}
log.debug(`Got ${generatedQuestions.length} questions for: ${outline.title}`);
// Ensure each question has an ID and normalize options format
const questions: QuizQuestion[] = generatedQuestions.map((q) => {
const isText = q.type === 'short_answer';
return {
...q,
id: q.id || `q_${nanoid(8)}`,
options: isText ? undefined : normalizeQuizOptions(q.options),
answer: isText ? undefined : normalizeQuizAnswer(q as unknown as Record<string, unknown>),
hasAnswer: isText ? false : true,
};
});
return { questions };
}
/**
* Normalize quiz options from AI response.
* AI may generate plain strings ["OptionA", "OptionB"] or QuizOption objects.
* This normalizes to QuizOption[] format: { value: "A", label: "OptionA" }
*/
function normalizeQuizOptions(
options: unknown[] | undefined,
): { value: string; label: string }[] | undefined {
if (!options || !Array.isArray(options)) return undefined;
return options.map((opt, index) => {
const letter = String.fromCharCode(65 + index); // A, B, C, D...
if (typeof opt === 'string') {
return { value: letter, label: opt };
}
if (typeof opt === 'object' && opt !== null) {
const obj = opt as Record<string, unknown>;
return {
value: typeof obj.value === 'string' ? obj.value : letter,
label: typeof obj.label === 'string' ? obj.label : String(obj.value || obj.text || letter),
};
}
return { value: letter, label: String(opt) };
});
}
/**
* Normalize quiz answer from AI response.
* AI may generate correctAnswer as string or string[], under various field names.
* This normalizes to string[] format matching option values.
*/
function normalizeQuizAnswer(question: Record<string, unknown>): string[] | undefined {
// AI might use "correctAnswer", "answer", or "correct_answer"
const raw =
question.answer ??
question.correctAnswer ??
(question as Record<string, unknown>).correct_answer;
if (!raw) return undefined;
if (Array.isArray(raw)) {
return raw.map(String);
}
return [String(raw)];
}
/**
* Generate PBL project content
* Uses the agentic loop from lib/pbl/generate-pbl.ts
*/
async function generatePBLSceneContent(
outline: SceneOutline,
languageModel?: LanguageModel,
languageDirective?: string,
thinkingConfig?: ThinkingConfig,
): Promise<GeneratedPBLContent | null> {
if (!languageModel) {
log.error('LanguageModel required for PBL generation');
return null;
}
const pblConfig = outline.pblConfig;
if (!pblConfig) {
log.error(`PBL outline "${outline.title}" missing pblConfig`);
return null;
}
log.info(`Generating PBL content for: ${outline.title}`);
try {
const projectConfig = await generatePBLContent(
{
projectTopic: pblConfig.projectTopic,
projectDescription: pblConfig.projectDescription,
targetSkills: pblConfig.targetSkills,
issueCount: pblConfig.issueCount,
languageDirective: languageDirective || DEFAULT_LANGUAGE_DIRECTIVE,
},
languageModel,
{
onProgress: (msg) => log.info(`${msg}`),
},
thinkingConfig,
);
log.info(
`PBL generated: ${projectConfig.agents.length} agents, ${projectConfig.issueboard.issues.length} issues`,
);
return { projectConfig };
} catch (error) {
log.error(`Failed:`, error);
return null;
}
}
/**
* Extract HTML document from AI response.
* Tries to find <!DOCTYPE html>...</html> first, then falls back to code block extraction.
*/
function extractHtml(response: string): string | null {
// Strategy 1: Find complete HTML document
const doctypeStart = response.indexOf('<!DOCTYPE html>');
const htmlTagStart = response.indexOf('<html');
const start = doctypeStart !== -1 ? doctypeStart : htmlTagStart;
if (start !== -1) {
const htmlEnd = response.lastIndexOf('</html>');
if (htmlEnd !== -1) {
return response.substring(start, htmlEnd + 7);
}
}
// Strategy 2: Extract from code block
const codeBlockMatch = response.match(/```(?:html)?\s*([\s\S]*?)```/);
if (codeBlockMatch) {
const content = codeBlockMatch[1].trim();
if (content.includes('<html') || content.includes('<!DOCTYPE')) {
return content;
}
}
// Strategy 3: If response itself looks like HTML
const trimmed = response.trim();
if (trimmed.startsWith('<!DOCTYPE') || trimmed.startsWith('<html')) {
return trimmed;
}
log.error('Could not extract HTML from response');
log.error('Response preview:', response.substring(0, 200));
return null;
}
// ==================== Ultra Mode Widget Generation ====================
/**
* Generate widget content based on widget type (Ultra Mode)
*/
async function generateWidgetContent(
outline: SceneOutline,
aiCall: AICallFn,
languageDirective?: string,
): Promise<GeneratedInteractiveContent | null> {
const widgetType = outline.widgetType;
const widgetOutline = outline.widgetOutline;
if (!widgetType || !widgetOutline) {
log.warn(`Interactive outline missing widget config, falling back to standard interactive`);
return null;
}
// Select appropriate prompt based on widget type
let promptId: PromptId;
let variables: Record<string, unknown>;
switch (widgetType) {
case 'simulation':
promptId = PROMPT_IDS.SIMULATION_CONTENT;
variables = {
conceptName: widgetOutline.concept || outline.title,
conceptOverview: outline.description,
keyPoints: (outline.keyPoints || []).join('\n'),
variables: widgetOutline.keyVariables?.join(', ') || '',
designIdea: '',
languageDirective: languageDirective || '',
};
break;
case 'diagram':
promptId = PROMPT_IDS.DIAGRAM_CONTENT;
variables = {
title: outline.title,
diagramType: widgetOutline.diagramType || 'flowchart',
description: outline.description,
keyPoints: (outline.keyPoints || []).join('\n'),
languageDirective: languageDirective || '',
};
break;
case 'code':
promptId = PROMPT_IDS.CODE_CONTENT;
variables = {
title: outline.title,
programmingLanguage: widgetOutline.language || 'python',
description: outline.description,
keyPoints: (outline.keyPoints || []).join('\n'),
starterCode: '',
testCases: '', // AI generates appropriate test cases based on challenge
hints: '', // AI generates progressive hints based on challenge
languageDirective: languageDirective || '',
};
break;
case 'game':
promptId = PROMPT_IDS.GAME_CONTENT;
variables = {
title: outline.title,
gameType: widgetOutline.gameType || 'quiz',
description: outline.description,
keyPoints: (outline.keyPoints || []).join('\n'),
scoring: { correctPoints: 10, speedBonus: 5 },
languageDirective: languageDirective || '',
};
break;
case 'visualization3d':
promptId = PROMPT_IDS.VISUALIZATION3D_CONTENT;
variables = {
title: outline.title,
visualizationType: widgetOutline.visualizationType || 'custom',
description: outline.description,
keyPoints: (outline.keyPoints || []).join('\n'),
objects: widgetOutline.objects || [],
interactions: widgetOutline.interactions || [],
languageDirective: languageDirective || '',
};
break;
default:
log.warn(`Unknown widget type: ${widgetType}`);
return null;
}
const prompts = buildPrompt(promptId, variables);
if (!prompts) {
log.error(`Failed to build ${widgetType} prompt for: ${outline.title}`);
return null;
}
log.info(`Generating ${widgetType} widget for: ${outline.title}`);
const response = await aiCall(prompts.system, prompts.user);
const html = extractHtml(response);
if (!html) {
log.error(`Failed to extract HTML from ${widgetType} response for: ${outline.title}`);
return null;
}
// Extract widget config from HTML if present
const widgetConfig = extractWidgetConfig(html);
// Generate teacher actions
const teacherActions = await generateWidgetTeacherActions(
widgetType,
outline,
widgetConfig,
aiCall,
languageDirective,
);
log.info(
`[Ultra Mode] Generated ${teacherActions?.length || 0} teacher actions for "${outline.title}" (${widgetType})`,
);
if (teacherActions && teacherActions.length > 0) {
log.info(
`[Ultra Mode] Teacher actions for "${outline.title}": ${JSON.stringify(teacherActions, null, 2)}`,
);
}
return {
html: postProcessInteractiveHtml(html),
widgetType,
widgetConfig,
teacherActions,
};
}
/**
* Extract widget config from embedded JSON in HTML
*/
function extractWidgetConfig(html: string): WidgetConfig | undefined {
const match = html.match(
/<script type="application\/json" id="widget-config">([\s\S]*?)<\/script>/,
);
if (!match) return undefined;
try {
return JSON.parse(match[1]);
} catch {
return undefined;
}
}
/**
* Generate teacher actions for a widget
*/
async function generateWidgetTeacherActions(
widgetType: WidgetType,
outline: SceneOutline,
widgetConfig: WidgetConfig | undefined,
aiCall: AICallFn,
languageDirective?: string,
): Promise<TeacherAction[] | undefined> {
const prompts = buildPrompt(PROMPT_IDS.WIDGET_TEACHER_ACTIONS, {
widgetType,
description: outline.description,
keyPoints: (outline.keyPoints || []).join('\n'),
widgetConfig: JSON.stringify(widgetConfig || {}),
languageDirective: languageDirective || '',
});
if (!prompts) return undefined;
try {
const response = await aiCall(prompts.system, prompts.user);
const parsed = parseJsonResponse<{ actions: TeacherAction[] }>(response);
return parsed?.actions;
} catch {
return undefined;
}
}
/**
* Step 3.2: Generate Actions based on content and script
*/
export async function generateSceneActions(
outline: SceneOutline,
content:
| GeneratedSlideContent
| GeneratedQuizContent
| GeneratedInteractiveContent
| GeneratedPBLContent,
aiCall: AICallFn,
options: SceneActionsOptions = {},
): Promise<Action[]> {
const { ctx, agents, userProfile, languageDirective } = options;
const agentsText = formatAgentsForPrompt(agents);
// Debug: Log content type and teacherActions presence for interactive scenes
if (outline.type === 'interactive') {
const hasHtml = 'html' in content;
const teacherActionsCount = hasHtml ? content.teacherActions?.length || 0 : 0;
log.info(
`[Actions Gen] Interactive "${outline.title}": hasHtml=${hasHtml}, teacherActions=${teacherActionsCount}, widgetType=${hasHtml ? content.widgetType : 'N/A'}`,
);
}
// Ultra Mode: If interactive content has teacherActions, convert and use them
// Skip normal action generation for widget-based interactive scenes
if (outline.type === 'interactive' && 'html' in content && content.teacherActions?.length) {
log.info(
`[Ultra Mode] Converting ${content.teacherActions.length} teacherActions to Actions for: ${outline.title}`,
);
return convertTeacherActionsToActions(content.teacherActions);
}
if (outline.type === 'slide' && 'elements' in content) {
// Format element list for AI to select from
const elementsText = formatElementsForPrompt(content.elements);
const prompts = buildPrompt(PROMPT_IDS.SLIDE_ACTIONS, {
title: outline.title,
keyPoints: (outline.keyPoints || []).map((p, i) => `${i + 1}. ${p}`).join('\n'),
description: outline.description,
elements: elementsText,
courseContext: buildCourseContext(ctx),
agents: agentsText,
userProfile: userProfile || '',
languageDirective: languageDirective || '',
});
if (!prompts) {
return generateDefaultSlideActions(outline, content.elements);
}
const response = await aiCall(prompts.system, prompts.user);
const actions = parseActionsFromStructuredOutput(response, outline.type);
if (actions.length > 0) {
// Validate and fill in Action IDs
return processActions(actions, content.elements, agents);
}
return generateDefaultSlideActions(outline, content.elements);
}
if (outline.type === 'quiz' && 'questions' in content) {
// Format question list for AI reference
const questionsText = formatQuestionsForPrompt(content.questions);
const prompts = buildPrompt(PROMPT_IDS.QUIZ_ACTIONS, {
title: outline.title,
keyPoints: (outline.keyPoints || []).map((p, i) => `${i + 1}. ${p}`).join('\n'),
description: outline.description,
questions: questionsText,
courseContext: buildCourseContext(ctx),
agents: agentsText,
languageDirective: languageDirective || '',
});
if (!prompts) {
return generateDefaultQuizActions(outline);
}
const response = await aiCall(prompts.system, prompts.user);
const actions = parseActionsFromStructuredOutput(response, outline.type);
if (actions.length > 0) {
return processActions(actions, [], agents);
}
return generateDefaultQuizActions(outline);
}
if (outline.type === 'interactive' && 'html' in content) {
const config = outline.interactiveConfig;
const agentsText = formatAgentsForPrompt(agents);
const prompts = buildPrompt(PROMPT_IDS.INTERACTIVE_ACTIONS, {
title: outline.title,
keyPoints: (outline.keyPoints || []).map((p, i) => `${i + 1}. ${p}`).join('\n'),
description: outline.description,
conceptName: config?.conceptName || outline.title,
designIdea: config?.designIdea || '',
courseContext: buildCourseContext(ctx),
agents: agentsText,
languageDirective: languageDirective || '',
});
if (!prompts) {
return generateDefaultInteractiveActions(outline);
}
const response = await aiCall(prompts.system, prompts.user);
const actions = parseActionsFromStructuredOutput(response, outline.type);
if (actions.length > 0) {
return processActions(actions, [], agents);
}
return generateDefaultInteractiveActions(outline);
}
if (outline.type === 'pbl' && 'projectConfig' in content) {
const pblConfig = outline.pblConfig;
const agentsText = formatAgentsForPrompt(agents);
const prompts = buildPrompt(PROMPT_IDS.PBL_ACTIONS, {
title: outline.title,
keyPoints: (outline.keyPoints || []).map((p, i) => `${i + 1}. ${p}`).join('\n'),
description: outline.description,
projectTopic: pblConfig?.projectTopic || outline.title,
projectDescription: pblConfig?.projectDescription || outline.description,
courseContext: buildCourseContext(ctx),
agents: agentsText,
languageDirective: languageDirective || '',
});
if (!prompts) {
return generateDefaultPBLActions(outline);
}
const response = await aiCall(prompts.system, prompts.user);
const actions = parseActionsFromStructuredOutput(response, outline.type);
if (actions.length > 0) {
return processActions(actions, [], agents);
}
return generateDefaultPBLActions(outline);
}
return [];
}
/**
* Generate default PBL Actions (fallback)
*/
function generateDefaultPBLActions(_outline: SceneOutline): Action[] {
return [
{
id: `action_${nanoid(8)}`,
type: 'speech',
title: 'PBL 项目介绍',
text: '现在让我们开始一个项目式学习活动。请选择你的角色,查看任务看板,开始协作完成项目。',
},
];
}
/**
* Format element list for AI to select elementId
*/
function formatElementsForPrompt(elements: PPTElement[]): string {
return elements
.map((el) => {
let summary = '';
if (el.type === 'text' && 'content' in el) {
// Extract text content summary (strip HTML tags)
const textContent = ((el.content as string) || '').replace(/<[^>]*>/g, '').substring(0, 50);
summary = `Content summary: "${textContent}${textContent.length >= 50 ? '...' : ''}"`;
} else if (el.type === 'chart' && 'chartType' in el) {
summary = `Chart type: ${el.chartType}`;
} else if (el.type === 'image') {
summary = 'Image element';
} else if (el.type === 'shape' && 'shapeName' in el) {
summary = `Shape: ${el.shapeName || 'unknown'}`;
} else if (el.type === 'latex' && 'latex' in el) {
summary = `Formula: ${((el.latex as string) || '').substring(0, 30)}`;
} else {
summary = `${el.type} element`;
}
return `- id: "${el.id}", type: "${el.type}", ${summary}`;
})
.join('\n');
}
/**
* Format question list for AI reference
*/
function formatQuestionsForPrompt(questions: QuizQuestion[]): string {
return questions
.map((q, i) => {
const optionsText = q.options
? `Options: ${q.options.map((o) => `${o.value}. ${o.label}`).join(', ')}`
: '';
return `Q${i + 1} (${q.type}): ${q.question}\n${optionsText}`;
})
.join('\n\n');
}
/**
* Convert Ultra Mode teacherActions to standard Actions for playback.
*
* TeacherAction types: speech, highlight, annotation, reveal, setState
* Action types: speech, widget_highlight, widget_setState, widget_annotation, widget_reveal
*
* Conversion strategy:
* - speech → single speech Action
* - highlight/setState/annotation/reveal with content → TWO Actions:
* 1. widget action (visual/state change) - quick, non-blocking
* 2. speech action (narration) - PlaybackEngine handles TTS
* - highlight/setState/annotation/reveal without content → single widget action
*/
function convertTeacherActionsToActions(teacherActions: TeacherAction[]): Action[] {
const actions: Action[] = [];
for (const ta of teacherActions) {
// Always use nanoid for unique action IDs to prevent audio ID collisions
// Ultra Mode generates sequential IDs like "action_1" which are NOT unique across scenes
const actionId = `action_${nanoid(8)}`;
const base = {
id: actionId,
title: ta.label || '',
};
switch (ta.type) {
case 'speech':
actions.push({
...base,
type: 'speech',
text: ta.content || '',
} as SpeechAction);
break;
case 'highlight':
// Add widget highlight action (visual, quick)
actions.push({
...base,
type: 'widget_highlight',
target: ta.target || '',
content: undefined, // No speech in widget action
} as WidgetHighlightAction);
// Add speech action for narration (if content exists)
if (ta.content) {
actions.push({
id: `${base.id}_speech`,
type: 'speech',
text: ta.content,
title: base.title,
} as SpeechAction);
}
break;
case 'setState':
// Add widget setState action
actions.push({
...base,
type: 'widget_setState',
state: ta.state || {},
content: undefined,
} as WidgetSetStateAction);
// Add speech action for narration
if (ta.content) {
actions.push({
id: `${base.id}_speech`,
type: 'speech',
text: ta.content,
title: base.title,
} as SpeechAction);
}
break;
case 'annotation':
actions.push({
...base,
type: 'widget_annotation',
target: ta.target || '',
content: undefined,
} as WidgetAnnotationAction);
if (ta.content) {
actions.push({
id: `${base.id}_speech`,
type: 'speech',
text: ta.content,
title: base.title,
} as SpeechAction);
}
break;
case 'reveal':
actions.push({
...base,
type: 'widget_reveal',
target: ta.target || '',
content: undefined,
} as WidgetRevealAction);
if (ta.content) {
actions.push({
id: `${base.id}_speech`,
type: 'speech',
text: ta.content,
title: base.title,
} as SpeechAction);
}
break;
default:
// Fallback to speech for unknown types
actions.push({
...base,
type: 'speech',
text: ta.content || '',
} as SpeechAction);
}
}
return actions;
}
/**
* Process and validate Actions
*/
function processActions(actions: Action[], elements: PPTElement[], agents?: AgentInfo[]): Action[] {
const elementIds = new Set(elements.map((el) => el.id));
const agentIds = new Set(agents?.map((a) => a.id) || []);
const studentAgents = agents?.filter((a) => a.role === 'student') || [];
const nonTeacherAgents = agents?.filter((a) => a.role !== 'teacher') || [];
return actions.map((action) => {
// Ensure each action has an ID
const processedAction: Action = {
...action,
id: action.id || `action_${nanoid(8)}`,
};
// Validate spotlight elementId
if (processedAction.type === 'spotlight') {
const spotlightAction = processedAction;
if (!spotlightAction.elementId || !elementIds.has(spotlightAction.elementId)) {
// If elementId is invalid, try selecting the first element
if (elements.length > 0) {
spotlightAction.elementId = elements[0].id;
log.warn(
`Invalid elementId, falling back to first element: ${spotlightAction.elementId}`,
);
}
}
}
// Validate/fill discussion agentId
if (processedAction.type === 'discussion' && agents && agents.length > 0) {
if (processedAction.agentId && agentIds.has(processedAction.agentId)) {
// agentId valid — keep it
} else {
// agentId missing or invalid — pick a random student, or non-teacher, or skip
const pool = studentAgents.length > 0 ? studentAgents : nonTeacherAgents;
if (pool.length > 0) {
const picked = pool[Math.floor(Math.random() * pool.length)];
log.warn(
`Discussion agentId "${processedAction.agentId || '(none)'}" invalid, assigned: ${picked.id} (${picked.name})`,
);
processedAction.agentId = picked.id;
}
}
}
return processedAction;
});
}
/**
* Generate default slide Actions (fallback)
*/
function generateDefaultSlideActions(outline: SceneOutline, elements: PPTElement[]): Action[] {
const actions: Action[] = [];
// Add spotlight for text elements
const textElements = elements.filter((el) => el.type === 'text');
if (textElements.length > 0) {
actions.push({
id: `action_${nanoid(8)}`,
type: 'spotlight',
title: '聚焦重点',
elementId: textElements[0].id,
});
}
// Add opening speech based on key points
const speechText = outline.keyPoints?.length
? outline.keyPoints.join('。') + '。'
: outline.description || outline.title;
actions.push({
id: `action_${nanoid(8)}`,
type: 'speech',
title: '场景讲解',
text: speechText,
});
return actions;
}
/**
* Generate default quiz Actions (fallback)
*/
function generateDefaultQuizActions(_outline: SceneOutline): Action[] {
return [
{
id: `action_${nanoid(8)}`,
type: 'speech',
title: '测验引导',
text: '现在让我们来做一个小测验,检验一下学习成果。',
},
];
}
/**
* Generate default interactive Actions (fallback)
*/
function generateDefaultInteractiveActions(_outline: SceneOutline): Action[] {
return [
{
id: `action_${nanoid(8)}`,
type: 'speech',
title: '交互引导',
text: '现在让我们通过交互式可视化来探索这个概念。请尝试操作页面中的元素,观察变化。',
},
];
}
/**
* Create a complete scene with Actions
*/
export function createSceneWithActions(
outline: SceneOutline,
content:
| GeneratedSlideContent
| GeneratedQuizContent
| GeneratedInteractiveContent
| GeneratedPBLContent,
actions: Action[],
api: ReturnType<typeof createStageAPI>,
): string | null {
if (outline.type === 'slide' && 'elements' in content) {
// Build complete Slide object
const defaultTheme: SlideTheme = {
backgroundColor: '#ffffff',
themeColors: ['#5b9bd5', '#ed7d31', '#a5a5a5', '#ffc000', '#4472c4'],
fontColor: '#333333',
fontName: 'Microsoft YaHei',
outline: { color: '#d14424', width: 2, style: 'solid' },
shadow: { h: 0, v: 0, blur: 10, color: '#000000' },
};
const slide: Slide = {
id: nanoid(),
viewportSize: 1000,
viewportRatio: 0.5625,
theme: defaultTheme,
elements: content.elements,
background: content.background,
};
const sceneResult = api.scene.create({
type: 'slide',
title: outline.title,
order: outline.order,
content: {
type: 'slide',
canvas: slide,
},
actions,
});
return sceneResult.success ? (sceneResult.data ?? null) : null;
}
if (outline.type === 'quiz' && 'questions' in content) {
const sceneResult = api.scene.create({
type: 'quiz',
title: outline.title,
order: outline.order,
content: {
type: 'quiz',
questions: content.questions,
},
actions,
});
return sceneResult.success ? (sceneResult.data ?? null) : null;
}
if (outline.type === 'interactive' && 'html' in content) {
const sceneResult = api.scene.create({
type: 'interactive',
title: outline.title,
order: outline.order,
content: {
type: 'interactive',
url: '',
html: content.html,
// Ultra Mode widget fields
widgetType: content.widgetType,
widgetConfig: content.widgetConfig,
teacherActions: content.teacherActions,
},
actions,
});
return sceneResult.success ? (sceneResult.data ?? null) : null;
}
if (outline.type === 'pbl' && 'projectConfig' in content) {
const sceneResult = api.scene.create({
type: 'pbl',
title: outline.title,
order: outline.order,
content: {
type: 'pbl',
projectConfig: content.projectConfig,
},
actions,
});
return sceneResult.success ? (sceneResult.data ?? null) : null;
}
return null;
}
|