/*/////////////////////////////////////////////////////////////////////////////////

 MO5.js - JavaScript Library For Building Modern DOM And Canvas Applications

 Copyright (c) 2013 - 2015 Jonathan Steinbeck
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.

 * Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

 * Neither the name MO5.js nor the names of its contributors 
   may be used to endorse or promote products derived from this software 
   without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

///////////////////////////////////////////////////////////////////////////////*/

/* global using, MO5, window, module, require */

(function MO5CoreObjectBootstrap () {

    if (typeof using === "function") {
        using("MO5.Exception", "MO5.fail", "MO5.EventBus").
        define("MO5.CoreObject", MO5CoreObjectModule);
    }
    else if (typeof window !== "undefined") {
        window.MO5.CoreObject = MO5CoreObjectModule(MO5.Exception, MO5.fail, MO5.EventBus);
    }
    else {
        module.exports = MO5CoreObjectModule(
            require("./Exception.js"),
            require("./fail.js"),
            require("./EventBus.js")
        );
    }

    function MO5CoreObjectModule (Exception, fail, EventBus) {

        var flags = {}, prefix = "CoreObject", highestId = 0;

        /**
         * The MO5 base type for almost all other types used in MO5.
         *
         * All CoreObject instances are observable by subscribing
         * to the events that they emit.
         *
         * @type object -> CoreObject
         * @event flag_removed(name_of_flag) When the flag has been removed.
         * @event flag_set(name_of_flag) When the flag has been set.
         * @event destroyed()
         * @return CoreObject
         */
        function CoreObject (args) {

            args = args || {};
            args.bus = args.bus || {};

            highestId += 1;

            if (Object.defineProperty) {
                Object.defineProperty(this, "id", {
                    value: highestId,
                    configurable: false,
                    enumerable: false,
                    writable: false
                });
            }
            else {
                this.id = highestId;
            }

            this.destroyed = false;

            EventBus.inject(this, args.bus);

            flags[this.id] = {};

            this.$children = [];
            this.$parent = null;
        }

        /**
         * Checks whether an object has an ID property.
         *
         * @type any -> boolean
         * @param obj The object to be checked.
         * @return boolean Is the argument an object and has an ID property?
         */
        CoreObject.hasId = function (obj) {
            return typeof obj === "object" && obj !== null && typeof obj.id === "number";
        };

        /**
         * Checks whether an object is an instance of CoreObject.
         *
         * @type any -> boolean
         * @param obj The object to check.
         * @return boolean Is the argument a CoreObject instance?
         */
        CoreObject.isCoreObject = function (obj) {
            return obj instanceof CoreObject;
        };

        CoreObject.prototype.addChild = function (child) {

            if (this.$children.indexOf(child) >= 0) {
                return;
            }

            child.$parent = this;

            this.$children.push(child);
        };

        CoreObject.prototype.removeChild = function (child) {

            var index = this.$children.indexOf(child);

            if (index < 0) {
                return;
            }

            child.$parent = null;

            this.$children.splice(index, 1);
        };

        CoreObject.prototype.hasChild = function (child) {
            return this.$children.indexOf(child) >= 0;
        };

        /**
         * Sets a flag on this object. Flags can be used to specify abilities of
         * a CoreObject. A flag has no value and can be in on of two
         * states - it can either exist or not exist.
         *
         * @type string -> CoreObject
         * @event flag_set(name_of_flag) When the flag has been set.
         * @param flag The name of the flag.
         * @return The CoreObject itself.
         */
        CoreObject.prototype.setFlag = function (flag) {

            var internalKey = externalKeyToInternalKey(flag);

            if (!flags[this.id]) {
                return;
            }

            flags[this.id][internalKey] = true;

            this.trigger("flag_set", flag);

            return this;
        };

        /**
         * Removes a flag from this object.
         *
         * @type string -> CoreObject
         * @event flag_removed(name_of_flag) When the flag has been removed.
         * @param flag The name of the flag.
         * @return The CoreObject itself.
         */
        CoreObject.prototype.removeFlag = function (flag) {

            if (!this.hasFlag(flag)) {
                return;
            }

            delete flags[this.id][externalKeyToInternalKey(flag)];

            this.trigger("flag_removed", flag);

            return this;
        };

        /**
         * Checks whether this object has a flag set.
         *
         * @type string -> boolean
         * @param flag The name of the flag.
         * @return Is the flag set on this CoreObject instance?
         */
        CoreObject.prototype.hasFlag = function (flag) {

            var internalKey = externalKeyToInternalKey(flag);

            return flags[this.id] && 
                flags[this.id].hasOwnProperty(internalKey);
        };

        /**
         * Returns an array containing all the flags set on this CoreObject.
         *
         * @type void -> [string]
         * @return An array containing the names of the flags.
         */
        CoreObject.prototype.getFlags = function () {

            var arr = [];

            for (var key in flags[this.id]) {
                arr.push(internalKeyToExternalKey(key));
            }

            return arr;
        };

        /**
         * Connects an event on this CoreObject to an event on another CoreObject.
         * This means that if CoreObject A emits the specified event then CoreObject B
         * will emit another event as a reaction.
         *
         * @type string -> CoreObject -> string -> (boolean ->) CoreObject
         * @param event1 The event on this CoreObject.
         * @param obj2 The other CoreObject.
         * @param event2 The event on the other CoreObject.
         * @param async boolean Should the event on the other CoreObject be triggered async?
         *     This is optional. The default is true.
         * @return This CoreObject.
         */
        CoreObject.prototype.connect = function (event1, obj2, event2, async) {

            var self = this;

            event1 = event1 || "*";
            event2 = event2 || "*";

            if (!obj2 || !(obj2 instanceof CoreObject)) {
                throw new Exception("Cannot connect events: Parameter 3 is " +
                    "expected to be of type CoreObject.");
            }

            function listener (data) {

                data = data || null;

                if (typeof async !== "undefined" && (async === true || async === false)) {
                    obj2.trigger(event2, data, async);
                }
                else {
                    obj2.trigger(event2, data);
                }
            }

            this.subscribe(listener, event1);

            obj2.once(function () { self.unsubscribe(listener, event1); }, "destroyed");

            return this;
        };

        /**
         * Checks whether this CoreObject complies to an interface by
         * comparing each properties type.
         *
         * @type object -> boolean
         * @param interface An object representing the interface.
         * @return Does this CoreObject implement the interface?
         */
        CoreObject.prototype.implements = function (interface) {

            for (var key in interface) {
                if (typeof this[key] !== typeof interface[key]) {
                    return false;
                }
            }

            return true;
        };

        /**
         * CoreObject instances have a unique ID; when used as a string,
         * the ID of the object is used as a representation.
         *
         * @type string
         * @return This CoreObjet's ID as a string.
         */
        CoreObject.prototype.toString = function () {
            return "" + this.id;
        };

        /**
         * Returns this CoreObject's ID.
         *
         * @type number
         * @return This CoreObject's ID.
         */
        CoreObject.prototype.valueOf = function () {
            return this.id;
        };

        /**
         * Emits the destroyed() event and deletes all of the instances properties.
         * After this method has been called on an CoreObject, it can not be used
         * anymore and should be considered dead.
         *
         * All users of a CoreObject should hook to the destroyed() event and delete
         * their references to the CoreObject when its destroyed() event is emitted.
         *
         * @event destroyed()
         * @return void
         */
        CoreObject.prototype.destroy = function () {

            var id = this.id;

            if (this.$parent) {
                this.$parent.removeChild(this);
            }

            this.$children.forEach(function (child) {
                if (typeof child === "object" && typeof child.destroy === "function") {
                    child.destroy();
                }
            });

            this.destroyed = true;
            this.trigger("destroyed", null, false);

            for (var key in this) {
                this[key] = null;
            }

            delete flags[id];

            this.destroyed = true;
            this.id = id;

            delete this.toString;
            delete this.valueOf;

        };

        CoreObject.prototype.subscribeTo = function (bus, event, listener) {

            var self = this;

            if (!(typeof bus.subscribe === "function" && typeof bus.unsubscribe === "function")) {
                throw new Exception("Cannot subscribe: Parameter 1 is " +
                    "expected to be of type CoreObject or EventBus.");
            }

            if (typeof event !== "string") {
                throw new Exception("Cannot subscribe: Parameter 2 is " +
                    "expected to be of type String.");
            }

            if (typeof listener !== "function") {
                throw new Exception("Cannot subscribe: Parameter 3 is " +
                    "expected to be of type Function.");
            }

            listener = listener.bind(this);

            bus.subscribe(event, listener);

            this.subscribe("destroyed", thisDestroyed);
            bus.subscribe("destroyed", busDestroyed);

            return this;

            function thisDestroyed () {
                bus.unsubscribe(event, listener);
                self.unsubscribe("destroyed", thisDestroyed);
                bus.unsubscribe("destroyed", busDestroyed);
            }

            function busDestroyed () {
                bus.unsubscribe("destroyed", busDestroyed);
                self.unsubscribe("destroyed", thisDestroyed);
            }
        };

        return CoreObject;

        ///////////////////////////////////
        // Helper functions
        ///////////////////////////////////

        function externalKeyToInternalKey (key) {
            return prefix + key;
        }

        function internalKeyToExternalKey (key) {
            return key.replace(new RegExp(prefix), "");
        }

    }

}());

Documents

docs/reference/elements/nametemplate.md
docs/reference/elements/stop.md
docs/development.md
docs/documentation.md
docs/downloads.md
docs/examples.md
docs/games.md
docs/index.md
docs/reference/elements/alert.md
docs/reference/elements/animation.md
docs/reference/elements/assets.md
docs/reference/elements/audio.md
docs/reference/elements/background.md
docs/reference/elements/break.md
docs/reference/elements/character.md
docs/reference/elements/choice.md
docs/reference/elements/clear.md
docs/reference/elements/composite.md
docs/reference/elements/conditionals.md
docs/reference/elements/confirm.md
docs/reference/elements/curtain.md
docs/reference/elements/displayname.md
docs/reference/elements/do.md
docs/reference/elements/easing_attribute.md
docs/reference/elements/else.md
docs/reference/elements/flash.md
docs/reference/elements/flicker.md
docs/reference/elements/fn.md
docs/reference/elements/global.md
docs/reference/elements/globalize.md
docs/reference/elements/goto.md
docs/reference/elements/group.md
docs/reference/elements/hide.md
docs/reference/elements/image.md
docs/reference/elements/imagepack.md
docs/reference/elements/line.md
docs/reference/elements/localize.md
docs/reference/elements/move.md
docs/community.md
docs/reference/elements/option.md
docs/reference/elements/pause.md
docs/reference/elements/play.md
docs/reference/elements/prompt.md
docs/reference/elements/restart.md
docs/reference/elements/scene.md
docs/reference/elements/scenes.md
docs/reference/elements/set.md
docs/reference/elements/set_vars.md
docs/reference/elements/settings.md
docs/reference/elements/shake.md
docs/reference/elements/show.md
docs/reference/elements/source.md
docs/reference/elements/stage.md
docs/reference/elements/start.md
docs/beginners-guide.md
docs/reference/elements/sub.md
docs/reference/elements/tag.md
docs/reference/elements/textbox.md
docs/reference/elements/track.md
docs/reference/elements/transform.md
docs/reference/elements/trigger.md
docs/reference/elements/trigger_command.md
docs/reference/elements/triggers.md
docs/reference/elements/var.md
docs/reference/elements/wait.md
docs/reference/elements/when.md
docs/reference/elements/while.md
docs/reference/elements/with.md
docs/reference/elements/ws.md
docs/reference/elements.md
docs/reference/language.md
docs/reference/structure.md
docs/reference/syntax.md
docs/web-servers.md
libs/MO5/README.md
libs/MO5/libs/using.js/README.md
libs/MO5/js/EventBus.js
libs/MO5/js/Animation.js
libs/MO5/js/CoreObject.js
libs/MO5/js/Exception.js
libs/MO5/js/List.js
libs/MO5/js/MO5.js
libs/MO5/js/Map.js
libs/MO5/js/Point.js
libs/MO5/js/Promise.js
libs/MO5/js/Queue.js
libs/MO5/js/Result.js
libs/MO5/js/Set.js
libs/MO5/js/Size.js
libs/MO5/js/Timer.js
libs/MO5/js/TimerWatcher.js
libs/MO5/js/ajax.js
libs/MO5/js/assert.js
libs/MO5/js/dom.Element.js
libs/MO5/js/dom.effects.typewriter.js
libs/MO5/js/dom.escape.js
libs/MO5/js/easing.js
libs/MO5/js/fail.js
libs/MO5/js/globals.document.js
libs/MO5/js/globals.window.js
libs/MO5/js/range.js
libs/MO5/js/tools.js
libs/MO5/js/transform.js
libs/MO5/js/types.js
libs/MO5/libs/using.js/tests/index.js
libs/MO5/libs/using.js/tests/module1.js
libs/MO5/libs/using.js/tests/module2.js
libs/MO5/libs/using.js/tests/module3.js
libs/MO5/libs/using.js/using.js
libs/MO5/tests/node/EventBus.test.js
libs/MO5/tests/node/Set.test.js
src/savegames.js
src/tools/reveal.js
src/tools/ui.js
src/loader.js
src/tools/tools.js
src/tools/compile.js
src/functions.js
src/DisplayObject.js
src/Game.js
src/Interpreter.js
src/Keys.js
src/LoadingScreen.js
src/Trigger.js
src/assets/Audio.js
src/assets/Background.js
src/assets/Character.js
src/assets/Composite.js
src/assets/Curtain.js
src/assets/Imagepack.js
src/assets/Textbox.js
src/assets.js
src/bus.js
src/commands/alert.js
src/commands/break.js
src/commands/choice.js
src/commands/confirm.js
src/commands/do.js
src/commands/fn.js
src/commands/global.js
src/commands/globalize.js
src/commands/goto.js
src/commands/line.js
src/commands/localize.js
src/commands/prompt.js
src/commands/restart.js
src/commands/set_vars.js
src/commands/sub.js
src/commands/trigger.js
src/commands/var.js
src/commands/wait.js
src/commands/while.js
src/commands/with.js
src/commands.js
src/dataSources/LocalStorage.js
src/dataSources.js
src/engine.js
src/extensions/button.js
src/extensions/colored-rectangle.js
src/extensions/get-backtrace.js
src/extensions/hello.js
src/extensions/side-images.js
CHANGELOG.md
LICENSE.md
README.md
build.js
index.js
index.md
package.js