mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Name of "Seaside Area at Night" now becomes "West Tower" when the area variant is 1. Phantasmal World 4 and Lost heart breaker use this to have two tower maps.
This commit is contained in:
parent
a1d4e38a7c
commit
445878fb6e
@ -80,10 +80,11 @@ class QuestEditorToolbarController(
|
||||
// should update).
|
||||
val areas: Val<List<AreaAndLabel>> = questEditorStore.currentQuest.flatMap { quest ->
|
||||
quest?.let {
|
||||
quest.entitiesPerArea.map { entitiesPerArea ->
|
||||
map(quest.entitiesPerArea, quest.areaVariants) { entitiesPerArea, variants ->
|
||||
areaStore.getAreasForEpisode(quest.episode).map { area ->
|
||||
val entityCount = entitiesPerArea[area.id]
|
||||
AreaAndLabel(area, area.name + (entityCount?.let { " ($it)" } ?: ""))
|
||||
val name = variants.firstOrNull { it.area == area }?.name ?: area.name
|
||||
AreaAndLabel(area, name + (entityCount?.let { " ($it)" } ?: ""))
|
||||
}
|
||||
}
|
||||
} ?: value(emptyList())
|
||||
|
@ -246,7 +246,7 @@ private fun areaVersionToBaseUrl(episode: Episode, areaVariant: AreaVariantModel
|
||||
var areaId = areaVariant.area.id
|
||||
var areaVariantId = areaVariant.id
|
||||
|
||||
// Exception for Seaside area at night, variant 1.
|
||||
// Exception for Seaside Area at Night, variant 1.
|
||||
// Phantasmal World 4 and Lost heart breaker use this to have two tower maps.
|
||||
if (areaId == 16 && areaVariantId == 1) {
|
||||
areaId = 17
|
||||
|
@ -7,6 +7,10 @@ import world.phantasmal.observable.value.list.mutableListVal
|
||||
class AreaVariantModel(val id: Int, val area: AreaModel) {
|
||||
private val _sections = mutableListVal<SectionModel>()
|
||||
|
||||
// Exception for Seaside Area at Night, variant 1.
|
||||
// Phantasmal World 4 and Lost heart breaker use this to have two tower maps.
|
||||
val name: String = if (area.id == 16 && id == 1) "West Tower" else area.name
|
||||
|
||||
val sections: ListVal<SectionModel> = _sections
|
||||
|
||||
init {
|
||||
|
Loading…
Reference in New Issue
Block a user