-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwiftUI Game.swift
571 lines (481 loc) · 24.3 KB
/
SwiftUI Game.swift
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
import PlaygroundSupport
import SwiftUI
import Combine
struct framePreferenceKey: PreferenceKey {
static var defaultValue = CGRect()
static func reduce(value: inout CGRect, nextValue: () -> CGRect) {
value = nextValue()
}
}
extension CGSize{
func length() -> CGFloat{
sqrt(width * width + height * height)
}
mutating func rotate(_ a: CGFloat) {
let x = width * cos(a) - height * sin(a)
let y = width * sin(a) + height * cos(a)
self = CGSize(width: x, height: y)
}
mutating func randomizeAngle(_ rnd: CGFloat) {
let a = CGFloat.random(in: -rnd...rnd)
self.rotate(a)
}
static func +=(lhs: inout CGSize, rhs: CGSize) {
lhs = CGSize(
width: lhs.width + rhs.width,
height: lhs.height + rhs.height
)
}
static func +(lhs: CGSize, rhs: CGSize) -> CGSize{
CGSize(
width: lhs.width + rhs.width,
height: lhs.height + rhs.height
)
}
static func -(lhs: CGSize, rhs: CGSize) -> CGSize{
CGSize(
width: lhs.width - rhs.width,
height: lhs.height - rhs.height
)
}
static func *(lhs: CGSize, rhs: CGFloat) -> CGSize {
CGSize(width: lhs.width * rhs,
height: lhs.height * rhs)
}
static func +(lhs: CGSize, rhs: CGFloat) -> CGSize {
CGSize(width: lhs.width + rhs,
height: lhs.height + rhs)
}
}
struct JoystickView: View {
init(offset: Binding<CGSize>, isTapped: Binding<Bool>, maxRadius: CGFloat){
self._offset = offset
self._isTapped = isTapped
self.maxRadius = maxRadius
}
let maxRadius : CGFloat
@Binding var offset: CGSize
@Binding var isTapped: Bool
@State var gestureLocation = CGSize(width: 0, height: 0)
@State var startLocation = CGSize(width: 0, height: 0)
@State var joystickFrame = CGRect()
var body: some View{
ZStack{
if isTapped{
ZStack{
Circle()
.fill(RadialGradient(gradient: Gradient(colors: [.clear, .white]), center: .center, startRadius: 0, endRadius: maxRadius * 1.5))
.frame(width: maxRadius * 3, height: maxRadius * 3)
.opacity(0.5)
.offset(startLocation)
Circle()
.fill(RadialGradient(gradient: Gradient(colors: [.white, .gray]), center: .center, startRadius: 0, endRadius: maxRadius/2))
.frame(width: maxRadius, height: maxRadius)
.shadow(radius: 5)
.offset(gestureLocation)
}
}
Color.clear
.contentShape(Rectangle())
.gesture(
DragGesture(minimumDistance:0, coordinateSpace:.global)
.onChanged { gesture in
if !isTapped {
isTapped = true
let startWidth = gesture.startLocation.x - joystickFrame.minX - joystickFrame.width/2
let startHeight = gesture.startLocation.y - joystickFrame.minY - joystickFrame.height/2
startLocation = CGSize(width: startWidth,
height: startHeight)
}
var x = gesture.translation.width
var y = gesture.translation.height
var r = gesture.translation.length()
if r > maxRadius{
let q = maxRadius / r
x *= q
y *= q
}
let gestLocX = gesture.startLocation.x + x - joystickFrame.minX - joystickFrame.width/2
let gestLocY = gesture.startLocation.y + y - joystickFrame.minY - joystickFrame.height/2
offset = CGSize(width: x, height: y)
gestureLocation = CGSize(width: gestLocX, height: gestLocY)
}
.onEnded { _ in
offset = .zero
isTapped = false
}
)
.overlay(
GeometryReader { geo in
Color.clear
.preference(key: framePreferenceKey.self, value: geo.frame(in:.global))
}.onPreferenceChange(framePreferenceKey.self){self.joystickFrame = $0}
)
}.clipShape(Rectangle())
}
}
//======================================================================
//Game!
struct GameView: View {
struct Position {
var coords : CGSize = .zero
var angle : Double = 0
var speed = CGSize()
var time : Double = 1
}
init (refreshRate: Double){
self.refreshInterval = 1 / refreshRate
self.timer = Timer.publish(every: refreshInterval, tolerance: 0, on: .current, in: .common).autoconnect()
self.speed = CGFloat(refreshInterval * 10)
self.enemySpeed = CGFloat(refreshInterval * 200)
self.tailFadeSpeed = Double(refreshInterval * 10)
self.foodAngleSpeedDefault = Double(refreshInterval * 3)
}
func newEnemy() {
var speed = CGSize(width: enemySpeed, height: 0)
speed.randomizeAngle(2 * CGFloat.pi)
let enemy = Position(coords: newPosition(maxOffset),
speed: speed,
time: 1)
enemies.append(enemy)
}
func newPosition(_ maxOffset: CGSize) -> CGSize {
var x: CGFloat = coords.width
var y: CGFloat = coords.height
while (CGSize(width: x, height: y) - coords).length() < gameObjRadius*5 {
x = CGFloat.random(in: -maxOffset.width...maxOffset.width)
y = CGFloat.random(in: -maxOffset.height...maxOffset.height)
}
return CGSize(width: x, height: y)
}
func getReady(){
enemies = []
for i in 0..<enemyCount{ newEnemy() }
tail = [Position](repeating: Position(coords: coords, angle: angle, time: 0), count: tailSize)
let time = CFAbsoluteTimeGetCurrent()
coordsFood = newPosition(maxOffset)
foodTimer = time
foodAngleSpeed = foodAngleSpeedDefault * 10
newFood = true
}
let refreshInterval: Double
var timer: Publishers.Autoconnect<Timer.TimerPublisher>
let tailCount = 5
let tailSize = 20
let tailFadeSpeed : Double
let tailFluctuation : CGFloat = 10
let tailTransparency : Double = 0.5
let joystickRadius : CGFloat = 100
let speed : CGFloat
let jetPower : CGFloat = 0.02
let enemySpeed : CGFloat
let enemySpeedRND : CGFloat = 0.5
let enemyCount = 3
let foodTime : CFAbsoluteTime = 3
let foodAngleSpeedDefault : Double
let gameObjRadius : CGFloat = 30
@State var explosion : CGFloat = -1
@State var deathEnemy = -1
@State var gameOver = false
@State var score = 0
@State var foodTimer = CFAbsoluteTimeGetCurrent()
@State var enemyTimer = CFAbsoluteTimeGetCurrent()
@State var enemies : [Position] = []
@State var maxOffset = CGSize()
@State var tailIndex = 0
@State var counter = 0
@State var tail : [Position] = []
@State var offset : CGSize = .zero
@State var angle : Double = 0
@State var isTapped = false
@State var gameFrame = CGRect()
@State var coords : CGSize = .zero
@State var coordsFood : CGSize = .zero
@State var angleFood : Double = 0
@State var foodAngleSpeed : Double = 0
@State var newFood = false
@State var foodSize = CGFloat()
var body: some View{
if !gameOver{
VStack{
VStack{
HStack{
Text("SCORE: \(score)").font(.headline)
Spacer()
}
}
ZStack{
//======================================================================
//Background
ZStack{
AngularGradient(gradient:
Gradient(colors: [.green, .clear, .green, .clear, .green, .clear, .green, .clear, .green, .clear]), center: .center)
.scaleEffect(6)
.rotationEffect(Angle(degrees: Double(coords.width/gameFrame.width)*2))
.offset(CGSize(width: gameFrame.width/3, height: -gameFrame.width/3))
AngularGradient(gradient:
Gradient(colors: [.green, .clear, .green, .clear, .green, .clear, .green, .clear, .green, .clear, .green]), center: .center)
.scaleEffect(5)
.rotationEffect(Angle(degrees: Double(coords.width/gameFrame.width)*5))
.offset(CGSize(width: -gameFrame.width/3, height: gameFrame.width/3))
.opacity(1)
.blendMode(.difference)
}.blur(radius: 10)
Rectangle()
.fill(Color(red: 0, green: 0, blue: 0.7))
//.opacity(0.5)
.blendMode(.colorBurn)
//======================================================================
//Food
ZStack{
Circle()
.fill(RadialGradient(gradient:
Gradient(colors: [.black, .blue, .black]),
center: .center,
startRadius: 0,
endRadius: gameObjRadius*1.5))
.frame(width: foodSize*2.5, height: foodSize*2.5)
Ellipse()
.fill(RadialGradient(gradient:
Gradient(colors: [.white,.purple, .black]),
center: .center,
startRadius: 0,
endRadius: gameObjRadius*1.5))
.frame(width: gameObjRadius*2, height: gameObjRadius*0.7)
.rotationEffect(Angle(radians: angleFood),
anchor: .center)
.shadow(radius: 2)
//Food logic
.onReceive(timer){_ in
let time = CFAbsoluteTimeGetCurrent()
let timer = time - foodTimer
// Eat!
if abs(coords.width - coordsFood.width) < gameObjRadius &&
abs(coords.height - coordsFood.height) < gameObjRadius {
coordsFood = newPosition(maxOffset)
score += Int(timer / foodTime * 100)
foodTimer = time
foodAngleSpeed *= 50
foodSize = 0
newFood = true
}
// Timer is just began
if newFood {
withAnimation{
newFood.toggle()
foodSize = gameObjRadius
}
}
// Time is almost up!
if timer / foodTime > 0.7{
foodAngleSpeed *= 1.02
foodSize *= 0.999
}else{
if foodAngleSpeed > foodAngleSpeedDefault{
foodAngleSpeed /= 1.02
}
}
// Time is up!
if timer > foodTime{
foodTimer = time
coordsFood = newPosition(maxOffset)
newFood = true
}
angleFood += foodAngleSpeed
if angleFood > 2 * Double.pi{ angleFood = 0}
}
}.offset(coordsFood)
//======================================================================
//Enemies!
ForEach(enemies.indices, id: \.self){ id in
if !(id == deathEnemy){
ZStack{
ForEach(0..<10){ i in
Capsule()
.fill(LinearGradient(gradient: Gradient(colors: [.black, .white, .black]), startPoint: .leading, endPoint: .trailing))
.frame(width: gameObjRadius*2, height: gameObjRadius*2)
.scaleEffect(x: 0.2,
y: 1.5,
anchor: .init(x: 0.5, y: 1))
.rotationEffect(Angle(degrees: Double(36 * i)))
}
Circle()
.fill(RadialGradient(gradient:
Gradient(colors: [.black, .red, .black]),
center: .center,
startRadius: 0,
endRadius: gameObjRadius*1.5))
.shadow(radius:20)
}
.frame(width: gameObjRadius*2.5, height: gameObjRadius*2.5)
.offset(enemies[id].coords)
//Enemy logic
.onReceive(timer){time in
if deathEnemy > -1 {return }
var enemy = enemies[id]
enemy.coords += enemy.speed
enemy.speed.rotate(0.005)
if abs(enemy.coords.width) > maxOffset.width {
enemy.speed.width *= -1
if abs(enemy.speed.width/enemy.speed.height) > 0.2
{enemy.speed.randomizeAngle(enemySpeedRND)
}
}
if abs(enemy.coords.height) > maxOffset.height {
enemy.speed.height *= -1
if abs(enemy.speed.height/enemy.speed.width) > 0.2 {enemy.speed.randomizeAngle(enemySpeedRND)
}
}
if (enemy.coords - coords).length() < gameObjRadius * 2{
deathEnemy = id
}
enemies[id] = enemy
}
}
}
//======================================================================
//Explosion
if deathEnemy > -1{
Circle()
.fill(RadialGradient(gradient: Gradient(colors: [.clear, .red, .yellow, .clear]), center: UnitPoint(x: 0.5, y: 0.5), startRadius: explosion/50, endRadius: explosion/5))
.scaleEffect(explosion)
.offset(enemies[deathEnemy].coords)
.onReceive(timer){_ in
if explosion == -1{
explosion = 0
}else{
if explosion < maxOffset.length()/2{
explosion += 1
}else{
gameOver.toggle()
}
}
var speed = CGSize()
for id in 0..<tail.endIndex{
let a = (CGFloat(id) / CGFloat(tail.endIndex)) * CGFloat.pi * 2
speed = CGSize(width: 0, height: -explosion)
speed.rotate(a)
tail[id] = Position(coords:
CGSize(width: coords.width + CGFloat.random(in: -tailFluctuation...tailFluctuation)+speed.width*5,
height: coords.height + CGFloat.random(in: -tailFluctuation...tailFluctuation)+speed.height*5),
angle: Double(a),
speed: speed,
time: 1)
}
}
}
//======================================================================
//Tail
ForEach(tail.indices, id: \.self){ id in
RadialGradient(gradient:
Gradient(colors: [.yellow, .clear]),
center: .center,
startRadius: 0,
endRadius: gameObjRadius)
.frame(width: gameObjRadius*2, height: gameObjRadius*2)
.scaleEffect(x: 1,
y: 1 + tail[id].speed.length()*jetPower,
anchor: .init(x: 0.5, y: 0))
.rotationEffect(Angle(radians: tail[id].angle))
.offset(tail[id].coords)
.opacity(tail[id].time * tailTransparency)
}
//Head
if explosion < 0{
Circle()
.fill(RadialGradient(gradient: Gradient(colors: [.white, .red, .blue]), center: .center, startRadius: 0, endRadius: gameObjRadius))
.frame(width: gameObjRadius*2, height: gameObjRadius*2)
.overlay(
Capsule(style: RoundedCornerStyle.circular)
.fill(Color.white)
.frame(width: gameObjRadius / 2, height: gameObjRadius / 1.5)
, alignment: .top)
.rotationEffect(Angle(radians: angle),
anchor: .center)
.offset(coords)
}
//Head logic
}.onReceive(timer){time in
if deathEnemy > -1 {return }
let newCoords = coords + offset * speed
if abs(newCoords.width) < maxOffset.width {
coords.width = newCoords.width
}
if abs(newCoords.height) < maxOffset.height {
coords.height = newCoords.height
}
let pi = Double.pi
let length = offset.length()
if length > 0{
let newAngle = Double(atan2(offset.height, offset.width)) + pi / 2
var deltaAngle = newAngle - angle.truncatingRemainder(dividingBy: 2 * pi)
if deltaAngle > pi{
deltaAngle = deltaAngle - 2 * pi
}
if deltaAngle < -pi{
deltaAngle = deltaAngle + 2 * pi
}
angle += deltaAngle
}
counter += 1
if counter>tailCount{
counter = 0
for i in tail.indices{
tail[i].time -= tailFadeSpeed
}
tailIndex += 1
if tailIndex == tail.endIndex{
tailIndex = 0
}
if length > 0 {
tail[tailIndex] = Position(coords:
CGSize(width: coords.width + CGFloat.random(in: -tailFluctuation...tailFluctuation),
height: coords.height + CGFloat.random(in: -tailFluctuation...tailFluctuation)),
angle: angle, speed: offset, time: 1)
}
}
}.clipShape(Rectangle())
.overlay(
GeometryReader { geo in
Color.clear
.preference(key: framePreferenceKey.self, value: geo.frame(in:.global))
}.onPreferenceChange(framePreferenceKey.self){
//window size changed!
self.gameFrame = $0
coords = .zero
let x = gameFrame.width/2 - gameObjRadius
let y = gameFrame.height/2 - gameObjRadius
maxOffset = CGSize(width: x, height: y)
}
)
}.overlay(
JoystickView(offset: $offset, isTapped: $isTapped, maxRadius: joystickRadius)
.opacity(0.2)
.foregroundColor(.accentColor)
,alignment: .bottomTrailing)
.drawingGroup()
.onAppear(){
//get ready!!
getReady()
}
}else{
ZStack{
Color.clear
VStack{
Text("GAME OVER").font(.largeTitle).foregroundColor(.red)
Text("Your Score: \(score)").font(.title).foregroundColor(.yellow)
Text("Tap to play once more").font(.caption2)
}
}.contentShape(Rectangle())
.onTapGesture {
// New Game
gameOver.toggle()
deathEnemy = -1
explosion = -1
score = 0
}
.transition(AnyTransition.opacity.animation(.easeIn(duration: 1)))
}
}
}
PlaygroundPage.current.setLiveView(GameView(refreshRate: 120))