mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
All code now compiles with Kotlin 2.0.0 and all tests pass.
This commit is contained in:
parent
22d01776d0
commit
a8b1a00e06
19
.github/workflows/deploy.yml
vendored
19
.github/workflows/deploy.yml
vendored
@ -9,31 +9,26 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
|
|
||||||
- name: Cache Gradle packages
|
- name: Set up Gradle
|
||||||
uses: actions/cache@v2
|
uses: gradle/actions/setup-gradle@v3
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.gradle
|
|
||||||
.gradle
|
|
||||||
build/js
|
|
||||||
key: ${{ runner.os }}-gradle
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: './gradlew :web:browserDistribution'
|
run: './gradlew :web:jsBrowserDistribution'
|
||||||
|
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@3.6.2
|
uses: JamesIves/github-pages-deploy-action@3.6.2
|
||||||
with:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
BRANCH: gh-pages
|
BRANCH: gh-pages
|
||||||
FOLDER: web/build/distributions
|
FOLDER: web/build/dist/js/productionExecutable
|
||||||
CLEAN: true
|
CLEAN: true
|
||||||
|
24
.github/workflows/tests.yml
vendored
24
.github/workflows/tests.yml
vendored
@ -12,28 +12,16 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
|
|
||||||
- name: Cache Gradle packages
|
- name: Set up Gradle
|
||||||
uses: actions/cache@v2
|
uses: gradle/actions/setup-gradle@v3
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.gradle
|
|
||||||
.gradle
|
|
||||||
build/js
|
|
||||||
key: ${{ runner.os }}-gradle
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ./gradlew check
|
run: './gradlew check'
|
||||||
|
|
||||||
- name: Cleanup Gradle Cache
|
|
||||||
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
|
|
||||||
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
|
|
||||||
run: |
|
|
||||||
rm -f ~/.gradle/caches/modules-2/modules-2.lock
|
|
||||||
rm -f ~/.gradle/caches/modules-2/gc.properties
|
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -13,3 +13,6 @@ karma.config.generated.js
|
|||||||
|
|
||||||
# Config
|
# Config
|
||||||
/psoserv/psoserv.conf
|
/psoserv/psoserv.conf
|
||||||
|
|
||||||
|
# Kotlin
|
||||||
|
/.kotlin
|
||||||
|
@ -32,7 +32,7 @@ Then, for the web application:
|
|||||||
|
|
||||||
1. `cd` to the project directory
|
1. `cd` to the project directory
|
||||||
2. Launch webpack server on [http://localhost:1623/](http://localhost:1623/)
|
2. Launch webpack server on [http://localhost:1623/](http://localhost:1623/)
|
||||||
with `./gradlew :web:run --continuous`
|
with `./gradlew :web:jsBrowserDevelopmentRun --continuous`
|
||||||
3. [web/src/main/kotlin/world/phantasmal/web/Main.kt](web/src/main/kotlin/world/phantasmal/web/Main.kt)
|
3. [web/src/main/kotlin/world/phantasmal/web/Main.kt](web/src/main/kotlin/world/phantasmal/web/Main.kt)
|
||||||
is the application's entry point
|
is the application's entry point
|
||||||
|
|
||||||
@ -95,6 +95,8 @@ Work-in-progress PSO server and fully functional PSO proxy server.
|
|||||||
Run the unit tests with `./gradlew check`. JS tests are run with Karma and Mocha, JVM tests with
|
Run the unit tests with `./gradlew check`. JS tests are run with Karma and Mocha, JVM tests with
|
||||||
Junit 5. Tests can also be run per project with e.g. `./gradlew :psolib:check`.
|
Junit 5. Tests can also be run per project with e.g. `./gradlew :psolib:check`.
|
||||||
|
|
||||||
|
TODO: Figure out why `./gradlew check` runs the cell tests twice since upgrade to Gradle 8.9.
|
||||||
|
|
||||||
### Code Style and Formatting
|
### Code Style and Formatting
|
||||||
|
|
||||||
The Kotlin [coding conventions](https://kotlinlang.org/docs/coding-conventions.html) are used.
|
The Kotlin [coding conventions](https://kotlinlang.org/docs/coding-conventions.html) are used.
|
||||||
@ -103,7 +105,7 @@ The Kotlin [coding conventions](https://kotlinlang.org/docs/coding-conventions.h
|
|||||||
|
|
||||||
#### Web Application
|
#### Web Application
|
||||||
|
|
||||||
Create an optimized production build with `./gradlew :web:browserDistribution`.
|
Create an optimized production build with `./gradlew :web:jsBrowserDistribution`.
|
||||||
|
|
||||||
#### PSO Server
|
#### PSO Server
|
||||||
|
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
|
|
||||||
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin
|
|
||||||
|
|
||||||
tasks.wrapper {
|
|
||||||
gradleVersion = "7.1.1"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Temporary fix for issue with incompatible webpack-cli and @webpack-cli versions.
|
|
||||||
rootProject.plugins.withType<NodeJsRootPlugin> {
|
|
||||||
rootProject.the<NodeJsRootExtension>().versions.webpackCli.version = "4.9.0"
|
|
||||||
}
|
|
@ -7,6 +7,6 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31")
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0")
|
||||||
implementation("org.jetbrains.kotlin:kotlin-serialization:1.5.31")
|
implementation("org.jetbrains.kotlin:kotlin-serialization:1.9.24")
|
||||||
}
|
}
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
package world.phantasmal
|
|
||||||
|
|
||||||
val EXPERIMENTAL_ANNOTATIONS: List<String> = listOf(
|
|
||||||
"kotlin.RequiresOptIn",
|
|
||||||
"kotlin.ExperimentalUnsignedTypes",
|
|
||||||
"kotlin.contracts.ExperimentalContracts",
|
|
||||||
"kotlin.time.ExperimentalTime",
|
|
||||||
)
|
|
@ -1,5 +1,9 @@
|
|||||||
package world.phantasmal
|
package world.phantasmal
|
||||||
|
|
||||||
|
import org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11
|
||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
|
||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("plugin.serialization") apply false
|
kotlin("plugin.serialization") apply false
|
||||||
}
|
}
|
||||||
@ -8,9 +12,35 @@ repositories {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
project.extra["coroutinesVersion"] = "1.5.2"
|
tasks.withType<KotlinCompilationTask<*>> {
|
||||||
project.extra["junitVersion"] = "5.7.1"
|
compilerOptions {
|
||||||
|
allWarningsAsErrors.set(true)
|
||||||
|
optIn.set(
|
||||||
|
listOf(
|
||||||
|
"kotlin.contracts.ExperimentalContracts",
|
||||||
|
"kotlin.ExperimentalUnsignedTypes",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
freeCompilerArgs.add("-Xexpect-actual-classes")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
|
compilerOptions {
|
||||||
|
jvmTarget.set(JVM_11)
|
||||||
|
freeCompilerArgs.addAll(
|
||||||
|
"-Xjdk-release=${jvmTarget.get().target}",
|
||||||
|
"-Xjvm-default=all",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<Test>().configureEach {
|
||||||
|
useJUnitPlatform()
|
||||||
|
}
|
||||||
|
|
||||||
|
project.extra["coroutinesVersion"] = "1.9.0-RC"
|
||||||
project.extra["kotlinLoggingVersion"] = "2.0.11"
|
project.extra["kotlinLoggingVersion"] = "2.0.11"
|
||||||
project.extra["ktorVersion"] = "1.6.1"
|
project.extra["ktorVersion"] = "2.3.12"
|
||||||
project.extra["log4jVersion"] = "2.14.1"
|
project.extra["log4jVersion"] = "2.14.1"
|
||||||
project.extra["serializationVersion"] = "1.2.2"
|
project.extra["serializationVersion"] = "1.7.1"
|
||||||
|
@ -1,16 +1,13 @@
|
|||||||
package world.phantasmal
|
package world.phantasmal
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("js")
|
kotlin("multiplatform")
|
||||||
id("world.phantasmal.common")
|
id("world.phantasmal.common")
|
||||||
id("world.phantasmal.karma-resources")
|
id("world.phantasmal.karma-resources")
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
js {
|
||||||
compilations.configureEach {
|
|
||||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
|
||||||
}
|
|
||||||
browser {
|
browser {
|
||||||
testTask {
|
testTask {
|
||||||
useKarma {
|
useKarma {
|
||||||
@ -19,8 +16,12 @@ kotlin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
sourceSets {
|
||||||
testImplementation(kotlin("test-js"))
|
commonTest {
|
||||||
|
dependencies {
|
||||||
|
implementation(kotlin("test"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,35 +1,18 @@
|
|||||||
package world.phantasmal
|
package world.phantasmal
|
||||||
|
|
||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
id("world.phantasmal.common")
|
id("world.phantasmal.common")
|
||||||
}
|
}
|
||||||
|
|
||||||
val junitVersion: String by project.extra
|
|
||||||
val log4jVersion: String by project.extra
|
val log4jVersion: String by project.extra
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
sourceSets.configureEach {
|
jvmToolchain(11)
|
||||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType<KotlinCompile>().configureEach {
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = "11"
|
|
||||||
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
||||||
|
|
||||||
testImplementation(kotlin("test-junit5"))
|
testImplementation(kotlin("test"))
|
||||||
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType<Test>().configureEach {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
}
|
||||||
|
@ -2,40 +2,20 @@ package world.phantasmal
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
kotlin("multiplatform")
|
||||||
id("world.phantasmal.common")
|
id("world.phantasmal.js")
|
||||||
id("world.phantasmal.karma-resources")
|
id("world.phantasmal.karma-resources")
|
||||||
}
|
}
|
||||||
|
|
||||||
val coroutinesVersion: String by project.ext
|
val coroutinesVersion: String by project.ext
|
||||||
val junitVersion: String by project.extra
|
|
||||||
val kotlinLoggingVersion: String by project.extra
|
val kotlinLoggingVersion: String by project.extra
|
||||||
val log4jVersion: String by project.extra
|
val log4jVersion: String by project.extra
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
jvmToolchain(11)
|
||||||
browser {
|
|
||||||
testTask {
|
|
||||||
useKarma {
|
|
||||||
useChromeHeadless()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
jvm {
|
jvm {}
|
||||||
compilations.configureEach {
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = "11"
|
|
||||||
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
configureEach {
|
|
||||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
|
||||||
}
|
|
||||||
|
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
||||||
@ -43,34 +23,10 @@ kotlin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
commonTest {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-common"))
|
|
||||||
implementation(kotlin("test-annotations-common"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getByName("jsTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-js"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getByName("jvmMain") {
|
getByName("jvmMain") {
|
||||||
dependencies {
|
dependencies {
|
||||||
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getByName("jvmTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-junit5"))
|
|
||||||
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<Test>().configureEach {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package world.phantasmal.cell
|
package world.phantasmal.cell
|
||||||
|
|
||||||
import kotlin.contracts.InvocationKind
|
import kotlin.contracts.InvocationKind.EXACTLY_ONCE
|
||||||
import kotlin.contracts.contract
|
import kotlin.contracts.contract
|
||||||
|
|
||||||
abstract class AbstractDependency<T> : Dependency<T> {
|
abstract class AbstractDependency<T> : Dependency<T> {
|
||||||
@ -22,7 +22,7 @@ abstract class AbstractDependency<T> : Dependency<T> {
|
|||||||
|
|
||||||
protected inline fun applyChange(block: () -> Unit) {
|
protected inline fun applyChange(block: () -> Unit) {
|
||||||
contract {
|
contract {
|
||||||
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
|
callsInPlace(block, EXACTLY_ONCE)
|
||||||
}
|
}
|
||||||
|
|
||||||
MutationManager.changeDependency {
|
MutationManager.changeDependency {
|
||||||
|
@ -28,7 +28,11 @@ internal class SimpleListCell<E>(
|
|||||||
override operator fun set(index: Int, element: E): E {
|
override operator fun set(index: Int, element: E): E {
|
||||||
checkIndex(index, elements.lastIndex)
|
checkIndex(index, elements.lastIndex)
|
||||||
|
|
||||||
applyChange {
|
// TODO: Use applyChange instead of MutationManager.changeDependency, once
|
||||||
|
// https://youtrack.jetbrains.com/issue/KT-69964 is fixed.
|
||||||
|
MutationManager.changeDependency {
|
||||||
|
emitDependencyInvalidated()
|
||||||
|
|
||||||
val removed = elements.set(index, element)
|
val removed = elements.set(index, element)
|
||||||
|
|
||||||
finalizeChange(
|
finalizeChange(
|
||||||
@ -81,7 +85,11 @@ internal class SimpleListCell<E>(
|
|||||||
override fun removeAt(index: Int): E {
|
override fun removeAt(index: Int): E {
|
||||||
checkIndex(index, elements.lastIndex)
|
checkIndex(index, elements.lastIndex)
|
||||||
|
|
||||||
applyChange {
|
// TODO: Use applyChange instead of MutationManager.changeDependency, once
|
||||||
|
// https://youtrack.jetbrains.com/issue/KT-69964 is fixed.
|
||||||
|
MutationManager.changeDependency {
|
||||||
|
emitDependencyInvalidated()
|
||||||
|
|
||||||
val prevSize = elements.size
|
val prevSize = elements.size
|
||||||
val removed = elements.removeAt(index)
|
val removed = elements.removeAt(index)
|
||||||
|
|
||||||
|
@ -11,7 +11,8 @@ class FilteredListCellPredicateDependencyEmitsTests : ListCellTests, CellWithDep
|
|||||||
private var maxValue = if (empty) 0 else 1
|
private var maxValue = if (empty) 0 else 1
|
||||||
|
|
||||||
// The predicate cell changes, the predicate results don't.
|
// The predicate cell changes, the predicate results don't.
|
||||||
private val predicateCell = SimpleCell<(Int) -> Cell<Boolean>> { cell(it <= maxValue) }
|
private val predicateCell: SimpleCell<(Int) -> Cell<Boolean>> =
|
||||||
|
SimpleCell { cell(it <= maxValue) }
|
||||||
|
|
||||||
override val cell =
|
override val cell =
|
||||||
FilteredListCell(
|
FilteredListCell(
|
||||||
|
@ -2,9 +2,14 @@ package world.phantasmal.core
|
|||||||
|
|
||||||
// Char.isWhitespace is very slow in JS, use this until
|
// Char.isWhitespace is very slow in JS, use this until
|
||||||
// https://youtrack.jetbrains.com/issue/KT-43216 lands.
|
// https://youtrack.jetbrains.com/issue/KT-43216 lands.
|
||||||
expect inline fun Char.fastIsWhitespace(): Boolean
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
|
inline fun Char.fastIsWhitespace(): Boolean =
|
||||||
|
code == 0x20 || (code in 0x09..0x0D)
|
||||||
|
|
||||||
expect inline fun Char.isDigit(): Boolean
|
// This is optimized for KJS. Last checked with Kotlin 1.6.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
|
inline fun Char.isDigit(): Boolean =
|
||||||
|
code in 0x30..0x39
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the bit at the given position is set. Bits are indexed from lowest-order
|
* Returns true if the bit at the given position is set. Bits are indexed from lowest-order
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
@file:Suppress("NOTHING_TO_INLINE")
|
|
||||||
|
|
||||||
package world.phantasmal.core
|
package world.phantasmal.core
|
||||||
|
|
||||||
import org.w3c.dom.DOMRectReadOnly
|
import org.w3c.dom.DOMRectReadOnly
|
||||||
@ -19,21 +17,27 @@ external interface JsArray<T> {
|
|||||||
fun splice(start: Int, deleteCount: Int, vararg items: T): JsArray<T>
|
fun splice(start: Int, deleteCount: Int, vararg items: T): JsArray<T>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun <T> JsArray<T>.get(index: Int): T = asDynamic()[index].unsafeCast<T>()
|
inline operator fun <T> JsArray<T>.get(index: Int): T = asDynamic()[index].unsafeCast<T>()
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun <T> JsArray<T>.set(index: Int, value: T) {
|
inline operator fun <T> JsArray<T>.set(index: Int, value: T) {
|
||||||
asDynamic()[index] = value
|
asDynamic()[index] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun <T> jsArrayOf(vararg elements: T): JsArray<T> =
|
inline fun <T> jsArrayOf(vararg elements: T): JsArray<T> =
|
||||||
elements.unsafeCast<JsArray<T>>()
|
elements.unsafeCast<JsArray<T>>()
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun <T> JsArray<T>.asArray(): Array<T> =
|
inline fun <T> JsArray<T>.asArray(): Array<T> =
|
||||||
unsafeCast<Array<T>>()
|
unsafeCast<Array<T>>()
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun <T> Array<T>.asJsArray(): JsArray<T> =
|
inline fun <T> Array<T>.asJsArray(): JsArray<T> =
|
||||||
unsafeCast<JsArray<T>>()
|
unsafeCast<JsArray<T>>()
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun <T> List<T>.toJsArray(): JsArray<T> =
|
inline fun <T> List<T>.toJsArray(): JsArray<T> =
|
||||||
toTypedArray().asJsArray()
|
toTypedArray().asJsArray()
|
||||||
|
|
||||||
@ -43,7 +47,10 @@ external interface JsPair<out A, out B>
|
|||||||
inline val <T> JsPair<T, *>.first: T get() = asDynamic()[0].unsafeCast<T>()
|
inline val <T> JsPair<T, *>.first: T get() = asDynamic()[0].unsafeCast<T>()
|
||||||
inline val <T> JsPair<*, T>.second: T get() = asDynamic()[1].unsafeCast<T>()
|
inline val <T> JsPair<*, T>.second: T get() = asDynamic()[1].unsafeCast<T>()
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun <T> JsPair<T, *>.component1(): T = first
|
inline operator fun <T> JsPair<T, *>.component1(): T = first
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun <T> JsPair<*, T>.component2(): T = second
|
inline operator fun <T> JsPair<*, T>.component2(): T = second
|
||||||
|
|
||||||
@JsName("Object")
|
@JsName("Object")
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
package world.phantasmal.core
|
|
||||||
|
|
||||||
@Suppress("NOTHING_TO_INLINE")
|
|
||||||
actual inline fun Char.fastIsWhitespace(): Boolean =
|
|
||||||
asDynamic() == 0x20 || (asDynamic() >= 0x09 && asDynamic() <= 0x0D)
|
|
||||||
|
|
||||||
@Suppress("NOTHING_TO_INLINE")
|
|
||||||
actual inline fun Char.isDigit(): Boolean =
|
|
||||||
asDynamic() >= 0x30 && asDynamic() <= 0x39
|
|
@ -1,9 +0,0 @@
|
|||||||
@file:JvmName("PrimitiveExtensionsJvm")
|
|
||||||
|
|
||||||
package world.phantasmal.core
|
|
||||||
|
|
||||||
@Suppress("NOTHING_TO_INLINE")
|
|
||||||
actual inline fun Char.fastIsWhitespace(): Boolean = isWhitespace()
|
|
||||||
|
|
||||||
@Suppress("NOTHING_TO_INLINE")
|
|
||||||
actual inline fun Char.isDigit(): Boolean = this in '0'..'9'
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
2
gradlew
vendored
2
gradlew
vendored
@ -72,7 +72,7 @@ case "`uname`" in
|
|||||||
Darwin* )
|
Darwin* )
|
||||||
darwin=true
|
darwin=true
|
||||||
;;
|
;;
|
||||||
MINGW* )
|
MSYS* | MINGW* )
|
||||||
msys=true
|
msys=true
|
||||||
;;
|
;;
|
||||||
NONSTOP* )
|
NONSTOP* )
|
||||||
|
3300
kotlin-js-store/yarn.lock
Normal file
3300
kotlin-js-store/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,8 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Source code generated by the build script goes here. */
|
/** Source code generated by the build script goes here. */
|
||||||
val generatedCommonSrc = File(buildDir, "generated-src/commonMain/kotlin")
|
val generatedCommonSrc =
|
||||||
|
layout.buildDirectory.get().asFile.resolve("generated-src/commonMain/kotlin")
|
||||||
|
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
|
|
||||||
@ -46,7 +47,7 @@ val generateOpcodes = tasks.register("generateOpcodes") {
|
|||||||
|
|
||||||
val packageName = "world.phantasmal.psolib.asm"
|
val packageName = "world.phantasmal.psolib.asm"
|
||||||
val opcodesFile = file("srcGeneration/asm/opcodes.yml")
|
val opcodesFile = file("srcGeneration/asm/opcodes.yml")
|
||||||
val outputFile = File(generatedCommonSrc, "${packageName.replace('.', '/')}/Opcodes.kt")
|
val outputFile = generatedCommonSrc.resolve("${packageName.replace('.', '/')}/Opcodes.kt")
|
||||||
|
|
||||||
inputs.file(opcodesFile)
|
inputs.file(opcodesFile)
|
||||||
outputs.file(outputFile)
|
outputs.file(outputFile)
|
||||||
@ -75,8 +76,8 @@ val generateOpcodes = tasks.register("generateOpcodes") {
|
|||||||
|
|
||||||
fun opcodeToCode(writer: PrintWriter, opcode: Map<String, Any>) {
|
fun opcodeToCode(writer: PrintWriter, opcode: Map<String, Any>) {
|
||||||
val code = (opcode["code"] as String).drop(2).toInt(16)
|
val code = (opcode["code"] as String).drop(2).toInt(16)
|
||||||
val codeStr = code.toString(16).toUpperCase().padStart(2, '0')
|
val codeStr = code.toString(16).uppercase().padStart(2, '0')
|
||||||
val mnemonic = opcode["mnemonic"] as String? ?: "unknown_${codeStr.toLowerCase()}"
|
val mnemonic = opcode["mnemonic"] as String? ?: "unknown_${codeStr.lowercase()}"
|
||||||
val doc = (opcode["doc"] as String?)?.let {
|
val doc = (opcode["doc"] as String?)?.let {
|
||||||
"\"${it.replace("\n", "\\n")}\""
|
"\"${it.replace("\n", "\\n")}\""
|
||||||
}
|
}
|
||||||
@ -87,7 +88,7 @@ fun opcodeToCode(writer: PrintWriter, opcode: Map<String, Any>) {
|
|||||||
.replace("=", "e")
|
.replace("=", "e")
|
||||||
.replace("<", "l")
|
.replace("<", "l")
|
||||||
.replace(">", "g")
|
.replace(">", "g")
|
||||||
.toUpperCase()
|
.uppercase()
|
||||||
|
|
||||||
val stackInteraction = when (stack) {
|
val stackInteraction = when (stack) {
|
||||||
"push" -> "StackInteraction.Push"
|
"push" -> "StackInteraction.Push"
|
||||||
@ -114,7 +115,7 @@ fun opcodeToCode(writer: PrintWriter, opcode: Map<String, Any>) {
|
|||||||
in 0xF900..0xF9FF -> "OPCODES_F9"
|
in 0xF900..0xF9FF -> "OPCODES_F9"
|
||||||
else -> error("Invalid opcode $codeStr ($mnemonic).")
|
else -> error("Invalid opcode $codeStr ($mnemonic).")
|
||||||
}
|
}
|
||||||
val indexStr = (code and 0xFF).toString(16).toUpperCase().padStart(2, '0')
|
val indexStr = (code and 0xFF).toString(16).uppercase().padStart(2, '0')
|
||||||
|
|
||||||
writer.println(
|
writer.println(
|
||||||
"""
|
"""
|
||||||
@ -155,6 +156,7 @@ fun paramsToCode(params: List<Map<String, Any>>, indent: Int): String {
|
|||||||
paramsToCode(it, indent + 4)
|
paramsToCode(it, indent + 4)
|
||||||
} ?: "null"
|
} ?: "null"
|
||||||
})"""
|
})"""
|
||||||
|
|
||||||
"reg_var" -> "RegVarType"
|
"reg_var" -> "RegVarType"
|
||||||
"pointer" -> "PointerType"
|
"pointer" -> "PointerType"
|
||||||
else -> error("Type ${param["type"]} not implemented.")
|
else -> error("Type ${param["type"]} not implemented.")
|
||||||
|
@ -300,6 +300,8 @@ private fun findAndParseSegments(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else -> {}
|
||||||
}
|
}
|
||||||
|
|
||||||
i++
|
i++
|
||||||
@ -819,16 +821,20 @@ fun writeBytecode(bytecodeIr: BytecodeIr, dcGcFormat: Boolean): BytecodeAndLabel
|
|||||||
cursor.writeShort(a.coerceInt().toShort())
|
cursor.writeShort(a.coerceInt().toShort())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
is LabelType -> cursor.writeShort(arg.coerceInt().toShort())
|
is LabelType -> cursor.writeShort(arg.coerceInt().toShort())
|
||||||
|
|
||||||
StringType -> {
|
StringType -> {
|
||||||
val str = arg.coerceString()
|
val str = arg.coerceString()
|
||||||
|
|
||||||
if (dcGcFormat) cursor.writeStringAscii(str, str.length + 1)
|
if (dcGcFormat) cursor.writeStringAscii(str, str.length + 1)
|
||||||
else cursor.writeStringUtf16(str, 2 * str.length + 2)
|
else cursor.writeStringUtf16(str, 2 * str.length + 2)
|
||||||
}
|
}
|
||||||
|
|
||||||
is RegType -> {
|
is RegType -> {
|
||||||
cursor.writeByte(arg.coerceInt().toByte())
|
cursor.writeByte(arg.coerceInt().toByte())
|
||||||
}
|
}
|
||||||
|
|
||||||
RegVarType -> {
|
RegVarType -> {
|
||||||
cursor.writeByte(args.size.toByte())
|
cursor.writeByte(args.size.toByte())
|
||||||
|
|
||||||
@ -836,6 +842,7 @@ fun writeBytecode(bytecodeIr: BytecodeIr, dcGcFormat: Boolean): BytecodeAndLabel
|
|||||||
cursor.writeByte(a.coerceInt().toByte())
|
cursor.writeByte(a.coerceInt().toByte())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> error(
|
else -> error(
|
||||||
"Parameter type ${param.type::class.simpleName} not supported."
|
"Parameter type ${param.type::class.simpleName} not supported."
|
||||||
)
|
)
|
||||||
|
@ -4,7 +4,6 @@ import world.phantasmal.psolib.buffer.Buffer
|
|||||||
|
|
||||||
// TODO: set properties of friendly NPCs based on episode.
|
// TODO: set properties of friendly NPCs based on episode.
|
||||||
internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
||||||
@Suppress("NON_EXHAUSTIVE_WHEN")
|
|
||||||
when (type) {
|
when (type) {
|
||||||
NpcType.FemaleFat -> {
|
NpcType.FemaleFat -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
@ -13,6 +12,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -16432)
|
view.setShort(68, -16432)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.FemaleMacho -> {
|
NpcType.FemaleMacho -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1876)
|
view.setShort(4, 1876)
|
||||||
@ -20,12 +20,14 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -12528)
|
view.setShort(68, -12528)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.FemaleTall -> {
|
NpcType.FemaleTall -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1883)
|
view.setShort(4, 1883)
|
||||||
view.setShort(68, -5504)
|
view.setShort(68, -5504)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.MaleDwarf -> {
|
NpcType.MaleDwarf -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1873)
|
view.setShort(4, 1873)
|
||||||
@ -33,6 +35,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -15456)
|
view.setShort(68, -15456)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.MaleFat -> {
|
NpcType.MaleFat -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1882)
|
view.setShort(4, 1882)
|
||||||
@ -40,6 +43,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -6528)
|
view.setShort(68, -6528)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.MaleMacho -> {
|
NpcType.MaleMacho -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1880)
|
view.setShort(4, 1880)
|
||||||
@ -47,6 +51,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -8576)
|
view.setShort(68, -8576)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.MaleOld -> {
|
NpcType.MaleOld -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1878)
|
view.setShort(4, 1878)
|
||||||
@ -54,6 +59,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -10576)
|
view.setShort(68, -10576)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.BlueSoldier -> {
|
NpcType.BlueSoldier -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1875)
|
view.setShort(4, 1875)
|
||||||
@ -61,6 +67,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -13504)
|
view.setShort(68, -13504)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.RedSoldier -> {
|
NpcType.RedSoldier -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1874)
|
view.setShort(4, 1874)
|
||||||
@ -68,12 +75,14 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -14480)
|
view.setShort(68, -14480)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Principal -> {
|
NpcType.Principal -> {
|
||||||
view.setShort(4, 1888)
|
view.setShort(4, 1888)
|
||||||
view.setShort(10, 5985)
|
view.setShort(10, 5985)
|
||||||
view.setShort(68, -384)
|
view.setShort(68, -384)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Tekker -> {
|
NpcType.Tekker -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1879)
|
view.setShort(4, 1879)
|
||||||
@ -81,6 +90,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -9600)
|
view.setShort(68, -9600)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GuildLady -> {
|
NpcType.GuildLady -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1891)
|
view.setShort(4, 1891)
|
||||||
@ -88,6 +98,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 11584)
|
view.setShort(68, 11584)
|
||||||
view.setShort(70, 1835)
|
view.setShort(70, 1835)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Scientist -> {
|
NpcType.Scientist -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1877)
|
view.setShort(4, 1877)
|
||||||
@ -95,6 +106,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -11552)
|
view.setShort(68, -11552)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Nurse -> {
|
NpcType.Nurse -> {
|
||||||
view.setShort(2, 2)
|
view.setShort(2, 2)
|
||||||
view.setShort(4, 1884)
|
view.setShort(4, 1884)
|
||||||
@ -102,24 +114,28 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -4480)
|
view.setShort(68, -4480)
|
||||||
view.setShort(70, 1834)
|
view.setShort(70, 1834)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Irene -> {
|
NpcType.Irene -> {
|
||||||
view.setShort(4, 1889)
|
view.setShort(4, 1889)
|
||||||
view.setShort(10, 5986)
|
view.setShort(10, 5986)
|
||||||
view.setShort(68, 640)
|
view.setShort(68, 640)
|
||||||
view.setShort(70, 1835)
|
view.setShort(70, 1835)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.ItemShop -> {
|
NpcType.ItemShop -> {
|
||||||
view.setShort(4, 8)
|
view.setShort(4, 8)
|
||||||
view.setShort(10, 6453)
|
view.setShort(10, 6453)
|
||||||
view.setShort(68, 16560)
|
view.setShort(68, 16560)
|
||||||
view.setShort(70, 1176)
|
view.setShort(70, 1176)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Nurse2 -> {
|
NpcType.Nurse2 -> {
|
||||||
view.setShort(4, 2330)
|
view.setShort(4, 2330)
|
||||||
view.setShort(10, 6496)
|
view.setShort(10, 6496)
|
||||||
view.setShort(68, -13280)
|
view.setShort(68, -13280)
|
||||||
view.setShort(70, 1200)
|
view.setShort(70, 1200)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Hildebear -> {
|
NpcType.Hildebear -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 2)
|
view.setShort(8, 2)
|
||||||
@ -128,16 +144,19 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 29968)
|
view.setShort(68, 29968)
|
||||||
view.setShort(70, -29446)
|
view.setShort(70, -29446)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.RagRappy -> {
|
NpcType.RagRappy -> {
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
view.setShort(10, -1)
|
view.setShort(10, -1)
|
||||||
view.setShort(68, 1072)
|
view.setShort(68, 1072)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Monest -> {
|
NpcType.Monest -> {
|
||||||
view.setFloat(48, 5.000000953674316f) // Start number
|
view.setFloat(48, 5.000000953674316f) // Start number
|
||||||
view.setFloat(52, 10.000004768371582f) // Total number
|
view.setFloat(52, 10.000004768371582f) // Total number
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.BarbarousWolf -> {
|
NpcType.BarbarousWolf -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -145,10 +164,12 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 8576)
|
view.setShort(68, 8576)
|
||||||
view.setShort(70, -29445)
|
view.setShort(70, -29445)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Booma -> {
|
NpcType.Booma -> {
|
||||||
view.setFloat(44, 0.30000001192092896f) // Scale x
|
view.setFloat(44, 0.30000001192092896f) // Scale x
|
||||||
view.setFloat(48, 40.00001907348633f) // Idle distance
|
view.setFloat(48, 40.00001907348633f) // Idle distance
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Gobooma -> {
|
NpcType.Gobooma -> {
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
view.setShort(10, -1)
|
view.setShort(10, -1)
|
||||||
@ -157,6 +178,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 11600)
|
view.setShort(68, 11600)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Gigobooma -> {
|
NpcType.Gigobooma -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -164,6 +186,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -4000)
|
view.setShort(68, -4000)
|
||||||
view.setShort(70, -29446)
|
view.setShort(70, -29446)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dragon -> {
|
NpcType.Dragon -> {
|
||||||
view.setShort(4, 1173)
|
view.setShort(4, 1173)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -171,6 +194,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 24624)
|
view.setShort(68, 24624)
|
||||||
view.setShort(70, -29446)
|
view.setShort(70, -29446)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GrassAssassin -> view.setShort(8, 4)
|
NpcType.GrassAssassin -> view.setShort(8, 4)
|
||||||
NpcType.PoisonLily -> view.setShort(8, 4)
|
NpcType.PoisonLily -> view.setShort(8, 4)
|
||||||
NpcType.NanoDragon -> view.setShort(8, 3)
|
NpcType.NanoDragon -> view.setShort(8, 3)
|
||||||
@ -187,6 +211,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -11088)
|
view.setShort(68, -11088)
|
||||||
view.setShort(70, -29445)
|
view.setShort(70, -29445)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dubchic -> {
|
NpcType.Dubchic -> {
|
||||||
view.setShort(4, 2626)
|
view.setShort(4, 2626)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -194,6 +219,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -25504)
|
view.setShort(68, -25504)
|
||||||
view.setShort(70, 561)
|
view.setShort(70, 561)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Gilchic -> {
|
NpcType.Gilchic -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -202,6 +228,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 5968)
|
view.setShort(68, 5968)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Garanz -> {
|
NpcType.Garanz -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -209,6 +236,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26128)
|
view.setShort(68, -26128)
|
||||||
view.setShort(70, 561)
|
view.setShort(70, 561)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SinowBeat -> {
|
NpcType.SinowBeat -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -216,6 +244,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 6288)
|
view.setShort(68, 6288)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SinowGold -> {
|
NpcType.SinowGold -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -224,6 +253,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 8048)
|
view.setShort(68, 8048)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Canadine -> {
|
NpcType.Canadine -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -231,6 +261,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 8496)
|
view.setShort(68, 8496)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Canane -> {
|
NpcType.Canane -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -238,6 +269,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 7264)
|
view.setShort(68, 7264)
|
||||||
view.setShort(70, -29444)
|
view.setShort(70, -29444)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dubswitch -> {
|
NpcType.Dubswitch -> {
|
||||||
view.setShort(4, 2626)
|
view.setShort(4, 2626)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -245,6 +277,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -16736)
|
view.setShort(68, -16736)
|
||||||
view.setShort(70, 561)
|
view.setShort(70, 561)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.VolOptPart1 -> view.setShort(6, 35) // Clone count
|
NpcType.VolOptPart1 -> view.setShort(6, 35) // Clone count
|
||||||
NpcType.VolOptPart2 -> view.setShort(8, 13)
|
NpcType.VolOptPart2 -> view.setShort(8, 13)
|
||||||
NpcType.DarkFalz -> {
|
NpcType.DarkFalz -> {
|
||||||
@ -254,6 +287,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 25008)
|
view.setShort(68, 25008)
|
||||||
view.setShort(70, -29446)
|
view.setShort(70, -29446)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Hildebear2 -> {
|
NpcType.Hildebear2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -262,6 +296,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, -32759)
|
view.setShort(70, -32759)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.RagRappy2 -> {
|
NpcType.RagRappy2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -269,6 +304,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, 8201)
|
view.setShort(70, 8201)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Monest2 -> {
|
NpcType.Monest2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -278,6 +314,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, -12252)
|
view.setShort(70, -12252)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.PoisonLily2 -> {
|
NpcType.PoisonLily2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -285,6 +322,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, 8230)
|
view.setShort(70, 8230)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GrassAssassin2 -> {
|
NpcType.GrassAssassin2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -292,6 +330,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, 24595)
|
view.setShort(70, 24595)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dimenian2 -> {
|
NpcType.Dimenian2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -299,6 +338,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, -4086)
|
view.setShort(70, -4086)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.LaDimenian2 -> {
|
NpcType.LaDimenian2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -306,6 +346,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, -16367)
|
view.setShort(70, -16367)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SoDimenian2 -> {
|
NpcType.SoDimenian2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -314,6 +355,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7040)
|
view.setShort(68, -7040)
|
||||||
view.setShort(70, 8372)
|
view.setShort(70, 8372)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.DarkBelra2 -> {
|
NpcType.DarkBelra2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 1)
|
view.setShort(8, 1)
|
||||||
@ -321,6 +363,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7040)
|
view.setShort(68, -7040)
|
||||||
view.setShort(70, -32642)
|
view.setShort(70, -32642)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.BarbaRay -> {
|
NpcType.BarbaRay -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 14)
|
view.setShort(8, 14)
|
||||||
@ -328,6 +371,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -2688)
|
view.setShort(68, -2688)
|
||||||
view.setShort(70, 24576)
|
view.setShort(70, 24576)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SavageWolf2 -> {
|
NpcType.SavageWolf2 -> {
|
||||||
view.setShort(4, 11785)
|
view.setShort(4, 11785)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -335,6 +379,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 8250)
|
view.setShort(70, 8250)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.BarbarousWolf2 -> {
|
NpcType.BarbarousWolf2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -342,6 +387,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -32650)
|
view.setShort(70, -32650)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.PanArms2 -> {
|
NpcType.PanArms2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -349,6 +395,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -16251)
|
view.setShort(70, -16251)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dubchic2 -> {
|
NpcType.Dubchic2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -356,6 +403,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 16513)
|
view.setShort(70, 16513)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Gilchic2 -> {
|
NpcType.Gilchic2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -363,6 +411,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -32654)
|
view.setShort(70, -32654)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Garanz2 -> {
|
NpcType.Garanz2 -> {
|
||||||
view.setShort(4, 27144)
|
view.setShort(4, 27144)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -370,6 +419,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 24683)
|
view.setShort(70, 24683)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dubswitch2 -> {
|
NpcType.Dubswitch2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -377,6 +427,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -20363)
|
view.setShort(70, -20363)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Delsaber2 -> {
|
NpcType.Delsaber2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -384,6 +435,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 16513)
|
view.setShort(70, 16513)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.ChaosSorcerer2 -> {
|
NpcType.ChaosSorcerer2 -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 4)
|
view.setShort(8, 4)
|
||||||
@ -391,6 +443,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7296)
|
view.setShort(68, -7296)
|
||||||
view.setShort(70, -7963)
|
view.setShort(70, -7963)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GolDragon -> {
|
NpcType.GolDragon -> {
|
||||||
view.setShort(4, -19963)
|
view.setShort(4, -19963)
|
||||||
view.setShort(8, 15)
|
view.setShort(8, 15)
|
||||||
@ -398,6 +451,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -3712)
|
view.setShort(68, -3712)
|
||||||
view.setShort(70, 16555)
|
view.setShort(70, 16555)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SinowBerill -> {
|
NpcType.SinowBerill -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -407,6 +461,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 47)
|
view.setShort(70, 47)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SinowSpigell -> {
|
NpcType.SinowSpigell -> {
|
||||||
view.setShort(4, 880)
|
view.setShort(4, 880)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -414,6 +469,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -11584)
|
view.setShort(68, -11584)
|
||||||
view.setShort(70, 1163)
|
view.setShort(70, 1163)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Merillia -> {
|
NpcType.Merillia -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -423,6 +479,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 16456)
|
view.setShort(70, 16456)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Meriltas -> {
|
NpcType.Meriltas -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -432,6 +489,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 16456)
|
view.setShort(70, 16456)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Mericarol -> {
|
NpcType.Mericarol -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -441,6 +499,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -4016)
|
view.setShort(70, -4016)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Mericus -> {
|
NpcType.Mericus -> {
|
||||||
view.setShort(4, 32010)
|
view.setShort(4, 32010)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -450,6 +509,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 28762)
|
view.setShort(70, 28762)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Merikle -> {
|
NpcType.Merikle -> {
|
||||||
view.setShort(4, 32010)
|
view.setShort(4, 32010)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -459,6 +519,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -3997)
|
view.setShort(70, -3997)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.UlGibbon -> {
|
NpcType.UlGibbon -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -467,6 +528,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 20554)
|
view.setShort(70, 20554)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.ZolGibbon -> {
|
NpcType.ZolGibbon -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -474,6 +536,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26688)
|
view.setShort(68, -26688)
|
||||||
view.setShort(70, 565)
|
view.setShort(70, 565)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Gibbles -> {
|
NpcType.Gibbles -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -483,6 +546,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -12210)
|
view.setShort(70, -12210)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Gee -> {
|
NpcType.Gee -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 6)
|
view.setShort(8, 6)
|
||||||
@ -490,6 +554,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -4024)
|
view.setShort(70, -4024)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GiGue -> {
|
NpcType.GiGue -> {
|
||||||
view.setShort(4, 32010)
|
view.setShort(4, 32010)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -499,6 +564,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 12374)
|
view.setShort(70, 12374)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.IllGill -> {
|
NpcType.IllGill -> {
|
||||||
view.setShort(4, 4104)
|
view.setShort(4, 4104)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -506,6 +572,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 24639)
|
view.setShort(70, 24639)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.DelLily -> {
|
NpcType.DelLily -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -513,6 +580,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26576)
|
view.setShort(68, -26576)
|
||||||
view.setShort(70, 564)
|
view.setShort(70, 564)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Epsilon -> {
|
NpcType.Epsilon -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 17)
|
view.setShort(8, 17)
|
||||||
@ -520,6 +588,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -4224)
|
view.setShort(68, -4224)
|
||||||
view.setShort(70, -16379)
|
view.setShort(70, -16379)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GalGryphon -> {
|
NpcType.GalGryphon -> {
|
||||||
view.setShort(4, 1173)
|
view.setShort(4, 1173)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -527,6 +596,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 24624)
|
view.setShort(68, 24624)
|
||||||
view.setShort(70, -29446)
|
view.setShort(70, -29446)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Deldepth -> {
|
NpcType.Deldepth -> {
|
||||||
view.setShort(4, 2095)
|
view.setShort(4, 2095)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -534,6 +604,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26352)
|
view.setShort(68, -26352)
|
||||||
view.setShort(70, 665)
|
view.setShort(70, 665)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Delbiter -> {
|
NpcType.Delbiter -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -545,6 +616,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 24639)
|
view.setShort(70, 24639)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dolmolm -> {
|
NpcType.Dolmolm -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -553,6 +625,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, 12370)
|
view.setShort(70, 12370)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dolmdarl -> {
|
NpcType.Dolmdarl -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -561,6 +634,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -7552)
|
view.setShort(68, -7552)
|
||||||
view.setShort(70, -4001)
|
view.setShort(70, -4001)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Morfos -> {
|
NpcType.Morfos -> {
|
||||||
view.setShort(4, 1993)
|
view.setShort(4, 1993)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -568,6 +642,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -25424)
|
view.setShort(68, -25424)
|
||||||
view.setShort(70, 561)
|
view.setShort(70, 561)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Recobox -> {
|
NpcType.Recobox -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -575,6 +650,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26160)
|
view.setShort(68, -26160)
|
||||||
view.setShort(70, 686)
|
view.setShort(70, 686)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SinowZoa -> {
|
NpcType.SinowZoa -> {
|
||||||
view.setShort(4, 2634)
|
view.setShort(4, 2634)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -583,6 +659,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -19488)
|
view.setShort(68, -19488)
|
||||||
view.setShort(70, 665)
|
view.setShort(70, 665)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SinowZele -> {
|
NpcType.SinowZele -> {
|
||||||
view.setShort(4, 2634)
|
view.setShort(4, 2634)
|
||||||
view.setShort(8, 11)
|
view.setShort(8, 11)
|
||||||
@ -590,6 +667,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -25152)
|
view.setShort(68, -25152)
|
||||||
view.setShort(70, 665)
|
view.setShort(70, 665)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.OlgaFlow -> {
|
NpcType.OlgaFlow -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 13)
|
view.setShort(8, 13)
|
||||||
@ -597,6 +675,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -4480)
|
view.setShort(68, -4480)
|
||||||
view.setShort(70, -28572)
|
view.setShort(70, -28572)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SandRappy -> {
|
NpcType.SandRappy -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -604,6 +683,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -27344)
|
view.setShort(68, -27344)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.DelRappy -> {
|
NpcType.DelRappy -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -611,6 +691,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -17168)
|
view.setShort(68, -17168)
|
||||||
view.setShort(70, 410)
|
view.setShort(70, 410)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Astark -> {
|
NpcType.Astark -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -618,6 +699,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26896)
|
view.setShort(68, -26896)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SatelliteLizard -> {
|
NpcType.SatelliteLizard -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -625,6 +707,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -27088)
|
view.setShort(68, -27088)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Yowie -> {
|
NpcType.Yowie -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -633,6 +716,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -25872)
|
view.setShort(68, -25872)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.MerissaA -> {
|
NpcType.MerissaA -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -640,6 +724,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -16512)
|
view.setShort(68, -16512)
|
||||||
view.setShort(70, 542)
|
view.setShort(70, 542)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.MerissaAA -> {
|
NpcType.MerissaAA -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 8)
|
view.setShort(8, 8)
|
||||||
@ -647,6 +732,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -27328)
|
view.setShort(68, -27328)
|
||||||
view.setShort(70, 1230)
|
view.setShort(70, 1230)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Girtablulu -> {
|
NpcType.Girtablulu -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -654,6 +740,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26256)
|
view.setShort(68, -26256)
|
||||||
view.setShort(70, 459)
|
view.setShort(70, 459)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Zu -> {
|
NpcType.Zu -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -661,6 +748,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -28304)
|
view.setShort(68, -28304)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Pazuzu -> {
|
NpcType.Pazuzu -> {
|
||||||
view.setShort(4, 937)
|
view.setShort(4, 937)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -668,6 +756,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -15216)
|
view.setShort(68, -15216)
|
||||||
view.setShort(70, 410)
|
view.setShort(70, 410)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Boota -> {
|
NpcType.Boota -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -675,6 +764,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -27216)
|
view.setShort(68, -27216)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.ZeBoota -> {
|
NpcType.ZeBoota -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -682,6 +772,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -20304)
|
view.setShort(68, -20304)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.BaBoota -> {
|
NpcType.BaBoota -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -689,6 +780,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -14800)
|
view.setShort(68, -14800)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Dorphon -> {
|
NpcType.Dorphon -> {
|
||||||
view.setShort(4, 2308)
|
view.setShort(4, 2308)
|
||||||
view.setShort(8, 5)
|
view.setShort(8, 5)
|
||||||
@ -696,6 +788,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -26480)
|
view.setShort(68, -26480)
|
||||||
view.setShort(70, 616)
|
view.setShort(70, 616)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.DorphonEclair -> {
|
NpcType.DorphonEclair -> {
|
||||||
view.setShort(4, 951)
|
view.setShort(4, 951)
|
||||||
view.setShort(8, 3)
|
view.setShort(8, 3)
|
||||||
@ -703,6 +796,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -30064)
|
view.setShort(68, -30064)
|
||||||
view.setShort(70, 410)
|
view.setShort(70, 410)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Goran -> {
|
NpcType.Goran -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 8)
|
view.setShort(8, 8)
|
||||||
@ -710,6 +804,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -27216)
|
view.setShort(68, -27216)
|
||||||
view.setShort(70, 610)
|
view.setShort(70, 610)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.PyroGoran -> {
|
NpcType.PyroGoran -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -717,6 +812,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -16384)
|
view.setShort(68, -16384)
|
||||||
view.setShort(70, 542)
|
view.setShort(70, 542)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.GoranDetonator -> {
|
NpcType.GoranDetonator -> {
|
||||||
view.setShort(4, -1)
|
view.setShort(4, -1)
|
||||||
view.setShort(8, 7)
|
view.setShort(8, 7)
|
||||||
@ -724,6 +820,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, -16384)
|
view.setShort(68, -16384)
|
||||||
view.setShort(70, 542)
|
view.setShort(70, 542)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.SaintMilion -> {
|
NpcType.SaintMilion -> {
|
||||||
view.setShort(4, 1297)
|
view.setShort(4, 1297)
|
||||||
view.setShort(6, 24) // Clone count
|
view.setShort(6, 24) // Clone count
|
||||||
@ -732,6 +829,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 28144)
|
view.setShort(68, 28144)
|
||||||
view.setShort(70, 673)
|
view.setShort(70, 673)
|
||||||
}
|
}
|
||||||
|
|
||||||
NpcType.Shambertin -> {
|
NpcType.Shambertin -> {
|
||||||
view.setShort(4, 1362)
|
view.setShort(4, 1362)
|
||||||
view.setShort(6, 24) // Clone count
|
view.setShort(6, 24) // Clone count
|
||||||
@ -741,5 +839,7 @@ internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
|||||||
view.setShort(68, 31280)
|
view.setShort(68, 31280)
|
||||||
view.setShort(70, 491)
|
view.setShort(70, 491)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else -> {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,7 @@ plugins {
|
|||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
|
||||||
/** Source code generated by the build script goes here. */
|
/** Source code generated by the build script goes here. */
|
||||||
val generatedSrc = File(buildDir, "generated-src/main/kotlin")
|
val generatedSrc = layout.buildDirectory.get().asFile.resolve("generated-src/main/kotlin")
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
@ -25,19 +25,21 @@ val generateVersionInfo by tasks.registering {
|
|||||||
group = "code generation"
|
group = "code generation"
|
||||||
|
|
||||||
val packageName = "world.phantasmal.psoserv"
|
val packageName = "world.phantasmal.psoserv"
|
||||||
val outputFile = File(generatedSrc, "${packageName.replace('.', '/')}/VersionInfo.kt")
|
val outputFile = generatedSrc.resolve("${packageName.replace('.', '/')}/VersionInfo.kt")
|
||||||
|
|
||||||
inputs.property("version", version)
|
inputs.property("version", version)
|
||||||
outputs.file(outputFile)
|
outputs.file(outputFile)
|
||||||
|
|
||||||
doLast {
|
doLast {
|
||||||
outputFile.writeText("""
|
outputFile.writeText(
|
||||||
|
"""
|
||||||
package $packageName
|
package $packageName
|
||||||
|
|
||||||
object VersionInfo {
|
object VersionInfo {
|
||||||
val version: String = "$version"
|
val version: String = "$version"
|
||||||
}
|
}
|
||||||
""".trimIndent())
|
""".trimIndent()
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,7 +48,7 @@ tasks.withType<KotlinCompile>().configureEach {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val mainClassFqn = "world.phantasmal.psoserv.MainKt"
|
val mainClassFqn = "world.phantasmal.psoserv.MainKt"
|
||||||
val nativeAgentOutputDir = File(buildDir, "agent-output")
|
val nativeAgentOutputDir = layout.buildDirectory.get().asFile.resolve("agent-output")
|
||||||
|
|
||||||
application {
|
application {
|
||||||
mainClass.set(mainClassFqn)
|
mainClass.set(mainClassFqn)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
plugins {
|
||||||
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
||||||
|
}
|
||||||
|
|
||||||
rootProject.name = "phantasmal-world"
|
rootProject.name = "phantasmal-world"
|
||||||
|
|
||||||
include(
|
include(
|
||||||
|
@ -4,8 +4,14 @@ import kotlinx.coroutines.DelicateCoroutinesApi
|
|||||||
import kotlinx.coroutines.GlobalScope
|
import kotlinx.coroutines.GlobalScope
|
||||||
import kotlinx.coroutines.promise
|
import kotlinx.coroutines.promise
|
||||||
|
|
||||||
internal actual fun testAsync(block: suspend () -> Unit): dynamic =
|
// We need to return the promise here while still letting the type checker think we're not returning
|
||||||
|
// anything, i.e. returning Unit. The Mocha JS test framework needs this promise to be able to wait
|
||||||
|
// for test completion. This is a giant hack, and at this point we should probably switch to using
|
||||||
|
// the kotlinx-coroutines-test library.
|
||||||
|
internal actual fun testAsync(block: suspend () -> Unit): Unit =
|
||||||
|
@Suppress("UnsafeCastFromDynamic")
|
||||||
@OptIn(DelicateCoroutinesApi::class)
|
@OptIn(DelicateCoroutinesApi::class)
|
||||||
GlobalScope.promise { block() }
|
GlobalScope.promise { block() }.asDynamic()
|
||||||
|
|
||||||
|
// KJS is relatively slow, so we don't execute the slow tests on KJS.
|
||||||
internal actual fun canExecuteSlowTests(): Boolean = false
|
internal actual fun canExecuteSlowTests(): Boolean = false
|
||||||
|
@ -4,16 +4,20 @@ plugins {
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
js {
|
||||||
compilations.configureEach {
|
|
||||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
||||||
}
|
|
||||||
|
|
||||||
binaries.executable()
|
binaries.executable()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
sourceSets {
|
||||||
api(project(":web:shared"))
|
getByName("jsMain") {
|
||||||
|
dependencies {
|
||||||
|
api(project(":web:shared"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
testImplementation(project(":test-utils"))
|
getByName("jsTest") {
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":test-utils"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -379,6 +379,8 @@ class AsmAnalyser {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else -> {}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Response.GetHighlights(requestId, results)
|
return Response.GetHighlights(requestId, results)
|
@ -15,7 +15,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tasks.register<JavaExec>("generateAssets") {
|
tasks.register<JavaExec>("generateAssets") {
|
||||||
val outputFile = File(buildDir, "generatedAssets")
|
val outputFile = layout.buildDirectory.get().asFile.resolve("generatedAssets")
|
||||||
outputs.dir(outputFile)
|
outputs.dir(outputFile)
|
||||||
|
|
||||||
classpath = sourceSets.main.get().runtimeClasspath
|
classpath = sourceSets.main.get().runtimeClasspath
|
||||||
|
@ -1,62 +1,70 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("world.phantasmal.js")
|
id("world.phantasmal.js")
|
||||||
kotlin("plugin.serialization")
|
|
||||||
}
|
|
||||||
|
|
||||||
kotlin {
|
|
||||||
js {
|
|
||||||
compilations.configureEach {
|
|
||||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
||||||
}
|
|
||||||
browser {
|
|
||||||
commonWebpackConfig {
|
|
||||||
cssSupport.enabled = true
|
|
||||||
}
|
|
||||||
runTask {
|
|
||||||
devServer = devServer!!.copy(
|
|
||||||
open = false,
|
|
||||||
port = 1623,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
binaries.executable()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val ktorVersion: String by project.extra
|
val ktorVersion: String by project.extra
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
|
|
||||||
dependencies {
|
kotlin {
|
||||||
implementation(project(":psolib"))
|
js {
|
||||||
implementation(project(":webui"))
|
browser {
|
||||||
implementation(project(":web:shared"))
|
commonWebpackConfig {
|
||||||
|
cssSupport { enabled.set(true) }
|
||||||
|
}
|
||||||
|
runTask {
|
||||||
|
devServerProperty.set(
|
||||||
|
devServerProperty.get().copy(
|
||||||
|
open = false,
|
||||||
|
port = 1623,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
binaries.executable()
|
||||||
|
}
|
||||||
|
|
||||||
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
sourceSets {
|
||||||
implementation("io.ktor:ktor-client-serialization:$ktorVersion")
|
getByName("jsMain") {
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
dependencies {
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.2.1")
|
implementation(project(":psolib"))
|
||||||
implementation(npm("golden-layout", "^1.5.9"))
|
implementation(project(":webui"))
|
||||||
implementation(npm("monaco-editor", "0.26.1"))
|
implementation(project(":web:shared"))
|
||||||
implementation(npm("three", "^0.128.0"))
|
|
||||||
implementation(npm("javascript-lp-solver", "0.4.17"))
|
|
||||||
|
|
||||||
implementation(devNpm("file-loader", "^6.2.0"))
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
||||||
implementation(devNpm("monaco-editor-webpack-plugin", "4.1.1"))
|
implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion")
|
||||||
|
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktorVersion")
|
||||||
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
||||||
|
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0")
|
||||||
|
implementation(npm("golden-layout", "^1.5.9"))
|
||||||
|
implementation(npm("monaco-editor", "0.26.1"))
|
||||||
|
implementation(npm("three", "^0.128.0"))
|
||||||
|
implementation(npm("javascript-lp-solver", "0.4.17"))
|
||||||
|
|
||||||
testImplementation(project(":test-utils"))
|
implementation(devNpm("file-loader", "^6.2.0"))
|
||||||
|
implementation(devNpm("monaco-editor-webpack-plugin", "4.1.1"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getByName("jsTest") {
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":test-utils"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val copyAssemblyWorkerJsTask = tasks.register<Copy>("copyAssemblyWorkerJs") {
|
val copyAssemblyWorkerJsTask = tasks.register<Copy>("copyAssemblyWorkerJs") {
|
||||||
dependsOn(":web:assembly-worker:build")
|
dependsOn(":web:assembly-worker:build")
|
||||||
|
|
||||||
val workerDist = project(":web:assembly-worker").buildDir.resolve("distributions")
|
val workerDist =
|
||||||
|
project(":web:assembly-worker").layout.buildDirectory.get().asFile.resolve("dist/js/productionExecutable")
|
||||||
|
|
||||||
from(workerDist.resolve("assembly-worker.js"), workerDist.resolve("assembly-worker.js.map"))
|
from(workerDist.resolve("assembly-worker.js"), workerDist.resolve("assembly-worker.js.map"))
|
||||||
into(buildDir.resolve("processedResources/js/main"))
|
into(layout.buildDirectory.get().asFile.resolve("processedResources/js/main"))
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Figure out how to make this work with --continuous.
|
// TODO: Figure out how to make this work with --continuous.
|
||||||
tasks.named("processResources").configure { dependsOn(copyAssemblyWorkerJsTask) }
|
tasks.named("jsProcessResources").configure { dependsOn(copyAssemblyWorkerJsTask) }
|
||||||
|
|
||||||
tasks.register<Copy>("generateAssets") {
|
tasks.register<Copy>("generateAssets") {
|
||||||
dependsOn(":web:assets-generation:generateAssets")
|
dependsOn(":web:assets-generation:generateAssets")
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
package world.phantasmal.web
|
package world.phantasmal.web
|
||||||
|
|
||||||
import io.ktor.client.*
|
import io.ktor.client.*
|
||||||
import io.ktor.client.features.json.*
|
import io.ktor.client.plugins.contentnegotiation.*
|
||||||
import io.ktor.client.features.json.serializer.*
|
import io.ktor.http.*
|
||||||
|
import io.ktor.serialization.kotlinx.*
|
||||||
import kotlinx.browser.document
|
import kotlinx.browser.document
|
||||||
import kotlinx.browser.window
|
import kotlinx.browser.window
|
||||||
import kotlinx.coroutines.cancel
|
import kotlinx.coroutines.cancel
|
||||||
@ -49,8 +50,8 @@ private fun init(): Disposable {
|
|||||||
val rootElement = document.body!!.root()
|
val rootElement = document.body!!.root()
|
||||||
|
|
||||||
val httpClient = HttpClient {
|
val httpClient = HttpClient {
|
||||||
install(JsonFeature) {
|
install(ContentNegotiation) {
|
||||||
serializer = KotlinxSerializer(JSON_FORMAT)
|
serialization(ContentType.Application.Json, JSON_FORMAT)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
disposer.add(disposable { httpClient.cancel() })
|
disposer.add(disposable { httpClient.cancel() })
|
@ -58,7 +58,7 @@ fun euler(x: Double, y: Double, z: Double): Euler =
|
|||||||
fun Euler.toQuaternion(): Quaternion =
|
fun Euler.toQuaternion(): Quaternion =
|
||||||
Quaternion().setFromEuler(this)
|
Quaternion().setFromEuler(this)
|
||||||
|
|
||||||
@OptIn(ExperimentalContracts::class)
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun Object3D.isMesh(): Boolean {
|
inline fun Object3D.isMesh(): Boolean {
|
||||||
contract {
|
contract {
|
||||||
returns(true) implies (this@isMesh is Mesh)
|
returns(true) implies (this@isMesh is Mesh)
|
||||||
@ -67,7 +67,7 @@ inline fun Object3D.isMesh(): Boolean {
|
|||||||
return unsafeCast<Mesh>().isMesh
|
return unsafeCast<Mesh>().isMesh
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalContracts::class)
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun Object3D.isSkinnedMesh(): Boolean {
|
inline fun Object3D.isSkinnedMesh(): Boolean {
|
||||||
contract {
|
contract {
|
||||||
returns(true) implies (this@isSkinnedMesh is SkinnedMesh)
|
returns(true) implies (this@isSkinnedMesh is SkinnedMesh)
|
@ -0,0 +1,43 @@
|
|||||||
|
package world.phantasmal.web.core.loading
|
||||||
|
|
||||||
|
import io.ktor.client.*
|
||||||
|
import io.ktor.client.call.*
|
||||||
|
import io.ktor.client.request.*
|
||||||
|
import io.ktor.client.statement.*
|
||||||
|
import io.ktor.util.reflect.*
|
||||||
|
import io.ktor.utils.io.js.*
|
||||||
|
import kotlinx.browser.window
|
||||||
|
import org.khronos.webgl.ArrayBuffer
|
||||||
|
|
||||||
|
class AssetLoader(
|
||||||
|
private val httpClient: HttpClient,
|
||||||
|
private val origin: String = window.location.origin,
|
||||||
|
private val basePath: String = defaultBasePath(),
|
||||||
|
) {
|
||||||
|
suspend inline fun <reified T : Any> load(path: String): T =
|
||||||
|
load(path, typeInfo<T>())
|
||||||
|
|
||||||
|
suspend fun <T : Any> load(path: String, typeInfo: TypeInfo): T =
|
||||||
|
get(path).body(typeInfo)
|
||||||
|
|
||||||
|
suspend fun loadArrayBuffer(path: String): ArrayBuffer =
|
||||||
|
get(path).bodyAsChannel().readRemaining().readArrayBuffer()
|
||||||
|
|
||||||
|
private suspend fun get(path: String): HttpResponse =
|
||||||
|
httpClient.get("$origin$basePath$path")
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
fun defaultBasePath(): String {
|
||||||
|
val pathname = window.location.pathname
|
||||||
|
|
||||||
|
val appPath =
|
||||||
|
if (pathname.endsWith(".html")) {
|
||||||
|
pathname.substring(0, pathname.lastIndexOf('/'))
|
||||||
|
} else {
|
||||||
|
pathname.removeSuffix("/")
|
||||||
|
}
|
||||||
|
|
||||||
|
return "$appPath/assets"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package world.phantasmal.web.questEditor.loading
|
package world.phantasmal.web.core.loading
|
||||||
|
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
import world.phantasmal.core.disposable.TrackedDisposable
|
import world.phantasmal.core.disposable.TrackedDisposable
|
@ -11,10 +11,14 @@ fun vec2ToThree(v: Vec2): Vector2 = Vector2(v.x.toDouble(), v.y.toDouble())
|
|||||||
|
|
||||||
fun vec3ToThree(v: Vec3): Vector3 = Vector3(v.x.toDouble(), v.y.toDouble(), v.z.toDouble())
|
fun vec3ToThree(v: Vec3): Vector3 = Vector3(v.x.toDouble(), v.y.toDouble(), v.z.toDouble())
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun Vector3.setFromVec3(v: Vec3) {
|
inline fun Vector3.setFromVec3(v: Vec3) {
|
||||||
set(v.x.toDouble(), v.y.toDouble(), v.z.toDouble())
|
set(v.x.toDouble(), v.y.toDouble(), v.z.toDouble())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun Euler.setFromVec3(v: Vec3) {
|
inline fun Euler.setFromVec3(v: Vec3) {
|
||||||
set(v.x.toDouble(), v.y.toDouble(), v.z.toDouble())
|
set(v.x.toDouble(), v.y.toDouble(), v.z.toDouble())
|
||||||
}
|
}
|
@ -4,7 +4,7 @@ import world.phantasmal.core.unsafe.UnsafeMap
|
|||||||
import world.phantasmal.psolib.fileFormats.quest.NpcType
|
import world.phantasmal.psolib.fileFormats.quest.NpcType
|
||||||
import world.phantasmal.web.core.loading.AssetLoader
|
import world.phantasmal.web.core.loading.AssetLoader
|
||||||
import world.phantasmal.web.core.models.Server
|
import world.phantasmal.web.core.models.Server
|
||||||
import world.phantasmal.web.questEditor.loading.LoadingCache
|
import world.phantasmal.web.core.loading.LoadingCache
|
||||||
import world.phantasmal.web.shared.dto.Difficulty
|
import world.phantasmal.web.shared.dto.Difficulty
|
||||||
import world.phantasmal.web.shared.dto.EnemyDrop
|
import world.phantasmal.web.shared.dto.EnemyDrop
|
||||||
import world.phantasmal.web.shared.dto.ItemType
|
import world.phantasmal.web.shared.dto.ItemType
|
@ -2,7 +2,7 @@ package world.phantasmal.web.core.stores
|
|||||||
|
|
||||||
import world.phantasmal.web.core.loading.AssetLoader
|
import world.phantasmal.web.core.loading.AssetLoader
|
||||||
import world.phantasmal.web.core.models.Server
|
import world.phantasmal.web.core.models.Server
|
||||||
import world.phantasmal.web.questEditor.loading.LoadingCache
|
import world.phantasmal.web.core.loading.LoadingCache
|
||||||
import world.phantasmal.web.shared.dto.ItemType
|
import world.phantasmal.web.shared.dto.ItemType
|
||||||
import world.phantasmal.webui.stores.Store
|
import world.phantasmal.webui.stores.Store
|
||||||
|
|
@ -91,9 +91,11 @@ class DockWidget(
|
|||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logger.error(e) { """Couldn't instantiate widget with ID "$id".""" }
|
logger.error(e) { """Couldn't instantiate widget with ID "$id".""" }
|
||||||
|
|
||||||
node.addChild(UnavailableWidget(
|
node.addChild(
|
||||||
message = "Something went wrong while initializing this tab.",
|
UnavailableWidget(
|
||||||
))
|
message = "Something went wrong while initializing this tab.",
|
||||||
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
idToChildWidget[id] = widget
|
idToChildWidget[id] = widget
|
||||||
@ -239,7 +241,7 @@ class DockWidget(
|
|||||||
|
|
||||||
"component" -> {
|
"component" -> {
|
||||||
val id =
|
val id =
|
||||||
(item.unsafeCast<GoldenLayout.ComponentConfig>()).componentName as String?
|
(item.unsafeCast<GoldenLayout.ComponentConfig>()).componentName
|
||||||
val title = item.title
|
val title = item.title
|
||||||
|
|
||||||
if (id == null || title == null) {
|
if (id == null || title == null) {
|
||||||
@ -257,7 +259,8 @@ class DockWidget(
|
|||||||
// Use #pw-root for higher specificity than the default GoldenLayout CSS.
|
// Use #pw-root for higher specificity than the default GoldenLayout CSS.
|
||||||
@Suppress("CssUnusedSymbol", "CssUnresolvedCustomProperty", "CssInvalidPropertyValue")
|
@Suppress("CssUnusedSymbol", "CssUnresolvedCustomProperty", "CssInvalidPropertyValue")
|
||||||
// language=css
|
// language=css
|
||||||
style("""
|
style(
|
||||||
|
"""
|
||||||
.pw-core-dock {
|
.pw-core-dock {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@ -348,7 +351,8 @@ class DockWidget(
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: hsla(0, 0%, 50%, 0.2);
|
background-color: hsla(0, 0%, 50%, 0.2);
|
||||||
}
|
}
|
||||||
""".trimIndent())
|
""".trimIndent()
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -55,7 +55,7 @@ external class GoldenLayout(configuration: Config, container: Element = definedE
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface ComponentConfig : ItemConfig {
|
interface ComponentConfig : ItemConfig {
|
||||||
var componentName: String
|
var componentName: String?
|
||||||
var componentState: Any?
|
var componentState: Any?
|
||||||
}
|
}
|
||||||
|
|
@ -45,9 +45,9 @@ external interface ITokenThemeRule {
|
|||||||
var fontStyle: String?
|
var fontStyle: String?
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class ScrollType {
|
sealed external class ScrollType {
|
||||||
Smooth /* = 0 */,
|
object Smooth : ScrollType /* = 0 */
|
||||||
Immediate /* = 1 */
|
object Immediate : ScrollType /* = 1 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface IDimension {
|
external interface IDimension {
|
||||||
@ -134,21 +134,21 @@ external interface IEditor {
|
|||||||
fun setModel(model: ITextModel?)
|
fun setModel(model: ITextModel?)
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class MouseTargetType {
|
sealed external class MouseTargetType {
|
||||||
UNKNOWN /* = 0 */,
|
object UNKNOWN : MouseTargetType /* = 0 */
|
||||||
TEXTAREA /* = 1 */,
|
object TEXTAREA : MouseTargetType /* = 1 */
|
||||||
GUTTER_GLYPH_MARGIN /* = 2 */,
|
object GUTTER_GLYPH_MARGIN : MouseTargetType /* = 2 */
|
||||||
GUTTER_LINE_NUMBERS /* = 3 */,
|
object GUTTER_LINE_NUMBERS : MouseTargetType /* = 3 */
|
||||||
GUTTER_LINE_DECORATIONS /* = 4 */,
|
object GUTTER_LINE_DECORATIONS : MouseTargetType /* = 4 */
|
||||||
GUTTER_VIEW_ZONE /* = 5 */,
|
object GUTTER_VIEW_ZONE : MouseTargetType /* = 5 */
|
||||||
CONTENT_TEXT /* = 6 */,
|
object CONTENT_TEXT : MouseTargetType /* = 6 */
|
||||||
CONTENT_EMPTY /* = 7 */,
|
object CONTENT_EMPTY : MouseTargetType /* = 7 */
|
||||||
CONTENT_VIEW_ZONE /* = 8 */,
|
object CONTENT_VIEW_ZONE : MouseTargetType /* = 8 */
|
||||||
CONTENT_WIDGET /* = 9 */,
|
object CONTENT_WIDGET : MouseTargetType /* = 9 */
|
||||||
OVERVIEW_RULER /* = 10 */,
|
object OVERVIEW_RULER : MouseTargetType /* = 10 */
|
||||||
SCROLLBAR /* = 11 */,
|
object SCROLLBAR : MouseTargetType /* = 11 */
|
||||||
OVERLAY_WIDGET /* = 12 */,
|
object OVERLAY_WIDGET : MouseTargetType /* = 12 */
|
||||||
OUTSIDE_EDITOR /* = 13 */,
|
object OUTSIDE_EDITOR : MouseTargetType /* = 13 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface IMouseTarget {
|
external interface IMouseTarget {
|
||||||
@ -460,26 +460,26 @@ external interface IColorizerElementOptions : IColorizerOptions {
|
|||||||
var mimeType: String?
|
var mimeType: String?
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class ScrollbarVisibility {
|
sealed external class ScrollbarVisibility {
|
||||||
Auto /* = 1 */,
|
object Auto : ScrollbarVisibility /* = 1 */
|
||||||
Hidden /* = 2 */,
|
object Hidden : ScrollbarVisibility /* = 2 */
|
||||||
Visible /* = 3 */
|
object Visible : ScrollbarVisibility /* = 3 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface ThemeColor {
|
external interface ThemeColor {
|
||||||
var id: String
|
var id: String
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class OverviewRulerLane {
|
sealed external class OverviewRulerLane {
|
||||||
Left /* = 1 */,
|
object Left : OverviewRulerLane /* = 1 */
|
||||||
Center /* = 2 */,
|
object Center : OverviewRulerLane /* = 2 */
|
||||||
Right /* = 4 */,
|
object Right : OverviewRulerLane /* = 4 */
|
||||||
Full /* = 7 */
|
object Full : OverviewRulerLane /* = 7 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class MinimapPosition {
|
sealed external class MinimapPosition {
|
||||||
Inline /* = 1 */,
|
object Inline : MinimapPosition /* = 1 */
|
||||||
Gutter /* = 2 */
|
object Gutter : MinimapPosition /* = 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface IDecorationOptions {
|
external interface IDecorationOptions {
|
||||||
@ -532,20 +532,20 @@ external interface IWordAtPosition {
|
|||||||
var endColumn: Number
|
var endColumn: Number
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class EndOfLinePreference {
|
sealed external class EndOfLinePreference {
|
||||||
TextDefined /* = 0 */,
|
object TextDefined : EndOfLinePreference /* = 0 */
|
||||||
LF /* = 1 */,
|
object LF : EndOfLinePreference /* = 1 */
|
||||||
CRLF /* = 2 */
|
object CRLF : EndOfLinePreference /* = 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class DefaultEndOfLine {
|
sealed external class DefaultEndOfLine {
|
||||||
LF /* = 1 */,
|
object LF : DefaultEndOfLine /* = 1 */
|
||||||
CRLF /* = 2 */
|
object CRLF : DefaultEndOfLine /* = 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class EndOfLineSequence {
|
sealed external class EndOfLineSequence {
|
||||||
LF /* = 0 */,
|
object LF : EndOfLineSequence /* = 0 */
|
||||||
CRLF /* = 1 */
|
object CRLF : EndOfLineSequence /* = 1 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface ISingleEditOperation {
|
external interface ISingleEditOperation {
|
||||||
@ -589,11 +589,11 @@ open external class FindMatch {
|
|||||||
open var matches: Array<String>?
|
open var matches: Array<String>?
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class TrackedRangeStickiness {
|
sealed external class TrackedRangeStickiness {
|
||||||
AlwaysGrowsWhenTypingAtEdges /* = 0 */,
|
object AlwaysGrowsWhenTypingAtEdges : TrackedRangeStickiness /* = 0 */
|
||||||
NeverGrowsWhenTypingAtEdges /* = 1 */,
|
object NeverGrowsWhenTypingAtEdges : TrackedRangeStickiness /* = 1 */
|
||||||
GrowsOnlyWhenTypingBefore /* = 2 */,
|
object GrowsOnlyWhenTypingBefore : TrackedRangeStickiness /* = 2 */
|
||||||
GrowsOnlyWhenTypingAfter /* = 3 */
|
object GrowsOnlyWhenTypingAfter : TrackedRangeStickiness /* = 3 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface ITextModel {
|
external interface ITextModel {
|
||||||
@ -787,14 +787,14 @@ external interface IModelOptionsChangedEvent {
|
|||||||
var trimAutoWhitespace: Boolean
|
var trimAutoWhitespace: Boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class CursorChangeReason {
|
sealed external class CursorChangeReason {
|
||||||
NotSet /* = 0 */,
|
object NotSet : CursorChangeReason /* = 0 */
|
||||||
ContentFlush /* = 1 */,
|
object ContentFlush : CursorChangeReason /* = 1 */
|
||||||
RecoverFromMarkers /* = 2 */,
|
object RecoverFromMarkers : CursorChangeReason /* = 2 */
|
||||||
Explicit /* = 3 */,
|
object Explicit : CursorChangeReason /* = 3 */
|
||||||
Paste /* = 4 */,
|
object Paste : CursorChangeReason /* = 4 */
|
||||||
Undo /* = 5 */,
|
object Undo : CursorChangeReason /* = 5 */
|
||||||
Redo /* = 6 */
|
object Redo : CursorChangeReason /* = 6 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface ICursorPositionChangedEvent {
|
external interface ICursorPositionChangedEvent {
|
||||||
@ -814,16 +814,16 @@ external interface ICursorSelectionChangedEvent {
|
|||||||
var reason: CursorChangeReason
|
var reason: CursorChangeReason
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class AccessibilitySupport {
|
sealed external class AccessibilitySupport {
|
||||||
Unknown /* = 0 */,
|
object Unknown : AccessibilitySupport /* = 0 */
|
||||||
Disabled /* = 1 */,
|
object Disabled : AccessibilitySupport /* = 1 */
|
||||||
Enabled /* = 2 */
|
object Enabled : AccessibilitySupport /* = 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class EditorAutoIndentStrategy {
|
sealed external class EditorAutoIndentStrategy {
|
||||||
None /* = 0 */,
|
object None : EditorAutoIndentStrategy /* = 0 */
|
||||||
Keep /* = 1 */,
|
object Keep : EditorAutoIndentStrategy /* = 1 */
|
||||||
Brackets /* = 2 */,
|
object Brackets : EditorAutoIndentStrategy /* = 2 */
|
||||||
Advanced /* = 3 */,
|
object Advanced : EditorAutoIndentStrategy /* = 3 */
|
||||||
Full /* = 4 */
|
object Full : EditorAutoIndentStrategy /* = 4 */
|
||||||
}
|
}
|
@ -1,8 +1,12 @@
|
|||||||
package world.phantasmal.web.externals.monacoEditor
|
package world.phantasmal.web.externals.monacoEditor
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun IColors.get(name: String): String =
|
inline operator fun IColors.get(name: String): String =
|
||||||
asDynamic()[name].unsafeCast<String>()
|
asDynamic()[name].unsafeCast<String>()
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun IColors.set(name: String, value: String) {
|
inline operator fun IColors.set(name: String, value: String) {
|
||||||
asDynamic()[name] = value
|
asDynamic()[name] = value
|
||||||
}
|
}
|
@ -152,11 +152,11 @@ external interface IAutoClosingPairConditional : IAutoClosingPair {
|
|||||||
set(value) = definedExternally
|
set(value) = definedExternally
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class IndentAction {
|
sealed external class IndentAction {
|
||||||
None /* = 0 */,
|
object None : IndentAction /* = 0 */
|
||||||
Indent /* = 1 */,
|
object Indent : IndentAction /* = 1 */
|
||||||
IndentOutdent /* = 2 */,
|
object IndentOutdent : IndentAction /* = 2 */
|
||||||
Outdent /* = 3 */
|
object Outdent : IndentAction /* = 3 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface EnterAction {
|
external interface EnterAction {
|
||||||
@ -271,50 +271,51 @@ external interface CompletionItemRanges {
|
|||||||
var replace: IRange
|
var replace: IRange
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class CompletionItemKind {
|
sealed external class CompletionItemKind {
|
||||||
Method /* = 0 */,
|
object Method : CompletionItemKind /* = 0 */
|
||||||
Function /* = 1 */,
|
object Function : CompletionItemKind /* = 1 */
|
||||||
Constructor /* = 2 */,
|
object Constructor : CompletionItemKind /* = 2 */
|
||||||
Field /* = 3 */,
|
object Field : CompletionItemKind /* = 3 */
|
||||||
Variable /* = 4 */,
|
object Variable : CompletionItemKind /* = 4 */
|
||||||
Class /* = 5 */,
|
object Class : CompletionItemKind /* = 5 */
|
||||||
Struct /* = 6 */,
|
object Struct : CompletionItemKind /* = 6 */
|
||||||
Interface /* = 7 */,
|
object Interface : CompletionItemKind /* = 7 */
|
||||||
Module /* = 8 */,
|
object Module : CompletionItemKind /* = 8 */
|
||||||
Property /* = 9 */,
|
object Property : CompletionItemKind /* = 9 */
|
||||||
Event /* = 10 */,
|
object Event : CompletionItemKind /* = 10 */
|
||||||
Operator /* = 11 */,
|
object Operator : CompletionItemKind /* = 11 */
|
||||||
Unit /* = 12 */,
|
object Unit : CompletionItemKind /* = 12 */
|
||||||
Value /* = 13 */,
|
object Value : CompletionItemKind /* = 13 */
|
||||||
Constant /* = 14 */,
|
object Constant : CompletionItemKind /* = 14 */
|
||||||
Enum /* = 15 */,
|
object Enum : CompletionItemKind /* = 15 */
|
||||||
EnumMember /* = 16 */,
|
object EnumMember : CompletionItemKind /* = 16 */
|
||||||
Keyword /* = 17 */,
|
object Keyword : CompletionItemKind /* = 17 */
|
||||||
Text /* = 18 */,
|
object Text : CompletionItemKind /* = 18 */
|
||||||
Color /* = 19 */,
|
object Color : CompletionItemKind /* = 19 */
|
||||||
File /* = 20 */,
|
object File : CompletionItemKind /* = 20 */
|
||||||
Reference /* = 21 */,
|
object Reference : CompletionItemKind /* = 21 */
|
||||||
Customcolor /* = 22 */,
|
object Customcolor : CompletionItemKind /* = 22 */
|
||||||
Folder /* = 23 */,
|
object Folder : CompletionItemKind /* = 23 */
|
||||||
TypeParameter /* = 24 */,
|
object TypeParameter : CompletionItemKind /* = 24 */
|
||||||
Snippet /* = 25 */,
|
object Snippet : CompletionItemKind /* = 25 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class CompletionItemTag {
|
sealed external class CompletionItemTag {
|
||||||
Deprecated /* = 1 */,
|
object Deprecated : CompletionItemTag
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class CompletionItemInsertTextRule {
|
sealed external class CompletionItemInsertTextRule {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adjust whitespace/indentation of multiline insert texts to
|
* Adjust whitespace/indentation of multiline insert texts to
|
||||||
* match the current line indentation.
|
* match the current line indentation.
|
||||||
*/
|
*/
|
||||||
KeepWhitespace /* = 1 */,
|
object KeepWhitespace : CompletionItemInsertTextRule
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* `insertText` is a snippet.
|
* `insertText` is a snippet.
|
||||||
*/
|
*/
|
||||||
InsertAsSnippet /* = 4 */,
|
object InsertAsSnippet : CompletionItemInsertTextRule
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface Command {
|
external interface Command {
|
||||||
@ -434,10 +435,10 @@ external interface CompletionList {
|
|||||||
/**
|
/**
|
||||||
* How a suggest provider was triggered.
|
* How a suggest provider was triggered.
|
||||||
*/
|
*/
|
||||||
external enum class CompletionTriggerKind {
|
sealed external class CompletionTriggerKind {
|
||||||
Invoke /* = 0 */,
|
object Invoke : CompletionTriggerKind
|
||||||
TriggerCharacter /* = 1 */,
|
object TriggerCharacter : CompletionTriggerKind
|
||||||
TriggerForIncompleteCompletions /* = 2 */,
|
object TriggerForIncompleteCompletions : CompletionTriggerKind
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -548,10 +549,10 @@ external interface SignatureHelp {
|
|||||||
var activeParameter: Int
|
var activeParameter: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class SignatureHelpTriggerKind {
|
sealed external class SignatureHelpTriggerKind {
|
||||||
Invoke /* = 1 */,
|
object Invoke : SignatureHelpTriggerKind
|
||||||
TriggerCharacter /* = 2 */,
|
object TriggerCharacter : SignatureHelpTriggerKind
|
||||||
ContentChange /* = 3 */,
|
object ContentChange : SignatureHelpTriggerKind
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface SignatureHelpContext {
|
external interface SignatureHelpContext {
|
||||||
@ -658,37 +659,37 @@ external interface DefinitionProvider {
|
|||||||
): Promise<Array<LocationLink>?>
|
): Promise<Array<LocationLink>?>
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class SymbolKind {
|
sealed external class SymbolKind {
|
||||||
File /* = 0 */,
|
object File : SymbolKind
|
||||||
Module /* = 1 */,
|
object Module : SymbolKind
|
||||||
Namespace /* = 2 */,
|
object Namespace : SymbolKind
|
||||||
Package /* = 3 */,
|
object Package : SymbolKind
|
||||||
Class /* = 4 */,
|
object Class : SymbolKind
|
||||||
Method /* = 5 */,
|
object Method : SymbolKind
|
||||||
Property /* = 6 */,
|
object Property : SymbolKind
|
||||||
Field /* = 7 */,
|
object Field : SymbolKind
|
||||||
Constructor /* = 8 */,
|
object Constructor : SymbolKind
|
||||||
Enum /* = 9 */,
|
object Enum : SymbolKind
|
||||||
Interface /* = 10 */,
|
object Interface : SymbolKind
|
||||||
Function /* = 11 */,
|
object Function : SymbolKind
|
||||||
Variable /* = 12 */,
|
object Variable : SymbolKind
|
||||||
Constant /* = 13 */,
|
object Constant : SymbolKind
|
||||||
String /* = 14 */,
|
object String : SymbolKind
|
||||||
Number /* = 15 */,
|
object Number : SymbolKind
|
||||||
Boolean /* = 16 */,
|
object Boolean : SymbolKind
|
||||||
Array /* = 17 */,
|
object Array : SymbolKind
|
||||||
Object /* = 18 */,
|
object Object : SymbolKind
|
||||||
Key /* = 19 */,
|
object Key : SymbolKind
|
||||||
Null /* = 20 */,
|
object Null : SymbolKind
|
||||||
EnumMember /* = 21 */,
|
object EnumMember : SymbolKind
|
||||||
Struct /* = 22 */,
|
object Struct : SymbolKind
|
||||||
Event /* = 23 */,
|
object Event : SymbolKind
|
||||||
Operator /* = 24 */,
|
object Operator : SymbolKind
|
||||||
TypeParameter /* = 25 */
|
object TypeParameter : SymbolKind /* = 25 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class SymbolTag {
|
sealed external class SymbolTag {
|
||||||
Deprecated /* = 1 */
|
object Deprecated : SymbolTag /* = 1 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface DocumentSymbol {
|
external interface DocumentSymbol {
|
||||||
@ -711,10 +712,10 @@ external interface DocumentSymbolProvider {
|
|||||||
): Promise<Array<DocumentSymbol>>
|
): Promise<Array<DocumentSymbol>>
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class DocumentHighlightKind {
|
sealed external class DocumentHighlightKind {
|
||||||
Text /* = 0 */,
|
object Text : DocumentHighlightKind
|
||||||
Read /* = 1 */,
|
object Read : DocumentHighlightKind
|
||||||
Write /* = 2 */
|
object Write : DocumentHighlightKind /* = 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface DocumentHighlight {
|
external interface DocumentHighlight {
|
@ -2,9 +2,13 @@ package world.phantasmal.web.externals.monacoEditor
|
|||||||
|
|
||||||
typealias IMonarchLanguageRule = IExpandedMonarchLanguageRule
|
typealias IMonarchLanguageRule = IExpandedMonarchLanguageRule
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun IMonarchLanguageTokenizer.get(name: String): Array<IMonarchLanguageRule> =
|
inline operator fun IMonarchLanguageTokenizer.get(name: String): Array<IMonarchLanguageRule> =
|
||||||
asDynamic()[name].unsafeCast<Array<IMonarchLanguageRule>>()
|
asDynamic()[name].unsafeCast<Array<IMonarchLanguageRule>>()
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun IMonarchLanguageTokenizer.set(
|
inline operator fun IMonarchLanguageTokenizer.set(
|
||||||
name: String,
|
name: String,
|
||||||
value: Array<IMonarchLanguageRule>,
|
value: Array<IMonarchLanguageRule>,
|
||||||
@ -12,9 +16,13 @@ inline operator fun IMonarchLanguageTokenizer.set(
|
|||||||
asDynamic()[name] = value
|
asDynamic()[name] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun IMarkdownStringUris.get(name: String): UriComponents =
|
inline operator fun IMarkdownStringUris.get(name: String): UriComponents =
|
||||||
asDynamic()[name].unsafeCast<UriComponents>()
|
asDynamic()[name].unsafeCast<UriComponents>()
|
||||||
|
|
||||||
|
// Inline to generate easier to understand JS.
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline operator fun IMarkdownStringUris.set(name: String, value: UriComponents) {
|
inline operator fun IMarkdownStringUris.set(name: String, value: UriComponents) {
|
||||||
asDynamic()[name] = value
|
asDynamic()[name] = value
|
||||||
}
|
}
|
@ -20,16 +20,16 @@ external interface CancellationToken {
|
|||||||
): IDisposable
|
): IDisposable
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class MarkerTag {
|
sealed external class MarkerTag {
|
||||||
Unnecessary /* = 1 */,
|
object Unnecessary : MarkerTag /* = 1 */
|
||||||
Deprecated /* = 2 */
|
object Deprecated : MarkerTag /* = 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class MarkerSeverity {
|
sealed external class MarkerSeverity {
|
||||||
Hint /* = 1 */,
|
object Hint : MarkerSeverity /* = 1 */
|
||||||
Info /* = 2 */,
|
object Info : MarkerSeverity /* = 2 */
|
||||||
Warning /* = 4 */,
|
object Warning : MarkerSeverity /* = 4 */
|
||||||
Error /* = 8 */
|
object Error : MarkerSeverity /* = 8 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface IRange {
|
external interface IRange {
|
||||||
@ -126,9 +126,9 @@ open external class Selection(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class SelectionDirection {
|
sealed external class SelectionDirection {
|
||||||
LTR /* = 0 */,
|
object LTR : SelectionDirection /* = 0 */
|
||||||
RTL /* = 1 */
|
object RTL : SelectionDirection /* = 1 */
|
||||||
}
|
}
|
||||||
|
|
||||||
external interface IPosition {
|
external interface IPosition {
|
@ -786,20 +786,20 @@ external interface Mipmap {
|
|||||||
var height: Int
|
var height: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class MOUSE {
|
sealed external class MOUSE {
|
||||||
LEFT,
|
object LEFT : MOUSE
|
||||||
MIDDLE,
|
object MIDDLE : MOUSE
|
||||||
RIGHT,
|
object RIGHT : MOUSE
|
||||||
ROTATE,
|
object ROTATE : MOUSE
|
||||||
DOLLY,
|
object DOLLY : MOUSE
|
||||||
PAN,
|
object PAN : MOUSE
|
||||||
}
|
}
|
||||||
|
|
||||||
external enum class TOUCH {
|
sealed external class TOUCH {
|
||||||
ROTATE,
|
object ROTATE : TOUCH
|
||||||
PAN,
|
object PAN : TOUCH
|
||||||
DOLLY_PAN,
|
object DOLLY_PAN : TOUCH
|
||||||
DOLLY_ROTATE,
|
object DOLLY_ROTATE : TOUCH
|
||||||
}
|
}
|
||||||
|
|
||||||
external class Raycaster(
|
external class Raycaster(
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user