Broadcast System

From RocketLauncher Wiki
Revision as of 08:31, 7 July 2015 by Bleasby (talk | contribs) (Created page with "<center>'''RocketLauncher support third party communication through a built in message broadcast system.</center><br /> <center>'''You can for example build a app to pause a g...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
RocketLauncher support third party communication through a built in message broadcast system.


You can for example build a app to pause a game or control any RocketLauncher command from a smartphone.


You also can receive RocketLauncher messages that describes its state, started, paused, exit,...



Instructions

Setting your program to receive RocketLauncher messages

  • You just need to set on RocketLauncher the window name of your program so RocketLauncher is able to send its messages to your app.
  • Open RocketLauncherUI
  • On the left pane choose global
  • Select the General Settings tab
  • On the RocketLauncher sub tab, go to the Broadcast section
  • Fill the broadcast window title field with the window title name of your program.

Sending messages to RocketLauncher from your external program

  • You just need to send one of the bellow listed valid messages to the window named: RocketLauncherMessageReceiver

Valid Messages

Messages sent by RocketLauncher

  • RocketLauncher Message: Welcome! :) (sent when RocketLauncher starts)
  • RocketLauncher Message: Goodbye! :( (sent when you exit RocketLauncher)
  • RocketLauncher Message: Game Paused. (sent when you pause a game)
  • RocketLauncher Message: Resuming Game. (sent when you resume a game)
  • RocketLauncher Message System is Available. (sent as a answer to a ping request)

Valid messages received by RocketLauncher

  • ping (message to test the reachability of RocketLauncher. Once received, RocketLauncher will send back the message "RocketLauncher Message System is Available." to all windows configured to receive broadcasted messages on RocketLauncherUI)
  • command|Pause (simulate pause key press)
  • command|Select (simulate select key press) (currently only available on pause)
  • command|Up (simulate select Up key press) (currently only available on pause)
  • command|Left (simulate select Left key press) (currently only available on pause)
  • command|Right (simulate select Right key press) (currently only available on pause)
  • command|Down (simulate select Down key press) (currently only available on pause)
  • command|Exit (simulate select Exit RocketLauncher key press)

Code example

  • On the bellow link you can find a small AHK code able to handling the RocketLauncher communication and control commands to serve as example if you want to use this feature by your own.
  • You just need to set, as explained in the beginning of this page, the Broadcast Window title on RocketLauncherUI to: RocketLauncherController.