omcl 0.0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +22 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/omcl +227 -0
- data/lib/omcl.rb +62 -0
- data/lib/omcl/auth.rb +34 -0
- data/lib/omcl/dat.rb +25 -0
- data/lib/omcl/launch.rb +37 -0
- data/lib/omcl/version.rb +3 -0
- data/omcl.gemspec +27 -0
- data/omcl.sublime-workspace +863 -0
- metadata +103 -0
data/lib/omcl/auth.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
module OMCL
|
2
|
+
module Auth
|
3
|
+
def self.make_json_request(user, pass)
|
4
|
+
RG::Log.write "Forming JSON request..."
|
5
|
+
# Create hash
|
6
|
+
dat = {
|
7
|
+
:agent => {
|
8
|
+
:name => "Minecraft",
|
9
|
+
:version => 1
|
10
|
+
},
|
11
|
+
:username => user,
|
12
|
+
:password => pass
|
13
|
+
}
|
14
|
+
|
15
|
+
# Generate JSON request and return it
|
16
|
+
JSON.generate dat
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.authenticate(url, user, pass)
|
20
|
+
# Create JSON request
|
21
|
+
json = self.make_json_request user, pass
|
22
|
+
RG::Log.write "Authenticating..."
|
23
|
+
res = HTTP.headers(:accept => "application/json")
|
24
|
+
.post(url, {:body=>json})
|
25
|
+
if res.code == 403
|
26
|
+
RG::Log.crash "Invalid credentials error! If they are valid, try again after a while"
|
27
|
+
elsif res.code != 200
|
28
|
+
RG::Log.crash "Received HTTP code #{res.code} while authenticating!"
|
29
|
+
else
|
30
|
+
return res
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/lib/omcl/dat.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
module OMCL
|
2
|
+
class Account
|
3
|
+
attr_accessor :auth, :user, :nick, :pass, :token
|
4
|
+
|
5
|
+
def initialize(auth, user, pass=nil)
|
6
|
+
@auth = auth
|
7
|
+
@user = user
|
8
|
+
@pass = pass
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
class AuthService
|
13
|
+
attr_accessor :type, :url, :token
|
14
|
+
|
15
|
+
def initialize(type, input)
|
16
|
+
if type == :online
|
17
|
+
@type = :online
|
18
|
+
@url = input
|
19
|
+
else
|
20
|
+
@type = :offline
|
21
|
+
@token = input
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/lib/omcl/launch.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
module OMCL
|
2
|
+
def self.launchMC(name, path)
|
3
|
+
unless $authed
|
4
|
+
RG::Log.crash "Did not authenticate!"
|
5
|
+
end
|
6
|
+
dat = YAML.load_file "#{path}/conf.yml"
|
7
|
+
libs = Dir[path+"/libraries/**/*.*"]
|
8
|
+
libs = libs.join ":"
|
9
|
+
libs = libs + ":#{path}/bin/#{name}.jar"
|
10
|
+
|
11
|
+
p dat
|
12
|
+
|
13
|
+
min_mem = (dat["min_mem"] or "768M")
|
14
|
+
max_mem = (dat["max_mem"] or "1G")
|
15
|
+
main_class = (dat["mainclass"] or "net.minecraft.client.main.Main")
|
16
|
+
|
17
|
+
opts = (dat["java_options"] or "")
|
18
|
+
|
19
|
+
java_opts = <<-DATA
|
20
|
+
-server
|
21
|
+
-d32
|
22
|
+
-Xms#{min_mem}
|
23
|
+
-Xmx#{max_mem}
|
24
|
+
-Djava.library.path=#{path}/bin/natives/
|
25
|
+
-cp #{libs}
|
26
|
+
#{main_class}
|
27
|
+
#{opts}
|
28
|
+
DATA
|
29
|
+
java_opts = java_opts.gsub(/\n/, " ")
|
30
|
+
|
31
|
+
RG::Log.write "Starting..."
|
32
|
+
|
33
|
+
cmd = "java #{java_opts} --username #{$username} --version #{name} --gameDir #{path} --assetsDir #{path}/assets --assetIndex #{dat["assets"].squish} --uuid #{$uid} --accessToken #{$access_token} --userType legacy --versionType #{dat["type"]} --nativeLauncherVersion 307"
|
34
|
+
RG::Log.write "Launch command: " + cmd
|
35
|
+
exec cmd
|
36
|
+
end
|
37
|
+
end
|
data/lib/omcl/version.rb
ADDED
data/omcl.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'omcl/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "omcl"
|
8
|
+
spec.version = OMCL::VERSION
|
9
|
+
spec.authors = ["Nickolay"]
|
10
|
+
spec.email = ["nickolay02@inbox.ru"]
|
11
|
+
|
12
|
+
spec.summary = %q{Open-Source Minecraft Launcher}
|
13
|
+
spec.description = %q{Open-Source Minecraft Launcher for *nixes}
|
14
|
+
spec.homepage = "https://github.com/handicraftsman/omcl"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_runtime_dependency "rubygoods", "~> 0.0.0.12"
|
27
|
+
end
|
@@ -0,0 +1,863 @@
|
|
1
|
+
{
|
2
|
+
"auto_complete":
|
3
|
+
{
|
4
|
+
"selected_items":
|
5
|
+
[
|
6
|
+
[
|
7
|
+
"de",
|
8
|
+
"defs\tdefstruct"
|
9
|
+
],
|
10
|
+
[
|
11
|
+
"st",
|
12
|
+
"struct_\tstruct"
|
13
|
+
],
|
14
|
+
[
|
15
|
+
"do",
|
16
|
+
"dob\tInsert do |variable| … end"
|
17
|
+
],
|
18
|
+
[
|
19
|
+
"mainloop",
|
20
|
+
"mainloop\tfunc"
|
21
|
+
],
|
22
|
+
[
|
23
|
+
"form",
|
24
|
+
"format\tfunc"
|
25
|
+
],
|
26
|
+
[
|
27
|
+
"s",
|
28
|
+
"singleton\tJS singleton pattern"
|
29
|
+
],
|
30
|
+
[
|
31
|
+
"rcc",
|
32
|
+
"rcc\tReact: class component"
|
33
|
+
],
|
34
|
+
[
|
35
|
+
"Array",
|
36
|
+
"Array\tArray.new(10) { |i| .. }"
|
37
|
+
]
|
38
|
+
]
|
39
|
+
},
|
40
|
+
"buffers":
|
41
|
+
[
|
42
|
+
{
|
43
|
+
"file": "exe/omcl",
|
44
|
+
"settings":
|
45
|
+
{
|
46
|
+
"buffer_size": 5218,
|
47
|
+
"encoding": "UTF-8",
|
48
|
+
"line_ending": "Unix"
|
49
|
+
}
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"file": "lib/omcl/launch.rb",
|
53
|
+
"settings":
|
54
|
+
{
|
55
|
+
"buffer_size": 982,
|
56
|
+
"encoding": "UTF-8",
|
57
|
+
"line_ending": "Unix"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"file": "/home/ancient/.minecraft/test.rb",
|
62
|
+
"settings":
|
63
|
+
{
|
64
|
+
"buffer_size": 2876,
|
65
|
+
"line_ending": "Unix"
|
66
|
+
}
|
67
|
+
}
|
68
|
+
],
|
69
|
+
"build_system": "",
|
70
|
+
"build_system_choices":
|
71
|
+
[
|
72
|
+
],
|
73
|
+
"build_varint": "",
|
74
|
+
"command_palette":
|
75
|
+
{
|
76
|
+
"height": 359.0,
|
77
|
+
"last_filter": "refre",
|
78
|
+
"selected_items":
|
79
|
+
[
|
80
|
+
[
|
81
|
+
"refre",
|
82
|
+
"Project: Refresh Folders"
|
83
|
+
],
|
84
|
+
[
|
85
|
+
"Install",
|
86
|
+
"Package Control: Install Package"
|
87
|
+
],
|
88
|
+
[
|
89
|
+
"Package",
|
90
|
+
"Package Control: Remove Package"
|
91
|
+
],
|
92
|
+
[
|
93
|
+
"Remove P",
|
94
|
+
"Package Control: Remove Package"
|
95
|
+
],
|
96
|
+
[
|
97
|
+
"Install Pack",
|
98
|
+
"Package Control: Install Package"
|
99
|
+
],
|
100
|
+
[
|
101
|
+
"remove ",
|
102
|
+
"Package Control: Remove Package"
|
103
|
+
],
|
104
|
+
[
|
105
|
+
"Install Pa",
|
106
|
+
"Package Control: Install Package"
|
107
|
+
],
|
108
|
+
[
|
109
|
+
"Remove Pa",
|
110
|
+
"Package Control: Remove Package"
|
111
|
+
],
|
112
|
+
[
|
113
|
+
"Boxy Theme",
|
114
|
+
"Boxy Theme: Activation"
|
115
|
+
],
|
116
|
+
[
|
117
|
+
"Install Package",
|
118
|
+
"Package Control: Install Package"
|
119
|
+
],
|
120
|
+
[
|
121
|
+
"Snippet: ",
|
122
|
+
"Snippet: #!/usr/bin/env"
|
123
|
+
],
|
124
|
+
[
|
125
|
+
"Install Pakage",
|
126
|
+
"Package Control: Install Package"
|
127
|
+
],
|
128
|
+
[
|
129
|
+
"Color",
|
130
|
+
"Colorsublime: Install Theme"
|
131
|
+
],
|
132
|
+
[
|
133
|
+
"Package Control: Install Package",
|
134
|
+
"Package Control: Install Package"
|
135
|
+
],
|
136
|
+
[
|
137
|
+
"install",
|
138
|
+
"Package Control: Install Package"
|
139
|
+
],
|
140
|
+
[
|
141
|
+
"Package Control: Insta",
|
142
|
+
"Package Control: Install Package"
|
143
|
+
],
|
144
|
+
[
|
145
|
+
"Package Control: ",
|
146
|
+
"Package Control: Disable Package"
|
147
|
+
],
|
148
|
+
[
|
149
|
+
"Colorsublime",
|
150
|
+
"Colorsublime: Install Theme"
|
151
|
+
],
|
152
|
+
[
|
153
|
+
"Package Control: In",
|
154
|
+
"Package Control: Install Package"
|
155
|
+
],
|
156
|
+
[
|
157
|
+
"Package Control: insta",
|
158
|
+
"Package Control: Install Package"
|
159
|
+
],
|
160
|
+
[
|
161
|
+
"Package Control: Ins",
|
162
|
+
"Package Control: Install Package"
|
163
|
+
],
|
164
|
+
[
|
165
|
+
"Package Control: Install",
|
166
|
+
"Package Control: Install Package"
|
167
|
+
],
|
168
|
+
[
|
169
|
+
"Package Control:ins",
|
170
|
+
"Package Control: Install Package"
|
171
|
+
],
|
172
|
+
[
|
173
|
+
"Package Control: en",
|
174
|
+
"Package Control: Enable Package"
|
175
|
+
],
|
176
|
+
[
|
177
|
+
"Packag",
|
178
|
+
"Preferences: Browse Packages"
|
179
|
+
]
|
180
|
+
],
|
181
|
+
"width": 449.0
|
182
|
+
},
|
183
|
+
"console":
|
184
|
+
{
|
185
|
+
"height": 302.0,
|
186
|
+
"history":
|
187
|
+
[
|
188
|
+
"import urllib.request,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by) "
|
189
|
+
]
|
190
|
+
},
|
191
|
+
"distraction_free":
|
192
|
+
{
|
193
|
+
"menu_visible": true,
|
194
|
+
"show_minimap": false,
|
195
|
+
"show_open_files": false,
|
196
|
+
"show_tabs": false,
|
197
|
+
"side_bar_visible": false,
|
198
|
+
"status_bar_visible": false
|
199
|
+
},
|
200
|
+
"expanded_folders":
|
201
|
+
[
|
202
|
+
"/home/ancient/Projects/unaffiliated/omcl",
|
203
|
+
"/home/ancient/Projects/unaffiliated/omcl/bin",
|
204
|
+
"/home/ancient/Projects/unaffiliated/omcl/exe",
|
205
|
+
"/home/ancient/Projects/unaffiliated/omcl/lib",
|
206
|
+
"/home/ancient/Projects/unaffiliated/omcl/lib/omcl",
|
207
|
+
"/home/ancient/Projects/unaffiliated/omcl/logs"
|
208
|
+
],
|
209
|
+
"file_history":
|
210
|
+
[
|
211
|
+
"/home/ancient/Projects/unaffiliated/omcl/logs/latest.log",
|
212
|
+
"/home/ancient/Projects/unaffiliated/omcl/logs/2017-02-07-1.log.gz",
|
213
|
+
"/home/ancient/omcl/1.11.2/bin/1.11.2.json",
|
214
|
+
"/home/ancient/Projects/unaffiliated/omcl/lib/omcl.rb",
|
215
|
+
"/home/ancient/Projects/unaffiliated/omcl/lib/omcl/auth.rb",
|
216
|
+
"/home/ancient/Projects/unaffiliated/omcl/dat.txt",
|
217
|
+
"/home/ancient/Projects/unaffiliated/omcl/lib/omcl/dat.rb",
|
218
|
+
"/home/ancient/.minecraft/test.rb",
|
219
|
+
"/home/ancient/Projects/ruby/rubygoods/lib/rubygoods/log.rb",
|
220
|
+
"/home/ancient/Projects/unaffiliated/omcl/exe/omcl-list",
|
221
|
+
"/home/ancient/Projects/unaffiliated/omcl/Gemfile",
|
222
|
+
"/home/ancient/Projects/unaffiliated/omcl/omcl.gemspec",
|
223
|
+
"/home/ancient/Projects/unaffiliated/omcl/Rakefile",
|
224
|
+
"/home/ancient/Projects/unaffiliated/omcl/lib/omcl/version.rb",
|
225
|
+
"/home/ancient/Projects/unaffiliated/omcl/data.txt",
|
226
|
+
"/home/ancient/Projects/unaffiliated/omcl/exe/omcl",
|
227
|
+
"/home/ancient/Projects/irc/photonbot/cmd/cleverbot.rb",
|
228
|
+
"/home/ancient/Projects/unaffiliated/omcl/main.rb",
|
229
|
+
"/home/ancient/Projects/unaffiliated/omcl/main.lsp",
|
230
|
+
"/home/ancient/Projects/haskell/mchs/data.txt",
|
231
|
+
"/home/ancient/Projects/haskell/mchs/mchs.cabal",
|
232
|
+
"/home/ancient/Projects/haskell/mchs/src/Main.hs",
|
233
|
+
"/home/ancient/Projects/haskell/mchs/conf.cfg",
|
234
|
+
"/home/ancient/Projects/haskell/mchs/Setup.hs",
|
235
|
+
"/home/ancient/Projects/haskell/mchs/conf.yaml",
|
236
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/net/URLConstants.h",
|
237
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/net/URLConstants.cpp",
|
238
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/YggdrasilTask.cpp",
|
239
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/flows/AuthenticateTask.cpp",
|
240
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/MojangAccount.h",
|
241
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/AuthSession.cpp",
|
242
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/AuthSession.h",
|
243
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/flows/ValidateTask.cpp",
|
244
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/MojangAccountList.cpp",
|
245
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/MojangAccountList.h",
|
246
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/MojangAccount.cpp",
|
247
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/api/logic/minecraft/auth/YggdrasilTask.h",
|
248
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/application/WonkoGui.cpp",
|
249
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/NotFoundException.java",
|
250
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/ParamBucket.java",
|
251
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/ParseException.java",
|
252
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/Utils.java",
|
253
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/Launcher.java",
|
254
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/net/minecraft/Launcher.java",
|
255
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/LegacyFrame.java",
|
256
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/onesix/OneSixLauncher.java",
|
257
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/IconLoader.java",
|
258
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/launcher/org/multimc/EntryPoint.java",
|
259
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/pack200/include/unpack200.h",
|
260
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/pack200/src/unpack.h",
|
261
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/pack200/src/unpack200.cpp",
|
262
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/libraries/pack200/anti200.cpp",
|
263
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/wonkoclient/WonkoClient.h",
|
264
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/wonkoclient/main.cpp",
|
265
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/wonkoclient/WonkoClient.cpp",
|
266
|
+
"/home/ancient/Projects/haskell/mchs/MultiMC5/application/JavaCommon.cpp",
|
267
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/HttpAuthenticationService.java",
|
268
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/legacy/LegacyUserAuthentication.java",
|
269
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/UserAuthentication.java",
|
270
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/legacy/LegacyAuthenticationService.java",
|
271
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/minecraft/InsecureTextureException.java",
|
272
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/minecraft/BaseMinecraftSessionService.java",
|
273
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/properties/PropertyMap.java",
|
274
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/properties/Property.java",
|
275
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/UserType.java",
|
276
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/ProfileLookupCallback.java",
|
277
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/BaseUserAuthentication.java",
|
278
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/BaseAuthenticationService.java",
|
279
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/net/minecraft/launcher/game/MinecraftGameRunner.java",
|
280
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/com/mojang/authlib/HttpUserAuthentication.java",
|
281
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/net/minecraft/launcher/profile/AuthenticationDatabase.java",
|
282
|
+
"/home/ancient/Projects/haskell/mchs/vanilla2/net/minecraft/launcher/game/MinecraftReleaseType.java",
|
283
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/bootstrap/FatalBootstrapError.java",
|
284
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/bootstrap/Downloader.java",
|
285
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/bootstrap/Bootstrap.java",
|
286
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/bootstrap/BootstrapConstants.java",
|
287
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/Util.java",
|
288
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/SubmitResponse.java",
|
289
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/SubmitRequest.java",
|
290
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/Response.java",
|
291
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/Report.java",
|
292
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/PublishResponse.java",
|
293
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/PublishRequest.java",
|
294
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/Problem.java",
|
295
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/HopperService.java",
|
296
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/hopper/Crash.java",
|
297
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/net/minecraft/bootstrap/Util.java",
|
298
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/LZMA/LzmaException.java",
|
299
|
+
"/home/ancient/Projects/haskell/mchs/vanilla/LZMA/CRangeDecoder.java",
|
300
|
+
"/home/ancient/Projects/irc/electronbot/rect.hs",
|
301
|
+
"/home/ancient/Projects/irc/electronbot/lib/electronbot.ex",
|
302
|
+
"/home/ancient/Projects/irc/electronbot/lib/electronbot/supervisor.ex",
|
303
|
+
"/home/ancient/Projects/irc/electronbot/lib/electronbot/registry.ex",
|
304
|
+
"/home/ancient/Projects/irc/electronbot/lib/electronbot/bucket.ex",
|
305
|
+
"/home/ancient/Projects/irc/electronbot/test/electronbot/bucket_test.exs",
|
306
|
+
"/home/ancient/Projects/irc/electronbot/test/test_helper.exs",
|
307
|
+
"/home/ancient/Projects/irc/electronbot/test/electronbot/registry_test.exs",
|
308
|
+
"/home/ancient/Projects/irc/electronbot/test/electronbot_test.exs",
|
309
|
+
"/home/ancient/Projects/irc/electronbot/config/config.exs",
|
310
|
+
"/home/ancient/Projects/irc/electronbot/mix.exs",
|
311
|
+
"/home/ancient/Projects/irc/electronbot/conf.yaml",
|
312
|
+
"/home/ancient/Projects/irc/electronbot/main.ex",
|
313
|
+
"/home/ancient/Projects/irc/electronbot/LICENSE",
|
314
|
+
"/home/ancient/Projects/irc/electronbot/src/main.hs",
|
315
|
+
"/home/ancient/Projects/irc/electronbot/src/types.hs",
|
316
|
+
"/home/ancient/Projects/irc/electronbot/Setup.hs",
|
317
|
+
"/home/ancient/Projects/irc/electronbot/main.hs",
|
318
|
+
"/home/ancient/Projects/irc/electronbot/main.nim",
|
319
|
+
"/home/ancient/Projects/irc/electronbot/main.elx",
|
320
|
+
"/home/ancient/Projects/irc/electronbot/main.el",
|
321
|
+
"/home/ancient/Projects/irc/electronbot/electronbot.sublime-project",
|
322
|
+
"/home/ancient/Projects/irc/electronbot/app.lua",
|
323
|
+
"/home/ancient/Projects/irc/electronbot/main.moon",
|
324
|
+
"/home/ancient/Projects/irc/electronbot/app.moon",
|
325
|
+
"/home/ancient/Projects/irc/photonbot/cmd/random.rb",
|
326
|
+
"/home/ancient/Projects/irc/yahb/log.hy",
|
327
|
+
"/home/ancient/Projects/irc/electronbot/moo.moon",
|
328
|
+
"/home/ancient/Projects/irc/electronbot/log.moon",
|
329
|
+
"/home/ancient/Projects/irc/electronbot/load.moon",
|
330
|
+
"/home/ancient/Projects/irc/electronbot/main.py",
|
331
|
+
"/home/ancient/Projects/irc/protonbot/main.nim",
|
332
|
+
"/home/ancient/.config/sublime-text-3/Installed Packages/NimLime/nimlime_core/commands/nimcheck.py",
|
333
|
+
"/home/ancient/Projects/irc/protonbot/conf.yaml",
|
334
|
+
"/home/ancient/.config/sublime-text-3/Installed Packages/NimLime/nimlime_core/__init__.py",
|
335
|
+
"/home/ancient/.config/sublime-text-3/Installed Packages/NimLime/__init__.py",
|
336
|
+
"/home/ancient/.config/sublime-text-3/Installed Packages/NimLime/NimLime.py",
|
337
|
+
"/home/ancient/.config/sublime-text-3/Packages/User/NimLime.sublime-settings",
|
338
|
+
"/home/ancient/.config/sublime-text-3/Packages/NimLime/NimLime.sublime-settings"
|
339
|
+
],
|
340
|
+
"find":
|
341
|
+
{
|
342
|
+
"height": 36.0
|
343
|
+
},
|
344
|
+
"find_in_files":
|
345
|
+
{
|
346
|
+
"height": 0.0,
|
347
|
+
"where_history":
|
348
|
+
[
|
349
|
+
]
|
350
|
+
},
|
351
|
+
"find_state":
|
352
|
+
{
|
353
|
+
"case_sensitive": false,
|
354
|
+
"find_history":
|
355
|
+
[
|
356
|
+
"\\",
|
357
|
+
"AUTH_BASE",
|
358
|
+
"createUrlConnection",
|
359
|
+
"auth",
|
360
|
+
"PasswordAuthentication",
|
361
|
+
"KV",
|
362
|
+
"nil",
|
363
|
+
" X",
|
364
|
+
" Y",
|
365
|
+
"each",
|
366
|
+
"^ \\\\u",
|
367
|
+
"^ \\\\u0030",
|
368
|
+
"\\\\u0030$",
|
369
|
+
"^ \\\\u0030",
|
370
|
+
"\\\\u0030$",
|
371
|
+
"\\u0030",
|
372
|
+
"pos",
|
373
|
+
"str",
|
374
|
+
"data",
|
375
|
+
"\\u",
|
376
|
+
"{}",
|
377
|
+
"m.reply",
|
378
|
+
"perm=",
|
379
|
+
"perm: ",
|
380
|
+
"perm=",
|
381
|
+
"15",
|
382
|
+
" \n",
|
383
|
+
"ptb",
|
384
|
+
"color",
|
385
|
+
"Greeter",
|
386
|
+
"font"
|
387
|
+
],
|
388
|
+
"highlight": true,
|
389
|
+
"in_selection": false,
|
390
|
+
"preserve_case": false,
|
391
|
+
"regex": false,
|
392
|
+
"replace_history":
|
393
|
+
[
|
394
|
+
"/",
|
395
|
+
"ElectronBot",
|
396
|
+
"None",
|
397
|
+
"PlayerX",
|
398
|
+
"PlayerY",
|
399
|
+
" \"\\\\u",
|
400
|
+
" \"\\\\u0030",
|
401
|
+
"\\\\u0030\" +",
|
402
|
+
"\\u0030\" +",
|
403
|
+
" \"",
|
404
|
+
"\\u0030\" +",
|
405
|
+
"\\u0030\\n",
|
406
|
+
"p",
|
407
|
+
"s",
|
408
|
+
"d",
|
409
|
+
"",
|
410
|
+
"[[nick]]",
|
411
|
+
"m.nreply",
|
412
|
+
"0, ",
|
413
|
+
"perm: ",
|
414
|
+
"30"
|
415
|
+
],
|
416
|
+
"reverse": false,
|
417
|
+
"show_context": true,
|
418
|
+
"use_buffer2": true,
|
419
|
+
"whole_word": false,
|
420
|
+
"wrap": true
|
421
|
+
},
|
422
|
+
"folders":
|
423
|
+
[
|
424
|
+
{
|
425
|
+
"path": "/home/ancient/Projects/unaffiliated/omcl"
|
426
|
+
}
|
427
|
+
],
|
428
|
+
"groups":
|
429
|
+
[
|
430
|
+
{
|
431
|
+
"selected": 1,
|
432
|
+
"sheets":
|
433
|
+
[
|
434
|
+
{
|
435
|
+
"buffer": 0,
|
436
|
+
"file": "exe/omcl",
|
437
|
+
"semi_transient": false,
|
438
|
+
"settings":
|
439
|
+
{
|
440
|
+
"buffer_size": 5218,
|
441
|
+
"regions":
|
442
|
+
{
|
443
|
+
},
|
444
|
+
"selection":
|
445
|
+
[
|
446
|
+
[
|
447
|
+
673,
|
448
|
+
673
|
449
|
+
]
|
450
|
+
],
|
451
|
+
"settings":
|
452
|
+
{
|
453
|
+
"bracket_highlighter.busy": false,
|
454
|
+
"bracket_highlighter.locations":
|
455
|
+
{
|
456
|
+
"close":
|
457
|
+
{
|
458
|
+
"1":
|
459
|
+
[
|
460
|
+
921,
|
461
|
+
924
|
462
|
+
]
|
463
|
+
},
|
464
|
+
"icon":
|
465
|
+
{
|
466
|
+
"1":
|
467
|
+
[
|
468
|
+
"Packages/BracketHighlighter/icons/dot.png",
|
469
|
+
"brackethighlighter.default"
|
470
|
+
]
|
471
|
+
},
|
472
|
+
"open":
|
473
|
+
{
|
474
|
+
"1":
|
475
|
+
[
|
476
|
+
493,
|
477
|
+
495
|
478
|
+
]
|
479
|
+
},
|
480
|
+
"unmatched":
|
481
|
+
{
|
482
|
+
}
|
483
|
+
},
|
484
|
+
"bracket_highlighter.regions":
|
485
|
+
[
|
486
|
+
"bh_double_quote",
|
487
|
+
"bh_double_quote_center",
|
488
|
+
"bh_double_quote_open",
|
489
|
+
"bh_double_quote_close",
|
490
|
+
"bh_double_quote_content",
|
491
|
+
"bh_unmatched",
|
492
|
+
"bh_unmatched_center",
|
493
|
+
"bh_unmatched_open",
|
494
|
+
"bh_unmatched_close",
|
495
|
+
"bh_unmatched_content",
|
496
|
+
"bh_default",
|
497
|
+
"bh_default_center",
|
498
|
+
"bh_default_open",
|
499
|
+
"bh_default_close",
|
500
|
+
"bh_default_content",
|
501
|
+
"bh_round",
|
502
|
+
"bh_round_center",
|
503
|
+
"bh_round_open",
|
504
|
+
"bh_round_close",
|
505
|
+
"bh_round_content",
|
506
|
+
"bh_c_define",
|
507
|
+
"bh_c_define_center",
|
508
|
+
"bh_c_define_open",
|
509
|
+
"bh_c_define_close",
|
510
|
+
"bh_c_define_content",
|
511
|
+
"bh_curly",
|
512
|
+
"bh_curly_center",
|
513
|
+
"bh_curly_open",
|
514
|
+
"bh_curly_close",
|
515
|
+
"bh_curly_content",
|
516
|
+
"bh_regex",
|
517
|
+
"bh_regex_center",
|
518
|
+
"bh_regex_open",
|
519
|
+
"bh_regex_close",
|
520
|
+
"bh_regex_content",
|
521
|
+
"bh_single_quote",
|
522
|
+
"bh_single_quote_center",
|
523
|
+
"bh_single_quote_open",
|
524
|
+
"bh_single_quote_close",
|
525
|
+
"bh_single_quote_content",
|
526
|
+
"bh_tag",
|
527
|
+
"bh_tag_center",
|
528
|
+
"bh_tag_open",
|
529
|
+
"bh_tag_close",
|
530
|
+
"bh_tag_content",
|
531
|
+
"bh_angle",
|
532
|
+
"bh_angle_center",
|
533
|
+
"bh_angle_open",
|
534
|
+
"bh_angle_close",
|
535
|
+
"bh_angle_content",
|
536
|
+
"bh_square",
|
537
|
+
"bh_square_center",
|
538
|
+
"bh_square_open",
|
539
|
+
"bh_square_close",
|
540
|
+
"bh_square_content"
|
541
|
+
],
|
542
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
543
|
+
},
|
544
|
+
"translation.x": 0.0,
|
545
|
+
"translation.y": 1351.0,
|
546
|
+
"zoom_level": 1.0
|
547
|
+
},
|
548
|
+
"stack_index": 2,
|
549
|
+
"type": "text"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"buffer": 1,
|
553
|
+
"file": "lib/omcl/launch.rb",
|
554
|
+
"semi_transient": false,
|
555
|
+
"settings":
|
556
|
+
{
|
557
|
+
"buffer_size": 982,
|
558
|
+
"regions":
|
559
|
+
{
|
560
|
+
},
|
561
|
+
"selection":
|
562
|
+
[
|
563
|
+
[
|
564
|
+
471,
|
565
|
+
471
|
566
|
+
]
|
567
|
+
],
|
568
|
+
"settings":
|
569
|
+
{
|
570
|
+
"bracket_highlighter.busy": false,
|
571
|
+
"bracket_highlighter.locations":
|
572
|
+
{
|
573
|
+
"close":
|
574
|
+
{
|
575
|
+
"1":
|
576
|
+
[
|
577
|
+
975,
|
578
|
+
978
|
579
|
+
]
|
580
|
+
},
|
581
|
+
"icon":
|
582
|
+
{
|
583
|
+
"1":
|
584
|
+
[
|
585
|
+
"Packages/BracketHighlighter/icons/dot.png",
|
586
|
+
"brackethighlighter.default"
|
587
|
+
]
|
588
|
+
},
|
589
|
+
"open":
|
590
|
+
{
|
591
|
+
"1":
|
592
|
+
[
|
593
|
+
14,
|
594
|
+
17
|
595
|
+
]
|
596
|
+
},
|
597
|
+
"unmatched":
|
598
|
+
{
|
599
|
+
}
|
600
|
+
},
|
601
|
+
"bracket_highlighter.regions":
|
602
|
+
[
|
603
|
+
"bh_round",
|
604
|
+
"bh_round_center",
|
605
|
+
"bh_round_open",
|
606
|
+
"bh_round_close",
|
607
|
+
"bh_round_content",
|
608
|
+
"bh_unmatched",
|
609
|
+
"bh_unmatched_center",
|
610
|
+
"bh_unmatched_open",
|
611
|
+
"bh_unmatched_close",
|
612
|
+
"bh_unmatched_content",
|
613
|
+
"bh_default",
|
614
|
+
"bh_default_center",
|
615
|
+
"bh_default_open",
|
616
|
+
"bh_default_close",
|
617
|
+
"bh_default_content",
|
618
|
+
"bh_square",
|
619
|
+
"bh_square_center",
|
620
|
+
"bh_square_open",
|
621
|
+
"bh_square_close",
|
622
|
+
"bh_square_content",
|
623
|
+
"bh_single_quote",
|
624
|
+
"bh_single_quote_center",
|
625
|
+
"bh_single_quote_open",
|
626
|
+
"bh_single_quote_close",
|
627
|
+
"bh_single_quote_content",
|
628
|
+
"bh_angle",
|
629
|
+
"bh_angle_center",
|
630
|
+
"bh_angle_open",
|
631
|
+
"bh_angle_close",
|
632
|
+
"bh_angle_content",
|
633
|
+
"bh_curly",
|
634
|
+
"bh_curly_center",
|
635
|
+
"bh_curly_open",
|
636
|
+
"bh_curly_close",
|
637
|
+
"bh_curly_content",
|
638
|
+
"bh_c_define",
|
639
|
+
"bh_c_define_center",
|
640
|
+
"bh_c_define_open",
|
641
|
+
"bh_c_define_close",
|
642
|
+
"bh_c_define_content",
|
643
|
+
"bh_regex",
|
644
|
+
"bh_regex_center",
|
645
|
+
"bh_regex_open",
|
646
|
+
"bh_regex_close",
|
647
|
+
"bh_regex_content",
|
648
|
+
"bh_double_quote",
|
649
|
+
"bh_double_quote_center",
|
650
|
+
"bh_double_quote_open",
|
651
|
+
"bh_double_quote_close",
|
652
|
+
"bh_double_quote_content",
|
653
|
+
"bh_tag",
|
654
|
+
"bh_tag_center",
|
655
|
+
"bh_tag_open",
|
656
|
+
"bh_tag_close",
|
657
|
+
"bh_tag_content"
|
658
|
+
],
|
659
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
660
|
+
},
|
661
|
+
"translation.x": 0.0,
|
662
|
+
"translation.y": 0.0,
|
663
|
+
"zoom_level": 1.0
|
664
|
+
},
|
665
|
+
"stack_index": 0,
|
666
|
+
"type": "text"
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"buffer": 2,
|
670
|
+
"file": "/home/ancient/.minecraft/test.rb",
|
671
|
+
"semi_transient": false,
|
672
|
+
"settings":
|
673
|
+
{
|
674
|
+
"buffer_size": 2876,
|
675
|
+
"regions":
|
676
|
+
{
|
677
|
+
},
|
678
|
+
"selection":
|
679
|
+
[
|
680
|
+
[
|
681
|
+
2489,
|
682
|
+
2489
|
683
|
+
]
|
684
|
+
],
|
685
|
+
"settings":
|
686
|
+
{
|
687
|
+
"bracket_highlighter.busy": false,
|
688
|
+
"bracket_highlighter.locations":
|
689
|
+
{
|
690
|
+
"close":
|
691
|
+
{
|
692
|
+
},
|
693
|
+
"icon":
|
694
|
+
{
|
695
|
+
},
|
696
|
+
"open":
|
697
|
+
{
|
698
|
+
},
|
699
|
+
"unmatched":
|
700
|
+
{
|
701
|
+
}
|
702
|
+
},
|
703
|
+
"bracket_highlighter.regions":
|
704
|
+
[
|
705
|
+
"bh_double_quote",
|
706
|
+
"bh_double_quote_center",
|
707
|
+
"bh_double_quote_open",
|
708
|
+
"bh_double_quote_close",
|
709
|
+
"bh_double_quote_content",
|
710
|
+
"bh_unmatched",
|
711
|
+
"bh_unmatched_center",
|
712
|
+
"bh_unmatched_open",
|
713
|
+
"bh_unmatched_close",
|
714
|
+
"bh_unmatched_content",
|
715
|
+
"bh_default",
|
716
|
+
"bh_default_center",
|
717
|
+
"bh_default_open",
|
718
|
+
"bh_default_close",
|
719
|
+
"bh_default_content",
|
720
|
+
"bh_round",
|
721
|
+
"bh_round_center",
|
722
|
+
"bh_round_open",
|
723
|
+
"bh_round_close",
|
724
|
+
"bh_round_content",
|
725
|
+
"bh_c_define",
|
726
|
+
"bh_c_define_center",
|
727
|
+
"bh_c_define_open",
|
728
|
+
"bh_c_define_close",
|
729
|
+
"bh_c_define_content",
|
730
|
+
"bh_curly",
|
731
|
+
"bh_curly_center",
|
732
|
+
"bh_curly_open",
|
733
|
+
"bh_curly_close",
|
734
|
+
"bh_curly_content",
|
735
|
+
"bh_regex",
|
736
|
+
"bh_regex_center",
|
737
|
+
"bh_regex_open",
|
738
|
+
"bh_regex_close",
|
739
|
+
"bh_regex_content",
|
740
|
+
"bh_single_quote",
|
741
|
+
"bh_single_quote_center",
|
742
|
+
"bh_single_quote_open",
|
743
|
+
"bh_single_quote_close",
|
744
|
+
"bh_single_quote_content",
|
745
|
+
"bh_tag",
|
746
|
+
"bh_tag_center",
|
747
|
+
"bh_tag_open",
|
748
|
+
"bh_tag_close",
|
749
|
+
"bh_tag_content",
|
750
|
+
"bh_angle",
|
751
|
+
"bh_angle_center",
|
752
|
+
"bh_angle_open",
|
753
|
+
"bh_angle_close",
|
754
|
+
"bh_angle_content",
|
755
|
+
"bh_square",
|
756
|
+
"bh_square_center",
|
757
|
+
"bh_square_open",
|
758
|
+
"bh_square_close",
|
759
|
+
"bh_square_content"
|
760
|
+
],
|
761
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
762
|
+
},
|
763
|
+
"translation.x": 0.0,
|
764
|
+
"translation.y": 299.0,
|
765
|
+
"zoom_level": 1.0
|
766
|
+
},
|
767
|
+
"stack_index": 1,
|
768
|
+
"type": "text"
|
769
|
+
}
|
770
|
+
]
|
771
|
+
}
|
772
|
+
],
|
773
|
+
"incremental_find":
|
774
|
+
{
|
775
|
+
"height": 36.0
|
776
|
+
},
|
777
|
+
"input":
|
778
|
+
{
|
779
|
+
"height": 32.0
|
780
|
+
},
|
781
|
+
"layout":
|
782
|
+
{
|
783
|
+
"cells":
|
784
|
+
[
|
785
|
+
[
|
786
|
+
0,
|
787
|
+
0,
|
788
|
+
1,
|
789
|
+
1
|
790
|
+
]
|
791
|
+
],
|
792
|
+
"cols":
|
793
|
+
[
|
794
|
+
0.0,
|
795
|
+
1.0
|
796
|
+
],
|
797
|
+
"rows":
|
798
|
+
[
|
799
|
+
0.0,
|
800
|
+
1.0
|
801
|
+
]
|
802
|
+
},
|
803
|
+
"menu_visible": true,
|
804
|
+
"output.find_results":
|
805
|
+
{
|
806
|
+
"height": 0.0
|
807
|
+
},
|
808
|
+
"pinned_build_system": "",
|
809
|
+
"project": "",
|
810
|
+
"replace":
|
811
|
+
{
|
812
|
+
"height": 64.0
|
813
|
+
},
|
814
|
+
"save_all_on_build": true,
|
815
|
+
"select_file":
|
816
|
+
{
|
817
|
+
"height": 0.0,
|
818
|
+
"last_filter": "",
|
819
|
+
"selected_items":
|
820
|
+
[
|
821
|
+
],
|
822
|
+
"width": 0.0
|
823
|
+
},
|
824
|
+
"select_project":
|
825
|
+
{
|
826
|
+
"height": 479.0,
|
827
|
+
"last_filter": "",
|
828
|
+
"selected_items":
|
829
|
+
[
|
830
|
+
[
|
831
|
+
"njs",
|
832
|
+
"~/Projects/njs/njs.sublime-project"
|
833
|
+
],
|
834
|
+
[
|
835
|
+
"",
|
836
|
+
"~/gospace/src/github.com/handicraftsman/gibot/gibot.sublime-project"
|
837
|
+
]
|
838
|
+
],
|
839
|
+
"width": 364.0
|
840
|
+
},
|
841
|
+
"select_symbol":
|
842
|
+
{
|
843
|
+
"height": 0.0,
|
844
|
+
"last_filter": "",
|
845
|
+
"selected_items":
|
846
|
+
[
|
847
|
+
],
|
848
|
+
"width": 0.0
|
849
|
+
},
|
850
|
+
"selected_group": 0,
|
851
|
+
"settings":
|
852
|
+
{
|
853
|
+
},
|
854
|
+
"show_minimap": true,
|
855
|
+
"show_open_files": false,
|
856
|
+
"show_tabs": true,
|
857
|
+
"side_bar_visible": true,
|
858
|
+
"side_bar_width": 305.0,
|
859
|
+
"status_bar_visible": true,
|
860
|
+
"template_settings":
|
861
|
+
{
|
862
|
+
}
|
863
|
+
}
|