// // $Id$ // // Narya library - tools for developing networked games // Copyright (C) 2002-2007 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.crowd.data; import com.threerings.util.Name; import com.threerings.presents.data.ClientObject; import com.threerings.crowd.chat.data.SpeakObject; /** * The basic user object class for Crowd users. Bodies have a username, a location and a status. */ public class BodyObject extends ClientObject implements SpeakObject { // AUTO-GENERATED: FIELDS START /** The field name of the username field. */ public static final String USERNAME = "username"; /** The field name of the location field. */ public static final String LOCATION = "location"; /** The field name of the status field. */ public static final String STATUS = "status"; /** The field name of the awayMessage field. */ public static final String AWAY_MESSAGE = "awayMessage"; // AUTO-GENERATED: FIELDS END /** * The username associated with this body object. This should not be used directly; in general * {@link #getVisibleName} should be used unless you specifically know that you want the * username. */ public Name username; /** * Identifies the place currently occupied by this body. null if they currently occupy no * place. */ public Place location; /** * The user's current status ({@link OccupantInfo#ACTIVE}, etc.). */ public byte status; /** * The time at which the {@link #status} field was last updated. This is only available on the * server. */ public transient long statusTime; /** * If non-null, this contains a message to be auto-replied whenever another user delivers a * tell message to this user. */ public String awayMessage; /** * Returns the oid of the place occupied by this body or -1 if we occupy no place. */ public int getPlaceOid () { return (location == null) ? -1 : location.placeOid; } /** * Returns this user's access control tokens. */ public TokenRing getTokens () { return EMPTY_TOKENS; } /** * Returns the name that should be displayed to other users and used for the chat system. The * default is to use {@link #username}. */ public Name getVisibleName () { return username; } /** * Creates a blank occupant info instance that will used to publish information about the * various bodies occupying a place. */ public OccupantInfo createOccupantInfo (PlaceObject plobj) { return new OccupantInfo(this); } /** * Called when this body is about to enter the specified place. Configures our {@link * #location} field. * * @param place the identifying information for the place we are entering. * @param plobj the distributed object for the place we are entering. */ public void willEnterPlace (Place place, PlaceObject plobj) { setLocation(place); } /** * Called when this body has left its occupied place. Clears our {@link #location} field. * * @param plobj the distributed object for the place we just departed. This might be null if * the place object has been destroyed. */ public void didLeavePlace (PlaceObject plobj) { setLocation(null); } // documentation inherited public void applyToListeners (ListenerOp op) { op.apply(getOid()); } // documentation inherited public String who () { StringBuilder buf = new StringBuilder(username.toString()); buf.append(" ("); addWhoData(buf); return buf.append(")").toString(); } // AUTO-GENERATED: METHODS START /** * Requests that the username field be set to the * specified value. The local value will be updated immediately and an * event will be propagated through the system to notify all listeners * that the attribute did change. Proxied copies of this object (on * clients) will apply the value change when they received the * attribute changed notification. */ public void setUsername (Name value) { Name ovalue = this.username; requestAttributeChange( USERNAME, value, ovalue); this.username = value; } /** * Requests that the location field be set to the * specified value. The local value will be updated immediately and an * event will be propagated through the system to notify all listeners * that the attribute did change. Proxied copies of this object (on * clients) will apply the value change when they received the * attribute changed notification. */ public void setLocation (Place value) { Place ovalue = this.location; requestAttributeChange( LOCATION, value, ovalue); this.location = value; } /** * Requests that the status field be set to the * specified value. The local value will be updated immediately and an * event will be propagated through the system to notify all listeners * that the attribute did change. Proxied copies of this object (on * clients) will apply the value change when they received the * attribute changed notification. */ public void setStatus (byte value) { byte ovalue = this.status; requestAttributeChange( STATUS, Byte.valueOf(value), Byte.valueOf(ovalue)); this.status = value; } /** * Requests that the awayMessage field be set to the * specified value. The local value will be updated immediately and an * event will be propagated through the system to notify all listeners * that the attribute did change. Proxied copies of this object (on * clients) will apply the value change when they received the * attribute changed notification. */ public void setAwayMessage (String value) { String ovalue = this.awayMessage; requestAttributeChange( AWAY_MESSAGE, value, ovalue); this.awayMessage = value; } // AUTO-GENERATED: METHODS END /** * Allows derived classes to add data to the who details. */ protected void addWhoData (StringBuilder buf) { buf.append(getOid()); if (status != OccupantInfo.ACTIVE) { buf.append(" ").append(getStatusTranslation()); } } /** * Get a translation suffix for this occupant's status. * Can be overridden to translate nonstandard statuses. */ protected String getStatusTranslation () { return OccupantInfo.X_STATUS[status]; } /** The default (no tokens) access control. */ protected static final TokenRing EMPTY_TOKENS = new TokenRing(); }