summaryrefslogtreecommitdiff
path: root/src/main/kotlin/io/dico/parcels2/Parcel.kt
blob: 3527e15b489a4ee60a0197a6fc865251ac946c84 (plain)
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
package io.dico.parcels2

import io.dico.parcels2.util.math.Vec2i
import io.dico.parcels2.util.math.Vec3i
import org.bukkit.Location
import org.joda.time.DateTime
import java.util.UUID

/**
 * Parcel implementation of ParcelData will update the database when changes are made.
 * To change the data without updating the database, defer to the data delegate instance.
 *
 * This should be used for example in database query callbacks.
 * However, this implementation is intentionally not thread-safe.
 * Therefore, database query callbacks should schedule their updates using the bukkit scheduler.
 */
interface Parcel : ParcelData, Privileges {
    val id: ParcelId
    val world: ParcelWorld
    val pos: Vec2i
    val x: Int
    val z: Int
    val data: ParcelDataHolder
    val infoString: String
    val hasBlockVisitors: Boolean
    val globalPrivileges: GlobalPrivileges?

    override val keyOfOwner: PlayerProfile.Real?
        get() = owner as? PlayerProfile.Real

    fun copyData(newData: ParcelDataHolder, callerIsDatabase: Boolean = false)

    fun dispose() = copyData(ParcelDataHolder())

    fun updateOwnerSign(force: Boolean = false)

    val homeLocation: Location get() = world.blockManager.getHomeLocation(id)
}



interface ParcelData : RawPrivileges {
    var owner: PlayerProfile?
    val lastClaimTime: DateTime?
    var isOwnerSignOutdated: Boolean
    var interactableConfig: InteractableConfiguration

    //fun canBuild(player: OfflinePlayer, checkAdmin: Boolean = true, checkGlobal: Boolean = true): Boolean

    fun isOwner(uuid: UUID): Boolean {
        return owner?.uuid == uuid
    }

    fun isOwner(profile: PlayerProfile?): Boolean {
        return owner == profile
    }
}

class ParcelDataHolder(addedMap: MutablePrivilegeMap = mutableMapOf())
    : ParcelData, PrivilegesHolder(addedMap) {
    override var owner: PlayerProfile? = null
    override var lastClaimTime: DateTime? = null
    override var isOwnerSignOutdated = false
    override var interactableConfig: InteractableConfiguration = BitmaskInteractableConfiguration()
}