Giter VIP home page Giter VIP logo

beholder.lua's Introduction

beholder.lua

A simple event observer for Lua.

Example

beholder = require 'beholder'

...

local goblin1 = {x=100, y=100}
goblin1.pauseId = beholder.observe("PAUSE", function() goblin1.paused = true end)

...

local goblin2 = {x=200, y=100}
goblin2.pauseId = beholder.observe("PAUSE", function() goblin2.paused = true end)

...


function pauseButtonPressed()
  beholder.trigger("PAUSE")
end


...

function updateGoblin(goblin)
  if goblin.paused then
    return "zzz"
  else
    return "waaargh!"
  end
end

...

function destroyGoblin(goblin)
  beholder.stopObserving(goblin.pauseId)
end

(Note. if you are doing lots of that “if whatever.state then …” you might want to give a look to “stateful.lua”.http.//github.com/kikito/stateful.lua )

Why?

This library tries to solve the following problem. some actions need to be executed when some asynchronous condition is fulfilled. By “asyncronous” we mean that it something that typically doesn’t depend on the code. Hence precalculating it beforehand is impractical.

Some examples.

  • The pause menu is brought up, and all the actors in your videogame need to be frozen.
  • An image has item has been loaded from disk, and a progress bar needs to be updated.
  • The user presses certain combination of keys.

The way these problems are typically handed is by continuously polling for the trigger condition. For example, on the pause menu, one would find this code on the enemy movement routines.

if pause_menu_is_up then
  -- do the pause-related stuff
else
  -- do the non-pause related stuff.
end

You will have a code similar to that on each part that needs to be stopped. on your enemy code, the bullet code, the player code, etc.

But the biggest problem with that code is lack of separation. The code dealign with your goblins should only deal with goblin stuff. It should not “know” about the menu system, or the keyboard actions, or the file loader. And the same goes with your bullet code, player code, etc. They don’t need to know about exernal systems, such as the keyboard.

This library allows you to build “walls” between them. your keyboard code will just raise events, and your player code will observe those events. This allows for better encapsulation; if you later add multiplayer functionality, for example, the network module will just have to raise the same events just like the keyboard module did; your player logic will be unaffected.

You can obviously attach any number of observers to any given event. Similarly, you are

Halting event observation

Every call to beholder.observe returns an identifier which can be stored.

local id = beholder.observe("FOO", bar, baz)

That identifier can be used to cancel the observation at any moment. You can do so by using the beholder.stopObserving method.

beholder.stopObserving(id)

Composed events

Events can be any type of Lua object. On the example, we used the “PAUSE” string. It could also be a number, a function or a table. The == operator is used in all cases.

Composed events are built from more than one lua object. You can do them by simply adding more parameters to the observe/trigger functions. For example, this trigger.

beholder.trigger('PLAYERDETECTION', player1, 100, 200)

Will trigger this action.

beholder.observe('PLAYERDETECTION', player1, 100, 200, function() print("player1 detected at 100, 200") end)

Composed events are inclusive. This means that this other observer will also get activated by the aforementioned trigger.

beholder.observe('PLAYERDETECTION', player1, function(x,y) print("player1 detected at ",x,y)

Notice that the two “non-observed integers” will be passed to the callback as additional parameters. That second action will be executed any time player1 is detected, no matter what coordinates.

Similarly, you can add an action that will be triggered for any player detection.

beholder.observe('PLAYERDETECTION', function(player,x,y) print(player.no," detected at ",x,y)

The nil event

If you want to detect all signals raised (i.e. for logging and debugging) you can do so by observing the “empty” event – simply pass a function to observe, without adding any more params.

beholder.observe(function(...) log("Event triggered", ...) end)

A quick and dirty way of dumping all events in the standard output is just observing the nil event with print.

beholder.observe(print)

If you want to trigger the events attached only to the nil event, you can do so by calling trigger without params.

beholder.trigger()

Triggering all callbacks

You can use the triggerAll method to trigger all observed events (this will be useful mostly for debugging).

beholder.triggerAll(...)

Note that you can pass parameters to triggerAll. These will be passed to all callbacks (make sure that they are prepared for this, or you will get errors).

Groups of events

Sometimes it makes sense to group several events together, so they can be easily discarded.

You can use the group method to do just that.

On the following example, movePlayerUp/Down/Left/Right are functions defined elsewhere.

 local player = {} -- player could be any Lua object

...

beholder.group(player, function()
  beholder.observe("up",    movePlayerUp)
  beholder.observe("down",  movePlayerDown)
  beholder.observe("left",  movePlayerLeft)
  beholder.observe("right", movePlayerRight)
end)

Once these observations are setup, you can stop observing them in a single line:

beholder.stopObserving(player)

Installation

Just copy the beholder.lua file wherever you want it (for example on a lib/ folder). Then write this in any Lua file where you want to use it.

local beholder = require 'beholder'

On this example I’ve assigned it to a local variable. If you are going to use beholder across multiple files, it’s better to require the file just once and make the variable global.

The package.path variable must be configured so that the folder in which beholder.lua is copied is available, of course.

Please make sure that you read the license, too (for your convenience it’s now included at the beginning of the beholder.lua file).

Specs

This project uses “telescope”.https.//github.com/norman/telescope for its specs. If you want to run the specs, you will have to install telescope first. Then just execute the following from the root inspect folder.

tsc -f spec/*.lua

beholder.lua's People

Contributors

kikito avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.