feat: init

This commit is contained in:
2025-09-01 02:28:55 +07:00
commit eb357ef703
21 changed files with 6628 additions and 0 deletions

283
src/interpreter.ts Normal file
View File

@@ -0,0 +1,283 @@
import type {
QuestProgram,
GraphNode,
NodeDefinition,
InitialNode,
ActionNode,
EndingNode,
OptionChoice
} from './ast';
/**
* Runtime state of the quest
*/
export interface QuestState {
currentNode: string;
history: string[];
isComplete: boolean;
endingTitle?: string;
}
/**
* Result of executing a choice
*/
export interface ExecutionResult {
success: boolean;
newState: QuestState;
error?: string;
}
/**
* Visitor interface for quest nodes
*/
export interface QuestVisitor {
visitInitialNode(node: InitialNode, state: QuestState): void;
visitActionNode(node: ActionNode, state: QuestState): void;
visitEndingNode(node: EndingNode, state: QuestState): void;
}
/**
* Interpreter for QuestLang programs
*/
export class QuestInterpreter {
private program: QuestProgram;
private currentState: QuestState;
constructor(program: QuestProgram) {
this.program = program;
this.currentState = {
currentNode: program.graph.start,
history: [],
isComplete: false
};
}
/**
* Get the current quest state
*/
public getState(): QuestState {
return { ...this.currentState };
}
/**
* Get quest information
*/
public getQuestInfo(): { name: string; goal: string; isComplete: boolean } {
return {
name: this.program.name,
goal: this.program.goal,
isComplete: this.currentState.isComplete
};
}
/**
* Get the quest program
*/
public getProgram(): QuestProgram {
return this.program;
}
/**
* Get current node information
*/
public getCurrentNode(): NodeDefinition | null {
const nodeId = this.currentState.currentNode;
return this.program.graph.nodes[nodeId] || null;
}
/**
* Get available choices for current action node
*/
public getAvailableChoices(): OptionChoice[] {
const currentNode = this.getCurrentNode();
if (!currentNode || currentNode.nodeType !== 'действие') {
return [];
}
return (currentNode as ActionNode).options;
}
/**
* Execute a choice by index
*/
public executeChoice(choiceIndex: number): ExecutionResult {
const currentNode = this.getCurrentNode();
if (!currentNode) {
return {
success: false,
newState: this.currentState,
error: `Current node '${this.currentState.currentNode}' not found`
};
}
if (currentNode.nodeType !== 'действие') {
return {
success: false,
newState: this.currentState,
error: `Cannot execute choice on node type '${currentNode.nodeType}'`
};
}
const actionNode = currentNode as ActionNode;
const choices = actionNode.options;
if (choiceIndex < 0 || choiceIndex >= choices.length) {
return {
success: false,
newState: this.currentState,
error: `Invalid choice index: ${choiceIndex}. Available choices: 0-${choices.length - 1}`
};
}
const choice = choices[choiceIndex];
return this.moveToNode(choice.target);
}
/**
* Move to a specific node
*/
public moveToNode(nodeId: string): ExecutionResult {
const targetNode = this.program.graph.nodes[nodeId];
if (!targetNode) {
return {
success: false,
newState: this.currentState,
error: `Target node '${nodeId}' not found`
};
}
// Update state
const newState: QuestState = {
currentNode: nodeId,
history: [...this.currentState.history, this.currentState.currentNode],
isComplete: targetNode.nodeType === 'концовка',
endingTitle: targetNode.nodeType === 'концовка' ? (targetNode as EndingNode).title : undefined
};
this.currentState = newState;
return {
success: true,
newState: { ...newState }
};
}
/**
* Reset quest to initial state
*/
public reset(): void {
this.currentState = {
currentNode: this.program.graph.start,
history: [],
isComplete: false
};
}
/**
* Get all possible paths from current state (for debugging/analysis)
*/
public getAllPaths(): string[][] {
const paths: string[][] = [];
const visited = new Set<string>();
this.findPaths(this.currentState.currentNode, [this.currentState.currentNode], paths, visited);
return paths;
}
private findPaths(nodeId: string, currentPath: string[], allPaths: string[][], visited: Set<string>): void {
const node = this.program.graph.nodes[nodeId];
if (!node || visited.has(nodeId)) {
return;
}
if (node.nodeType === 'концовка') {
allPaths.push([...currentPath]);
return;
}
visited.add(nodeId);
if (node.nodeType === 'действие') {
const actionNode = node as ActionNode;
for (const option of actionNode.options) {
this.findPaths(option.target, [...currentPath, option.target], allPaths, new Set(visited));
}
} else if (node.nodeType === 'начальный') {
const initialNode = node as InitialNode;
for (const transition of initialNode.transitions) {
this.findPaths(transition, [...currentPath, transition], allPaths, new Set(visited));
}
}
}
/**
* Validate the quest graph for consistency
*/
public validate(): { isValid: boolean; errors: string[] } {
const errors: string[] = [];
const nodeIds = Object.keys(this.program.graph.nodes);
// Check if start node exists
if (!this.program.graph.nodes[this.program.graph.start]) {
errors.push(`Start node '${this.program.graph.start}' does not exist`);
}
// Check all node references
for (const [nodeId, node] of Object.entries(this.program.graph.nodes)) {
if (node.nodeType === 'действие') {
const actionNode = node as ActionNode;
for (const option of actionNode.options) {
if (!this.program.graph.nodes[option.target]) {
errors.push(`Node '${nodeId}' references non-existent target '${option.target}'`);
}
}
} else if (node.nodeType === 'начальный') {
const initialNode = node as InitialNode;
for (const transition of initialNode.transitions) {
if (!this.program.graph.nodes[transition]) {
errors.push(`Initial node '${nodeId}' references non-existent transition '${transition}'`);
}
}
}
}
// Check for unreachable nodes
const reachable = new Set<string>();
this.findReachableNodes(this.program.graph.start, reachable);
for (const nodeId of nodeIds) {
if (!reachable.has(nodeId)) {
errors.push(`Node '${nodeId}' is unreachable`);
}
}
return {
isValid: errors.length === 0,
errors
};
}
private findReachableNodes(nodeId: string, reachable: Set<string>): void {
if (reachable.has(nodeId)) return;
const node = this.program.graph.nodes[nodeId];
if (!node) return;
reachable.add(nodeId);
if (node.nodeType === 'действие') {
const actionNode = node as ActionNode;
for (const option of actionNode.options) {
this.findReachableNodes(option.target, reachable);
}
} else if (node.nodeType === 'начальный') {
const initialNode = node as InitialNode;
for (const transition of initialNode.transitions) {
this.findReachableNodes(transition, reachable);
}
}
}
}