Skip to content

Latest commit

 

History

History
138 lines (111 loc) · 6.29 KB

README.md

File metadata and controls

138 lines (111 loc) · 6.29 KB

The Long Story | Greedy Kings

Project planning tools

Miro
Jira

Available on AppStore

Download now

Playgrounds of this project

Below you can find our experiments on this project's important parts

UIKitDynamics Gravity etc.
Collisions
View Masking
Lottie Animations
Request Review
Environments

Assets

Figma

Demo

RPReplay_Final1704188581.mp4

Screenshots from the game

Pages Screenshot 2023-10-22 at 14 51 56 Screenshot 2023-10-22 at 14 52 34 Screenshot 2023-10-22 at 14 52 45 Screenshot 2024-01-17 at 13 38 28 Screenshot 2023-10-22 at 14 52 58 Screenshot 2023-10-22 at 14 54 57 Screenshot 2023-10-22 at 14 52 22 Screenshot 2024-01-17 at 13 38 41

Hierarchy

├── Greedy Kings
│   ├── AnimationAssets
│   │   
│   ├── Application
│   │   ├── AppDelegate.swift
│   │   ├── Base.lproj
│   │   │   ├── LaunchScreen.storyboard
│   │   │   └── Main.storyboard
│   │   ├── RootViewController.swift
│   │   ├── SceneDelegate.swift
│   │   └── en.lproj
│   │       └── LaunchScreen.strings
│   │
│   ├── Assets.xcassets
│   │   ├── AccentColor.colorset
│   │   │   └── Contents.json
│   │   ├── AppIcon.appiconset
│   │   │   ├── Contents.json
│   │   │   └── GreedyKingsIcon.png
│   │   ├── Contents.json
│   │   ├── UI Assets
│   │   │   ├── Buttons
│   │   │   ├── Cell Frames
│   │   │   ├── Color Sets
│   │   │   ├── Contents.json
│   │   │   ├── GameScene
│   │   │   ├── Icons
│   │   │   └── King Avatars
│   │   └── icon.imageset
│   ├── AudioAssets
│   ├── Extensions
│   ├── Game
│   │   ├── Constants
│   │   │   └── GameComponentsPropertyList.plist
│   │   └── UI
│   │       ├── Game Scene
│   │       │   ├── Models
│   │       │   │   ├── AnimationModels.swift
│   │       │   │   └── GameSceneModels.swift
│   │       │   ├── ViewModel
│   │       │   │   └── GameSceneViewModel.swift
│   │       │   └── Views
│   │       │       ├── Coordinator.swift
│   │       │       ├── GameSceneViewController.swift
│   │       │       ├── PauseViewController.swift
│   │       │       ├── PlayerDataViewController.swift
│   │       │       └── ResultViewController.swift
│   │       ├── Leaderboard
│   │       ├── Levels
│   │       ├── Main Menu
│   │       └── Pick Character
│   ├── Info.plist
│   └── Managers
│       ├── Game Manager
│       │   ├── GameManager.swift
│       │   ├── HealthManager
│       │   │   └── HealthManager.swift
│       │   └── Models
│       │       └── GameModels.swift
│       ├── Haptics Manager
│       ├── Level Manager
│       ├── Physics Manager
│       ├── Audio Manager
│       └── Storage Manager
├── Greedy KingsTests
│   └── Greedy_KingsTests.swift
├── Greedy KingsUITests
│   ├── Greedy_KingsUITests.swift
│   └── Greedy_KingsUITestsLaunchTests.swift
└── README.md

Details

Architecture - MVVM

Key Elements

• Level Manager (Builder)
• Physics Manager
• Game Manager
• Storage Manager

Architecture - MVVM