예제 #1
0
        // INITIALIZER: ------------------------------------------------------------------------------------------------

        protected override void OnCreate()
        {
            this.databaseLocalization = DatabaseLocalization.LoadDatabaseCopy <DatabaseLocalization>();
            this.currentLanguage      = databaseLocalization.GetMainLanguage();

            SaveLoadManager.Instance.Initialize(this);
        }
예제 #2
0
        // PUBLIC METHODS: ------------------------------------------------------------------------

        public string GetText()
        {
            if (string.IsNullOrEmpty(this.content))
            {
                return("");
            }
            if (LOCAL_DATABASE == null)
            {
                LOCAL_DATABASE = DatabaseLocalization.Load();
            }

            string content = LOCAL_DATABASE.GetText(this, LocalizationManager.Instance.GetCurrentLanguage());

            return(this.PostProcessContent(content));
        }
예제 #3
0
        public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
        {
            property.serializedObject.ApplyModifiedProperties();
            property.serializedObject.Update();

            SerializedProperty spContent       = property.FindPropertyRelative("content");
            SerializedProperty spPostProcess   = property.FindPropertyRelative("postProcess");
            SerializedProperty spTranslationID = property.FindPropertyRelative("translationID");

            Rect spContentRect = new Rect(
                position.x, position.y,
                position.width - TRANSLATION_BUTTON_WIDTH - HORIZONTAL_SEPARATION,
                position.height
                );

            Rect spTranslationIDRect = new Rect(
                spContentRect.x + spContentRect.width + HORIZONTAL_SEPARATION, position.y,
                TRANSLATION_BUTTON_WIDTH, position.height
                );

            EditorGUI.PropertyField(spContentRect, spContent, label);

            GUIStyle translationStyle = (spTranslationID.intValue == 0
                                ? CoreGUIStyles.GetGridButtonRightOff()
                                : CoreGUIStyles.GetGridButtonRightOn()
                                         );

            if (GUI.Button(spTranslationIDRect, GUICONTENT_TRANSLATION, translationStyle))
            {
                if (spTranslationID.intValue == 0)
                {
                    spTranslationID.intValue = LocStringPropertyDrawer.GenerateID();

                    Editor editorLocalization = DatabaseLocalizationEditor.CreateEditor(DatabaseLocalization.Load());
                    ((DatabaseLocalizationEditor)editorLocalization).AddTranslation(spTranslationID.intValue, spContent.stringValue);
                }
                else
                {
                    if (spTranslationID.intValue != 0)
                    {
                        Editor editorLocalization = DatabaseLocalizationEditor.CreateEditor(DatabaseLocalization.Load());
                        ((DatabaseLocalizationEditor)editorLocalization).RemoveTranslation(spTranslationID.intValue);
                    }

                    spTranslationID.intValue = 0;
                }
            }

            if (spTranslationID.intValue != 0)
            {
                if (this.spDatabasePlaceholder == null)
                {
                    Editor editorLocalization = DatabaseLocalizationEditor.CreateEditor(DatabaseLocalization.Load());
                    this.spDatabasePlaceholder = ((DatabaseLocalizationEditor)editorLocalization).GetPlaceholder(
                        spTranslationID.intValue
                        );
                }

                if (this.spDatabasePlaceholder != null)
                {
                    this.spDatabasePlaceholder.stringValue = spContent.stringValue;
                    this.spDatabasePlaceholder.serializedObject.ApplyModifiedProperties();
                }
            }

            if (this.PaintPostProcess())
            {
                EditorGUI.indentLevel++;
                EditorGUILayout.PropertyField(spPostProcess);
                EditorGUI.indentLevel--;
            }

            property.serializedObject.ApplyModifiedProperties();
            property.serializedObject.Update();
        }
예제 #4
0
        public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
        {
            property.serializedObject.ApplyModifiedProperties();
            property.serializedObject.Update();

            SerializedProperty spContent       = property.FindPropertyRelative("content");
            SerializedProperty spPostProcess   = property.FindPropertyRelative("postProcess");
            SerializedProperty spTranslationID = property.FindPropertyRelative("translationID");

            Rect spTranslationIDRect = new Rect(
                position.x, position.y,
                position.width, EditorGUIUtility.singleLineHeight
                );

            bool translationOn     = spTranslationID.intValue != 0;
            bool nextTranslationOn = EditorGUI.Toggle(spTranslationIDRect, GUICONTENT_TRANSLATION, translationOn);

            if (this.PaintPostProcess())
            {
                EditorGUILayout.PropertyField(spPostProcess);
            }

            if (this.textAreaStyle == null)
            {
                this.textAreaStyle        = new GUIStyle();
                this.textAreaStyle.margin = new RectOffset(5, 5, 0, 0);
            }

            Rect textAreaRect = GUILayoutUtility.GetRect(
                EditorGUIUtility.fieldWidth, EditorGUIUtility.fieldWidth,
                EditorGUIUtility.singleLineHeight * 3f,
                EditorGUIUtility.singleLineHeight * 3f,
                textAreaStyle
                );

            spContent.stringValue = EditorGUI.TextArea(
                textAreaRect,
                spContent.stringValue
                );

            if (translationOn != nextTranslationOn)
            {
                if (nextTranslationOn)
                {
                    spTranslationID.intValue = LocStringPropertyDrawer.GenerateID();

                    Editor editorLocalization = DatabaseLocalizationEditor.CreateEditor(DatabaseLocalization.Load());
                    ((DatabaseLocalizationEditor)editorLocalization).AddTranslation(spTranslationID.intValue, spContent.stringValue);
                }
                else
                {
                    if (spTranslationID.intValue != 0)
                    {
                        Editor editorLocalization = DatabaseLocalizationEditor.CreateEditor(DatabaseLocalization.Load());
                        ((DatabaseLocalizationEditor)editorLocalization).RemoveTranslation(spTranslationID.intValue);
                    }

                    spTranslationID.intValue = 0;
                }
            }

            if (spTranslationID.intValue != 0)
            {
                if (this.spDatabasePlaceholder == null)
                {
                    Editor editorLocalization = DatabaseLocalizationEditor.CreateEditor(DatabaseLocalization.Load());
                    this.spDatabasePlaceholder = ((DatabaseLocalizationEditor)editorLocalization).GetPlaceholder(
                        spTranslationID.intValue
                        );
                }

                if (this.spDatabasePlaceholder != null)
                {
                    this.spDatabasePlaceholder.stringValue = spContent.stringValue;
                    this.spDatabasePlaceholder.serializedObject.ApplyModifiedProperties();
                }
            }

            property.serializedObject.ApplyModifiedProperties();
            property.serializedObject.Update();
        }