Git Product home page Git Product logo

eetools's Introduction

eetools

a console for managing a running Empty Epsilon game / server

early WIP

contributions (feedback, code, tests, issues) are welcomed!

how to install

  • make sure you have node.js installed, version 8 and above.
  • in the command prompt, run npm i -g eetools (requires an internet connection)
    • after a few seconds, the installation is done and a message will appear:
my-machine$ npm i -g eetools
+ [email protected]
added 105 packages in 8.008s

(the latest version is now installed in your machine)

how to use

running the tools

start an empty epsilon server with httpserver option turned on (warning - this is an experimental feature). for example:

my-machine$ EmptyEpsilon httpserver=8081

run eetools from the command line, followed by host name and HTTP port number of the empty epsilon server. you will then enter the eetools prompt:

my-machine$ eetools localhost 8081

eetools:localhost:8081$ 

type help to get a list of current capabilities, exit to exit.

start

launch the empty epsilon game application with httpserver=8081

lua mode

Lua mode allows you access to the running game's scripts API (the same capabilities as when writing a scenarios). warning - if you don't know how to read and write scripts, you would probably have a hard time getting value out of this mode.

to enter lua mode, run lua inside eetools

eetools:localhost:8081$ lua
Entering LUA Mode. To exit, type 'exit'
eetools:localhost:8081$ lua: 

now type whatever lua expression you wish, and it will be executed in the game's live context.

examples

run some basic lua expression

eetools:localhost:8081$ lua: 'hello' .. ' world'
hello world

print the player's ship hull and change it to some outrageous value

eetools:localhost:8081$ lua: getPlayerShip(-1):getHull()
250
eetools:localhost:8081$ lua: getPlayerShip(-1):setHull(123456)

you will notice that the hull of the first ship is now 123456 out of 250 total. how cool is that?

how to set up a local development environment

  • download code from github
  • inside folder eetools run npm install from the comand line
  • inside folder eetools run npm run build from the comand line
  • inside folder eetools run npm start from the comand line to run the tools locally.
    • use -- to add parameters to npm start like so:
my-machine$ npm start -- localhost 8081

eetools's People

Contributors

amir-arad 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.