Chat Tutorial in NetBeans/Text Client: Difference between revisions
Content deleted Content added
imported>SimonSmall Extra logging info |
imported>SimonSmall m →Using the marauroa project: spelling |
||
| (34 intermediate revisions by the same user not shown) | |||
Line 4:
For more detail in using the NetBeans IDE, see the [[Using and configuring NetBeans]] page.
== Comments and Javadoc ==
There are a number of comments in the code below, primarily added as an explanation of the code, but also added as an illustration of comments and how Javadoc can be seen in the NetBeans IDE.
= NetBeans Project =
Line 13 ⟶ 17:
== Adding the Marauroa library ==
Choose the correct way depending on if you are using the marauroa.jar file,
=== Using the Jar file ===
Line 19 ⟶ 23:
Use this option unless you need to use the other methods.
Find the '''marauroa.jar''' file from the download, and copy it to the libs directory (created above) if it is not there already. Right click the '''Libraries''' branch of the
=== Using the marauroa project ===
Right click the '''Libraries''' branch of the
=
The following files
This file was created when you created the new Project. Add the following (or replace the existing) code. This is the a simple flow to test the client and server code works to give basic communication. Some simple comments are included.
<source lang="Java">
/*
* Test class for Marauroa Chat Tutorial
* - see http://stendhalgame.org/wiki/Marauroa_Chat_Tutorial
*/
package client;
import marauroa.common.Log4J;
import marauroa.common.game.RPObject;
/**
* Run the client to communicate with the server
*/
public class Test {
@SuppressWarnings("SleepWhileInLoop")
private static marauroa.common.Logger logger = Log4J.getLogger(Test.class);
public static void main(String[] args) {
// flag: false to stop client
boolean cond = true;
// create the Client to handle communications
Client my = Client.get();
try {
my.connect("localhost", 5555);
// create new account if 3rd parameter is present (email address)
if (args.length == 3) {
my.createAccount(args[0], args[1], args[2]);
}
// do log in
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;
logger.info("Login failure: " + e);
}
// connection loop (no user interaction)
int i = 0;
while (cond) {
++i;
// get and apply messages
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>
Close and Save the file. Note how NetBeans shows an error because it does not recognise the Client class.
== Adding Logging to the Client ==
To trace errors, or to monitor which parts of a program are executed, message (log) statements can be inserted in the code, as in Test.java (above). The log4j library provides a flexible and configurable way to do this. See [[Logging in Marauroa | how this is done]] in Marauroa.
=== The logging configuration file ===
To specify the logging output right-click on the '''client''' package and add a new '''Empty File'''. Give the '''File Name''' as '''log4j_client.properties'''. Add the following lines to that file:
<pre>
# Set root logging level to INFO, and create two output configurations
log4j.rootLogger=INFO, Console, File
# Paste all log entries to the console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%d{ISO8601} [%t] %-5p %c - %m%n
# Paste all log entries to a daily log file
log4j.appender.File=org.apache.log4j.DailyRollingFileAppender
log4j.appender.File.File=log/client.log
log4j.appender.File.layout=org.apache.log4j.PatternLayout
log4j.appender.File.layout.ConversionPattern=%d{ISO8601} [%t] %-5p %c - %m%n
# Set priority to warning messages and above, disabling debug and info messages
log4j.logger.marauroa.client=WARN
</pre>
Close and Save the file.
== Adding the log4j library ==
Although this does not create a compile error it will create an error when you run the Text Client.
Copy the '''log4j.jar''' file from the downloaded source files to the '''libs''' directory (created above). Right click the '''Libraries''' branch of the server Project tree, and select '''Add Jar/Folder'''. Browse to the the libs directory for this project and select the log4j.jar file.
== Client.java ==
This file extends the Marauroa ClientFramework class, to provide methods that give the required responses when these actions are carried out.
Right-click on the '''client''' package and add a new '''Java Class'''. Give the '''Class Name''' as '''Client'''. Replace the template code with the following code:
Line 35 ⟶ 158:
<source lang="Java">
/*
* Client class for Marauroa Chat Tutorial
* - see http://stendhalgame.org/wiki/Marauroa_Chat_Tutorial
*/
Line 54 ⟶ 178:
/**
* Handle the connection to the game Server
*/
public class Client extends ClientFramework {
private String[] available_characters;
private PerceptionHandler handler;
private static marauroa.common.Logger logger = Log4J.getLogger(Client.class);
private List<String> quotes = new ArrayList<String>();
private Map<RPObject.ID, RPObject> world_objects;
* singleton constructor - logger, objects and interface handler
*/
protected Client() {
world_objects = new HashMap<RPObject.ID, RPObject>();
handler = new PerceptionHandler(new PerceptionListener());
}
public static Client get() {
if (client == null) {
client = new Client();
}
return client;
}
public String[] getAvailableCharacters() {
return available_characters;
}
/**
* take the next message from the queue
*/
public String popQuote() {
if (quotes.isEmpty()) {
return null;
}
quotes.
return result;
}
/**
* send the message (as an action) to the server
public void sendMessage(String text) {
RPAction action;
action = new RPAction();
action.put("type", "chat");
send(action);
}
/**
* process message from server
*/
@Override
protected void onPerception(MessageS2CPerception message) {
handler.apply(message, world_objects);
} catch (java.lang.Exception e) {
// Something weird happened while applying perception
logger.warn("Applying perception: " + e);
}
}
/**
* request transfer of content from server
*/
@Override
protected List<TransferContent> onTransferREQ(List<TransferContent> items) {
return
}
/**
* process received transfer of content from server
*/
@Override
protected void onTransfer(List<TransferContent> items) {
}
/**
* on receipt of character list from server, save it
*/
@Override
protected void onAvailableCharacters(String[] characters) {
available_characters = characters;
}
/**
* on receipt of server info, store in message queue
*/
@Override
for (String s : info) {
quotes.add(s);
}
}
/**
* use to check that this client matches the server
*/
@Override
return "Chat";
}
/**
* use to check that this client version matches the server version
*/
@Override
protected String getVersionNumber() {
}
/**
* previous logins not used
*/
@Override
protected void onPreviousLogins(List<String> previousLogins) {
}
/**
* apply perceptions: add, change or delete objects
*/
class PerceptionListener implements IPerceptionListener {
/**
* clear world on sync perceptions
*/
@Override
public boolean onClear() {
return false;
}
/**
* get new messages from server; add to message queue
*/
@Override
public boolean onAdded(RPObject object) {
if (object.has("text")) {
quotes.add("*" + object.get("from") + "* : " + object.get("text"));
}
return false;
}
/**
* server has deleted an object; client does not need to do anything
*/
@Override
public boolean onDeleted(RPObject object) {
return false;
}
/**
* server has modified an object; client does not need to do anything
*/
@Override
public boolean onModifiedAdded(RPObject object, RPObject changes) {
return false;
}
/**
* server has modified an object; client does not need to do anything
*/
@Override
public boolean onModifiedDeleted(RPObject object, RPObject changes) {
return false;
}
/**
* player avatar is to be processed
*/
@Override
public boolean onMyRPObject(RPObject added, RPObject deleted) {
return false;
}
/**
* client cannot process perception; exit client
*/
@Override
public void onException(Exception e, marauroa.common.net.message.MessageS2CPerception perception) {
logger.warn("Exit on exception: " + e + " : " + perception.toString());
e.printStackTrace();
System.exit(-1);
}
@Override
public void onPerceptionBegin(byte type, int timestamp) {
}
@Override
public void onSynced() {
public void onUnsynced() {
}
}
}
</source>
Line 262 ⟶ 393:
Close and Save the file.
Finally, select '''Run''', '''Build Main Project''' from the NetBeans menu bar. This will create '''client.jar''' in the '''dist''' directory, and copy the jar files from the libs directory to the '''lib''' sub-directory of dist.
You have created the two class files and compiled them into a java library. Now you should create the [[Chat Tutorial in NetBeans/Server|server files]], then you can follow the [[Chat Tutorial in NetBeans/Deploy Text Client|deployment instructions]] for preparing and testing your
[[Category:NetBeans]]
| |||