Collection of Lua and Javascript scripts for computers from the OpenComputers mod.
Go to file
Andrew Lalis 661972da77 Merge branch 'master' of https://github.com/andrewlalis/OC_Scripts 2018-11-04 10:39:26 +01:00
libs Update README.md 2018-11-04 07:55:10 +01:00
scripts Improved script for use with vacuum blocks. Increases speed dramatically. 2018-11-04 10:39:10 +01:00
.gitignore Initial commit 2018-06-10 23:50:51 +02:00
README.md Added example function definition. 2018-06-12 13:12:33 +02:00
minify.lua Reformatted treefarm script, added minifier script. 2018-06-12 14:39:59 +02:00

README.md

OC_Scripts

Collection of Lua and Javascript scripts for computers from the OpenComputers mod.

In this repository, you'll find the lib folder, containing all files which supplement the main programs, which can be found in scripts. Although I make every effort to keep my code readable and self-documenting, a README.md exists in each script's sub-directory which provides an overview of the module, and a short documentation of the methods used.

For suggestions, comments, or to report bugs, please use the GitHub's issues tab up above, and use an appropriate label for whatever it is you wish to submit an issue on.

Bug Reporting

Although the code I write is tested extensively, bugs can and will continue to appear in finalized scripts. In order to minimize this, please report any bugs you find in the issues section, with the bug label.

At the very minimum, the following requirements are mandatory for submitting a bug report via an issue:

  • The name of the script, along with the version number, should be included in the title of the issue.
  • The bug label should be applied to the issue.
  • A list of steps you can take to reproduce the issue.
  • If the bug causes a crash, the output of the opencomputers console should be included. You may either copy the text, or provide a screenshot.

Contributing

If you would like to help contribute to this collection of scripts, or simply include a change, you are free to fork the repository, add your changes, and create a pull request with either the new feature or fix label, and a detailed summary of the changes made.

Guidelines for Contributing Code

To promote uniformity and an organized codebase, there are some guidelines to follow when writing scripts for this repository.

  1. All variables and functions should be declared local unless required otherwise.
  2. All variables should be defined using underscores. For example,
local my_var = 5
  1. All function names should be defined using camelCase. For example,
local myFunction()
  1. A multiline comment should appear above all functions, giving a short description of the function, and a list of all parameters, their expected types, and the return type.
  2. Constants should be defined at the top of a file, in all capital characters. For example,
local MY_CONSTANT = 3.14159265
  1. All require statements should be done at the top of the file, above all other things except the file metadata information.
  2. As stated above, each file should have a metadata section, with the following format:
--[[
Author: Andrew Lalis
File: example_script.lua
Version: 0.5.1
Last Modified: 12-06-2018

Description:
This file is an example file used for showing the setup of a typical lua script
and should be followed for every script in this repository. Note also that 
lines should be manually wrapped at 8 characters, although this is not required
for actual lines of code.
--]]

Example Function Definition

--[[
Gets the maximum of two values.
value_a - number
value_b - number
returns - number
--]]
local myMax(value_a, value_b)
    if value_a > value_b then
        return value_a
    else
        return value_b
    end
end