summaryrefslogtreecommitdiff
path: root/src/main/kotlin/io/dico/parcels2/defaultimpl/ParcelProviderImpl.kt
blob: 7748fc770400503eef4df31d53abb03b5933351c (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
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
package io.dico.parcels2.defaultimpl

import io.dico.parcels2.*
import io.dico.parcels2.blockvisitor.Schematic
import io.dico.parcels2.util.math.Region
import io.dico.parcels2.util.math.Vec3d
import io.dico.parcels2.util.math.Vec3i
import io.dico.parcels2.util.schedule
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.launch
import org.bukkit.Bukkit
import org.bukkit.World
import org.bukkit.WorldCreator
import org.bukkit.entity.Entity
import org.bukkit.util.Vector
import org.joda.time.DateTime

class ParcelProviderImpl(val plugin: ParcelsPlugin) : ParcelProvider {
    inline val options get() = plugin.options
    override val worlds: Map<String, ParcelWorld> get() = _worlds
    private val _worlds: MutableMap<String, ParcelWorld> = hashMapOf()
    private val _generators: MutableMap<String, ParcelGenerator> = hashMapOf()
    private var _worldsLoaded = false
    private var _dataIsLoaded = false

    // disabled while !_dataIsLoaded. getParcelById() will work though for data loading.
    override fun getWorld(name: String): ParcelWorld? = _worlds[name]?.takeIf { _dataIsLoaded }

    override fun getWorldById(id: ParcelWorldId): ParcelWorld? {
        if (id is ParcelWorld) return id
        return _worlds[id.name] ?: id.bukkitWorld?.let { getWorld(it) }
    }

    override fun getParcelById(id: ParcelId): Parcel? {
        if (id is Parcel) return id
        return getWorldById(id.worldId)?.container?.getParcelById(id.x, id.z)
    }

    override fun getWorldGenerator(worldName: String): ParcelGenerator? {
        return _worlds[worldName]?.generator
            ?: _generators[worldName]
            ?: options.worlds[worldName]?.generator?.newInstance(worldName)?.also { _generators[worldName] = it }
    }

    override fun loadWorlds() {
        if (_worldsLoaded) throw IllegalStateException()
        _worldsLoaded = true
        loadWorlds0()
    }

    private fun loadWorlds0() {
        if (Bukkit.getWorlds().isEmpty()) {
            plugin.schedule { loadWorlds0() }
            plugin.logger.warning("Scheduling to load worlds in the next tick because no bukkit worlds are loaded yet")
            return
        }

        val newlyCreatedWorlds = mutableListOf<ParcelWorld>()
        for ((worldName, worldOptions) in options.worlds.entries) {
            var parcelWorld = _worlds[worldName]
            if (parcelWorld != null) continue

            val generator: ParcelGenerator = getWorldGenerator(worldName)!!
            val worldExists = Bukkit.getWorld(worldName) != null
            val bukkitWorld =
                if (worldExists) Bukkit.getWorld(worldName)!!
                else {
                    logger.info("Creating world $worldName")
                    WorldCreator(worldName).generator(generator).createWorld()
                }

            parcelWorld =
                ParcelWorldImpl(plugin, bukkitWorld, generator, worldOptions.runtime, ::DefaultParcelContainer)

            if (!worldExists) {
                val time = DateTime.now()
                plugin.storage.setWorldCreationTime(parcelWorld.id, time)
                parcelWorld.creationTime = time
                newlyCreatedWorlds.add(parcelWorld)
            } else {
                GlobalScope.launch(context = Dispatchers.Unconfined) {
                    parcelWorld.creationTime = plugin.storage.getWorldCreationTime(parcelWorld.id).await() ?:
                        DateTime.now()
                }
            }

            _worlds[worldName] = parcelWorld
        }

        loadStoredData(newlyCreatedWorlds.toSet())
    }

    private fun loadStoredData(newlyCreatedWorlds: Collection<ParcelWorld> = emptyList()) {
        plugin.launch {
            val migration = plugin.options.migration
            if (migration.enabled) {
                migration.instance?.newInstance()?.apply {
                    logger.warn("Migrating database now...")
                    migrateTo(plugin.storage).join()
                    logger.warn("Migration completed")

                    if (migration.disableWhenComplete) {
                        migration.enabled = false
                        plugin.saveOptions()
                    }
                }
            }

            logger.info("Loading all parcel data...")

            val job1 = launch {
                val channel = plugin.storage.transmitAllParcelData()
                while (true) {
                    val (id, data) = channel.receiveOrNull() ?: break
                    val parcel = getParcelById(id) ?: continue
                    data?.let { parcel.copyData(it, callerIsDatabase = true) }
                }
            }

            val channel2 = plugin.storage.transmitAllGlobalPrivileges()
            while (true) {
                val (profile, data) = channel2.receiveOrNull() ?: break
                if (profile !is PrivilegeKey) {
                    logger.error("Received profile that is not a privilege key: ${profile.javaClass}, $profile")
                    continue
                }
                (plugin.globalPrivileges[profile] as PrivilegesHolder).copyPrivilegesFrom(data)
            }

            job1.join()

            logger.info("Loading data completed")
            _dataIsLoaded = true
        }
    }

    override fun acquireBlockVisitorPermit(parcelId: ParcelId, with: Permit): Boolean {
        val parcel = getParcelById(parcelId) as? ParcelImpl ?: return true
        return parcel.acquireBlockVisitorPermit(with)
    }

    override fun releaseBlockVisitorPermit(parcelId: ParcelId, with: Permit) {
        val parcel = getParcelById(parcelId) as? ParcelImpl ?: return
        parcel.releaseBlockVisitorPermit(with)
    }

    override fun trySubmitBlockVisitor(permit: Permit, vararg parcelIds: ParcelId, function: JobFunction): Job? {
        val withPermit = parcelIds.filter { acquireBlockVisitorPermit(it, permit) }
        if (withPermit.size != parcelIds.size) {
            withPermit.forEach { releaseBlockVisitorPermit(it, permit) }
            return null
        }

        val job = plugin.jobDispatcher.dispatch(function)

        plugin.launch {
            job.awaitCompletion()
            withPermit.forEach { releaseBlockVisitorPermit(it, permit) }
        }

        return job
    }

    override fun swapParcels(parcelId1: ParcelId, parcelId2: ParcelId): Job? {
        val world1 = getWorldById(parcelId1.worldId) ?: return null
        val world2 = getWorldById(parcelId2.worldId) ?: return null
        val blockManager1 = world1.blockManager
        val blockManager2 = world2.blockManager

        class CopyTarget(val world: World, val region: Region)
        class CopySource(val origin: Vec3i, val schematic: Schematic, val entities: Collection<Entity>)

        suspend fun JobScope.copy(source: CopySource, target: CopyTarget) {
            with(source.schematic) { paste(target.world, target.region.origin) }

            for (entity in source.entities) {
                entity.velocity = Vector(0, 0, 0)
                val location = entity.location
                location.world = target.world
                val coords = target.region.origin + (Vec3d(entity.location) - source.origin)
                coords.copyInto(location)
                entity.teleport(location)
            }
        }

        return trySubmitBlockVisitor(Permit(), parcelId1, parcelId2) {
            val temporaryParcel = world1.nextEmptyParcel()
                ?: world2.nextEmptyParcel()
                ?: return@trySubmitBlockVisitor

            var region1 = blockManager1.getRegion(parcelId1)
            var region2 = blockManager2.getRegion(parcelId2)

            val size = region1.size.clampMax(region2.size)
            if (size != region1.size) {
                region1 = region1.withSize(size)
                region2 = region2.withSize(size)
            }

            // Teleporting entities safely requires a different approach:
            // * Copy schematic1 into temporary location
            // * Teleport entities1 into temporary location
            // * Copy schematic2 into parcel1
            // * Teleport entities2 into parcel1
            // * Copy schematic1 into parcel2
            // * Teleport entities1 into parcel2
            // * Clear temporary location

            lateinit var source1: CopySource
            lateinit var source2: CopySource

            delegateWork(0.30) {
                val schematicOf1 = delegateWork(0.50) { Schematic().apply { load(blockManager1.world, region1) } }
                val schematicOf2 = delegateWork(0.50) { Schematic().apply { load(blockManager2.world, region2) } }

                source1 = CopySource(region1.origin, schematicOf1, blockManager1.getEntities(region1))
                source2 = CopySource(region2.origin, schematicOf2, blockManager2.getEntities(region2))
            }

            val target1 = CopyTarget(blockManager1.world, region1)
            val target2 = CopyTarget(blockManager2.world, region2)
            val targetTemp = CopyTarget(
                temporaryParcel.world.world,
                temporaryParcel.world.blockManager.getRegion(temporaryParcel.id)
            )

            delegateWork {
                delegateWork(1.0 / 3.0) { copy(source1, targetTemp) }
                delegateWork(1.0 / 3.0) { copy(source2, target1) }
                delegateWork(1.0 / 3.0) { copy(source1, target2) }
            }

            // Separate job. Whatever
            temporaryParcel.world.blockManager.clearParcel(temporaryParcel.id)
        }
    }

    /*
    fun loadWorlds(options: Options) {
        for ((worldName, worldOptions) in options.worlds.entries) {
            val world: ParcelWorld
            try {

                world = ParcelWorldImpl(
                    worldName,
                    worldOptions,
                    worldOptions.generator.newGenerator(this, worldName),
                    plugin.storage,
                    plugin.globalPrivileges,
                    ::DefaultParcelContainer)

            } catch (ex: Exception) {
                ex.printStackTrace()
                continue
            }

            _worlds[worldName] = world
        }

        plugin.functionHelper.schedule(10) {
            println("Parcels generating parcelProvider now")
            for ((name, world) in _worlds) {
                if (Bukkit.getWorld(name) == null) {
                    val bworld = WorldCreator(name).generator(world.generator).createWorld()
                    val spawn = world.generator.getFixedSpawnLocation(bworld, null)
                    bworld.setSpawnLocation(spawn.x.floor(), spawn.y.floor(), spawn.z.floor())
                }
            }

            val channel = plugin.storage.transmitAllParcelData()
            val job = plugin.functionHelper.launchLazilyOnMainThread {
                do {
                    val pair = channel.receiveOrNull() ?: break
                    val parcel = getParcelById(pair.first) ?: continue
                    pair.second?.let { parcel.copyDataIgnoringDatabase(it) }
                } while (true)
            }
            job.start()
        }

    }
    */
}