-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprograms.info
228 lines (228 loc) · 6.21 KB
/
programs.info
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
["grab"]={
title="Grab",
info="Grab - Official OpenComputerScripts Installer",
files={
["grab.lua"]="__bin__/",
["grab_installer.lua"]="__installer__"
}
},
["checkarg"]={
title="Arugment Checker",
info="For easier argument checking",
files={
["libs/checkarg.lua"]="__lib__/"
}
},
["util"]={
title="Utility",
info="Misc programming helper.",
files={
["libs/util.lua"]="__lib__/"
}
},
["libevent"]={
title="LibEvent",
info="For easier event processing",
files={
["libs/libevent.lua"]="__lib__/",
["libs/libevent_doc.txt"]={
"/usr/man/libevent",
"/tmp/libevent_doc.txt"
}
},
requires={
"checkarg"
}
},
["libgpu"]={
title="LibGPU",
info="For easier gpu programming",
files={
["libs/libgpu.lua"]="__lib__/"
}
},
["simple_data_structure"]={
title="Simple Lua Data Structure",
info="Provides class(...),queue and vector",
files={
["libs/simple_data_structure/class.lua"]="__lib__/",
["libs/simple_data_structure/queue.lua"]="__lib__/",
["libs/simple_data_structure/vector.lua"]="__lib__/"
}
},
["minesweeper"]={
title="Mine Sweeper",
info="A simple game",
files={
["MineSweeper.lua"]="__bin__/"
},
requires={
"libgpu","libevent","simple_data_structure"
}
},
["shrink"]={
title="Shrink",
info="Shrink string by removing useless spaces.",
files={
["shrink.lua"]="__lib__/",
["shrinkfsm.lua"]="__lib__/"
}
},
["libkeepup"]={
title="Keep Up!",
info="Avoid 'too long without yielding' by keepUp",
files={
["libs/libkeepup.lua"]="__lib__/"
}
},
["libcompress"]={
title="Compression Library",
info="Inflate and deflate library for general purpose.",
files={
["libs/libcompress.lua"]="__lib__/",
["bin/compress.lua"]="__bin__/"
},
requires={
"libkeepup"
}
},
["libdownload"]={
title="Download Library",
info="Download library for general use",
files={
["libs/libdownload.lua"]="__lib__/"
}
},
["libhuffman"]={
title="Huffman compression library",
info="Inflate and deflate in Huffman algorithm.",
deprecated=true,
files={
"libhuffman.lua"
}
},
["drone"]={
title="Drone",
info="Drone console and bios",
author="Kiritow",
contact="[email protected]",
files={
"programs/drone/drone_bios.lua",
"programs/drone/drone_console.lua",
"programs/drone/drone_radar.lua",
"programs/drone/drone_flash.lua"
},
requires={
"libevent", "shrink"
}
},
["smartstorage"]={
title="Smart Storage",
info="Smarter chests, auto-crafting...",
author="Kiritow",
files={
["programs/smartstorage/SmartStorage.lua"]="__bin__/"
},
requires={
"libevent"
}
},
["smartstoragerobot"]={
title="Smart Storage Robot Client",
info="This is the client program of Smart Storage System.",
author="Kiritow",
files={
["programs/smartstorage/SmartStorageRobot.lua"]="__bin__/"
},
requires={
"libevent"
}
},
["station"]={
title="Station",
info="Collection of railway station control programs.",
deprecated=true,
files={
["programs/station/station_2_3.lua"]="station_2_3.lua",
["programs/station/station_2_4.lua"]="station_2_4.lua",
["programs/station/station_2_4_2.lua"]="station_2_4_2.lua",
["programs/station/station_2_6.lua"]="station_2_6.lua"
},
requires={
"libevent","checkarg","util","simple_data_structure"
}
},
["noserver-station"]={
title="NoServer Station",
info="Railway control system used in NoServer",
files={
"programs/noserver-station/station.lua"
},
requires={
"libevent"
}
},
["prtsc"]={
title="Print Screen",
info="Save screen to file when PrtSc key is pressed.",
author="Kiritow",
files={
["prtsc.lua"]="__bin__/"
},
requires={
"libevent"
}
},
["pcmgr"]={
title="PC Manager",
info="PC Manager shows current listeners and memory use.",
files={
["programs/pcmgr/pcmgr.lua"]="__bin__/"
},
requires={
"libevent"
}
},
["fileshare"]={
title="File Share",
info="Share files between computers",
files={
["programs/fileshare/fshare.lua"]="__bin__/",
["programs/fileshare/fget.lua"]="__bin__/"
},
requires={
"libevent"
}
},
["mcnet-exp"]={
title="MC Network (Experimental)",
experimental=true,
info="MC Network based on modem networks.",
files={
["programs/mcnet/mcnet_core.lua"]="__lib__/",
["programs/mcnet/libmcnet.lua"]="__lib__/",
["programs/mcnet/mcnetd.lua"]="__bin__/",
}
},
["romaker"]={
title="EEPROM Maker",
info="EEPROM Maker with syntax check and code shortening.",
files={
["programs/romaker/makerom.lua"]="__bin__/"
},
requires={
"libevent","shrink"
},
},
["audiostreamer"]={
title="Audio Streamer",
info="Audio Streamer. Online convertion from mp3 to dfpwm is provided by Kiritow/OCAudioServer. See https://github.com/Kiritow/OCAudioServer for more info.",
files={
["programs/audiostreamer/aplay.lua"]="__bin__/"
},
requires={
"libdownload"
}
},
}