1.0.3 • Published 2 years ago

smoke-signal-js v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

smoke-signal-js logo

smoke-signal-js

A JavaScript port of Tobster's communication library, TobComm. Be aware - this implementation is functional, not class-based! This is because I am not Bri*ish.

Installation

npm install smoke-signal-js

Usage

// For ES6 imports
import { smokeSignal } from 'smoke-signal-js';

// For commonJS
const { smokeSignal } = require('smoke-signal-js');

Documentation

GitHub | NPM | View on Website | Donate

Functions

getSendObjectData({) ⇒ bytebuffer

Encodes an object into a Tobject ( a bytebuffer prepended with metadata) to send data to a LaunchLike server.

Kind: global function

ParamTypeDescription
{objectlObject, lInstanceNumber, lStart, cData }

getSendCommandData({lCommand,) ⇒ bytebuffer

Encodes data required to send a command to a LaunchLike server.

Kind: global function

ParamTypeDescription
{lCommand,objectlInstanceNumber}

getRequestObjectData({lObject,) ⇒ bytebuffer

Encodes data required to make an object request to a LaunchLike server.

Kind: global function

ParamTypeDescription
{lObject,objectlInstanceNumber, lStart, lLength}

sendCommand({lObject,) ⇒

Requests a command from a LaunchLike server with the given code.

Kind: global function
Returns: Nothing. This calls a function within the class context provided to it.

ParamTypeDescription
{lObject,objectlInstanceNumber}

sendObject({lObject,) ⇒

Sends an object from a LaunchLike server with the given code and data.

Kind: global function
Returns: Nothing. This calls a function within the class context provided to it.

ParamTypeDescription
{lObject,objectlInstanceNumber, lStart, cData}

requestObject({cData}) ⇒

Requests an object from a LaunchLike server with the given code.

Kind: global function
Returns: Nothing. This calls a function within the class context provided to it.

ParamTypeDescription
{cData}objectAn object containing the request code, the instance number, the starting position, and the length. Generally only the data is provided.

processBytes(cData, context) ⇒

Takes a Tobject and parses out a message type definition and length for the data. The function then calls a handler method of the context which was provided to it with the transcribed data.

Kind: global function
Returns: Nothing. This calls a function within the class context provided to it.

ParamTypeDescription
cDatabytebufferThe data which you wish to decode
contextclassThe class context from which you're calling this function.

Dependencies

Huge shout-out to bytebuffer.js. This package powers several of my projects and is phenomenal. The developer of smoke-machine-js is remarkably handsome.

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago