Publishers of technology books, eBooks, and videos for creative people

Home > Articles

This chapter is from the book

Hello World

What better first application to write than hello world? It’s about time we write a little code!

In this section, we will introduce you to the ElectroServer API, and then use that to connect to ElectroServer, log in, and send a private chat message.

The ElectroServer API

The ElectroServer API is an ActionScript 3 API used by a multiplayer application to connect to and communicate with ElectroServer. The API is provided as a SWC file, which you will find it in the ‘lib’ directory of all examples in this book that communicate with ElectroServer.

The ElectroServer API allows the client to establish a connection with the server and then communicate with the server. It also does some amount of automatic management of data. For example, the API keeps track of which rooms you are currently in as well as the user list in each of those rooms.

There are three main types of messages that can travel in either direction between the client and the server:

  • Requests—Objects created by the client and then sent to the server. For instance, when you want to log in, you create a login request, and send that to the server. For all intents and purposes, anything that the client sends to the server is a request.

  • Responses—Objects created by the server as a result of a request and then sent to the client. For instance, once the server receives a login request from a client, it processes the request and generates a login response. This response would contain information such as whether or not the login was successful.

  • Events—Messages (sent from the server to a client) that did not necessarily originate from a request. For example, receiving a chat message in a chat room is an event. That chat message may have been generated by that same user, another user, or even by the server itself.

Most of what you can do with the API is request-driven. The client creates a request object of some type, populates it with information, and then sends it to the server.

Writing Your First Chat

In this section, we look at the example you’ll find in book_files/chapter4/hello_world.

Open the project file. Using the project tab, browse and open the Main.as class file. This is the only class file used in this project. There are no visual assets needed to compile this project. The only thing that you can see is a text field, created using ActionScript.

Compile the application to see what it looks like. Make sure ElectroServer is running. You should see something that looks like the screen below.

The compiled application will run through the following steps:

  • Prepares an ElectroServer instance to be used
  • Connects to ElectroServer on 127.0.0.1 and port 9899
  • Logs in with a random username
  • Sends a private chat message to itself, and captures that message

Each step of the way, the application logs what is going on to a text field on the screen.

Prepare an ElectroServer instance

The first thing you need to do before connecting to ElectroServer is create a new instance of the ElectroServer class. The ElectroServer class is the gateway to the entire API.

On line 36 of the Main class, you can see the creation of the new ElectroServer instance:

_es = new ElectroServer();

Since we will be using this class instance from other functions later, it is a class-level property.

Now that the ElectroServer instance exists, we add event listeners, so that we can capture the responses and events that come back from the server:

_es.addEventListener(MessageType.ConnectionEvent,
→"onConnectionEvent", this);
_es.addEventListener(MessageType.LoginResponse,
→"onLoginResponse", this);
_es.addEventListener(MessageType.PrivateMessageEvent,
→"onPrivateMessageEvent", this);

The first line establishes an event listener for the connection event. When a connection occurs or times out, the onConnectionEvent function is executed. Likewise, the next two lines establish event listeners for logging in and for private chat messages. They will be discussed further below.

Each of the addEventListener function parameters is worth discussing. First is the MessageType class. That class is used to store references to every request, response, and event type that is possible with the API. When adding an event listener, you use the MessageType class to point to the response or event that you want to capture.

The second parameter is a string that contains the name of the function you want to be called when the event occurs. This one item is something that is not ideal about the ElectroServer API; the code base for the API is maintained in ActionScript 2 to support older clients, and ActionScript 3 up-conversion code is used to generate the ActionScript 3 version of the API. Having to use a string function name when adding an event listener is an unfortunate side effect of that process. However, it doesn’t slow down code or present any problems other than the lack of compile-time checking of the function names used.

The third parameter describes the scope in which the function exists.

Connect

Now that the ElectroServer class instance exists and has the proper event listeners added, we can actually do something—connect! ElectroServer supports several different protocols (text, binary, HTTP, and RTMP). We’ll use binary throughout the entire book; it’s the best choice for our purposes because it is lightweight and fast.

So first, we tell the API which protocol we want to use on line 44:

_es.setProtocol(Protocol.BINARY);

Next, we make the connection attempt to ElectroServer, on line 47:

_es.createConnection("127.0.0.1", 9899);

Assuming all of the default ElectroServer settings are being used, and it is running, then this makes ElectroServer listen for socket connections at the local IP address of 127.0.0.1 on port 9899.

When the connection succeeds or fails, the onConnectionEvent function is called:

public function onConnectionEvent(e:ConnectionEvent):void {
  if (e.getAccepted()) {
       log("Connection accepted.");

       //build the request
       var lr:LoginRequest = new LoginRequest();
       lr.setUserName("coolman" + Math.round(10000 *
       →Math.random()));

       //send it
       _es.send(lr);

       log("Sending login request.");
  } else {
       log("Connection failed. Reason: " + e.getEsError().
       →getDescription());
  }
}

Notice the ConnectionEvent parameter passed into this function. All events and responses have typed objects passed in that contain information about what happened.

In the if statement, you can see that this event object contains a Boolean value indicating whether the connection was successful or not. If the connection was not a success, then we log that, and then log the error that describes why the connection failed.

If the connection was successful, we log that it was a success, and then attempt to log in to the server.

Login

By default, ElectroServer will allow a user to log in with any username—provided that it is unique (no one else already has that name) and that it passes the default vulgarity test included as part of the application. (Try replacing the username with profanity, and you will see an error logged.)

To log in to ElectroServer, first a LoginRequest object is created, a username is populated onto that object (a random name, in this case), and then this request object is sent to the server. All requests are handled in this way: create the request, populate it with information, and send to the server.

The server processes this request and sends back a login response. This response is captured in the onLoginResponse function:

public function onLoginResponse(e:LoginResponse):void {
  if (e.getAccepted()) {
       log("Login accepted. Logged in as " + e.getUserName());

       //create the request
       var pmr:PrivateMessageRequest =
       →new PrivateMessageRequest();
       pmr.setUserNames([e.getUserName()]);
       pmr.setMessage("Hello World!");

       //send it
       _es.send(pmr);

       log("Sending myself a private message.");
  } else {
       log("Login failed. Reason: " + e.getEsError().
       →getDescription());
  }
}

If the login was accepted, then the getAccepted() method of the LoginResponse object returns true. If it was not accepted, then we log that information, and then log the error description about why it failed.

If the login is successful, then we send a private message to our own user.

Send a private message

To send a private message with ElectroServer, you first create a SendPrivateMessageRequest object. This object is then populated with information such as the list of usernames it should go to, and the message payload. In this example, you’ll see that the list of usernames is an array of just one name, our own.

The server processes this request and ends up sending private message events to all users in the list. A private message event in this example is captured by the onPrivateMessageEvent function:

public function onPrivateMessageEvent(e:PrivateMessageEvent):
→void {
  log("Private message received from " + e.getUserName() +
→". Message: " + e.getMessage());
}

In this function, we simply log that a private message was received, who it was from, and the message itself.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020