Beispiel #1
0
 public RoutineService(
     StoryService storyService)
 {
     this.storyService              = storyService;
     this.storyService.StoryOpened += StoryService_StoryOpened;
     this.storyService.StoryClosed += StoryService_StoryClosed;
 }
Beispiel #2
0
        public VariableViewService(
            StoryService storyService)
        {
            this.storyService = storyService;

            localsViews  = new Dictionary <KeyValuePair <int, int>, VariableView>();
            globalsViews = new Dictionary <int, VariableView>();
        }
Beispiel #3
0
 public StorageService(
     StoryService storyService,
     GameScriptService gameScriptService)
 {
     this.storyPersistence      = storyService;
     storyService.StoryOpened  += StoryService_StoryOpened;
     storyService.StoryClosing += StoryService_StoryClosing;
     this.gameScriptPersistence = gameScriptService;
 }
Beispiel #4
0
        public DebuggerService(
            StoryService storyService,
            BreakpointService breakpointService,
            RoutineService routineService)
        {
            this.storyService               = storyService;
            this.storyService.StoryOpened  += StoryService_StoryOpened;
            this.storyService.StoryClosing += StoryService_StoryClosing;

            this.breakpointService = breakpointService;
            this.routineService    = routineService;
        }
Beispiel #5
0
 public StorageService(
     StoryService storyService,
     BreakpointService breakpointService,
     GameScriptService gameScriptService,
     RoutineService routineService)
 {
     this.storyPersistence      = storyService;
     storyService.StoryOpened  += StoryService_StoryOpened;
     storyService.StoryClosing += StoryService_StoryClosing;
     this.breakpointPersistence = breakpointService;
     this.gameScriptPersistence = gameScriptService;
     this.routinePersistence    = routineService;
 }
Beispiel #6
0
 public StorageService(
     StoryService storyService,
     BreakpointService breakpointService,
     DataBreakpointService dataBreakpointService,
     GameScriptService gameScriptService,
     RoutineService routineService,
     VariableViewService variableViewService
     )
 {
     this.storyPersistence          = storyService;
     storyService.StoryOpened      += StoryService_StoryOpened;
     storyService.StoryClosing     += StoryService_StoryClosing;
     this.breakpointPersistence     = breakpointService;
     this.dataBreakpointPersistence = dataBreakpointService;
     this.gameScriptPersistence     = gameScriptService;
     this.routinePersistence        = routineService;
     this.variableViewsPersistence  = variableViewService;
 }
Beispiel #7
0
 public DataBreakpointService(StoryService storyService)
 {
     this.storyService              = storyService;
     this.storyService.StoryClosed += StoryService_StoryClosed;
     this.storyService.StoryOpened += StoryService_StoryOpened;
 }
 public CommandLineArgumentsService(StoryService storyService, DebuggerService debuggerService)
 {
     this.storyService    = storyService;
     this.debuggerService = debuggerService;
 }
Beispiel #9
0
 public GameScriptService(StoryService storyService)
 {
     this.storyService              = storyService;
     this.storyService.StoryClosed += StoryService_StoryClosed;
 }