Exemplo n.º 1
0
 public void AddContext(string newContext, ADAGEEventInfo info)
 {
     dirty = true;
     if (context == null)
     {
         context = new ADAGEEventInfoDictionary();
     }
     context[newContext] = info;
 }
Exemplo n.º 2
0
    public bool Validate(ADAGEData data)
    {
        string         type     = data.GetType().ToString();
        ADAGEEventInfo dataInfo = null;

        if (events != null && events.ContainsKey(type))
        {
            dataInfo = events[type];
        }
        else if (context != null && context.ContainsKey(type))
        {
            dataInfo = context[type];
        }

        if (dataInfo == null)
        {
            return(false);
        }

        FieldInfo    field;
        PropertyInfo property;

        foreach (KeyValuePair <string, ADAGEDataPropertyInfo> prop in dataInfo.properties)
        {
            field = data.GetType().GetField(prop.Key);
            if (field != null)
            {
                if (!prop.Value.IsValid(field.GetValue(data)))
                {
                    return(false);
                }
            }
            else
            {
                property = data.GetType().GetProperty(prop.Key);
                if (property == null)
                {
                    return(false);                    //it's neither and shouldn't be here
                }
                if (!prop.Value.IsValid(property.GetValue(data, null)))
                {
                    return(false);
                }
            }
        }

        return(true);
    }
Exemplo n.º 3
0
    public void AddEvent(string newEvent, ADAGEEventInfo info)
    {
        dirty = true;
        if (events == null)
        {
            events = new ADAGEEventInfoDictionary();
        }

        if (!events.ContainsKey(newEvent))
        {
            events.Add(newEvent, info);
        }
        else
        {
            events[newEvent] = info;
        }
    }
Exemplo n.º 4
0
    public void Unpack(byte[] data)
    {
        stream = new MemoryStream(data);
        if (transport == null)
        {
            transport = new TStreamTransport(stream, null);
        }
        else
        {
            transport.InputStream = stream;
        }

        if (protocol == null)
        {
            protocol = new TCompactProtocol(transport);
        }
        else
        {
            protocol.reset();
            protocol.Transport = transport;
        }

        protocol.ReadStructBegin();
        while (true)
        {
            fieldReader = protocol.ReadFieldBegin();
            if (fieldReader.Type == TType.Stop)
            {
                break;
            }

            switch (fieldReader.ID)
            {
            case 1:
                if (fieldReader.Type == TType.Map)
                {
                    if (context == null)
                    {
                        context = new ADAGEEventInfoDictionary();
                    }
                    else
                    {
                        context.Clear();
                    }

                    TMap _map17 = protocol.ReadMapBegin();
                    for (int _i18 = 0; _i18 < _map17.Count; ++_i18)
                    {
                        tempKey   = protocol.ReadString();
                        tempValue = new ADAGEEventInfo();
                        tempValue.Read(fieldReader, protocol);
                        context[tempKey] = tempValue;
                    }
                    protocol.ReadMapEnd();
                }
                else
                {
                    TProtocolUtil.Skip(protocol, fieldReader.Type);
                }
                break;

            case 2:
                if (fieldReader.Type == TType.Struct)
                {
                    if (events == null)
                    {
                        events = new ADAGEEventInfoDictionary();
                    }
                    else
                    {
                        events.Clear();
                    }

                    TMap _map17 = protocol.ReadMapBegin();
                    for (int _i18 = 0; _i18 < _map17.Count; ++_i18)
                    {
                        tempKey   = protocol.ReadString();
                        tempValue = new ADAGEEventInfo();
                        tempValue.Read(fieldReader, protocol);
                        events[tempKey] = tempValue;
                    }
                    protocol.ReadMapEnd();
                }
                else
                {
                    TProtocolUtil.Skip(protocol, fieldReader.Type);
                }
                break;

            default:
                TProtocolUtil.Skip(protocol, fieldReader.Type);
                break;
            }

            protocol.ReadFieldEnd();
        }
        protocol.ReadStructEnd();
    }
Exemplo n.º 5
0
    private ADAGEEventInfo GetEventInfo(Type type)
    {
        ADAGEEventInfo newEvent = new ADAGEEventInfo();

        bool inherit = false;

        //Get properties for current type
        PropertyInfo[] propsInfo;
        if (inherit)
        {
            propsInfo = type.GetProperties();
        }
        else
        {
            propsInfo = type.GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly);
        }

        foreach (PropertyInfo p_info in propsInfo)
        {
            bool            skip  = false;
            System.Object[] attrs = p_info.GetCustomAttributes(false);
            if (attrs.Length > 0)
            {
                for (int j = 0; (j < attrs.Length && !skip); j++)
                {
                    skip = (attrs[j].GetType() == typeof(LitJson.SkipSerialization));
                }
            }

            if (p_info.Name == "Item")
            {
                continue;
            }

            ADAGEDataPropertyInfo propertyInfo = ADAGEDataPropertyInfo.Build(p_info.PropertyType);

            if (propertyInfo == null)
            {
                continue;
            }

            newEvent.properties.Add(p_info.Name, propertyInfo);
        }

        //Get fields for current type
        FieldInfo[] fieldsInfo;
        if (inherit)
        {
            fieldsInfo = type.GetFields();
        }
        else
        {
            fieldsInfo = type.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly);
        }

        foreach (FieldInfo f_info in fieldsInfo)
        {
            bool            skip  = false;
            System.Object[] attrs = f_info.GetCustomAttributes(false);
            if (attrs.Length > 0)
            {
                for (int j = 0; (j < attrs.Length && !skip); j++)
                {
                    skip = (attrs[j].GetType() == typeof(LitJson.SkipSerialization));
                }
            }

            if (skip)
            {
                continue;
            }

            if (!f_info.Name.Contains("<"))
            {
                ADAGEDataPropertyInfo propertyInfo = ADAGEDataPropertyInfo.Build(f_info.FieldType);

                if (propertyInfo == null)
                {
                    continue;
                }

                newEvent.properties.Add(f_info.Name, propertyInfo);
            }
        }

        return(newEvent);
    }
Exemplo n.º 6
0
    void MergeVersionInfo(UnityEngine.Object target)
    {
        ADAGE currentTarget = (target as ADAGE);

        if (currentTarget.versionInfo == null)
        {
            Debug.Log("Clearing version info");
            currentTarget.versionInfo = ADAGEEditor.VersionInfo;
            return;
        }

        List <string> currentObjects = new List <string>();

        //Start Context Merge
        foreach (KeyValuePair <string, ADAGEEventInfo> item in ADAGEEditor.VersionInfo.context)
        {
            currentObjects.Add(item.Key);

            if (!currentTarget.versionInfo.context.ContainsKey(item.Key))            //If this event is new
            {
                currentTarget.versionInfo.AddContext(item.Key, item.Value);
            }
            else             //If we already have an event like this
            {
                ADAGEEventInfo curEvent = item.Value;
                foreach (KeyValuePair <string, ADAGEDataPropertyInfo> prop in curEvent.properties)
                {
                    if (!currentTarget.versionInfo.context[item.Key].properties.ContainsKey(prop.Key))
                    {
                        currentTarget.versionInfo.context[item.Key].properties.Add(prop.Key, prop.Value);
                    }
                }

                foreach (KeyValuePair <string, ADAGEDataPropertyInfo> prop in currentTarget.versionInfo.context[item.Key].properties)
                {
                    if (!curEvent.properties.ContainsKey(prop.Key))
                    {
                        currentTarget.versionInfo.context[item.Key].properties.Remove(prop.Key);
                    }
                }
            }
        }

        //Look for any outdated context, as in they are no longer present in the folder
        foreach (KeyValuePair <string, ADAGEEventInfo> savedEvent in currentTarget.versionInfo.context)
        {
            if (!currentObjects.Contains(savedEvent.Key))
            {
                currentTarget.versionInfo.RemoveContext(savedEvent.Key);
            }
        }

        currentObjects = new List <string>();

        //Start Event Merge
        foreach (KeyValuePair <string, ADAGEEventInfo> item in ADAGEEditor.VersionInfo.events)
        {
            currentObjects.Add(item.Key);

            if (!currentTarget.versionInfo.events.ContainsKey(item.Key))            //If this event is new
            {
                currentTarget.versionInfo.AddEvent(item.Key, item.Value);
            }
            else             //If we already have an event like this
            {
                ADAGEEventInfo curEvent = item.Value;
                foreach (KeyValuePair <string, ADAGEDataPropertyInfo> prop in curEvent.properties)
                {
                    if (!currentTarget.versionInfo.events[item.Key].properties.ContainsKey(prop.Key))
                    {
                        currentTarget.versionInfo.events[item.Key].properties.Add(prop.Key, prop.Value);
                    }
                }

                foreach (KeyValuePair <string, ADAGEDataPropertyInfo> prop in currentTarget.versionInfo.events[item.Key].properties)
                {
                    if (!curEvent.properties.ContainsKey(prop.Key))
                    {
                        currentTarget.versionInfo.events[item.Key].properties.Remove(prop.Key);
                    }
                }
            }
        }

        //Look for any outdated context, as in they are no longer present in the folder
        foreach (KeyValuePair <string, ADAGEEventInfo> savedEvent in currentTarget.versionInfo.events)
        {
            if (!currentObjects.Contains(savedEvent.Key))
            {
                currentTarget.versionInfo.RemoveEvent(savedEvent.Key);
            }
        }
    }
Exemplo n.º 7
0
    public override void OnInspectorGUI()
    {
        if (activeButtonStyle == null)
        {
            CreateGUIStyles();
        }

        base.DrawDefaultInspector();
        ADAGE curTarget = (target as ADAGE);

        showingProductionSettings = EditorGUILayout.Foldout(showingProductionSettings, "Production Settings");
        if (showingProductionSettings)
        {
            EditorGUI.indentLevel += 2;
            {
                curTarget.productionServer = EditorGUILayout.TextField("Server", curTarget.productionServer.Trim());
                curTarget.appToken         = EditorGUILayout.TextField("Token", curTarget.appToken.Trim());
                curTarget.appSecret        = EditorGUILayout.TextField("Secret", curTarget.appSecret.Trim());
                GUI.enabled = !curTarget.forceDevelopment && !curTarget.forceStaging;
                curTarget.forceProduction = EditorGUILayout.Toggle("Force Connect", curTarget.forceProduction);
                GUI.enabled = true;
            }
            EditorGUI.indentLevel -= 2;
        }

        showingDevelopmentSettings = EditorGUILayout.Foldout(showingDevelopmentSettings, "Development Settings");
        if (showingDevelopmentSettings)
        {
            EditorGUI.indentLevel += 2;
            {
                curTarget.developmentServer = EditorGUILayout.TextField("Server", curTarget.developmentServer.Trim());
                curTarget.devToken          = EditorGUILayout.TextField("Token", curTarget.devToken.Trim());
                curTarget.devSecret         = EditorGUILayout.TextField("Secret", curTarget.devSecret.Trim());
                GUI.enabled = !curTarget.forceProduction && !curTarget.forceStaging;
                curTarget.forceDevelopment = EditorGUILayout.Toggle("Force Connect", curTarget.forceDevelopment);
                GUI.enabled = true;
            }
            EditorGUI.indentLevel -= 2;
        }

        showingStagingSettings = EditorGUILayout.Foldout(showingStagingSettings, "Staging Settings");
        if (showingStagingSettings)
        {
            EditorGUI.indentLevel += 2;
            {
                curTarget.staging       = EditorGUILayout.Toggle("Enable", curTarget.staging);
                curTarget.stagingServer = EditorGUILayout.TextField("Server", curTarget.stagingServer.Trim());
                curTarget.appToken      = EditorGUILayout.TextField("Token", curTarget.appToken.Trim());
                curTarget.appSecret     = EditorGUILayout.TextField("Secret", curTarget.appSecret.Trim());
                GUI.enabled             = !curTarget.forceProduction && !curTarget.forceDevelopment;
                curTarget.forceStaging  = EditorGUILayout.Toggle("Force Connect", curTarget.forceStaging);
                GUI.enabled             = true;
            }
            EditorGUI.indentLevel -= 2;
        }

        showingLoginControl = EditorGUILayout.Foldout(showingLoginControl, "Login Settings");

        if (showingLoginControl)
        {
            EditorGUI.indentLevel += 2;

            GUI.enabled = enableGameHandlesLogin;
            curTarget.gameHandlesLogin = EditorGUILayout.Toggle("Game Handles Login", curTarget.gameHandlesLogin);
            GUI.enabled = enableGuestLogin;
            curTarget.allowGuestLogin = EditorGUILayout.Toggle("Enable Guest Login", curTarget.allowGuestLogin);
            GUI.enabled             = enableFacebookLogin;
            curTarget.allowFacebook = EditorGUILayout.Toggle("Enable Facebook Login", curTarget.allowFacebook);

            GUI.enabled = enableAutomaticLogin;
            curTarget.automaticLogin = EditorGUILayout.Toggle("Automatically Login", curTarget.automaticLogin);

            EditorGUI.indentLevel += 2;
            {
                GUI.enabled             = enableDefaultLogin;
                curTarget.forceLogin    = EditorGUILayout.Toggle("Use Default Login", curTarget.forceLogin);
                GUI.enabled             = curTarget.forceLogin;
                EditorGUI.indentLevel  += 2;
                curTarget.forcePlayer   = EditorGUILayout.TextField("Username", curTarget.forcePlayer);
                curTarget.forcePassword = EditorGUILayout.TextField("Password", curTarget.forcePassword);
                EditorGUI.indentLevel  -= 2;

                GUI.enabled = enableLastUser;
                curTarget.autoLoginLastUser = EditorGUILayout.Toggle("Last User", curTarget.autoLoginLastUser);

                GUI.enabled = enableGuestAccount;
                curTarget.autoGuestLogin = EditorGUILayout.Toggle("Guest", curTarget.autoGuestLogin);

                GUI.enabled = enableNextLevel;
                curTarget.automaticStartGame = EditorGUILayout.Toggle("Auto Start Level", curTarget.automaticStartGame);
                EditorGUI.BeginDisabledGroup(!curTarget.automaticStartGame);
                index = EditorGUILayout.Popup("Next Level", index, paths);
                EditorGUI.EndDisabledGroup();
                if (index != -1 && index != prevIndex)
                {
                    curTarget.SetNextLevel(index);
                    prevIndex = index;
                }
            }
            EditorGUI.indentLevel -= 2;
            GUI.enabled            = true;

            EditorGUI.indentLevel -= 2;
        }

        showingTypeControl = EditorGUILayout.Foldout(showingTypeControl, "Manage Data Types");

        if (showingTypeControl)
        {
            EditorGUI.indentLevel += 2;
            {
                EditorGUILayout.BeginHorizontal();
                {
                    IndentGUI(1);
                    if (GUILayout.Button("Enable All"))
                    {
                        for (int i = 0; i < curTarget.isDataTypeActive.Count; i++)
                        {
                            curTarget.isDataTypeActive[i] = true;
                        }
                    }

                    if (Event.current.type == EventType.Repaint)
                    {
                        layoutWidth = GUILayoutUtility.GetLastRect().width;
                    }

                    if (GUILayout.Button("Disable All"))
                    {
                        for (int i = 0; i < curTarget.isDataTypeActive.Count; i++)
                        {
                            curTarget.isDataTypeActive[i] = false;
                        }
                    }
                }
                EditorGUILayout.EndHorizontal();

                EditorGUILayout.BeginHorizontal();
                {
                    EditorGUILayout.BeginVertical();
                    {
                        for (int i = 0; i < curTarget.dataTypes.Count; i++)
                        {
                            EditorGUILayout.BeginHorizontal();
                            {
                                ADAGEEventInfo eventInfo = null;

                                if (curTarget.versionInfo != null)
                                {
                                    if (curTarget.versionInfo.events.ContainsKey(curTarget.dataTypes[i]))
                                    {
                                        eventInfo = curTarget.versionInfo.events[curTarget.dataTypes[i]];
                                    }
                                    else if (curTarget.versionInfo.context.ContainsKey(curTarget.dataTypes[i]))
                                    {
                                        eventInfo = curTarget.versionInfo.context[curTarget.dataTypes[i]];
                                    }
                                }
                                else
                                {
                                    EditorGUILayout.LabelField("no version");
                                }

                                string eventName = curTarget.dataTypes[i];

                                EditorGUI.indentLevel++;
                                EditorGUILayout.BeginHorizontal();
                                {
                                    if (eventInfo != null)
                                    {
                                        EditorGUILayout.BeginVertical();
                                        {
                                            eventInfo.showing = EditorGUILayout.Foldout(eventInfo.showing, eventName);

                                            if (eventInfo.showing)
                                            {
                                                foreach (KeyValuePair <string, ADAGEDataPropertyInfo> prop in eventInfo.properties)
                                                {
                                                    EditorGUI.indentLevel++;
                                                    prop.Value.DrawLabel(prop.Key);
                                                    EditorGUI.indentLevel--;
                                                }
                                            }
                                        }
                                        EditorGUILayout.EndVertical();
                                    }
                                    else
                                    {
                                        EditorGUILayout.LabelField(eventName);
                                    }
                                }
                                EditorGUILayout.EndHorizontal();
                                EditorGUI.indentLevel--;

                                EditorGUILayout.Space();

                                EditorGUILayout.BeginVertical(GUILayout.Width(layoutWidth));
                                {
                                    string buttonText;
                                    if (curTarget.isDataTypeActive[i])
                                    {
                                        buttonText = "ACTIVE";
                                    }
                                    else
                                    {
                                        buttonText = "INACTIVE";
                                    }

                                    curTarget.isDataTypeActive[i] = GUILayout.Toggle(curTarget.isDataTypeActive[i], buttonText, activeButtonStyle, GUILayout.Width(layoutWidth));
                                }
                                EditorGUILayout.EndVertical();
                            }
                            EditorGUILayout.EndHorizontal();
                        }
                    }
                    EditorGUILayout.EndVertical();
                }
                EditorGUILayout.EndHorizontal();
            }
            EditorGUI.indentLevel -= 2;
        }

        showingInputControl = EditorGUILayout.Foldout(showingInputControl, "Input Logging");

        if (showingInputControl)
        {
            EditorGUI.indentLevel          += 2;
            curTarget.enableKeyboardCapture = EditorGUILayout.Toggle("Enable Keyboard Capture", curTarget.enableKeyboardCapture);

            GUI.enabled                   = curTarget.enableKeyboardCapture;
            EditorGUI.indentLevel        += 2;
            curTarget.autoCaptureKeyboard = EditorGUILayout.Toggle("Auto Capture Keyboard", curTarget.autoCaptureKeyboard);
            EditorGUI.indentLevel        -= 2;
            GUI.enabled                   = true;

            curTarget.enableMouseCapture = EditorGUILayout.Toggle("Enable Mouse Capture", curTarget.enableMouseCapture);

            GUI.enabled                = curTarget.enableMouseCapture;
            EditorGUI.indentLevel     += 2;
            curTarget.autoCaptureMouse = EditorGUILayout.Toggle("Auto Capture Mouse", curTarget.autoCaptureMouse);
            EditorGUI.indentLevel     -= 2;
            GUI.enabled                = true;
            EditorGUI.indentLevel     -= 2;
        }

        /*if(ADAGEEditor.VersionInfo != null && ADAGEEditor.VersionInfo.dirty)
         * {
         *      ADAGEEditor.VersionInfo.dirty = false;
         *      Debug.Log ("merging");
         *      MergeVersionInfo(target);
         *      EditorUtility.SetDirty(curTarget);
         * }*/

        showingLocalLogging = EditorGUILayout.Foldout(showingLocalLogging, "Local Logging");
        if (showingLocalLogging)
        {
            EditorGUI.indentLevel   += 2;
            curTarget.enableLogLocal = EditorGUILayout.Toggle("Enable", curTarget.enableLogLocal);
            GUI.enabled = curTarget.enableLogLocal;
            GUILayout.BeginHorizontal();
            {
                EditorGUILayout.TextField("Data Path", (target as ADAGE).dataPath);
                if (GUILayout.Button("Select"))
                {
                    string oldPath = curTarget.dataPath;
                    curTarget.dataPath = EditorUtility.OpenFolderPanel("Select ADAGE Data Directory", "", "");

                    string appDataPath = Application.dataPath;
                    bool   longer      = (curTarget.dataPath.Length >= appDataPath.Length);
                    if (!longer || (longer && curTarget.dataPath.Substring(0, appDataPath.Length) != appDataPath))
                    {
                        EditorUtility.DisplayDialog("ADAGE Data Path Error", "You must select a path that is in the project path", "OK");
                        curTarget.dataPath = oldPath;
                    }
                    else
                    {
                        curTarget.dataPath = curTarget.dataPath.Substring(appDataPath.Length);
                    }
                }
            }
            GUILayout.EndHorizontal();
            GUI.enabled            = true;
            EditorGUI.indentLevel -= 2;
        }

        showingVersionControl = EditorGUILayout.Foldout(showingVersionControl, "Version Control");
        if (showingVersionControl)
        {
            EditorGUI.indentLevel += 2;
            enableCacheVersion     = EditorGUILayout.Toggle("Compile Version Info", enableCacheVersion);
            GUI.enabled            = enableCacheVersion;
            {
                EditorGUI.indentLevel     += 2;
                curTarget.enableValidation = EditorGUILayout.Toggle("Validate Data", curTarget.enableValidation);
                EditorGUI.indentLevel     -= 2;
            }
            GUI.enabled            = true;
            EditorGUI.indentLevel -= 2;
        }

#if (UNITY_WEBPLAYER)
        showingWebPlayerOptions = EditorGUILayout.Foldout(showingWebPlayerOptions, "Web Player Options");
        if (showingWebPlayerOptions)
        {
            EditorGUI.indentLevel += 2;
            curTarget.socketPort   = EditorGUILayout.IntField("Socket Policy Port", curTarget.socketPort);
            EditorGUI.indentLevel -= 2;
        }
#endif

        GUILayout.Space(15);

        /*if(GUILayout.Button("Version Control"))
         * {
         *      ADAGEVersionEditor.Init(curTarget);
         *      //ADAGEVersionEditor myCustomWindow = (ADAGEVersionEditor) EditorWindow.GetWindow(typeof(ADAGEVersionEditor) ,false, "ADAGE Version");
         * }
         *
         * GUILayout.Space(15);*/

        if (GUI.changed)
        {
            CheckSettings(curTarget);
            EditorUtility.SetDirty(curTarget);
        }
    }