This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
1,499 additions
and
785 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.rndash.mbheadunit.doom | ||
|
||
class Bsp { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package com.rndash.mbheadunit.doom | ||
|
||
const val TICKRATE = 35 | ||
const val SCREENWIDTH = 320 | ||
const val SCREENHEIGHT = 200 | ||
const val SCREEN_MUL = 1 | ||
|
||
enum class GameState { | ||
Level, | ||
Intermission, | ||
Finale, | ||
DemoScreen | ||
} | ||
|
||
enum class Skill { | ||
Baby, | ||
Easy, | ||
Medium, | ||
Hard, | ||
Nightmare | ||
} | ||
|
||
enum class Card { | ||
BlueCard, | ||
YellowCard, | ||
RedCard, | ||
BlueSkull, | ||
YellowSkull, | ||
RedSkull, | ||
None | ||
} | ||
|
||
enum class AmmoType { | ||
Clip, | ||
Shell, | ||
Cell, | ||
Missile, | ||
Unlimited // Unlimited ammo for chainsaw and fists | ||
} | ||
|
||
enum class PowerType { | ||
Invulerability, | ||
Strength, | ||
Invisibility, | ||
IronFeet, | ||
AllMap, | ||
Infrared, | ||
} | ||
|
||
enum class PowerDuration(val seconds: Int) { | ||
INVULNTICS(30* TICKRATE), | ||
INVISTICS(60 * TICKRATE), | ||
INFRATICS(120 * TICKRATE), | ||
IRONTICS(60 * TICKRATE) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.