6e9077780c
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5829 542714f4-19e9-0310-aa3c-eee0fc999fb1
148 lines
4.4 KiB
ActionScript
148 lines
4.4 KiB
ActionScript
//
|
|
// $Id$
|
|
//
|
|
// Narya library - tools for developing networked games
|
|
// Copyright (C) 2002-2009 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/narya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package com.threerings.presents.dobj {
|
|
|
|
import com.threerings.io.ObjectInputStream;
|
|
import com.threerings.io.ObjectOutputStream;
|
|
|
|
import com.threerings.util.Boxed;
|
|
import com.threerings.util.StringBuilder;
|
|
|
|
/**
|
|
* An element updated event is dispatched when an element of an array
|
|
* field in a distributed object is updated. It can also be constructed to
|
|
* request the update of an entry and posted to the dobjmgr.
|
|
*
|
|
* @see DObjectManager#postEvent
|
|
*/
|
|
public class ElementUpdatedEvent extends NamedEvent
|
|
{
|
|
/**
|
|
* Constructs a new element updated event on the specified target
|
|
* object with the supplied attribute name, element and index.
|
|
*
|
|
* @param targetOid the object id of the object whose attribute has
|
|
* changed.
|
|
* @param name the name of the attribute (data member) for which an
|
|
* element has changed.
|
|
* @param value the new value of the element (in the case of primitive
|
|
* types, the reflection-defined object-alternative is used).
|
|
* @param oldValue the previous value of the element (in the case of
|
|
* primitive types, the reflection-defined object-alternative is
|
|
* used).
|
|
* @param index the index in the array of the updated element.
|
|
*/
|
|
public function ElementUpdatedEvent (
|
|
targetOid :int = 0, name :String = null, value :Object = null,
|
|
oldValue :Object = null, index :int = 0)
|
|
{
|
|
super(targetOid, name);
|
|
|
|
// only init these values if they were specified
|
|
if (arguments.length > 0) {
|
|
_value = value;
|
|
_oldValue = oldValue;
|
|
_index = index;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the new value of the element.
|
|
*/
|
|
public function getValue () :Object
|
|
{
|
|
return _value;
|
|
}
|
|
|
|
/**
|
|
* Returns the value of the element prior to the application of this
|
|
* event.
|
|
*/
|
|
public function getOldValue () :Object
|
|
{
|
|
return _oldValue;
|
|
}
|
|
|
|
/**
|
|
* Returns the index of the element.
|
|
*/
|
|
public function getIndex () :int
|
|
{
|
|
return _index;
|
|
}
|
|
|
|
/**
|
|
* Applies this element update to the object.
|
|
*/
|
|
override public function applyToObject (target :DObject) :Boolean
|
|
//throws ObjectAccessException
|
|
{
|
|
if (_oldValue === UNSET_OLD_ENTRY) {
|
|
_oldValue = target[_name][_index];
|
|
}
|
|
target[_name][_index] = _value;
|
|
return true;
|
|
}
|
|
|
|
// documentation inherited
|
|
override public function writeObject (out :ObjectOutputStream) :void
|
|
{
|
|
super.writeObject(out);
|
|
out.writeObject(_value);
|
|
out.writeInt(_index);
|
|
}
|
|
|
|
// documentation inherited
|
|
override public function readObject (ins :ObjectInputStream) :void
|
|
{
|
|
super.readObject(ins);
|
|
_value = ins.readObject();
|
|
_index = ins.readInt();
|
|
|
|
if (_value is Boxed) {
|
|
_value = (_value as Boxed).unbox();
|
|
}
|
|
}
|
|
|
|
// documentation inherited
|
|
override protected function notifyListener (listener :Object) :void
|
|
{
|
|
if (listener is ElementUpdateListener) {
|
|
listener.elementUpdated(this);
|
|
}
|
|
}
|
|
|
|
// documentation inherited
|
|
override protected function toStringBuf (buf :StringBuilder) :void
|
|
{
|
|
buf.append("UPDATE:");
|
|
super.toStringBuf(buf);
|
|
buf.append(", value=", _value);
|
|
buf.append(", index=", _index);
|
|
}
|
|
|
|
protected var _value :Object;
|
|
protected var _index :int;
|
|
protected var _oldValue :Object = UNSET_OLD_ENTRY;
|
|
}
|
|
}
|