Skip to content

Commit bd6866d

Browse files
committed
Initial commit
0 parents  commit bd6866d

File tree

124 files changed

+10957
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+10957
-0
lines changed

OpenComputers Lua API.iml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="LUA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/components" isTestSource="false" />
7+
<sourceFolder url="file://$MODULE_DIR$/openos-libs" isTestSource="false" />
8+
<sourceFolder url="file://$MODULE_DIR$/floppy/data" isTestSource="false" />
9+
<sourceFolder url="file://$MODULE_DIR$/floppy/network" isTestSource="false" />
10+
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
11+
<sourceFolder url="file://$MODULE_DIR$/apis" isTestSource="false" />
12+
</content>
13+
<orderEntry type="jdk" jdkName="Lua" jdkType="Lua SDK" />
14+
<orderEntry type="sourceFolder" forTests="false" />
15+
</component>
16+
</module>

OpenComputers Lua API.ipr

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project version="4">
3+
<component name="ArtifactManager">
4+
<artifact type="jar" build-on-make="true" name="openos-lua-api.zip">
5+
<output-path>$PROJECT_DIR$/out/artifacts/openos_lua_api_zip</output-path>
6+
<root id="archive" name="openos-lua-api.zip">
7+
<element id="module-output" name="OpenComputers Lua API" />
8+
</root>
9+
</artifact>
10+
</component>
11+
<component name="InspectionProjectProfileManager">
12+
<profile version="1.0">
13+
<option name="myName" value="Project Default" />
14+
</profile>
15+
<version value="1.0" />
16+
</component>
17+
<component name="ProjectModuleManager">
18+
<modules>
19+
<module fileurl="file://$PROJECT_DIR$/OpenComputers Lua API.iml" filepath="$PROJECT_DIR$/OpenComputers Lua API.iml" />
20+
</modules>
21+
</component>
22+
<component name="ProjectRootManager" version="2" project-jdk-name="Kahlua" project-jdk-type="Lua SDK">
23+
<output url="file://$PROJECT_DIR$/out" />
24+
</component>
25+
<component name="PropertiesComponent">
26+
<property name="settings.editor.selected.configurable" value="configurable.group.appearance" />
27+
<property name="project.structure.last.edited" value="SDKs" />
28+
<property name="project.structure.proportion" value="0.0" />
29+
<property name="project.structure.side.proportion" value="0.2" />
30+
</component>
31+
<component name="masterDetails">
32+
<states>
33+
<state key="GlobalLibrariesConfigurable.UI">
34+
<settings>
35+
<splitter-proportions>
36+
<option name="proportions">
37+
<list>
38+
<option value="0.2" />
39+
</list>
40+
</option>
41+
</splitter-proportions>
42+
</settings>
43+
</state>
44+
<state key="JdkListConfigurable.UI">
45+
<settings>
46+
<last-edited>1.8</last-edited>
47+
<splitter-proportions>
48+
<option name="proportions">
49+
<list>
50+
<option value="0.2" />
51+
</list>
52+
</option>
53+
</splitter-proportions>
54+
</settings>
55+
</state>
56+
<state key="ProjectJDKs.UI">
57+
<settings>
58+
<last-edited>Kahlua</last-edited>
59+
<splitter-proportions>
60+
<option name="proportions">
61+
<list>
62+
<option value="0.2" />
63+
</list>
64+
</option>
65+
</splitter-proportions>
66+
</settings>
67+
</state>
68+
<state key="ProjectLibrariesConfigurable.UI">
69+
<settings>
70+
<splitter-proportions>
71+
<option name="proportions">
72+
<list>
73+
<option value="0.2" />
74+
</list>
75+
</option>
76+
</splitter-proportions>
77+
</settings>
78+
</state>
79+
</states>
80+
</component>
81+
</project>

bios/_bios_global.lua

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
math.huge = 0.0
2+
3+
---@class bios_component
4+
component = {}
5+
6+
---@param address string
7+
---@param method string
8+
---@return string|nil
9+
function component.doc(address, method) end
10+
11+
---@param filter string
12+
---@param optional exact boolean
13+
---@return table
14+
function component.list(filter, exact) end
15+
16+
---@param filter string
17+
---@return table
18+
function component.list(filter) end
19+
20+
---@param address string
21+
---@return table
22+
function component.fields(address) end
23+
24+
---@param address string
25+
---@param method string
26+
---@param optional args any
27+
---@return any
28+
function component.invoke(address, method, args, ...) end
29+
30+
---@param address string
31+
---@return string|nil, string
32+
function component.type(address) end
33+
34+
35+
---@param address string
36+
---@return _cmp_prx|nil,string
37+
function component.proxy(address) end
38+
39+
---@param address string
40+
---@return table|nil, string
41+
function component.methods(address) end
42+
43+
---@param address string
44+
---@return number|nil, string
45+
function component.slot(address) end
46+
47+
48+
return component
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---@class component.abstract_bus : component_proxy
2+
local abstract_bus = {}
3+
4+
---Returns whether the local bus interface is enabled.
5+
--- @return boolean
6+
function abstract_bus.getEnabled() end
7+
8+
---Sets whether the local bus interface should be enabled
9+
--- @param enabled boolean
10+
function abstract_bus.setEnabled(enabled) end
11+
12+
---Returns the local interface address. number is a 16 bit hexadecimal number (0xFFFF being a broadcast). Returns 0 if an address has not yet been set.
13+
--- @return number
14+
function abstract_bus.getAddress() end
15+
16+
---Sets the local interface address. number is a 16bit hexadecimal number.
17+
--- @param address number
18+
function abstract_bus.setAddress(address) end
19+
20+
---Scans the abstract bus for attached devices and returns them in a list.
21+
--- @param mask number
22+
--- @return table
23+
function abstract_bus.scan(mask) end
24+
25+
--- Sends data across the abstract bus. The table data is in the form of key-value pairs, e.g.
26+
--- lua> component.abstract_bus.send(0xFFFF, { ["action"]="dial", ["address"]="Losomdeh Salothirt Erpac" })
27+
--- See SGTech2 documentation for more info on the Abstract Bus.
28+
--- @param address number
29+
--- @param data table
30+
--- @return boolean
31+
function abstract_bus.send(address, data) end
32+
33+
---Returns the maximum size a packet can be sent over the bus.
34+
--- @return number
35+
function abstract_bus.maxPacketSize() end
36+
37+
return abstract_bus
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---@class component.access_point : component_proxy
2+
local access_point = {}
3+
4+
---Get the signal strength (range) used when relaying messages.
5+
--- @return number
6+
function access_point.getStrength() end
7+
8+
---Set the signal strength (range) used when relaying messages.
9+
--- @param strength number
10+
function access_point.setStrength(strength) end
11+
12+
---Check whether Access Point is acting as a repeater (re-send received wireless messages).
13+
--- @return boolean
14+
function access_point.isRepeater() end
15+
16+
---Sets whether Access Point should act as a repeater (re-send received wireless messages).
17+
--- @param enabled boolean
18+
function access_point.setRepeater(enabled) end
19+
20+
return access_point
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---@class component.me_exportbus : component_proxy
2+
local me_exportbus = {}
3+
4+
5+
---DEPRECATED, use getExportConfiguration.
6+
---@param side number
7+
---@param optional slot number
8+
---@return boolean
9+
function me_exportbus.getConfiguration(side, slot) end
10+
11+
---DEPRECATED, use setExportConfiguration.
12+
---@param side number
13+
---@param slot number
14+
---@param database address
15+
---@param entry number
16+
---@return boolean
17+
function me_exportbus.setConfiguration(side, slot, database, entry) end
18+
19+
---DEPRECATED, use setExportConfiguration.
20+
---@param side number
21+
---@param optional slot number
22+
---@return boolean
23+
function me_exportbus.setConfiguration(side, slot) end
24+
25+
---Get the configuration of the export bus pointing in the specified direction.
26+
---@param side number
27+
---@param optional slot
28+
---@return boolean
29+
function me_exportbus.getExportConfiguration(side, slot) end
30+
31+
---Configure the export bus pointing in the specified direction to export item stacks matching the specified descriptor.
32+
---@param side number
33+
---@param slot number
34+
---@param database address
35+
---@param entry number
36+
---@return boolean
37+
function me_exportbus.setExportConfiguration(side, slot, database, entry) end
38+
39+
---Configure the export bus pointing in the specified direction to export item stacks matching the specified descriptor.
40+
---@param side number
41+
---@param optional slot number
42+
---@return boolean
43+
function me_exportbus.setExportConfiguration(side, slot) end
44+
45+
---Make the export bus facing the specified direction perform a single export operation into the specified slot.
46+
---@param side number
47+
---@param slot number
48+
---@return boolean
49+
function me_exportbus.exportIntoSlot(side, slot) end
50+
51+
return me_exportbus
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---@class component.me_importbus : component_proxy
2+
local me_importbus = {}
3+
4+
---Get the configuration of the import bus pointing in the specified direction.
5+
---@param side number
6+
---@param optional slot number
7+
---@return boolean
8+
function me_importbus.getImportConfiguration(side, slot) end
9+
10+
---Configure the import bus pointing in the specified direction to import item stacks matching the specified descriptor.
11+
---@param side number
12+
---@param slot number
13+
---@param database address
14+
---@param entry number
15+
---@return boolean
16+
function me_importbus.setImportConfiguration(side, slot, database, entry) end
17+
18+
---Configure the import bus pointing in the specified direction to import item stacks matching the specified descriptor.
19+
---@param side number
20+
---@param optional slot number
21+
---@return boolean
22+
function me_importbus.setImportConfiguration(side, slot) end
23+
24+
return me_importbus
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---@class component.me_interface : component_proxy
2+
local me_interface = {}
3+
4+
---
5+
---@param optional slot
6+
---@return table
7+
function me_interface.getInterfaceConfiguration(slot) end
8+
9+
---Configure the interface.
10+
---@param optional slot number
11+
---@param database address
12+
---@param entry number
13+
---@param optional size number
14+
---@return boolean
15+
function me_interface.setInterfaceConfiguration(slot, database, entry, size) end
16+
17+
---Configure the interface.
18+
---@param optional slot number
19+
---@return boolean
20+
function me_interface.setInterfaceConfiguration(slot, database, entry, size) end
21+
22+
return me_interface
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---@class component.chunkloader : component_proxy
2+
local chunkloader = {}
3+
4+
---Returns whether the chunkloader is currently active.
5+
--- @return boolean
6+
function chunkloader.isActive() end
7+
8+
---Enables or disables the chunkloader. Returns the new state, which may be false if no chunk loading ticket could be acquired.
9+
--- @param enabled boolean
10+
function chunkloader.setActive(enabled) end
11+
12+
return chunkloader
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---@class component.ender_fluid : component_proxy
2+
local ender_fluid = {}
3+
4+
5+
---Returns whether the tile entity can receive fluids.
6+
---@return boolean
7+
function ender_fluid.canReceiveFluid() end
8+
9+
---Returns whether the tile entity can send fluids.
10+
---@return boolean
11+
function ender_fluid.canSendFluid() end
12+
13+
---Returns the frequency.
14+
---@return number
15+
function ender_fluid.getFrequency() end
16+
17+
---Returns the name of the channel.
18+
---@return string
19+
function ender_fluid.getChannelString() end
20+
21+
---Sets the frequency to the given value. Returns whether the frequency change was successful
22+
---@param frequency number
23+
---@return boolean
24+
function ender_fluid.setFrequency(frequency) end
25+
26+
return ender_fluid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---@class component.ender_item : component_proxy
2+
local ender_item = {}
3+
4+
---Returns whether the tile entity can receive items.
5+
---@return boolean
6+
function ender_item.canReceiveItems() end
7+
8+
---Returns whether the tile entity can send items.
9+
---@return boolean
10+
function ender_item.canSendItems() end
11+
12+
---Returns the frequency.
13+
---@return number
14+
function ender_item.getFrequency() end
15+
16+
---Sets the frequency to the given value. Returns whether the frequency change was successful
17+
---@param frequency number
18+
---@return boolean
19+
function ender_item.setFrequency(frequency) end
20+
21+
---Returns the name of the channel.
22+
---@return string
23+
function ender_item.getChannelString() end
24+
25+
return ender_item
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---@class component.energy_handler : component_proxy
2+
local energy_handler = {}
3+
4+
---Returns the amount of stored energy for the given side.
5+
---@param optional direction number
6+
---@return number
7+
function energy_handler.getEnergyStored(direction) end
8+
9+
---Returns the maximum amount of stored energy for the given side
10+
---@param optional direction number
11+
---@return number
12+
function energy_handler.getMaxEnergyStored(direction) end
13+
14+
return energy_handler

0 commit comments

Comments
 (0)