Chat revamp, phase 2.

- FeedbackMessage has been subsumed into SystemMessage, which now has three
  modes: INFO, FEEDBACK, or ATTENTION.
- Cleaned up methods for sending those system messages.
  - on the server: sendInfo(), sendFeedback(), sendAttention()
  - on the client: displayInfo(), displayFeedback(), displayAttention().


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2635 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2003-06-04 02:50:19 +00:00
parent 01b123b9f8
commit 5f515133c3
8 changed files with 142 additions and 91 deletions
@@ -1,5 +1,5 @@
//
// $Id: GameManager.java,v 1.64 2003/06/03 21:41:33 ray Exp $
// $Id: GameManager.java,v 1.65 2003/06/04 02:50:19 ray Exp $
package com.threerings.parlor.game;
@@ -344,7 +344,7 @@ public class GameManager extends PlaceManager
}
// otherwise, just deliver the message
SpeakProvider.sendSystemSpeak(_gameobj, msgbundle, msg);
SpeakProvider.sendInfo(_gameobj, msgbundle, msg);
}
// documentation inherited