Exemple #1
0
 public virtual GotoInstruction Goto(uint linearAddress)
 {
     var gi = new GotoInstruction(Address.Ptr32(linearAddress));
     Emit(gi);
     return gi;
 }
Exemple #2
0
 void InstructionVisitor.VisitGotoInstruction(GotoInstruction def)
 {
     writer.Write("Jump");
     throw new NotImplementedException();
 }
Exemple #3
0
 public GotoInstruction Goto(Expression dest)
 {
     var gi = new GotoInstruction(dest);
     Emit(gi);
     return gi;
 }
Exemple #4
0
 public DataType VisitGotoInstruction(GotoInstruction g)
 {
     throw new NotImplementedException();
 }
Exemple #5
0
 public void VisitGotoInstruction(GotoInstruction g)
 {
     throw new NotImplementedException();
 }
 public void VisitGotoInstruction(GotoInstruction g)
 {
     d.VisitGotoInstruction(g);
 }
 void InstructionVisitor.VisitGotoInstruction(GotoInstruction g)
 {
     throw new NotImplementedException();
 }
Exemple #8
0
 public bool VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     gotoInstruction.Target.Accept(expVisitor);
     return(true);
 }
Exemple #9
0
 public AbsynStatement VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     throw new NotImplementedException();
 }
Exemple #10
0
 public Instruction VisitGotoInstruction(GotoInstruction g)
 {
     return(se.VisitGotoInstruction(g));
 }
Exemple #11
0
 public Instruction VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     return(gotoInstruction);
 }
Exemple #12
0
 public bool VisitGotoInstruction(GotoInstruction g)
 {
     g.Condition.Accept(eval);
     g.Target.Accept(eval);
     return(true);
 }
Exemple #13
0
        public void evalInstruction(InstructionExpression instr)
        {
            if (instr is ValueExpression)
            {
                valueExp = (ValueExpression)instr;

                if (valueExp.type == ObjectType.intType)
                {
                    variables.Add(valueExp.name, new ObjectExpression(valueExp.type, 0));
                }
                else if (valueExp.type == ObjectType.booleanType)
                {
                    variables.Add(valueExp.name, new ObjectExpression(valueExp.type, false));
                }
                else if (valueExp.type == ObjectType.stringType)
                {
                    variables.Add(valueExp.name, new ObjectExpression(valueExp.type, ""));
                }

                if (valueExp.value != null)
                {
                    variables[valueExp.name] = new ObjectExpression(valueExp.type, evalSimpleExpression(valueExp.value).value);
                }

                return;
            }
            else if (instr is AssignExpression)
            {
                assignExp = (AssignExpression)instr;

                variables[assignExp.name] = evalSimpleExpression(assignExp.value);

                return;
            }
            else if (instr is OpenMsgDialogInstruction)
            {
                gScreen.msgBox.openBox();
                return;
            }
            else if (instr is MsgDisplayInstruction)
            {
                msgExp = (MsgDisplayInstruction)instr;

                o1 = evalSimpleExpression(msgExp.msg);

                if (o1.type != ObjectType.stringType)
                {
                    return;
                }

                gScreen.msgBox.setText((string)o1.value);

                return;
            }
            else if (instr is NextMsgDialogInstruction)
            {
                shouldEvalSeq = false;
                gScreen.msgBox.showNextButton();
                return;
            }
            else if (instr is CloseMsgDialogInstruction)
            {
                shouldEvalSeq = false;
                gScreen.msgBox.showCloseButton();
                return;
            }
            else if (instr is SwitchCharacterInstruction)
            {
                try
                {
                    gScreen.msgBox.switchCharacter(IrisData.characters[((SwitchCharacterInstruction)instr).character.name]);
                }
                catch (Exception e)
                {
                    return;
                }

                return;
            }
            else if (instr is RemoveCharacter)
            {
                gScreen.msgBox.removeCharacter();
                return;
            }
            else if (instr is SetVariableInstruction)
            {
                setExp = (SetVariableInstruction)instr;

                /*if (!playerVariables.ContainsKey(setExp.variable.name))
                 * {
                 *  playerVariables.Add(setExp.variable.name, -1);
                 * }
                 *
                 * playerVariables[setExp.variable.name] = (int)(evalSimpleExpression(setExp.value).value);*/
                IrisData.setPlayerVariable(setExp.variable.name, (int)(evalSimpleExpression(setExp.value).value));

                return;
            }
            else if (instr is InputInstruction)
            {
                inputExp = (InputInstruction)instr;

                o1 = variables[inputExp.name];

                shouldEvalSeq = false;

                if (o1.type == ObjectType.intType)
                {
                    gScreen.iBox.openBox(InputBox.InputType.INT_INPUT);

                    lastInstr = inputExp;
                }
                else if (o1.type == ObjectType.stringType)
                {
                    gScreen.iBox.openBox(InputBox.InputType.STRING_INPUT);

                    lastInstr = inputExp;
                }

                return;
            }
            else if (instr is MenuInstruction)
            {
                menuExp       = (MenuInstruction)instr;
                shouldEvalSeq = false;

                gScreen.menBox.setChoices(((MenuInstruction)instr).choices);
                gScreen.menBox.openMenu();

                lastInstr = menuExp;

                return;
            }
            else if (instr is PlayMediaInstruction)
            {
                playExp = (PlayMediaInstruction)instr;

                /*if (!IrisData.sounds.ContainsKey(playExp.name))
                 * {
                 *  return;
                 * }*/
                //else if(IrisData.
                try
                {
                    gScreen.playMedia(IrisData.sounds[playExp.name]);
                }
                catch (Exception e)
                {
                    return;
                }

                return;
            }
            else if (instr is StopMediaInstruction)
            {
                gScreen.stopMedia();
                return;
            }
            else if (instr is ShowImageInstruction)
            {
                showExp = (ShowImageInstruction)instr;

                if (showExp.image is VariableExpression)
                {
                    img = IrisData.images[((VariableExpression)showExp.image).name];
                }
                else
                {
                    memberExp = (MemberAccessExpression)showExp.image;

                    charac = IrisData.characters[memberExp.name];
                    img    = charac.getImage(memberExp.field);
                }

                gScreen.showImage(img, showExp.position);

                return;
            }
            else if (instr is SetBackgroundInstruction)
            {
                bgdInstr = (SetBackgroundInstruction)instr;

                try
                {
                    gScreen.setBackground(IrisData.backgrounds[bgdInstr.image.name]);
                }
                catch (Exception e)
                {
                    return;
                }

                return;
            }
            else if (instr is CleanBackgroundInstruction)
            {
                gScreen.clearBackground();
                return;
            }
            else if (instr is CleanForegroundInstruction)
            {
                gScreen.clearForeGround();
                return;
            }
            else if (instr is GotoInstruction)
            {
                gotoExp = (GotoInstruction)instr;

                npcExp = gotoExp.npc;

                evalExpression(IrisData.npcs[npcExp.npc].labels[npcExp.label]);

                return;
            }
        }
Exemple #14
0
 public Instruction VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     // Goto instructions always go to a constant label.
     return(gotoInstruction);
 }
 void InstructionVisitor.VisitGotoInstruction(GotoInstruction g)
 {
     throw new NotImplementedException();
 }
Exemple #16
0
 public Instruction VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     throw new NotImplementedException();
 }
Exemple #17
0
 public void VisitGotoInstruction(GotoInstruction g)
 {
     writer.Indent();
     if (!(g.Condition is Constant))
     {
         writer.WriteKeyword("if");
         writer.Write(" (");
         g.Condition.Accept(this);
         writer.Write(") ");
     }
     writer.WriteKeyword("goto");
     writer.WriteKeyword(" ");
     g.Target.Accept(this);
     writer.Terminate();
 }
Exemple #18
0
 public Instruction VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     return(new GotoInstruction(gotoInstruction.Target.Accept(this)));
 }
 public virtual void VisitGotoInstruction(GotoInstruction g)
 {
     g.Target.Accept(this);
 }
Exemple #20
0
 public void VisitGotoInstruction(GotoInstruction gotoInstruction)
 {
     throw new NotImplementedException();
 }