Marauroa Chat Tutorial: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
imported>Fjacob m Changed port number in the client code, too. |
imported>Kymara recommend eclipse over netbeans |
||
| (64 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
{{Navigation for Marauroa Top|Using}} |
{{Navigation for Marauroa Top|Using}} |
||
{{Navigation for Marauroa Users}} |
{{Navigation for Marauroa Users}} |
||
{{Marauroa Chat Tutorial}} |
|||
== Prerequisites == |
== Prerequisites == |
||
For this tutorial you will need a Marauroa distribution. You can find download links at [http://arianne.sourceforge.net/?arianne_url=servers/server_marauroa#downloads Marauroa download page]. It contains all the needed jars, but you will probably need to rename marauroa-2.5.jar into marauroa.jar (or fix some command-line parameters below). |
|||
For this tutorial you will need a Marauroa distribution. You can find download links at [http://arianne.sourceforge.net/?arianne_url=servers/server_marauroa#downloads Marauroa download page]. It contains all the needed jars, but you will probably need to rename marauroa-x.xx.jar into marauroa.jar (or fix some command-line parameters below). |
|||
You will also need |
You will also need |
||
* JDK ([http://java.sun.com/javase/downloads/index.jsp Sun download page]) |
* JDK ([http://java.sun.com/javase/downloads/index.jsp Sun download page]) |
||
If you want to use an IDE for development, we recommend [[Marauroa on Eclipse]]. Otherwise, there is a version of this chat tutoroial for Netbeans too at [[Chat_Tutorial_in_NetBeans|Marauroa with NetBeans]]. |
|||
This example uses the integrated h2 database. Marauroa does support MySQL as well, please see [[Configuration_file_server.ini#Database_Configuration|database configuration]]. |
This example uses the integrated h2 database. Marauroa does support MySQL as well, please see [[Configuration_file_server.ini#Database_Configuration|database configuration]]. |
||
== |
== First Step == |
||
=== Code === |
|||
In order to create a Marauroa-based game server you must provide at least implementation of the marauroa.server.game.rp.IRPRuleProcessor interface and a class for zone management, i.e. marauroa.server.game.rp.RPWorld descendant. You can use the marauroa.server.game.rp.RPWorld itself, but it doesn't provide you with any RPZones, while you will almost certainly need at least one. |
|||
We will start with the following implementation of the RPWorld |
|||
<source lang="java"> |
|||
import marauroa.server.game.rp.RPWorld; |
|||
import marauroa.server.game.rp.MarauroaRPZone; |
|||
public class World extends RPWorld { |
|||
private static World instance; |
|||
public static World get() { |
|||
if (instance == null) { |
|||
instance = new World(); |
|||
} |
|||
return instance; |
|||
} |
|||
public void onInit() { |
|||
super.onInit(); |
|||
MarauroaRPZone zone = new MarauroaRPZone("lobby"); |
|||
addRPZone(zone); |
|||
} |
|||
} |
|||
</source> |
|||
Don't forget to always implement the static get method which is used by Marauroa framework to retrieve an instance of your class. |
|||
onInit method is called when world is created. The only thing we do there is creating our zone (as we have a chat application we call it "lobby"). Zone is a general notion of Marauroa. It represents a game area. All clients residing in a certain area receive notification on data changes in this area only. Chat rooms are a good example, as if you are in a chat room you don't see the conversations in other rooms, i.e. you receive notifications on new things in your current room only. |
|||
Implementing IRPRuleProcessor will require more code, as we must implement all the methods of the interface. We will start with the following stub |
|||
<!-- Updated due to refactoring database access in Marauroa. --> |
|||
<!-- Please, see details here http://stendhal.game-host.org/wiki/index.php/Refactoring_Database_Access_in_Marauroa. --> |
|||
<source lang="java"> |
|||
import java.util.List; |
|||
import java.sql.SQLException; |
|||
import marauroa.common.crypto.Hash; |
|||
import marauroa.common.game.AccountResult; |
|||
import marauroa.common.game.CharacterResult; |
|||
import marauroa.common.game.IRPZone; |
|||
import marauroa.common.game.RPAction; |
|||
import marauroa.common.game.RPObject; |
|||
import marauroa.common.game.Result; |
|||
import marauroa.server.game.db.DAORegister; |
|||
import marauroa.server.game.db.AccountDAO; |
|||
import marauroa.server.game.db.CharacterDAO; |
|||
import marauroa.server.db.TransactionPool; |
|||
import marauroa.server.db.DBTransaction; |
|||
import marauroa.server.game.rp.IRPRuleProcessor; |
|||
import marauroa.server.game.rp.RPServerManager; |
|||
public class Rule implements IRPRuleProcessor { |
|||
private static Rule instance; |
|||
private World world = World.get(); |
|||
private RPServerManager manager; |
|||
public static IRPRuleProcessor get() { |
|||
if (instance == null) { |
|||
instance = new Rule(); |
|||
} |
|||
return instance; |
|||
} |
|||
public void setContext(RPServerManager rpman) { |
|||
manager = rpman; |
|||
} |
|||
public boolean checkGameVersion(String game, String version) { |
|||
return game.equals("Chat"); |
|||
} |
|||
public synchronized void onTimeout(RPObject object) { |
|||
onExit(object); |
|||
} |
|||
public synchronized boolean onExit(RPObject object) { |
|||
world.remove(object.getID()); |
|||
return true; |
|||
} |
|||
public synchronized boolean onInit(RPObject object) { |
|||
IRPZone zone = world.getRPZone(new IRPZone.ID("lobby")); |
|||
zone.add(object); |
|||
return true; |
|||
} |
|||
public synchronized void beginTurn() { |
|||
} |
|||
public boolean onActionAdd(RPObject caster, RPAction action, List<RPAction> actionList) { |
|||
return true; |
|||
} |
|||
public synchronized void endTurn() { |
|||
} |
|||
public void execute(RPObject caster, RPAction action) { |
|||
if (action.get("type").equals("chat")) { |
|||
RPObject chat_entry = new RPObject(); |
|||
chat_entry.put("text", action.get("text")); |
|||
chat_entry.put("from", caster.get("nick")); |
|||
chat_entry.put("turn", manager.getTurn()); |
|||
IRPZone zone = world.getRPZone(new IRPZone.ID(caster.getID().getZoneID())); |
|||
zone.assignRPObjectID(chat_entry); |
|||
zone.add(chat_entry); |
|||
} |
|||
} |
|||
public AccountResult createAccount(String username, String password, String email) { |
|||
TransactionPool transactionPool = TransactionPool.get(); |
|||
DBTransaction trans = transactionPool.beginWork(); |
|||
AccountDAO accountDAO = DAORegister.get().get(AccountDAO.class); |
|||
try { |
|||
if (accountDAO.hasPlayer(trans, username)) { |
|||
return new AccountResult(Result.FAILED_PLAYER_EXISTS, username); |
|||
} |
|||
accountDAO.addPlayer(trans, username, Hash.hash(password), email); |
|||
transactionPool.commit(trans); |
|||
return new AccountResult(Result.OK_CREATED, username); |
|||
} catch (SQLException e1) { |
|||
transactionPool.rollback(trans); |
|||
return new AccountResult(Result.FAILED_EXCEPTION, username); |
|||
} |
|||
} |
|||
public CharacterResult createCharacter(String username, String character, RPObject template) { |
|||
TransactionPool transactionPool = TransactionPool.get(); |
|||
DBTransaction trans = transactionPool.beginWork(); |
|||
CharacterDAO characterDAO = DAORegister.get().get(CharacterDAO.class); |
|||
try { |
|||
if (characterDAO.hasCharacter(trans, username, character)) { |
|||
return new CharacterResult(Result.FAILED_PLAYER_EXISTS, character, template); |
|||
} |
|||
IRPZone zone = world.getRPZone(new IRPZone.ID("lobby")); |
|||
RPObject object = new RPObject(template); |
|||
object.put("nick", character); |
|||
zone.assignRPObjectID(object); |
|||
characterDAO.addCharacter(trans, username, character, object); |
|||
transactionPool.commit(trans); |
|||
return new CharacterResult(Result.OK_CREATED, character, object); |
|||
} catch (Exception e1) { |
|||
transactionPool.rollback(trans); |
|||
return new CharacterResult(Result.FAILED_EXCEPTION, character, template); |
|||
} |
|||
} |
|||
} |
|||
</source> |
|||
We again implement the static get() method which is used by Marauroa to retrieve the RuleProcessor instance. |
|||
Most of the functions are simple stubs which one can replace with code that actually does something. |
|||
You can use checkGameVersion() to reject clients with outdated version. In our case we just require game name to be Chat. |
|||
Function onInit() is invoked each time a player logins successfully into the game. His character is loaded from the database. We add the player to the lobby zone immediately, because everybody who connects to the chat gets to the lobby first. |
|||
The most important function is execute() which is invoked each time server receives action from one of the clients. In this case we are waiting for a "chat" action. As soon as we receive one - a new object is created that represents one chat message. We also set some other properties of the message: the nickname of the person who sent this message, the turn number when the message was sent. |
|||
Functions for creating account and character should find out whether to create a new account/character or not. In our case we just always do it (not for duplicates of course). Result of this actions is instantly written to the database. Note that client can provide a template for the avatar object (an RPObject associated with the character). It is up to you how to use it while constructing the actual avatar object. We take what client provides, add a "nick" property (the same as character name) and use the resulting one as an avatar object. |
|||
=== Deployment === |
|||
So, we have two files, World.java and Rule.java, which contain the classes mentioned above. |
|||
You can compile them using command |
|||
<pre> |
|||
javac -cp marauroa.jar;log4j.jar;. *.java |
|||
</pre> |
|||
This command assumes that you have source files, marauroa.jar and log4j.jar in the same directory. You will receive World.class and Rule.class output files. |
|||
In order to run the server you will also need server.ini file: |
|||
<pre> |
|||
database_adapter=marauroa.server.db.adapter.H2DatabaseAdapter |
|||
jdbc_url=jdbc:h2:~/clientserverchat/database/h2db;AUTO_RECONNECT=TRUE;DB_CLOSE_ON_EXIT=FALSE |
|||
jdbc_class=org.h2.Driver |
|||
# TCP port |
|||
tcp_port=5555 |
|||
# World and RP configuration. Don't edit. |
|||
world=World |
|||
ruleprocessor=Rule |
|||
turn_length=300 |
|||
</pre> |
|||
Please run the following command to generate a key pair which will be used to encrypt the login information. Simply copy the output at the end of server.ini. |
|||
<pre> |
|||
java -cp marauroa.jar marauroa.tools.GenerateKeys |
|||
</pre> |
|||
Now you are all set to get your server up and running. To start the server I usually use the following command |
|||
<pre> |
|||
java -cp marauroa.jar;h2.jar;log4j.jar;. marauroa.server.marauroad -c server.ini |
|||
</pre> |
|||
Of course, make sure that all the jars are in the current directory. Marauroa framework will parse server.ini file, find and load your classes World and Rule. |
|||
== Text client == |
|||
=== Code === |
|||
In order to create a client using Marauroa frameword you should extend the marauroa.client.ClientFramework class with your logic. Here is the source code for the chat client |
|||
<source lang="java"> |
|||
import java.util.Map; |
|||
import java.util.List; |
|||
import java.util.HashMap; |
|||
import java.util.ArrayList; |
|||
import java.net.SocketException; |
|||
import marauroa.client.ClientFramework; |
|||
import marauroa.client.net.IPerceptionListener; |
|||
import marauroa.client.net.PerceptionHandler; |
|||
import marauroa.common.game.Perception; |
|||
import marauroa.common.game.RPAction; |
|||
import marauroa.common.game.RPObject; |
|||
import marauroa.common.game.RPEvent; |
|||
import marauroa.common.net.message.MessageS2CPerception; |
|||
import marauroa.common.net.message.TransferContent; |
|||
public class Client extends ClientFramework { |
|||
private PerceptionHandler handler; |
|||
protected static Client client; |
|||
private Map<RPObject.ID, RPObject> world_objects; |
|||
private String[] available_characters; |
|||
private List<String> quotes = new ArrayList<String>(); |
|||
public static Client get() { |
|||
if (client == null) { |
|||
client = new Client(); |
|||
} |
|||
return client; |
|||
} |
|||
protected Client() { |
|||
super("log4j.properties"); |
|||
world_objects = new HashMap<RPObject.ID, RPObject>(); |
|||
handler = new PerceptionHandler(new PerceptionListener()); |
|||
} |
|||
public String[] GetAvailableCharacters() { |
|||
return available_characters; |
|||
} |
|||
String popQuote() { |
|||
if (quotes.isEmpty()) { |
|||
return null; |
|||
} |
|||
String result = quotes.get(0); |
|||
quotes.remove(0); |
|||
return result; |
|||
} |
|||
public void SendMessage(String text) { |
|||
RPAction action; |
|||
action = new RPAction(); |
|||
action.put("type", "chat"); |
|||
action.put("text", text); |
|||
send(action); |
|||
} |
|||
protected void onPerception(MessageS2CPerception message) { |
|||
try { |
|||
handler.apply(message, world_objects); |
|||
} catch (java.lang.Exception e) { |
|||
// Something weird happened while applying perception |
|||
} |
|||
} |
|||
protected List<TransferContent> onTransferREQ(List<TransferContent> items) { |
|||
return items; |
|||
} |
|||
protected void onTransfer(List<TransferContent> items) { |
|||
} |
|||
protected void onAvailableCharacters(String[] characters) { |
|||
available_characters = characters; |
|||
} |
|||
protected void onServerInfo(String[] info) { |
|||
for (String s : info) { |
|||
quotes.add(s); |
|||
} |
|||
} |
|||
protected String getGameName() { |
|||
return "Chat"; |
|||
} |
|||
protected String getVersionNumber() { |
|||
return "0.5"; |
|||
} |
|||
protected void onPreviousLogins(List<String> previousLogins) { |
|||
} |
|||
class PerceptionListener implements IPerceptionListener { |
|||
public boolean onAdded(RPObject object) { |
|||
if (object.has("text")) { |
|||
quotes.add("*" + object.get("from") + "* : " + object.get("text")); |
|||
} |
|||
return false; |
|||
} |
|||
public boolean onModifiedAdded(RPObject object, RPObject changes) { |
|||
return false; |
|||
} |
|||
public boolean onModifiedDeleted(RPObject object, RPObject changes) { |
|||
return false; |
|||
} |
|||
public boolean onDeleted(RPObject object) { |
|||
return false; |
|||
} |
|||
public boolean onMyRPObject(RPObject added, RPObject deleted) { |
|||
return false; |
|||
} |
|||
public void onSynced() { |
|||
} |
|||
public void onUnsynced() { |
|||
} |
|||
public void onException(Exception e, marauroa.common.net.message.MessageS2CPerception perception) { |
|||
e.printStackTrace(); |
|||
System.exit(-1); |
|||
} |
|||
public boolean onClear() { |
|||
return false; |
|||
} |
|||
public void onPerceptionBegin(byte type, int timestamp) { |
|||
} |
|||
public void onPerceptionEnd(byte type, int timestamp) { |
|||
} |
|||
} |
|||
} |
|||
</source> |
|||
This is mostly a boilerplate code. We claim that we are "Chat" client, version "0.5" As you remember, our server will accept any "Chat" client, without version restrictions. |
|||
What you should note is that we use a Marauroa-provided perception handler, see onPerception. Still we introduce our own perception listener to be able to take actions when objects are added, modified, deleted. |
|||
PerceptionListener is our implementation for this. We only use onAdded handler, which allows us to react when new object appears, i.e. add the new chat message to the list of messages. The false values returned in other handlers are very important, because they show Marauroa that you would like to continue current action (e.g. adding an object). |
|||
All the messages received are stored in the quotes list. One can access stored messages one by one with a popQuote() method. |
|||
Finally, you can send a message with a SendMessage method. It constructs an RPAction understandable by server and sends it. |
|||
Marauroa frameword provides the main method for server, so that you don't need to care about execution loop. It is not true for server, so we will also need to implement the main module of our client. Here is a very easy solution |
|||
<source lang="java"> |
|||
import java.io.IOException; |
|||
import java.lang.Thread; |
|||
import marauroa.common.Log4J; |
|||
import marauroa.common.game.RPAction; |
|||
import marauroa.common.game.RPObject; |
|||
public class Test { |
|||
public static void main(String[] args) { |
|||
boolean cond = true; |
|||
Client my = Client.get(); |
|||
try { |
|||
my.connect("localhost", 5555); |
|||
if (args.length == 3) { |
|||
my.createAccount(args[0], args[1], args[2]); |
|||
} |
|||
my.login(args[0], args[1]); |
|||
if (my.GetAvailableCharacters().length == 0) { |
|||
RPObject character = new RPObject(); |
|||
my.createCharacter(args[0], character); |
|||
} |
|||
my.chooseCharacter(args[0]); |
|||
} catch (Exception e) { |
|||
cond = false; |
|||
} |
|||
int i = 0; |
|||
while (cond) { |
|||
++i; |
|||
my.loop(0); |
|||
if (i % 100 == 50) { |
|||
my.SendMessage("test" + i); |
|||
} |
|||
String s = my.popQuote(); |
|||
while (s != null) { |
|||
System.out.println(s); |
|||
s = my.popQuote(); |
|||
} |
|||
try { |
|||
Thread.sleep(100); |
|||
} catch (InterruptedException e) { |
|||
cond = false; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
</source> |
|||
Our main method does a couple of things. First of all, we create a new account if three command-line arguments are provided (login, password, email). Otherwise we just login with login and password specified. |
|||
Then it is time to select a character. If server reports that no characters are available for this account, then we create a new one with the same name as account name. Note, that it is not possible to select a character directly in the onAvailableCharacters handler of the Client class. |
|||
A heart-beat loop is started afterwards. At each step we invoke loop(0), where floating point parameter means nothing at this point. Once in 100 steps we send a message to server. There is no interactive way to control messages, still it is amazing to see chat created by your own client. |
|||
=== Deployment === |
|||
Running a client is very simple, all you need is a bunch of jars (database is not required on the client side) and compiled client code. I use following line for compilation |
|||
<pre> |
|||
javac -cp marauroa.jar;log4j.jar;. *.java |
|||
</pre> |
|||
Make sure that required jars are in the current directory. To run use |
|||
<pre> |
|||
java -cp marauroa.jar;log4j.jar;. Test login password |
|||
</pre> |
|||
Don't forget to replace login and password with the actual ones. To create a new account just add a third command-line parameter (that should be an email, but no validation at the moment). |
|||
=== Output === |
|||
Ideally you should see something like |
|||
<pre> |
|||
>java -cp marauroa.jar;log4j.jar;. Test test1 test1 |
|||
Cannot find log4j.properties in classpath. Using default properties. |
|||
0.5 |
|||
Do not contact us! |
|||
Marauroa server |
|||
Chat |
|||
*test1* : test50 |
|||
*test1* : test150 |
|||
</pre> |
|||
Note the message about log4j.properties: you can create that file in order to configure the Log4J usage inside Marauroa framework. |
|||
== Swing client == |
|||
=== Code === |
|||
The design of our Client class allows us to easily use it in something more complex then Test class above. Here is the example of a simple Swing application that uses Client as a communication tool |
|||
<source lang="java"> |
|||
import javax.swing.*; |
|||
import java.awt.event.*; |
|||
import java.io.IOException; |
|||
import java.net.URL; |
|||
import java.util.*; |
|||
import java.awt.*; |
|||
public class View extends JFrame implements ActionListener { |
|||
private javax.swing.JButton jSayButton; |
|||
private javax.swing.JButton jConnectButton; |
|||
private javax.swing.JScrollPane jScrollPane1; |
|||
private javax.swing.JTextArea jChatArea; |
|||
private javax.swing.JTextField jInputField; |
|||
private javax.swing.Timer timer; |
|||
private Client client = null; |
|||
public View() { |
|||
initComponents(); |
|||
jSayButton.addActionListener( |
|||
new ActionListener() { |
|||
public void actionPerformed(ActionEvent e) { |
|||
String message = jInputField.getText(); |
|||
jInputField.setText(""); |
|||
client.SendMessage(message); |
|||
} |
|||
}); |
|||
jConnectButton.addActionListener( |
|||
new ActionListener() { |
|||
public void actionPerformed(ActionEvent e) { |
|||
try { |
|||
client = Client.get(); |
|||
client.connect("127.0.0.1", 5555); |
|||
client.login("test1", "test1"); |
|||
client.chooseCharacter("test1"); |
|||
jSayButton.setEnabled(true); |
|||
jInputField.setEnabled(true); |
|||
} catch (Exception exception) { |
|||
JOptionPane.showMessageDialog( |
|||
View.this, "Error", exception.toString(), JOptionPane.WARNING_MESSAGE); |
|||
client = null; |
|||
} |
|||
} |
|||
}); |
|||
timer = new javax.swing.Timer(300, this); |
|||
timer.setInitialDelay(500); |
|||
timer.start(); |
|||
setVisible(true); |
|||
} |
|||
public void actionPerformed(ActionEvent e) { |
|||
if (client != null) { |
|||
client.loop(0); |
|||
String s = client.popQuote(); |
|||
while (s != null) { |
|||
jChatArea.append(s + "\n"); |
|||
s = client.popQuote(); |
|||
} |
|||
} |
|||
} |
|||
private void initComponents() { |
|||
jScrollPane1 = new javax.swing.JScrollPane(); |
|||
jChatArea = new javax.swing.JTextArea(); |
|||
jSayButton = new javax.swing.JButton(); |
|||
jConnectButton = new javax.swing.JButton(); |
|||
jInputField = new javax.swing.JTextField(); |
|||
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); |
|||
setTitle("Chat 0.5"); |
|||
setName("main"); |
|||
jChatArea.setColumns(20); |
|||
jChatArea.setEditable(false); |
|||
jChatArea.setRows(5); |
|||
jScrollPane1.setViewportView(jChatArea); |
|||
jSayButton.setText("Say"); |
|||
jSayButton.setEnabled(false); |
|||
jConnectButton.setText("Connect"); |
|||
jInputField.setEnabled(false); |
|||
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); |
|||
getContentPane().setLayout(layout); |
|||
layout.setHorizontalGroup( |
|||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) |
|||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() |
|||
.addContainerGap() |
|||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) |
|||
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 394, Short.MAX_VALUE) |
|||
.addGroup(layout.createSequentialGroup() |
|||
.addComponent(jInputField, javax.swing.GroupLayout.PREFERRED_SIZE, 236, javax.swing.GroupLayout.PREFERRED_SIZE) |
|||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) |
|||
.addComponent(jSayButton, javax.swing.GroupLayout.DEFAULT_SIZE, 73, Short.MAX_VALUE) |
|||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) |
|||
.addComponent(jConnectButton))) |
|||
.addContainerGap()) |
|||
); |
|||
layout.setVerticalGroup( |
|||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) |
|||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() |
|||
.addContainerGap() |
|||
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 249, Short.MAX_VALUE) |
|||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) |
|||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) |
|||
.addComponent(jConnectButton) |
|||
.addComponent(jSayButton) |
|||
.addComponent(jInputField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) |
|||
.addContainerGap()) |
|||
); |
|||
pack(); |
|||
} |
|||
} |
|||
</source> |
|||
To create the layout of the elements NetBeans was used, but we concentrate just on the source code here. |
|||
The client establishes a connection to a hard-coded location upon Connect button is pressed. There is no "Create new account" functionality, so account should be created beforehand. |
|||
We use timer to regularly check for the new messages in the Client queue. If there are some - they are put to the large text box. Sending the new message also relies on the Client facilities. |
|||
The only thing left for the Swing client now is a main method. Here is the source code |
|||
<source lang="java"> |
|||
final class Chat { |
|||
private Chat() {} |
|||
public static void main( String[] args ) { |
|||
new View(); |
|||
} |
|||
} |
|||
</source> |
|||
=== Deployment === |
|||
You still use the same command for compilation |
|||
<pre> |
|||
javac -cp marauroa.jar;log4j.jar;. *.java |
|||
</pre> |
|||
In the first section of this tutorial, we will write the '''[[Marauroa Chat Tutorial/Server|Server]]''' before we look at the clients in the following section. |
|||
Make sure that source files with code for Swing client are in the same directory with jars mentioned and Client.java file. You can run the client with the following command |
|||
<pre> |
|||
java -cp marauroa.jar;log4j.jar;. Chat |
|||
</pre> |
|||
== TODO == |
|||
{{TODO|As soon as you finished reading this tutorial you would probably like to make one of this exercises. You are welcome to introduce your results back to the tutorial.}} |
|||
* It is natural to have several chat rooms. It is easy to implement - each room should be represented with a new RPZone. You will need new actions for room creation (you automatically join a newly created room), joining a room and leaving a room. Server should delete empty rooms at once. |
|||
* The turn stamps on the messages are not used currently. Actually, server should keep some fixed amount of messages per room (say, 100). Clients should use turn stamps to sort messages. |
|||
* Connect button for Swing client should bring up a dialog with connection properties, e.g. hostname, port, username, password, email (if you create a new account). |
|||
[[Category:Marauroa]] |
[[Category:Marauroa]] |
||
{{#breadcrumbs: [[Marauroa]] | [[Navigation for Marauroa Users|Using]] | [[ |
{{#breadcrumbs: [[Marauroa]] | [[Navigation for Marauroa Users|Using]] | [[Marauroa Chat Tutorial|Tutorial]] }} |
||