Create toys

From Whirled

Jump to: navigation, search
Toys are furniture with interactivity. Anything you might have that does... well, anything, can be a toy. Creating toys requires some knowledge of coding.


Contents

Example Toys

Here are some existing toys that you can open up and examine as a basis for making your own.

Simple Button

Here is a simple button example in ActionScript 3 (AS3). It has the standard button behavior of rollover, down, and correct mouseout behavior.

Note

Here is BlackHat's note. Players can input text into a post-it note in the room and then hit save. Everyone in the room will see the last saved text on the note.

Basic Plant

Here is BlackHat's plant, with a slight modification that you see the stage 5 growth whenever you view it as an .swf (for example, when you are viewing it in the buy/upload window in Whirled) instead of the dead plant stage.

Action Block

A simple room object that sends a message to all other clients. The object then plays an animation when it gets the message, which results in an event that plays for everyone in the room.

Lamp

Another simple room object that will switch states when clicked. It then saves it's state so that it remains 'on/off' even when the user leaves the room.

Fish Tank

The fish tank takes the Basic Plant code and expands upon it. It now stores the health of multiple entities and produces more over time, reflecting the multiplication of fish in a tank.

Coding Tips and Guidelines

Assuming Control

If you have an action in your toy that should only be performed by one instance of the toy (keeping track of, and publishing the toy's state, for instance), it is best to have one instance take control and perform the action for as long as it has control.

FurniControl.requestControl() and ControlEvent.GOT_CONTROL are the keys to pulling this off. In the example below, we have a ball toy that plays a "roll" animation every 30 seconds. The time to perform this roll is calculated only by the instance that has control of the toy.

Example: Ball with "roll" animation

This example assumes that we're writing code in the FAT on the main animation's timeline, and that there is a "ball" MovieClip available, with a "roll" frame defined.

TODO: Actually compile and test this code. It is simple enough that the basics should be right, but it has not been checked by a compiler yet.

import com.whirled.FurniControl;
import com.whirled.ControlEvent;

/*** Settings ***/
const BALL_ROLL_DELAY :int = 30; // in seconds.

/*** Internal Constants ***/
const ROLL_BALL :String = "rollBall";

/*** Initialization ***/

var _timer :Timer;
var _control :FurniControl = new FurniControl(this);
if (_control.isConnected()) {
    // require that one instance of this toy have control - unlike games, control is not 
    // automatically assigned to one instance of a toy - but as along as they all request it, 
    // control will be moved to a new instance when the assigned controller leaves the room.
    _control.requestControl();

    // The MESSAGE_RECEIVED event is needed to make sure all instances roll when the controller
    // tells them to.
    _control.addEventListener(ControlEvent.MESSAGE_RECEIVED, messageReceived);

    // The GOT_CONTROL event is used to determine whether this instance should be timing the rolls
    _control.addEventListener(ControlEvent.GOT_CONTROL, gotControl);

    // when we are unloaded, we should de-register the _timer's event listener
    _control.addEventListener(Event.UNLOAD, onUnload);
}

/*** Functions ***/

function gotControl (event :ControlEvent) :void 
{
    // we have control! set up the timer to send out the ROLL_BALL message at the appropriate time.
    _timer = new Timer(BALL_ROLL_DELAY * 1000);
    _timer.addEventListener(TimerEvent.TIMER, onTimer);
    _timer.start();
}

function onTimer (event :TimerEvent) :void
{
    // we should not lose control once we have it, but it is worth checking to be sure
    if (!_control.hasControl()) {
        _timer.stop();
        _timer.removeEventListener(TimerEvent.TIMER, onTimer);
        _timer = null;
        return;
    }

    // the BALL_ROLL_DELAY time has passed, tell all instances to roll the ball.
    _control.sendMessage(ROLL_BALL);
}

function messageReceived (event :ControlEvent) :void
{
    if (event.name == ROLL_BALL) {
        // ball is a MovieClip defined in another layer.
        ball.gotoAndPlay("roll");
    }
}

function onUnload (event :Event) :void
{
    if (_timer != null) {
        _timer.stop();
    }
}

Keep Component Creation in One Place

In regular flash coding, you frequently react to a mouse click on an object by popping up some display immediately, perhaps with an animation, or just by adding one MovieClip to another. In a networked environment, there are two places where you might be tempted to do this: 1) when someone clicks on your own instance, and 2) when someone clicks on another instance in the room, which generates a ControlEvent.MESSAGE_RECEIVED, or ControlEvent.MEMORY_UPDATED which tells the other instances to show the same popup.

Fortunately, when you call FurniControl.sendMessage(), you will also receive that same message on the same instance that sent it. Not only does this make your code simpler, it means the person clicking on the toy will see their popup closer to the same time as the rest of the people. This is often not terribly important, but in some toys it could be critical.

This is not needed when the bit that's being popped up is only seen by the person interacting with the toy, but it should make your code simpler when one person interacts in a way that affects all instances.

In the example below, anybody (not just the controller) can click on the toy to have a random picture popup for everyone.

Example: Random Picture Popup

The code is written as in the Ball example (code on the timeline in the FAT). It assumes that there is a Picture class available in this fla that is a MovieClip type, where each frame contains a different picture.

TODO: Actually compile and test this code. It is simple enough that the basics should be right, but it has not been checked by a compiler yet.

import com.whirled.FurniControl;
import com.whirled.ControlEvent;

/*** Settings ***/
const PICTURE_DISPLAY_TIME :int = 30; // in seconds.

/*** Internal Constants ***/
const DISPLAY_PICTURE :String = "displayPicture";

/*** Initialization ***/

var _timer :Timer;
var _picture :Picture;
var _control :FurniControl = new FurniControl(this);
if (_control.isConnected()) {
    // The MESSAGE_RECEIVED event is needed to make sure all instances display the same random
    // picture, at the same time.
    _control.addEventListener(ControlEvent.MESSAGE_RECEIVED, messageReceived);

    // Listen for mouse clicks, and display a random picture.
    addEventListener(MouseEvent.CLICK, onClick);
}

/*** Functions ***/

function onClick (event :MouseEvent) :void
{
    // if the _picture is not null, then there is another picture being displayed - we need to 
    // wait before displaying a new one.
    if (_picture != null) {
        return;
    }

    // Pick a random picture, and send a message to display it.  We must instantiate a picture
    // here so we know how many frames are available.
    var tempPicture :Picture = new Picture();
    var picNumber :int = Math.floor(Math.random() * tempPicture.totalFrames) + 1;

    // We don't display it immediately here... this instance will also receive this message, so 
    // all of the picture creation and display code can be handled in messageReceived()
    _control.sendMessage(DISPLAY_PICTURE, picNumber);
}

function messageReceived (event :ControlEvent) :void
{
    if (event.name == DISPLAY_PICTURE) {
        // display the picture
        var picNumber :int = event.value as int;
        _picture = new Picture();
        _picture.gotoAndStop(picNumber);
        addChild(_picture);

        // set up the timer to remove the picture after PICTURE_DISPLAY_TIME
        _timer = new Timer(PICTURE_DISPLAY_TIME * 1000, 1);
        _timer.addEventListener(TimerEvent.TIMER, onTimer);
        _timer.start();
    }
}

function onTimer (event :TimerEvent) :void
{
    removeChild(_picture);
    _picture = null;
    // the timer was only scheduled to run once, so we don't need to stop it, or remove this
    // listener.
    _timer = null;
}
Personal tools