コード例 #1
0
        public static void showAllScripts()
        {
            if (activeScript != null)
            {
                if (activeScript.GetScriptType() != ScriptType.None)
                {
                    scripts.Add(activeScript);
                }
                activeScript = new Script();
            }

            scripts.Reverse();
            foreach (Script script in scripts)
            {
                script.showScriptBox();
            }
            scripts.Clear();
            LifeStorage.clear();
        }
コード例 #2
0
 public static void parseInbound(InboundOpcodes opcode, Packet packet, long timestamp)
 {
     if (packet == null || activeScript == null)
     {
         return;
     }
     if (opcode == InboundOpcodes.SET_FIELD)
     {
         int mapID = Handler.parseSetField(activeScript, packet);
         if (Util.hasMapScript(mapID))
         {
             LifeStorage.clear();
             dispose();
             activeScript.setMapID(mapID);
         }
         return;
     }
     if (Program.DEBUG_PACKETS)
     {
         Console.WriteLine("Reading Inbound Packet " + opcode);
     }
     activeScript.handleInboundPackets(opcode, packet, timestamp);
 }
コード例 #3
0
        // Send Opcodes
        public void handleInboundPackets(InboundOpcodes opcode, Packet packet, long timestamp)
        {
            // Format: addLine(String.Format("sm.method({0}, {1})",  0, 1));
            if (waitForScriptAnswer && opcode != InboundOpcodes.EFFECT)
            {
                return;
            }
            int    x, y, size, objectID, templateID;
            Npc    npc = null;
            UIType uiType;

            switch (opcode)
            {
            case PROGRESS_MESSAGE_FONT:
                addLine(String.Format("sm.progressMessageFont({0}, {1}, {2}, {3}, {4})", packet.ReadInt(), packet.ReadInt(), packet.ReadInt(), packet.ReadInt(), Util.quotes(packet.ReadString())));
                break;

            case RANDOM_TELEPORT_KEY:
                addLine(String.Format("sm.sendRandomTeleportKey({0})", packet.ReadByte()));
                break;

            case ADD_POPUP_SAY:
                addLine(String.Format("sm.addPopUpSay({0}, {1}, {2}, {3})", packet.ReadInt(), packet.ReadInt(), Util.quotes(packet.ReadString()), Util.quotes(packet.ReadString())));
                break;

            case USER_SET_FIELD_FLOATING:
                addLine(String.Format("sm.setFieldFloating({0}, {1}, {2}, {3})", packet.ReadInt(), packet.ReadInt(), packet.ReadInt(), packet.ReadInt()));
                break;

            case SET_MAP_TAGGED_OBJECT_VISISBLE:
                size = packet.ReadByte();
                for (int i = 0; i < size; i++)
                {
                    addLine(String.Format("sm.setMapTaggedObjectVisible({0}, {1}, {2}, {3})", Util.quotes(packet.ReadString()), packet.ReadBoolPy(), packet.ReadInt(), packet.ReadInt()));
                }
                break;

            case NPC_SET_FORCE_FLIP:
                npc = LifeStorage.getNpcByObjectID(packet.ReadInt());
                if (npc != null)
                {
                    String left = PythonBool(packet.ReadInt() == -1);
                    addLine(String.Format("sm.flipNpcByObjectId({0}, {1})", npc.ObjectName, left));
                }
                break;

            case TELEPORT:
                packet.ReadByte();
                packet.ReadByte();
                packet.ReadInt();    // char id
                addLine(String.Format("sm.teleportInField({0}, {1})", packet.ReadShort(), packet.ReadShort()));
                break;

            case SET_MAP_TAGGED_OBJECT_ANIMATION:
                size = packet.ReadInt();
                for (int i = 0; i < size; i++)
                {
                    addLine(String.Format("sm.setMapTaggedObjectAnimation({0}, {1})", Util.quotes(packet.ReadString()), packet.ReadInt()));
                }
                break;

            case EMOTION:
                addLine(String.Format("sm.localEmotion({0}, {1}, {2})", packet.ReadInt(), packet.ReadInt(), PythonBool(packet.ReadBool())));
                break;

            case FUNCKEY_SET_BY_SCRIPT:
                bool add    = packet.ReadBool();
                int  action = packet.ReadInt();
                x = 0;
                if (add)
                {
                    x = packet.ReadInt();
                }
                addLine(String.Format("sm.setFuncKeyByScript({0}, {1}, {2})", PythonBool(add), action, x));
                break;

            case SESSION_VALUE:
                String key = packet.ReadString();
                npc = LifeStorage.getNpcByObjectID(Int32.Parse(packet.ReadString()));
                if (npc != null)
                {
                    addLine(String.Format("sm.sendSessionValue({0}, {1})", Util.quotes(key), npc.TemplateID.ToString()));
                }
                break;

            case OPEN_UI_WITH_OPTION:
                uiType = Util.GetEnumObjectByValue <UIType>(packet.ReadInt());
                if (Util.isNumber(uiType.ToString()))
                {
                    addLine(String.Format("sm.openUIWithOption({0}, {1})", uiType, packet.ReadInt()));
                }
                else
                {
                    addLine(String.Format("sm.openUIWithOption(UIType.{0}, {1})", uiType, packet.ReadInt()));
                }
                hasUIScript = true;
                break;

            case OPEN_UI:
                uiType = Util.GetEnumObjectByValue <UIType>(packet.ReadInt());
                if (Util.isNumber(uiType.ToString()))
                {
                    addLine(String.Format("sm.openUI({0})", uiType));
                }
                else
                {
                    addLine(String.Format("sm.openUI(UIType.{0})", uiType));
                }
                hasUIScript = true;
                break;

            case CLOSE_UI:
                uiType = Util.GetEnumObjectByValue <UIType>(packet.ReadInt());
                if (Util.isNumber(uiType.ToString()))
                {
                    addLine(String.Format("sm.closeUI({0})", uiType));
                }
                else
                {
                    addLine(String.Format("sm.closeUI(UIType.{0})", uiType));
                }
                hasUIScript = true;
                break;

            case SCRIPT_PROGRESS_MESSAGE:
                addLine(String.Format("sm.chatScript({0})", Util.quotes(packet.ReadString())));
                break;

            case NPC_SET_FORCE_MOVE:
                npc = LifeStorage.getNpcByObjectID(packet.ReadInt());
                if (npc != null)
                {
                    String left     = PythonBool(packet.ReadInt() == -1);
                    int    distance = packet.ReadInt();
                    int    speed    = packet.ReadInt();
                    addLine(String.Format("sm.moveNpcByObjectId({0}, {1}, {2}, {3})", npc.ObjectName, left, distance, speed));
                }
                break;

            case MAP_SCRIPT_FLAG:
                if (!flagged)
                {
                    read    = true;
                    flagged = true;
                }
                break;

            case CHANGE_SKILL_RECORD_RESULT:
                packet.ReadByte();    // exclRequestSent
                packet.ReadByte();    // showResult
                packet.ReadByte();    // rmeove link skill
                int skillSize = packet.ReadShort();
                for (int i = 0; i < skillSize; i++)
                {
                    int skillID    = packet.ReadInt();
                    int currentSLV = packet.ReadInt();
                    int masterSLV  = packet.ReadInt();
                    if (currentSLV <= 0 || masterSLV <= 0)
                    {
                        addLine(String.Format("sm.removeSkill({0})", skillID));
                    }
                    else
                    {
                        addLine(String.Format("sm.giveSkill({0}, {1}, {2})", skillID, currentSLV, masterSLV));
                    }
                }
                break;

            case EFFECT:
                Handler.handleUserEffect(packet);
                break;

            case INVENTORY_OPERATION:
                Handler.handleInventoryOperation(packet);
                break;

            case SCRIPT_MESSAGE:
                Handler.handleScriptMessage(packet);
                break;

            case VIDEO_BY_SCRIPT_2:
                addLine(String.Format("sm.playURLVideoByScript(\"{0}\")", packet.ReadString()));
                setWaitForAnswer(true);
                break;

            case FIELD_EFFECT:
                Handler.handleFieldEffect(packet);
                break;

            case IN_GAME_DIRECTION_EVENT:
                Handler.handleIngameDirectionEvent(packet);
                break;

            case InboundOpcodes.BROADCAST_MSG:
                byte broadcastType = packet.ReadByte();
                if (broadcastType == 4)
                {
                    byte unk = packet.ReadByte();
                    if (unk == 0)
                    {
                        initedLifeObjects = true;
                    }
                }
                break;

            case NPC_ENTER_FIELD:
                objectID = packet.ReadInt();
                if (LifeStorage.getNpcByObjectID(objectID) != null)
                {
                    return;
                }
                templateID     = packet.ReadInt();
                x              = packet.ReadShort();
                y              = packet.ReadShort();
                npc            = new Npc(objectID, templateID);
                npc.X          = x;
                npc.Y          = y;
                npc.ObjectName = String.Format("OBJECT_{0}", objectCounter++);
                LifeStorage.addNpc(objectID, npc);
                if (initedLifeObjects)
                {
                    addLine(String.Format("{3} = sm.sendNpcEnterField({0}, {1}, {2})", templateID, x, y, npc.ObjectName));
                }
                break;

            case NPC_LEAVE_FIELD:
                npc = LifeStorage.getNpcByObjectID(packet.ReadInt());
                if (npc == null)
                {
                    return;
                }
                LifeStorage.removeNpc(npc.ObjectID);
                if (initedLifeObjects)
                {
                    addLine(String.Format("sm.sendNpcLeaveField({0})", npc.ObjectName));
                }
                break;

            case NPC_CHANGE_CONTROLLER:
                bool controller = packet.ReadBool();
                objectID = packet.ReadInt();
                npc      = LifeStorage.getNpcByObjectID(objectID);
                if (npc == null)
                {
                    if (!controller)
                    {
                        return;
                    }
                    templateID     = packet.ReadInt();
                    x              = packet.ReadShort();
                    y              = packet.ReadShort();
                    npc            = new Npc(objectID, templateID);
                    npc.X          = x;
                    npc.Y          = y;
                    npc.ObjectName = String.Format("OBJECT_{0}", objectCounter++);
                    LifeStorage.addNpc(objectID, npc);
                    if (initedLifeObjects)
                    {
                        addLine(String.Format("{3} = sm.sendNpcController({0}, {1}, {2})", templateID, x, y, npc.ObjectName));
                    }
                }
                else
                {
                    if (initedLifeObjects)
                    {
                        addLine(String.Format("sm.sendNpcController({0}, {1})", npc.ObjectName, PythonBool(controller)));
                    }
                    if (!controller)
                    {
                        LifeStorage.removeNpc(objectID);
                    }
                }
                break;

            case NPC_SET_SPECIAL_ACTION:
                npc = LifeStorage.getNpcByObjectID(packet.ReadInt());
                if (npc != null)
                {
                    String npcEffect = packet.ReadString();
                    int    duration  = packet.ReadInt();
                    addLine(String.Format("sm.showNpcSpecialActionByObjectId({0}, \"{1}\", {2})", npc.ObjectName, npcEffect, duration));
                }
                break;

            case CUR_NODE_EVENT_END:
                addLine(String.Format("sm.curNodeEventEnd({0})", packet.ReadBoolPy()));
                break;

            case SET_TEMPORARY_SKILL_SET:
                addLine(String.Format("sm.setTemporarySkillSet({0})", packet.ReadInt()));
                break;

            case SET_IN_GAME_DIRECTION_MODE:
                bool lockUI = false, blackFrame = false, forceMouseOver = false, showUI = false;
                lockUI     = packet.ReadBool();
                uiLocked   = lockUI;
                blackFrame = packet.ReadBool();
                if (lockUI)
                {
                    forceMouseOver = packet.ReadBool();
                    showUI         = packet.ReadBool();
                }
                addLine(String.Format("sm.setInGameDirectionMode({0}, {1}, {2}, {3})", PythonBool(lockUI), PythonBool(blackFrame), PythonBool(forceMouseOver), PythonBool(showUI)));
                if (!lockUI)
                {
                    //addComment("Set field decoding not working yet so check if ur character warped to somewhere else");
                    //Parser.dispose();
                }
                break;

            case SET_STAND_ALONE_MODE:
                addLine(String.Format("sm.setStandAloneMode({0})", packet.ReadBoolPy()));
                break;

            case MESSAGE:
                Handler.handleMessage(packet);
                break;

            case MOB_CRC_KEY_CHANGED:
                if (type == ScriptType.MapScript)
                {
                    if (!waitForScriptAnswer && flagged)
                    {
                        //Parser.dispose();
                    }
                }
                break;

            case STAT_CHANGED:
                Handler.handleStatChanged(packet);
                break;

            default:
                if (!isIgnoredInbound(opcode) && read)
                {
                    addLine(String.Format("# [{0}] [{1}]", opcode.ToString(), packet.ToString()));
                }
                break;
            }
        }
コード例 #4
0
        // Recv Opcodes
        public void handleOutboundPackets(OutboundOpcodes opcode, Packet packet)
        {
            switch (opcode)
            {
            case USER_PORTAL_SCRIPT_REQUEST:
                packet.ReadByte();
                String portalName = packet.ReadString();
                String script     = Util.getPortalScriptName(Parser.MAP_ID, portalName);
                if (!script.Equals("Unknown") && !isWaitForScriptAnswer())
                {
                    bool initedLifes = initedLifeObjects;
                    Parser.dispose();
                    Parser.getActiveScript().setPortal(Parser.MAP_ID, script, initedLifes);
                }
                break;

            case OutboundOpcodes.DIRECTION_NODE_COLLISION:
                int key = packet.ReadInt();
                if (!Util.getDirectionScriptName(Parser.MAP_ID, key).Equals("Unknown"))
                {
                    bool initedLifes = initedLifeObjects;
                    Parser.dispose();
                    Parser.getActiveScript().setDirection(Parser.MAP_ID, key, initedLifes);
                }
                break;

            case USER_QUEST_REQUEST:

                int requestType = packet.ReadByte();
                int questID     = packet.ReadInt();
                if (questID == 7707)
                {
                    return;
                }
                if (!isWaitForScriptAnswer())
                {
                    bool inited = initedLifeObjects;
                    // should I check the type and then dispose ?
                    Parser.dispose();
                    Handler.handleUserQuestRequest(requestType, questID, inited);
                    read = true;
                }
                break;

            case USER_SELECT_NPC:
                //if (isDisposed())
                //{
                int objectID = packet.ReadInt();
                Npc npc      = LifeStorage.getNpcByObjectID(objectID);
                if (npc != null)
                {
                    if (Util.hasNpcScript(npc.TemplateID))
                    {
                        bool initedLifes = initedLifeObjects;
                        Parser.dispose();
                        Parser.getActiveScript().setNpcID(npc.TemplateID, initedLifes);
                    }
                }
                //}
                break;

            case USER_SCRIPT_MESSAGE_ANSWER:
                ScriptMessageType scriptMessageType = Util.GetEnumObjectByValue <ScriptMessageType>(packet.ReadByte());
                Console.WriteLine("Script MEssage Type {0}", scriptMessageType);
                if (scriptMessageType == ScriptMessageType.AskYesNo || scriptMessageType == ScriptMessageType.AskAccept)
                {
                    addComment("Response is " + (packet.ReadBool() ? "Yes" : "No"));
                }

                if (scriptMessageType == ScriptMessageType.AskMenu)
                {
                    packet.ReadByte();
                    if (packet.Length >= 4)
                    {
                        addComment(String.Format("if selection == {0}:", packet.ReadInt()));
                    }
                }
                setWaitForAnswer(false);
                break;
            }
        }
コード例 #5
0
ファイル: Handler.cs プロジェクト: smallhyun/Script-Generator
        public static void handleIngameDirectionEvent(Packet packet)
        {
            InGameDirectionEventType type = Util.GetEnumObjectByValue <InGameDirectionEventType>(packet.ReadByte());
            int    duration = 0, x = 0, y = 0, z = -2, unk1 = 0;
            String str, unk2 = "False";
            Npc    npc = null;

            switch (type)
            {
            case ForcedAction:
                int action = packet.ReadInt();
                if (action <= 1895)
                {
                    duration = packet.ReadInt();
                }
                Parser.getActiveScript().addLine(String.Format("sm.forcedAction({0}, {1})", action, duration));
                break;

            case Delay:
                Parser.getActiveScript().addLine(String.Format("sm.sendDelay({0})", packet.ReadInt()));
                Parser.getActiveScript().setWaitForAnswer(true);
                break;

            case EffectPlay:
                str      = packet.ReadString();
                duration = packet.ReadInt();
                x        = packet.ReadInt();
                y        = packet.ReadInt();
                if (packet.ReadBool())
                {
                    z = packet.ReadInt();
                }
                int npcVal = -2;
                if (packet.ReadBool())
                {
                    npcVal = packet.ReadInt();
                    npc    = LifeStorage.getNpcByObjectID(npcVal);
                    unk2   = packet.ReadBool() ? "False" : "True";
                    unk1   = packet.ReadByte();
                }
                Parser.getActiveScript().addLine(String.Format("sm.showEffect({0}, {1}, {2}, {3}, {4}, {5}, {6}, {7})", Util.quotes(str), duration, x, y, z, npc == null ? String.Format("{0}", npcVal) : npc.ObjectName, unk2, unk1));
                break;

            case ForcedInput:
                Parser.getActiveScript().addLine(String.Format("sm.forcedInput({0})", packet.ReadInt()));
                break;

            case PatternInputRequest:
                str = packet.ReadString();
                int act          = packet.ReadInt();
                int requestCount = packet.ReadInt();
                int time         = packet.ReadInt();
                Parser.getActiveScript().addLine(String.Format("sm.patternInputRequest({0}, {1}, {2}, {3})", Util.quotes(str), act, requestCount, time));
                break;

            case CameraMove:
                bool back  = packet.ReadBool();
                int  speed = packet.ReadInt();
                if (!back)
                {
                    x = packet.ReadInt();
                    y = packet.ReadInt();
                }
                Parser.getActiveScript().addLine(String.Format("sm.moveCamera({0}, {1}, {2}, {3})", Script.PythonBool(back), speed, x, y));
                Parser.getActiveScript().setWaitForAnswer(true);
                break;

            case CameraOnCharacter:
                Parser.getActiveScript().addLine(String.Format("sm.setCameraOnNpc({0})", packet.ReadInt()));
                break;

            case CameraZoom:
                duration = packet.ReadInt();
                int scale   = packet.ReadInt();
                int timePos = packet.ReadInt();
                x = packet.ReadInt();
                y = packet.ReadInt();
                Parser.getActiveScript().addLine(String.Format("sm.zoomCamera({0}, {1}, {2}, {3}, {4})", duration, scale, timePos, x, y));
                Parser.getActiveScript().setWaitForAnswer(true);
                break;

            case VansheeMode:
                Parser.getActiveScript().addLine(String.Format("sm.hideUser({0})", packet.ReadBoolPy()));
                break;

            case FaceOff:
                Parser.getActiveScript().addLine(String.Format("sm.faceOff({0})", packet.ReadInt()));
                break;

            case InGameDirectionEventType.Monologue:
                str  = packet.ReadString();
                unk2 = packet.ReadBoolPy();
                Parser.getActiveScript().addLine(String.Format("sm.sayMonologue({0}, {1})", Util.quotes(str), unk2));
                Parser.getActiveScript().setWaitForAnswer(true);
                break;

            case AvatarLookSet:
                str = "[";
                x   = packet.ReadByte();
                for (int i = 0; i < x; i++)
                {
                    str += String.Format("{0}, ", packet.ReadInt());
                }
                str += "]";
                str.Replace(", ]", "]");
                Parser.getActiveScript().addLine(String.Format("sm.avatarLookSet({0})", str));
                break;

            case RemoveAdditionalEffect:
                Parser.getActiveScript().addLine(String.Format("sm.removeAdditionalEffect()"));
                break;

            case ForcedMove:
                str = Script.PythonBool(packet.ReadInt() == 1);
                x   = packet.ReadInt();
                Parser.getActiveScript().addLine(String.Format("sm.forcedMove({0}, {1})", str, x));
                break;

            case ForcedFlip:
                str = Script.PythonBool(packet.ReadInt() == -1);
                Parser.getActiveScript().addLine(String.Format("sm.forcedFlip({0})", str));
                break;

            default:
                Parser.getActiveScript().addComment(String.Format("Unhandled Ingame Direction Event [{0}] Packet: {1}", type, packet.ToString()));
                break;
            }
        }