コード例 #1
0
    public override void DrawInitValueEditor()
    {
        GUI.color = Color.yellow;
        GUILayout.Label("Init Value:");
        GUI.color = Color.white;


        InitValue = GUIIntField.IntField(InitValue);
    }
コード例 #2
0
        private void DrawRegularTab(OnNetInstanceCacheContainerXml item, Rect areaRect)
        {
            GUIKlyteCommons.DoInHorizontal(() =>
            {
                GUILayout.Label(Locale.Get("K45_WTS_ONNETEDITOR_NAME"));
                var newName = GUITextField.TextField(f_SaveName, item.SaveName);
                if (!newName.IsNullOrWhiteSpace() && newName != item.SaveName)
                {
                    item.SaveName = newName;
                }
            });

            GUIKlyteCommons.DoInHorizontal(() =>
            {
                GUILayout.Label(Locale.Get("K45_WTS_BUILDINGEDITOR_MODELLAYOUTSELECT"));
                GUI.SetNextControlName(f_ModelSelect);
                if (GUILayout.Button((m_currentModelType != 1 ? item.PropLayoutName : PropIndexes.GetListName(item.SimpleProp)) ?? "<color=#FF00FF>--NULL--</color>"))
                {
                    m_filterSelectionView = true;
                    m_lastModelFilterText = (m_currentModelType != 1 ? item.PropLayoutName : PropIndexes.GetListName(item.SimpleProp)) ?? "";
                    m_searchResult.Value  = null;
                    RestartLayoutFilterCoroutine();
                }
            });

            GUIKlyteCommons.DoInHorizontal(() =>
            {
                GUI.SetNextControlName(f_InstanceMode);
                item.SegmentPositionRepeating = GUILayout.Toggle(item.SegmentPositionRepeating, Locale.Get("K45_WTS_POSITIONINGMODE_ISMULTIPLE"));
            });

            if (item.SegmentPositionRepeating)
            {
                GUIKlyteCommons.DoInHorizontal(() =>
                {
                    GUILayout.Label(Locale.Get("K45_WTS_ONNETEDITOR_SEGMENTPOSITION_START"));
                    GUILayout.Space(areaRect.width / 3);
                    var rect = GUILayoutUtility.GetLastRect();
                    item.SegmentPositionStart = GUI.HorizontalSlider(new Rect(rect.x, rect.yMin + 7, rect.width, 15), item.SegmentPositionStart, 0, 1);
                    item.SegmentPositionStart = GUIFloatField.FloatField(f_SegmentPathStart, item.SegmentPositionStart, 0, 1);
                });
                GUIKlyteCommons.DoInHorizontal(() =>
                {
                    GUILayout.Label(Locale.Get("K45_WTS_ONNETEDITOR_SEGMENTPOSITION_END"));
                    GUILayout.Space(areaRect.width / 3);
                    var rect = GUILayoutUtility.GetLastRect();
                    item.SegmentPositionEnd = GUI.HorizontalSlider(new Rect(rect.x, rect.yMin + 7, rect.width, 15), item.SegmentPositionEnd, 0, 1);
                    item.SegmentPositionEnd = GUIFloatField.FloatField(f_SegmentPathEnd, item.SegmentPositionEnd, 0, 1);
                });
                GUIKlyteCommons.DoInHorizontal(() =>
                {
                    GUILayout.Label(Locale.Get("K45_WTS_ONNETEDITOR_SEGMENTPOSITION_COUNT"));
                    item.SegmentPositionRepeatCount = (ushort)GUIIntField.IntField(f_SegmentRepeatCount, item.SegmentPositionRepeatCount, 1, ushort.MaxValue);
                });
            }
            else
            {
                GUIKlyteCommons.DoInHorizontal(() =>
                {
                    GUILayout.Label(Locale.Get("K45_WTS_ONNETEDITOR_SEGMENTPOSITION"));
                    GUILayout.Space(areaRect.width / 3);
                    var rect             = GUILayoutUtility.GetLastRect();
                    item.SegmentPosition = GUI.HorizontalSlider(new Rect(rect.x, rect.yMin + 7, rect.width, 15), item.SegmentPosition, 0, 1);
                    item.SegmentPosition = GUIFloatField.FloatField(f_SegmentPathSingle, item.SegmentPosition, 0, 1);
                });
            }
            GUILayout.Space(12);


            GUIKlyteCommons.DoInHorizontal(() =>
            {
                item.InvertSign = GUILayout.Toggle(item.InvertSign, Locale.Get("K45_WTS_INVERT_SIGN_SIDE"));
            });

            GUIKlyteCommons.DoInHorizontal(() => GUILayout.Label(Locale.Get("K45_WTS_ONNETEDITOR_LOCATION_SETTINGS")));

            GUIKlyteCommons.AddVector3Field(item.PropPosition, "K45_WTS_ONNETEDITOR_POSITIONOFFSET", f_SegmentPositionOffset);
            GUIKlyteCommons.AddVector3Field(item.PropRotation, "K45_WTS_ONNETEDITOR_ROTATION", f_SegmentRotationOffset);
            GUIKlyteCommons.AddVector3Field(item.Scale, "K45_WTS_ONNETEDITOR_SCALE", f_SegmentScaleOffset);
        }
コード例 #3
0
        // Start is called before the first frame update
        public static void DrawCloudConfigUI(DataboxObject database)
        {
            using (new GUILayout.VerticalScope("Window"))
            {
                //if (GUILayout.Button("Remove Agreement"))
                //{
                //	EditorPrefs.DeleteKey("DataboxCloudAgreement");
                //}

                                #if UNITY_EDITOR
                DataboxEditor.cloudAgreementAccepted = EditorPrefs.GetBool("DataboxCloudAgreement");
                                #endif

                if (!DataboxEditor.cloudAgreementAccepted)
                {
                    using (new GUILayout.VerticalScope("Box"))
                    {
                        GUI.color = Color.yellow;
                        GUILayout.Label("Please accept this short agreement: ");
                        GUI.color = Color.white;
                        GUILayout.Label(DataboxEditor.cloudAgreement);

                        DataboxEditor.cloudAgreementAccepted = GUILayout.Toggle(DataboxEditor.cloudAgreementAccepted, "Accept");

                                                #if UNITY_EDITOR
                        if (DataboxEditor.cloudAgreementAccepted)
                        {
                            EditorPrefs.SetBool("DataboxCloudAgreement", DataboxEditor.cloudAgreementAccepted);
                        }
                                                #endif
                    }
                }
                else
                {
                    using (new GUILayout.VerticalScope("Box"))
                    {
                        // ONLY FOR DEBUG
                        //GUILayout.Label("server time: " + DataboxCloud.serverTime);
                        //GUILayout.Label("server version: " + DataboxCloud.serverVersion);
                        //GUILayout.Label("database version: " + database.cloudVersion);

                        GUILayout.Label("Cloud server url:");
                        database.cloudServer = GUILayout.TextField(database.cloudServer);
                        GUILayout.Label("Unique Id: (only integer numbers)");
                        //database.cloudId = GUILayout.TextField(database.cloudId);
                        if (!string.IsNullOrEmpty(database.cloudId))
                        {
                            var _cloudId = int.Parse(database.cloudId);
                            database.cloudId = GUIIntField.IntField(_cloudId).ToString();
                        }
                        else
                        {
                            database.cloudId = "0";
                        }

                        if (string.IsNullOrEmpty(database.cloudId))
                        {
                                                #if UNITY_EDITOR
                            EditorGUILayout.HelpBox("Please enter an unique id", MessageType.Warning);
                                                #else
                            GUILayout.Label("Please enter an unique id");
                                                #endif
                        }
                    }


                    if (!string.IsNullOrEmpty(database.cloudId))
                    {
                        using (new GUILayout.HorizontalScope("Box"))
                        {
                            if (GUILayout.Button("1. Check"))
                            {
                                                                #if UNITY_EDITOR
                                DataboxCloud.Check(database.cloudServer, database.cloudId, database);
                                                                #else
                                if (database.databoxCloudService == null)
                                {
                                    database.databoxCloudService = new GameObject("DataboxCloudService").AddComponent <DataboxCloud>() as DataboxCloud;
                                }

                                DataboxCloud.CheckRuntime(database);
                                                                #endif

                                database.cloudCheck = true;
                            }

                            if ((database.cloudWarnings == DataboxObject.CloudWarnings.ok ||
                                 database.cloudWarnings == DataboxObject.CloudWarnings.warning) && database.cloudCheck)
                            {
                                GUI.enabled = true;
                            }
                            else
                            {
                                GUI.enabled = false;
                            }

                            if (GUILayout.Button("2. Sync & Compare"))
                            {
                                                                #if UNITY_EDITOR
                                DataboxCloud.Sync(database.cloudServer, database.cloudId, database);
                                //databoxCloudInstance.Sync(database.cloudServer, database.cloudId, database);
                                                                #else
                                if (database.databoxCloudService == null)
                                {
                                    database.databoxCloudService = new GameObject("DataboxCloudService").AddComponent <DataboxCloud>() as DataboxCloud;
                                }

                                DataboxCloud.SyncRuntime(database);
                                                                                #endif
                                database.cloudCheck = false;
                            }

                            GUI.enabled = true;

                            if (database.oldDB == null)
                            {
                                GUI.enabled = false;
                            }
                            else
                            {
                                if (database.oldDB.Keys.Count > 0)
                                {
                                    if (DataboxEditor.deletedCompare.tables.Count > 0 || DataboxEditor.deletedCompare.entries.Count > 0 ||
                                        DataboxEditor.deletedCompare.fields.Count > 0 || DataboxEditor.deletedCompare.values.Count > 0 ||
                                        DataboxEditor.newCompare.tables.Count > 0 || DataboxEditor.newCompare.entries.Count > 0 ||
                                        DataboxEditor.newCompare.fields.Count > 0 || DataboxEditor.newCompare.values.Count > 0)
                                    {
                                        GUI.enabled = true;
                                    }
                                    else
                                    {
                                        GUI.enabled = false;
                                    }
                                }
                                else
                                {
                                    GUI.enabled = false;
                                }
                            }

                            if (GUILayout.Button("3. Revert"))
                            {
                                database.DB = new OrderedDictionary <string, DataboxObject.Database>();
                                database.DB = database.DeepCopy <OrderedDictionary <string, DataboxObject.Database> >(database.oldDB);

                                DataboxEditor.deletedCompare = new DataboxCloud.ChangeLog();
                                DataboxEditor.newCompare     = new DataboxCloud.ChangeLog();

                                database.oldDB = new OrderedDictionary <string, DataboxObject.Database>();

                                database.cloudVersion = database.oldCloudVersion;

                                database.cloudStatus += "- Reverted back to before sync" + "\n";
                            }
                            GUI.enabled = true;
                        }


                        using (new GUILayout.HorizontalScope())
                        {
                            if ((database.cloudWarnings == DataboxObject.CloudWarnings.ok ||
                                 database.cloudWarnings == DataboxObject.CloudWarnings.warning) && database.cloudCheck)
                            {
                                GUI.enabled = true;
                            }
                            else
                            {
                                GUI.enabled = false;
                            }
                            if (GUILayout.Button("Force Upload"))
                            {
                                                                                #if UNITY_EDITOR
                                DataboxCloud.ForceUploadEditor();
                                                                                #else
                                if (database.databoxCloudService == null)
                                {
                                    database.databoxCloudService = new GameObject("DataboxCloudService").AddComponent <DataboxCloud>() as DataboxCloud;
                                }

                                DataboxCloud.ForceUploadRuntime(database);
                                                                                #endif

                                database.cloudCheck = false;
                            }

                            if (GUILayout.Button("Force Download"))
                            {
                                                                                #if UNITY_EDITOR
                                DataboxCloud.ForceDownloadEditor();
                                                                                #else
                                if (database.databoxCloudService == null)
                                {
                                    database.databoxCloudService = new GameObject("DataboxCloudService").AddComponent <DataboxCloud>() as DataboxCloud;
                                }

                                DataboxCloud.ForceDownloadRuntime(database);
                                                                                #endif

                                database.cloudCheck = false;
                            }
                            GUI.enabled = true;
                        }
                    }

                    GUILayout.Label("Cloud status:");

                    switch (database.cloudWarnings)
                    {
                    case DataboxObject.CloudWarnings.ok:
                        GUI.color = Color.green;
                        break;

                    case DataboxObject.CloudWarnings.warning:
                        GUI.color = Color.yellow;
                        break;

                    case DataboxObject.CloudWarnings.error:
                        GUI.color = Color.red;
                        break;
                    }
                    using (new GUILayout.VerticalScope("Box"))
                    {
                        GUI.color = Color.white;


                        GUILayout.Label(database.cloudStatus);
                    }

                    // COMPARE GUI
                    GUILayout.Label("Changes to cloud version:");
                    var _changelog = "";

                    // DELETED
                    // Tables
                    if (DataboxEditor.deletedCompare != null)
                    {
                        GUI.color = Color.red;
                        for (int m = 0; m < DataboxEditor.deletedCompare.tables.Count; m++)
                        {
                            //Debug.Log("deleted table: " + deletedCompare.tables[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("deleted table: " + DataboxEditor.deletedCompare.tables[m]);
                            }

                            _changelog += "deleted table: " + DataboxEditor.deletedCompare.tables[m] + "\n";
                        }
                        // Entries
                        for (int m = 0; m < DataboxEditor.deletedCompare.entries.Count; m++)
                        {
                            //Debug.Log("deleted entry: " + deletedCompare.entries[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("deleted entry: " + DataboxEditor.deletedCompare.entries[m]);
                            }

                            _changelog += "deleted entry: " + DataboxEditor.deletedCompare.entries[m] + "\n";
                        }
                        // Values
                        for (int m = 0; m < DataboxEditor.deletedCompare.fields.Count; m++)
                        {
                            //Debug.Log("deleted field: " + deletedCompare.fields[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("deleted value: " + DataboxEditor.deletedCompare.fields[m]);
                            }

                            _changelog += "deleted value: " + DataboxEditor.deletedCompare.fields[m] + "\n";
                        }
                        GUI.color = Color.white;
                    }

                    if (DataboxEditor.newCompare != null)
                    {
                        // NEW
                        // Tables
                        GUI.color = Color.green;
                        for (int m = 0; m < DataboxEditor.newCompare.tables.Count; m++)
                        {
                            //Debug.Log("new table: " + newCompare.tables[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("new table: " + DataboxEditor.newCompare.tables[m]);
                            }

                            _changelog += "new table: " + DataboxEditor.newCompare.tables[m] + "\n";
                        }
                        // Entries
                        for (int m = 0; m < DataboxEditor.newCompare.entries.Count; m++)
                        {
                            //Debug.Log("new entry: " + newCompare.entries[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("new entry: " + DataboxEditor.newCompare.entries[m]);
                            }

                            _changelog += "new entry: " + DataboxEditor.newCompare.entries[m] + "\n";
                        }
                        // Values
                        for (int m = 0; m < DataboxEditor.newCompare.fields.Count; m++)
                        {
                            //Debug.Log("new fields: " + newCompare.fields[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("new value: " + DataboxEditor.newCompare.fields[m]);
                            }

                            _changelog += "new value: " + DataboxEditor.newCompare.fields[m] + "\n";
                        }
                        GUI.color = Color.white;


                        //Modified
                        GUI.color = Color.yellow;
                        for (int m = 0; m < DataboxEditor.newCompare.values.Count; m++)
                        {
                            //Debug.Log("modified: " + newCompare.values[m]);

                            using (new GUILayout.VerticalScope("Box"))
                            {
                                GUILayout.Label("modified value: " + DataboxEditor.newCompare.values[m]);
                            }

                            _changelog += "modified value: " + DataboxEditor.newCompare.values[m] + "\n";
                        }
                        GUI.color = Color.white;
                    }

                    if (DataboxEditor.deletedCompare == null && DataboxEditor.newCompare == null)
                    {
                        using (new GUILayout.VerticalScope("Box"))
                        {
                            GUILayout.Label("none");
                        }
                    }

                                    #if UNITY_EDITOR
                    if (!string.IsNullOrEmpty(_changelog))
                    {
                        if (GUILayout.Button("Save changelog to .txt file"))
                        {
                            var _path = EditorUtility.SaveFilePanel("Save to:", Application.dataPath, "changelog", ".txt");

                            if (!string.IsNullOrEmpty(_path))
                            {
                                SaveChangelog(_path, _changelog);
                            }
                        }
                    }
                                    #endif
                }
            }
        }
コード例 #4
0
 public override void DrawEditor()
 {
     _int = GUIIntField.IntField(_int);
 }