-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.go
338 lines (304 loc) · 9.92 KB
/
launch.go
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
package cmd
import (
"errors"
"os/exec"
"path/filepath"
"strconv"
"strings"
"github.com/brawaru/marct/launcher"
"github.com/brawaru/marct/locales"
offlineAccount "github.com/brawaru/marct/offline/account"
offlineAuthFlow "github.com/brawaru/marct/offline/authflow"
"github.com/brawaru/marct/utils"
"github.com/brawaru/marct/utils/pointers"
xboxAccount "github.com/brawaru/marct/xbox/account"
xboxAuthFlow "github.com/brawaru/marct/xbox/authflow"
"github.com/nicksnyder/go-i18n/v2/i18n"
"github.com/urfave/cli/v2"
)
var launchCommand = createCommand(&cli.Command{
Name: "launch",
Usage: locales.Translate(&i18n.Message{
ID: "command.launch.usage",
Other: "Launch the game",
}),
Description: locales.Translate(&i18n.Message{
ID: "command.launch.description",
Other: "Launches the game either using selected profile or specified using the argument.",
}),
ArgsUsage: locales.Translate(&i18n.Message{
ID: "command.launch.args-usage",
Other: "[profile id]",
}),
Flags: nil,
Action: func(ctx *cli.Context) error {
instance := ctx.Context.Value(instanceKey).(*launcher.Instance)
profiles, err := instance.ReadProfiles()
if err != nil {
if utils.DoesNotExist(err) {
err = errors.New(locales.Translate(&i18n.Message{
ID: "command.launch.error.profiles-file-does-not-exist",
Other: "profiles file does not exist",
}))
}
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.profiles-read-failed",
Other: "Failed to read launcher profiles file: {{ .Error }}",
},
}), 1)
}
// TODO: add -i option that prompts user to select profile to launch
var profile launcher.Profile
if ctx.NArg() == 0 {
if profiles.SelectedProfile == nil || ctx.Bool("i") {
p, err := SelectProfileFlow(profiles, WithMessage(locales.Translate(&i18n.Message{
ID: "command.launch.prompt.select-profile",
Other: "Select profile to launch",
})))
if err != nil {
return err
}
profile = *p
} else {
i := *profiles.SelectedProfile
p, ok := profiles.Profiles[i]
if !ok {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Name": i,
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.default-profile-not-found",
Other: "Selected profile \"{{ .Name }}\" is missing." +
" Select existing profile or specify profile to launch via argument.",
},
}), 1)
}
profile = p
}
} else if ctx.NArg() == 1 {
i := ctx.Args().First()
p, ok := profiles.Profiles[i]
if !ok {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Name": i,
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.invalid-profile-specified",
Other: "Profile \"{{ .Name }}\" does not exist.",
},
}), 1)
}
profile = p
} else {
return cli.Exit(locales.Translate(&i18n.Message{
ID: "command.launch.error.invalid-args-number",
Other: "Invalid number of arguments",
}), 1)
}
accountsStore, err := instance.OpenAccountsStore()
utils.DClose(accountsStore) // we won't be making any changes so closing the file immediately
if err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.accounts-store-open-failed",
Other: "Failed to open read your accounts: {{ .Error }}",
},
}), 1)
}
if len(accountsStore.Accounts) == 0 {
command := strings.Join([]string{app.Name, accountCommand.Name, accountAddCommand.Name}, " ")
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Command": command,
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.no-accounts",
Other: "You have no accounts. Please add one using \"{{ .Command }}\" command.",
},
}), 1)
}
selectedAccount := accountsStore.GetSelectedAccount()
if selectedAccount == nil {
if newSelection, selectionErr := SelectAccountFlow(accountsStore.Accounts); selectionErr != nil {
return selectionErr
} else {
selectedAccount = newSelection
}
}
switch selectedAccount.Type {
case xboxAccount.AccountType:
k, err := keyringOpenFlow(instance)
if err != nil {
return err
}
authFlow := xboxAuthFlow.CreateAuthFlow(&xboxAuthFlow.Options{
DeviceAuthHandler: xboxDeviceAuthPrompt,
Keyring: k,
})
err = authFlow.RefreshAccount(selectedAccount)
if err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.xbox-account-refresh-failed",
Other: "Cannot authorize your Xbox account: {{ .Error }}",
},
}), 1)
}
case offlineAccount.AccountType:
authFlow := offlineAuthFlow.CreateAuthFlow(&offlineAuthFlow.Options{
UsernameRequestHandler: offlineUsernamePrompt,
})
err := authFlow.RefreshAccount(selectedAccount)
if err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.offline-account-refresh-failed",
Other: "Cannot authorize your offline account: {{ .Error }}",
},
}), 1)
}
default:
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
DefaultMessage: &i18n.Message{
ID: "command.launch.error.account-type-not-supported",
Other: "Account type {{ .AccountType }} is not supported.",
},
}), 1)
}
versionID := profile.LastVersionID
if versionID == "latest-release" || versionID == "latest-snapshot" {
// this is a special ID and we'll have to fetch versions list
v, err := instance.FetchVersions(false)
if err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.versions-fetch-failed",
Other: "Cannot acquire a list of latest versions: {{ .Error }}",
},
}), 1)
}
vd := v.GetVersion(versionID)
if vd == nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"VersionID": versionID,
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.version-not-found",
Other: "Cannot get recent version for ID {{ .VersionID }}.",
},
}), 1)
}
if err := instance.DownloadVersionFile(*vd); err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.version-fetch-failed",
Other: "Cannot get version manifest for {{ .VersionID }}: {{ .Error }}",
},
}), 1)
}
versionID = vd.ID
}
version, err := instance.ReadVersionWithInherits(versionID)
if err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.cannot-inherit-versions",
Other: "Unable to prepare for launch: {{ .Error }}",
},
}), 1) // FIXME: translate error to message
}
if err := instance.DownloadVersion(*version); err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.cannot-download-version",
Other: "Unable to download and verify version files: {{ .Error }}",
},
}), 1) // FIXME: translate error to message
}
if lr, err := instance.Launch(*version, launcher.LaunchOptions{
Background: ctx.Bool("background"),
JavaPath: pointers.DerefOrDefault(profile.JavaPath),
Resolution: profile.Resolution,
Authorization: *selectedAccount.Authorization,
GameDirectory: filepath.Join(instance.Path, filepath.FromSlash(profile.GameDir)), // MCL compat: no sanitization
JavaArgs: profile.JavaArgs,
}); err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.launch-failed",
Other: "Cannot launch game: {{ .Error }}",
},
}), 1) // FIXME: translate error to message
} else {
if err := lr.Command.Wait(); err != nil {
var e *exec.ExitError
if errors.As(err, &e) && e.ExitCode() != 0 {
println(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"ExitCode": strconv.Itoa(e.ExitCode()),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.warn.non-zero-exit",
Other: "Game process exited with code {{ .ExitCode }}",
},
}))
}
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.wait-error",
Other: "Cannot wait for child process: {{ .Error }}",
},
}), 1)
}
if err := lr.Clean(); err != nil {
return cli.Exit(locales.TranslateUsing(&i18n.LocalizeConfig{
TemplateData: map[string]string{
"Error": err.Error(),
},
DefaultMessage: &i18n.Message{
ID: "command.launch.error.clean-error",
Other: "Cannot clean up temporary files: {{ .Error }}",
},
}), 1)
}
}
return nil
},
})
func init() {
app.Commands = append(app.Commands, launchCommand)
}