-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHALF-LIFE3.go
430 lines (380 loc) · 11.1 KB
/
HALF-LIFE3.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/*package main
import (
"fmt"
"os"
"os/exec"
"runtime"
"time"
)
func main() {
soundFile := "/Users/daniel/Documents/HalfLifeIntro.mp3"
cmd := exec.Command("afplay", soundFile)
err := cmd.Run()
if err != nil {
fmt.Println("Error:", err)
return
}
title := "HALF-LIFE 3λ: ЯOЯЯIM || MIRROR"
text := "Hello, Gordon."
text2 := "You may not know where you are,"
text3 := "But I assure you, Mister Freeman,"
text4 := " you're home."
text5 := "You've been looking for me your whole life, Gordon."
text6 := "I created it all."
text7 := "They call me"
text8 := "..."
text9 := " the G-man. I take many names, but I prefer Euler. Call me ∑, as I am the 'Summation'.\nLike the definition of ∑, I am the sum of all."
text10 := "Let me show you something."
text11 := `
. .
* . . . . * .
. . . . . . .
o . .
. . . .
0 .
. . , , ,
. \ . .
. \ ,
. o . . . .
. \ , . .
#\##\# . . .
# #O##\### . .
. #*# #\##\### . ,
. ##*# #\##\## . .
. ##*# #o##\# . , .
. *# #\# . . . ,
\ . .
____^/\___^--____/\____O______________/\/\---/\___________---______________
/\^ ^ ^ ^ ^^ ^ '\ ^ ^ ---
-- - -- - - --- __ ^
-- __ ___-- ^ ^ -- __`
// text12 := "Recognize it? Yes, you must be very familiar with Xen by now."
// text13 :=
fmt.Println("Introducing...")
time.Sleep(3 * time.Second)
fmt.Println("From the minds of VALVE || EVLAV")
fmt.Println()
fmt.Println()
time.Sleep(3 * time.Second)
typewritereffect(title)
time.Sleep(2 * time.Second)
clearScreen()
time.Sleep(2 * time.Second)
typewritereffect(text)
fmt.Println()
time.Sleep(1 * time.Second)
typewritereffect(text2)
fmt.Println()
time.Sleep(1 * time.Second)
typewritereffect(text3)
time.Sleep(3 * time.Second)
typewritereffectSlow(text4)
time.Sleep(1 / 2 * time.Second)
clearScreen()
time.Sleep(1 * time.Second)
typewritereffect(text5)
fmt.Println()
time.Sleep(1 * time.Second)
typewritereffect(text6)
fmt.Println()
typewritereffect(text7)
typewritereffectMedium(text8)
time.Sleep(1 + (1/2)*time.Second)
typewritereffect(text9)
time.Sleep(2 * time.Second)
typewritereffect(text10)
time.Sleep(3 * time.Second)
clearScreen()
fmt.Println()
typewritereffectSuperFast(text11)
fmt.Println()
fmt.Println()
}
func typewritereffect(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(100 * time.Millisecond) // Adjust the duration as needed
}
}
func typewritereffectSlow(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(500 * time.Millisecond) // Adjust the duration as needed
}
}
func typewritereffectMedium(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(300 * time.Millisecond) // Adjust the duration as needed
}
}
func typewritereffectSuperFast(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(5 * time.Millisecond) // Adjust the duration as needed
}
}
func clearScreen() {
switch runtime.GOOS {
case "linux", "darwin": // Unix-like systems
cmd := exec.Command("clear")
cmd.Stdout = os.Stdout
cmd.Run()
case "windows":
cmd := exec.Command("cmd", "/c", "cls") // Windows
cmd.Stdout = os.Stdout
cmd.Run()
default:
fmt.Println("Unsupported OS, cannot clear screen")
}
}
*/
/*package main
import (
"fmt"
"os"
"os/exec"
"runtime"
"time"
)
func main() {
soundFile := "/Users/daniel/Documents/HalfLifeIntro.mp3"
// Start playing the music in the background
playMusic(soundFile)
// Your text output
displayText()
}
func playMusic(soundFile string) {
var cmd *exec.Cmd
switch runtime.GOOS {
case "windows":
cmd = exec.Command("cmd", "/c", "start", soundFile)
case "darwin":
cmd = exec.Command("afplay", soundFile)
default:
fmt.Println("Unsupported OS for playing music")
return
}
err := cmd.Start()
if err != nil {
fmt.Println("Error:", err)
}
}
*/
package main
import (
"fmt"
"os"
"os/exec"
"runtime"
"time"
)
var musicCmd *exec.Cmd
func main() {
stopMusic()
// Your text output
displayText()
}
func playMusic(soundFile string) {
var cmd *exec.Cmd
switch runtime.GOOS {
case "windows":
cmd = exec.Command("cmd", "/c", "start", soundFile)
case "darwin":
cmd = exec.Command("afplay", soundFile)
default:
fmt.Println("Unsupported OS for playing music")
return
}
err := cmd.Start()
if err != nil {
fmt.Println("Error:", err)
return
}
musicCmd = cmd // Store the music command for stopping later
}
func stopMusic() {
switch runtime.GOOS {
case "windows":
exec.Command("taskkill", "/f", "/im", "afplay.exe").Run() // Replace with appropriate Windows command
case "darwin":
exec.Command("pkill", "afplay").Run()
default:
fmt.Println("Unsupported OS for stopping music")
}
}
func displayText() {
soundFile := "/Users/daniel/Documents/HalfLifeIntro.mp3"
soundFile2 := "/Users/daniel/Documents/HL-VagueVoices.mp3"
guitar := "/Users/daniel/Documents/DIABOLICALGUITAR.mp3"
title := "\033[33mHALF-LIFE 3λ: MIRROR || ЯOЯЯIM"
text := "\033[34mHello, Gordon."
text2 := "You may not know where you are,"
text3 := "But I assure you, Mister Freeman,"
text4 := " you're home."
text5 := "You've been looking for me your whole life, Gordon."
text6 := "\033[31mI created it all."
text7 := "\033[34mThey call me"
text8 := "..."
text9 := " the G-man. I take many names, but I prefer Euler. Call me ∑, as I am the 'Summation'.\nLike the definition of ∑, I am the sum of all.\033[34m"
text10 := "Let me show you something.\033[34m"
text11 := `
. .
* . . . . * .
. . . . . . .
o . .
. . . .
0 .
. . ,
. . .
. ,
. o . . . .
. , . .
. . .
. o .
. . ,
. . .
. . , .
. . . . ,
. .
____^/\___^--____/\____O______________/\/\-__,-/\___________---__,--/^\___
/\^ ^ ^ ^ ^^ ^ '\ ^ ^ ---
-- - -- - - --- __ ^
-- __ ___-- ^ ^ -- __`
text12 := "\033[34mRecognize it? Yes, you must be very familiar with Xen by now."
text13 := "It was left in ruins after your visit, Gordon."
text14 := "Which might I add was not a very enjoyable visit for you either, was it?"
text15 := "You are a bad person, Mister Freeman."
text16 := " But I believe every bad man is worthy of the universe."
text17 := "A previous hire was unable to complete the tasks provided. I trust in you to do your job."
text18 := "This position may not be what you wanted, but I have forced you in the past,\nand you have done what you needed."
text19 := "Mister Freeman"
text20 := "..."
text21 := " are you ready?\033[34m"
playMusic(soundFile)
fmt.Println("Introducing...")
time.Sleep(3 * time.Second)
fmt.Println("From the minds of VALVE || EVLAV")
fmt.Println()
fmt.Println()
time.Sleep(3 * time.Second)
typewritereffect(title)
time.Sleep(4 * time.Second)
stopMusic()
clearScreen()
playMusic(soundFile2)
time.Sleep(5 * time.Second)
typewritereffect(text)
fmt.Println()
time.Sleep(4 * time.Second)
typewritereffect(text2)
fmt.Println()
time.Sleep(1 * time.Second)
typewritereffect(text3)
time.Sleep(3 * time.Second)
typewritereffectSlow(text4)
time.Sleep(4 * time.Second)
clearScreen()
time.Sleep(1 * time.Second)
typewritereffect(text5)
fmt.Println()
time.Sleep(1 * time.Second)
typewritereffect(text6)
fmt.Println()
typewritereffect(text7)
typewritereffectMedium(text8)
time.Sleep(1 + (1/2)*time.Second)
typewritereffect(text9)
time.Sleep(2 * time.Second)
fmt.Println()
typewritereffect(text10)
time.Sleep(3 * time.Second)
clearScreen()
fmt.Println()
typewritereffectSuperFast(text11)
fmt.Println()
fmt.Println()
typewritereffect(text12)
time.Sleep(3 * time.Second)
fmt.Println()
typewritereffect(text13)
fmt.Println()
time.Sleep(2 * time.Second)
typewritereffect(text14)
time.Sleep(3 * time.Second)
stopMusic()
fmt.Println()
clearScreen()
typewritereffect(text15)
time.Sleep(3 * time.Second)
playMusic(guitar)
typewritereffect(text16)
fmt.Println()
time.Sleep(4 * time.Second)
typewritereffect(text17)
time.Sleep(3 * time.Second)
fmt.Println()
typewritereffect(text18)
time.Sleep(3 * time.Second)
clearScreen()
fmt.Println()
typewritereffect(text19)
typewritereffectMedium(text20)
time.Sleep(2 * time.Second)
typewritereffect(text21)
fmt.Println()
fmt.Println()
credits()
}
func credits() {
time.Sleep(2 * time.Second)
fmt.Println("CODE BY: DANIEL C.")
time.Sleep(3 * time.Second)
fmt.Println("STORY BY: DANIEL C.")
time.Sleep(2 * time.Second)
fmt.Println("LEAD DEVELOPER: YOU GUESSED IT, DANIEL C.")
time.Sleep(2 * time.Second)
fmt.Println("PROGRAMMED IN GOLANG")
time.Sleep(3 * time.Second)
fmt.Println("NOT AFFILIATED WITH VALVE IN ANY WAY")
time.Sleep(2 * time.Second)
fmt.Println("\033[33mHALF-LIFE 3λ: MIRROR || ЯOЯЯIM")
}
func typewritereffect(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(100 * time.Millisecond)
}
}
func typewritereffectSlow(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(500 * time.Millisecond)
}
}
func typewritereffectMedium(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(300 * time.Millisecond)
}
}
func typewritereffectSuperFast(text string) {
for _, char := range text {
fmt.Print(string(char))
time.Sleep(2 * time.Millisecond)
}
}
func clearScreen() {
switch runtime.GOOS {
case "linux", "darwin": // Unix-like systems
cmd := exec.Command("clear")
cmd.Stdout = os.Stdout
cmd.Run()
case "windows":
cmd := exec.Command("cmd", "/c", "cls") // Windows
cmd.Stdout = os.Stdout
cmd.Run()
default:
fmt.Println("Unsupported OS, cannot clear screen")
}
}