Compare commits
9
Commits
master
..
1d753801dd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d753801dd | ||
|
|
60295330de | ||
|
|
f6e34d8efc
|
||
|
|
6f1a727691
|
||
|
|
3d09b48da8
|
||
|
|
9416250e13
|
||
|
|
7f4ef2a447
|
||
|
|
1053fde43f
|
||
|
|
f1ae6d7f4c
|
+10
-4
@@ -1,10 +1,16 @@
|
||||
job("Build and run tests") {
|
||||
// run 'gradlew build'
|
||||
gradlew("azul/zulu-openjdk:17", "build") {
|
||||
gradlew("azul/zulu-openjdk:17", "build", "--no-daemon") {
|
||||
mountDir = "/root"
|
||||
cache {
|
||||
storeKey = "dot-gradle"
|
||||
localPath = "/root/.gradle"
|
||||
}
|
||||
|
||||
fileArtifacts {
|
||||
localPath = "build"
|
||||
archive = true
|
||||
remotePath = "{{ run:number }}/build.zip"
|
||||
localPath = "build/libs"
|
||||
archive = false
|
||||
remotePath = "{{ run:number }}/build"
|
||||
onStatus = OnStatus.SUCCESS
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -48,21 +48,22 @@ class Game(
|
||||
|
||||
fun start() {
|
||||
debug("game ${map.name} started.")
|
||||
placeBreakRule.defaultRule()
|
||||
placeBreakRule.loadDefaultRule()
|
||||
|
||||
state = GameState.START
|
||||
timer.startTimer()
|
||||
timer.submitEvent("wall_fall", Duration.ofMinutes(1)) {
|
||||
broadcast { it.sendLang("game_wall_fall") }
|
||||
placeBreakRule.addRule("allow_center_wall") { _, _, loc ->
|
||||
map.wall.contains(loc)
|
||||
}
|
||||
submit {
|
||||
map.wall.forBlocksInArea().forEach {
|
||||
it.block.type = Material.AIR
|
||||
}
|
||||
placeBreakRule.addRule("allow_center_wall") { _, _, loc ->
|
||||
map.wall.contains(loc)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
autoJoinTeam()
|
||||
teams.forEach {
|
||||
it.start()
|
||||
|
||||
@@ -4,6 +4,7 @@ import cc.maxmc.blastingcrisis.game.GamePlaceBreakRule.ActionType.BREAK
|
||||
import cc.maxmc.blastingcrisis.misc.debug
|
||||
import org.bukkit.Location
|
||||
import org.bukkit.entity.Player
|
||||
import taboolib.library.xseries.XMaterial
|
||||
|
||||
class GamePlaceBreakRule(val game: Game) {
|
||||
enum class ActionType {
|
||||
@@ -11,11 +12,11 @@ class GamePlaceBreakRule(val game: Game) {
|
||||
BREAK
|
||||
}
|
||||
|
||||
private val rules = HashMap<String, (Player, ActionType, Location) -> Boolean>()
|
||||
fun matchRule(player: Player, actionType: ActionType, location: Location): Boolean {
|
||||
private val rules = HashMap<String, (Player, ActionType, Location, XMaterial) -> Boolean>()
|
||||
fun matchRule(player: Player, actionType: ActionType, location: Location, type: XMaterial): Boolean {
|
||||
// match rules
|
||||
rules.forEach { (name, func) ->
|
||||
if (func(player, actionType, location)) {
|
||||
if (func(player, actionType, location, type)) {
|
||||
debug("Hit rule $name")
|
||||
return true
|
||||
}
|
||||
@@ -25,7 +26,10 @@ class GamePlaceBreakRule(val game: Game) {
|
||||
return false
|
||||
}
|
||||
|
||||
fun addRule(name: String, rule: (player: Player, type: ActionType, loc: Location) -> Boolean) {
|
||||
fun addRule(
|
||||
name: String,
|
||||
rule: (player: Player, actionType: ActionType, loc: Location, type: XMaterial) -> Boolean
|
||||
) {
|
||||
if (rules.containsKey(name)) {
|
||||
throw IllegalArgumentException("Rule $name already exists.")
|
||||
}
|
||||
@@ -33,9 +37,9 @@ class GamePlaceBreakRule(val game: Game) {
|
||||
rules[name] = rule
|
||||
}
|
||||
|
||||
fun defaultRule() {
|
||||
fun loadDefaultRule() {
|
||||
// allow mine
|
||||
addRule("allow_mine") { _, _, loc ->
|
||||
addRule("allow_mine") { _, _, loc, _ ->
|
||||
game.map.teams.flatMap {
|
||||
it.sides + it.mine
|
||||
}.map {
|
||||
@@ -44,16 +48,31 @@ class GamePlaceBreakRule(val game: Game) {
|
||||
}
|
||||
|
||||
// allow enemy wall
|
||||
addRule("allow_wall_conditional") { player, type, loc ->
|
||||
addRule("allow_wall_conditional") { player, actionType, loc, _ ->
|
||||
val team = player.team ?: return@addRule false
|
||||
val isWall = game.teams
|
||||
.map {
|
||||
it.teamInfo.wall.containsBlock(loc).also { result -> debug("area ${it.teamInfo.wall} contains $loc is $result") }
|
||||
it.teamInfo.wall.containsBlock(loc)
|
||||
.also { result -> debug("area ${it.teamInfo.wall} contains $loc is $result") }
|
||||
}
|
||||
.reduce { a, b -> a || b }
|
||||
if (!isWall) return@addRule false
|
||||
val isHome = team.teamInfo.wall.containsBlock(loc)
|
||||
(type == BREAK) xor isHome
|
||||
(actionType == BREAK) xor isHome
|
||||
}
|
||||
|
||||
addRule("allow_tnt_conditional") { player, actionType, loc, type ->
|
||||
if (actionType == BREAK) return@addRule false
|
||||
if (type != XMaterial.TNT) return@addRule false
|
||||
val team = player.team ?: return@addRule false
|
||||
val isHome = game.teams
|
||||
.map {
|
||||
it.teamInfo.home.containsBlock(loc)
|
||||
.also { result -> debug("area ${it.teamInfo.home} contains $loc is $result") }
|
||||
}
|
||||
.reduce { a, b -> a || b }
|
||||
if (!isHome) return@addRule false
|
||||
return@addRule !team.teamInfo.home.containsBlock(loc)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,16 +1,23 @@
|
||||
package cc.maxmc.blastingcrisis.listener
|
||||
|
||||
import cc.maxmc.blastingcrisis.game.GamePlaceBreakRule
|
||||
import cc.maxmc.blastingcrisis.game.team
|
||||
import cc.maxmc.blastingcrisis.misc.Area
|
||||
import cc.maxmc.blastingcrisis.misc.GameManager
|
||||
import cc.maxmc.blastingcrisis.misc.debug
|
||||
import cc.maxmc.blastingcrisis.misc.toPlayerLocation
|
||||
import org.bukkit.Location
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.block.BlockBreakEvent
|
||||
import org.bukkit.event.block.BlockPlaceEvent
|
||||
import org.bukkit.event.entity.EntityDamageEvent
|
||||
import org.bukkit.event.entity.EntityExplodeEvent
|
||||
import org.bukkit.event.entity.FoodLevelChangeEvent
|
||||
import org.bukkit.event.player.PlayerInteractEvent
|
||||
import org.bukkit.event.player.PlayerMoveEvent
|
||||
import org.bukkit.event.player.PlayerRespawnEvent
|
||||
import taboolib.common.platform.event.SubscribeEvent
|
||||
import taboolib.library.xseries.XMaterial
|
||||
import taboolib.platform.util.sendLang
|
||||
|
||||
object GameListener {
|
||||
@@ -48,7 +55,7 @@ object GameListener {
|
||||
fun onBreak(breakEvent: BlockBreakEvent) {
|
||||
val loc = breakEvent.block.location ?: return
|
||||
val player = breakEvent.player ?: return
|
||||
if (GameManager.currentGame.placeBreakRule.matchRule(player, GamePlaceBreakRule.ActionType.BREAK, loc)) return
|
||||
if (GameManager.currentGame.placeBreakRule.matchRule(player, GamePlaceBreakRule.ActionType.BREAK, loc, XMaterial.matchXMaterial(breakEvent.block.type))) return
|
||||
breakEvent.isCancelled = true
|
||||
player.sendLang("game_cant_break_block")
|
||||
}
|
||||
@@ -57,8 +64,30 @@ object GameListener {
|
||||
fun onPlace(placeEvent: BlockPlaceEvent) {
|
||||
val loc = placeEvent.block.location ?: return
|
||||
val player = placeEvent.player ?: return
|
||||
if (GameManager.currentGame.placeBreakRule.matchRule(player, GamePlaceBreakRule.ActionType.PLACE, loc)) return
|
||||
if (GameManager.currentGame.placeBreakRule.matchRule(player, GamePlaceBreakRule.ActionType.PLACE, loc, XMaterial.matchXMaterial(placeEvent.blockPlaced.type))) return
|
||||
placeEvent.isCancelled = true
|
||||
player.sendLang("game_cant_place_block")
|
||||
}
|
||||
|
||||
@SubscribeEvent
|
||||
fun onRespawn(respawnEvent: PlayerRespawnEvent) {
|
||||
val team = respawnEvent.player.team ?: return // ignore none game player
|
||||
respawnEvent.respawnLocation = team.teamInfo.spawn.toPlayerLocation()
|
||||
}
|
||||
|
||||
@SubscribeEvent
|
||||
fun protectDamageBeforeGame(damageEvent: EntityDamageEvent) {
|
||||
if (damageEvent.entity !is Player) return // ignore none player entity
|
||||
if (GameManager.currentGame.state.isStarted()) return
|
||||
damageEvent.isCancelled = true
|
||||
}
|
||||
|
||||
@SubscribeEvent
|
||||
fun protectHunger(hungerEvent: FoodLevelChangeEvent) {
|
||||
hungerEvent.isCancelled = true
|
||||
(hungerEvent.entity as Player).run {
|
||||
foodLevel = 20
|
||||
saturation = 20f
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user