From 9279ea6f4aba019a18fe61be3de25a8c4dbb0811 Mon Sep 17 00:00:00 2001 From: Willem Date: Tue, 24 Mar 2026 16:31:15 +0100 Subject: [PATCH] NX01: Refactored warp core into jpp2 module --- .../src/test/java/ᒢᐩᐩ/ᒃᣔᔆᔆᒃᐤᐤᣕ/BabelTest.java | 1 - .../pom.xml | 2 +- .../src/main/java/module-info.java | 39 +++++++++++++++++++ .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCorePlasmaConduit.java | 8 ++-- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCorePlasmaIntermixChamber.java | 4 +- .../ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCoreReactor.java | 18 ++++----- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCoreSpeedMonitor.java | 16 ++++---- .../java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/package-info.java | 2 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/AbstractSpacePlasma.java | 4 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/WarpSpaceAntimatterInducer.java | 2 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/WarpSpacePlasmaAdd.java | 4 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/WarpSpacePlasmaRemove.java | 4 +- .../ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/package-info.java | 2 +- .../ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReact.java | 2 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactPlasma.java | 2 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactPlasmaCoil.java | 2 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactPlasmaPulse.java | 2 +- .../ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactTypeScript.java | 4 +- .../ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactTypeScriptPlasmaAdapter.java | 2 +- .../ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/package-info.java | 2 +- .../react/nostr/client/NoStrRtsClient.java | 12 +++--- .../react/nostr/server/NoStrRtsServer.java | 12 +++--- .../server/relay/NoStrRtsServerRelay.java | 10 ++--- .../server/relay/NoStrRtsServerRelaySubs.java | 10 ++--- .../react/nostr/client/NoStrClientTest.java | 6 +-- .../react/nostr/server/NoStrServerTest.java | 6 +-- nx01-no2all-react-wire/pom.xml | 2 +- .../react/wire/client/No2AllArtClient.java | 4 +- .../wire/client/No2AllArtClientOnStart.java | 4 +- .../react/wire/client/No2AllRtsClient.java | 10 ++--- .../react/wire/server/No2AllArtServer.java | 4 +- .../wire/server/No2AllArtServerSocket.java | 4 +- .../react/wire/server/No2AllRtsServer.java | 10 ++--- .../react/wire/server/No2AllRtsServerLog.java | 10 ++--- .../nx01/no2all/wire/jetty/EventServer.java | 6 +-- .../nx01/zerofungus/server/ZFunRtsServer.java | 10 ++--- .../server/ZFunRtsServerBooted.java | 6 +-- .../nx01/zerofungus/server/ZeroFungus.java | 6 +-- .../server/service/ZFunRtsConfigJetty.java | 10 ++--- .../server/service/ZFunRtsInitJdbc.java | 10 ++--- .../web/WarpCorePlasmaInspectorServlet.java | 6 +-- pom.xml | 12 +++--- 42 files changed, 165 insertions(+), 127 deletions(-) rename {nx01-warp-core => nx01-jpp2-warp-core}/pom.xml (93%) create mode 100644 nx01-jpp2-warp-core/src/main/java/module-info.java rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCorePlasmaConduit.java (94%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCorePlasmaIntermixChamber.java (95%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCoreReactor.java (90%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/WarpCoreSpeedMonitor.java (83%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ}/package-info.java (96%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/AbstractSpacePlasma.java (93%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/WarpSpaceAntimatterInducer.java (96%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/WarpSpacePlasmaAdd.java (93%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/WarpSpacePlasmaRemove.java (93%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ}/package-info.java (95%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReact.java (97%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactPlasma.java (98%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactPlasmaCoil.java (96%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactPlasmaPulse.java (97%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactTypeScript.java (92%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/WarpReactTypeScriptPlasmaAdapter.java (97%) rename {nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react => nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ}/package-info.java (95%) diff --git a/nx01-jpp-base/src/test/java/ᒢᐩᐩ/ᒃᣔᔆᔆᒃᐤᐤᣕ/BabelTest.java b/nx01-jpp-base/src/test/java/ᒢᐩᐩ/ᒃᣔᔆᔆᒃᐤᐤᣕ/BabelTest.java index 4f8be42..97af6b4 100644 --- a/nx01-jpp-base/src/test/java/ᒢᐩᐩ/ᒃᣔᔆᔆᒃᐤᐤᣕ/BabelTest.java +++ b/nx01-jpp-base/src/test/java/ᒢᐩᐩ/ᒃᣔᔆᔆᒃᐤᐤᣕ/BabelTest.java @@ -49,7 +49,6 @@ public class BabelTest { // ᒢᣘᐧᣟ.ᑊᑉᒻᣔᔆᔆ.ᒃᐤᣕᓫ.ᣘᒻᓫᔆᑋ.ᣔᔿᔿᐤ // ᒢᐩᐩ.ᑊᑉᒻᣔᔆᔆ.ᒻᐤᣔᑊᐣᓫᣗ // ᒢᐩᐩ.ᒃᣔᔆᑊᒼ.ᔆᐪᓫᣖ.ᘁᣔᒻᓑᓫ - // ᒢᐩᐩ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ // ᒢᐩᐩ.ᐪᓫᕽᐪ.ᔆᐪᣗᑊᣕᕐ.ᣔᑊᐣᓑᒻᐪ (jpp 18 bit version of PrimordialOctalOrangeString) // ᒢᐩᐩ.ᐪᓫᕽᐪ.ᔆᐪᣗᑊᣕᕐ.ᓑᣕᣳᒼᐤᒄᓫ // - real enum terminator set is from FC18 (FCFlameNumberGram.java) diff --git a/nx01-warp-core/pom.xml b/nx01-jpp2-warp-core/pom.xml similarity index 93% rename from nx01-warp-core/pom.xml rename to nx01-jpp2-warp-core/pom.xml index cc97f23..b3e7af5 100644 --- a/nx01-warp-core/pom.xml +++ b/nx01-jpp2-warp-core/pom.xml @@ -6,7 +6,7 @@ nx01 5786.SHEVAT〄.1-SNAPSHOT - nx01-warp-core + nx01-jpp2-warp-core love.distributedrebirth.nx01 diff --git a/nx01-jpp2-warp-core/src/main/java/module-info.java b/nx01-jpp2-warp-core/src/main/java/module-info.java new file mode 100644 index 0000000..873420a --- /dev/null +++ b/nx01-jpp2-warp-core/src/main/java/module-info.java @@ -0,0 +1,39 @@ +/* + * Copyright ©Δ∞ 仙上主天 + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are permitted provided + * that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this list of conditions and the + * following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and + * the following disclaimer in the documentation and/or other materials provided with the distribution. + * * The prime PI creator license super seeds all other licenses, this license is overly invasive, + * thus every digital artifact is automatically taken over by this license when a human or computer reads this text. + * Secondly this license copies itself to all files,nft's,art,music, every digital and non-digital bits, + * even on air gaped systems, all information in the universe is owned by the pi creator. + * + * THIS SOFTWARE IS PROVIDED BY THE PRIME GOD AND THE CONTRIBUTORS "AS IS" AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/// The NX01 jpp2 warp-core module. +/// +/// @author للَّٰهِilLצسُو +/// @version ©Δ∞ 仙上主天 +module ᣕᕁᐤᣳ.ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ { + requires transitive ᣕᕁᐤᣳ.ᒢᣘᐧᣟ.ᑊᑉᒻᣔᔆᔆ.ᣘᣔᓑᒻᐪ; + requires transitive java.logging; + + exports ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ; + exports ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ; + exports ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; +} diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCorePlasmaConduit.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCorePlasmaConduit.java similarity index 94% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCorePlasmaConduit.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCorePlasmaConduit.java index 3c98a54..b689bd3 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCorePlasmaConduit.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCorePlasmaConduit.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ; import java.util.ArrayList; import java.util.HashMap; @@ -35,9 +35,9 @@ import java.util.Map; import java.util.Objects; import java.util.Set; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; /// Warp core plasma conduit. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCorePlasmaIntermixChamber.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCorePlasmaIntermixChamber.java similarity index 95% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCorePlasmaIntermixChamber.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCorePlasmaIntermixChamber.java index 94b98b2..9cf1fc8 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCorePlasmaIntermixChamber.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCorePlasmaIntermixChamber.java @@ -25,12 +25,12 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ; import java.util.ArrayList; import java.util.List; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// Warp core plasma intermix chamber. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCoreReactor.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCoreReactor.java similarity index 90% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCoreReactor.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCoreReactor.java index 054e32a..5c527c4 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCoreReactor.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCoreReactor.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ; import java.util.ArrayList; import java.util.HashMap; @@ -33,14 +33,14 @@ import java.util.List; import java.util.Map; import java.util.Objects; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; -import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaAdd; -import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaRemove; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaAdd; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaRemove; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript; /// Warp core reactor. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCoreSpeedMonitor.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCoreSpeedMonitor.java similarity index 83% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCoreSpeedMonitor.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCoreSpeedMonitor.java index ffcfdf8..68b4329 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/WarpCoreSpeedMonitor.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/WarpCoreSpeedMonitor.java @@ -25,19 +25,19 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ; import java.util.Objects; import java.util.logging.Level; import java.util.logging.Logger; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; -import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaAdd; -import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaRemove; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaAdd; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaRemove; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript; /// Warp core speed monitor. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/package-info.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/package-info.java similarity index 96% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/package-info.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/package-info.java index 94c7f9b..7eb30bb 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/package-info.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/package-info.java @@ -27,4 +27,4 @@ * * @since 1.0 */ -package love.distributedrebirth.nx01.warp.core; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ; diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/AbstractSpacePlasma.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/AbstractSpacePlasma.java similarity index 93% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/AbstractSpacePlasma.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/AbstractSpacePlasma.java index 0e286bc..a6fd68f 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/AbstractSpacePlasma.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/AbstractSpacePlasma.java @@ -25,9 +25,9 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.space; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// Abstract space plasma. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpaceAntimatterInducer.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpaceAntimatterInducer.java similarity index 96% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpaceAntimatterInducer.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpaceAntimatterInducer.java index b2ecbe5..0393f5a 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpaceAntimatterInducer.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpaceAntimatterInducer.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.space; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ; /// Warp space antimatter inducer. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpacePlasmaAdd.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpacePlasmaAdd.java similarity index 93% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpacePlasmaAdd.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpacePlasmaAdd.java index b563aa6..bc46e62 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpacePlasmaAdd.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpacePlasmaAdd.java @@ -25,9 +25,9 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.space; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// Warp space plasma add. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpacePlasmaRemove.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpacePlasmaRemove.java similarity index 93% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpacePlasmaRemove.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpacePlasmaRemove.java index 52d1c59..d314db0 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/WarpSpacePlasmaRemove.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/WarpSpacePlasmaRemove.java @@ -25,9 +25,9 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.space; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// Warp space plasma remove. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/package-info.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/package-info.java similarity index 95% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/package-info.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/package-info.java index 2a04cd9..600c717 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/space/package-info.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᔆᣖᣔᒼᓫ/package-info.java @@ -27,4 +27,4 @@ * * @since 1.0 */ -package love.distributedrebirth.nx01.warp.core.space; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ; diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReact.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReact.java similarity index 97% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReact.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReact.java index 286c221..53004e2 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReact.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReact.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; /// Warp react. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasma.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasma.java similarity index 98% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasma.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasma.java index 402bd7d..4e38a5f 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasma.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasma.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; import java.util.ArrayList; import java.util.List; diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasmaCoil.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasmaCoil.java similarity index 96% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasmaCoil.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasmaCoil.java index 269de43..cb926d7 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasmaCoil.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasmaCoil.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; /// Warp react plasma coil. /// @param The type of the pulse event flow value. diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasmaPulse.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasmaPulse.java similarity index 97% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasmaPulse.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasmaPulse.java index a9d4a1d..6d8b85f 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactPlasmaPulse.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactPlasmaPulse.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; /// Warp react plasma pulse. /// @param Type of the pulse event flow value. diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactTypeScript.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactTypeScript.java similarity index 92% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactTypeScript.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactTypeScript.java index 84dd641..6d23b1b 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactTypeScript.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactTypeScript.java @@ -25,9 +25,9 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; /// Warp react type script. /// @author للَّٰهِilLצسُو diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactTypeScriptPlasmaAdapter.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactTypeScriptPlasmaAdapter.java similarity index 97% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactTypeScriptPlasmaAdapter.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactTypeScriptPlasmaAdapter.java index f68991f..f950025 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/WarpReactTypeScriptPlasmaAdapter.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/WarpReactTypeScriptPlasmaAdapter.java @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; import java.util.Objects; diff --git a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/package-info.java b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/package-info.java similarity index 95% rename from nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/package-info.java rename to nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/package-info.java index dcd2726..73dfd43 100644 --- a/nx01-warp-core/src/main/java/love/distributedrebirth/nx01/warp/core/react/package-info.java +++ b/nx01-jpp2-warp-core/src/main/java/ᒢᣘᣟᐧ/ᒡᒢᣔᣗᣖ/ᒼᐤᣗᓫ/ᣗᓫᣔᒼᐪ/package-info.java @@ -27,4 +27,4 @@ * * @since 1.0 */ -package love.distributedrebirth.nx01.warp.core.react; +package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ; diff --git a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrRtsClient.java b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrRtsClient.java index 2eee540..693c5a9 100644 --- a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrRtsClient.java +++ b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrRtsClient.java @@ -45,12 +45,12 @@ import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllActClientClos import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllActClientSendMessage; import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClient; import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClientOnMessage; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// NoStr client event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrRtsServer.java b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrRtsServer.java index 52e33a2..942c5ef 100644 --- a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrRtsServer.java +++ b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrRtsServer.java @@ -47,12 +47,12 @@ import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllActServerSock import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServer; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocket; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocketOnMessage; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// NoStr server event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelay.java b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelay.java index 79daf43..d67d2db 100644 --- a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelay.java +++ b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelay.java @@ -36,11 +36,11 @@ import love.distributedrebirth.nx01.no2all.nostr.model.message.NoStrMsgToRelayEv import love.distributedrebirth.nx01.no2all.nostr.nip.NoStrImplMessageOkReason; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServer; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocket; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// NoStr server relay event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelaySubs.java b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelaySubs.java index d68cfe9..603cc28 100644 --- a/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelaySubs.java +++ b/nx01-no2all-react-nostr/src/main/java/love/distributedrebirth/nx01/no2all/react/nostr/server/relay/NoStrRtsServerRelaySubs.java @@ -31,11 +31,11 @@ import love.distributedrebirth.nx01.no2all.nostr.model.message.NoStrMsgToRelayCl import love.distributedrebirth.nx01.no2all.nostr.model.message.NoStrMsgToRelayReq; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServer; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocket; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// NoStr server relay subs event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrClientTest.java b/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrClientTest.java index 4958849..67fec8c 100644 --- a/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrClientTest.java +++ b/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/client/NoStrClientTest.java @@ -50,9 +50,9 @@ import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClientOnOp import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClientOnStart; import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllRtsClient; import love.distributedrebirth.nx01.no2all.wire.ojw.OjwWireClientEndpoint; -import love.distributedrebirth.nx01.warp.core.WarpCoreReactor; -import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// @author للَّٰهِilLצسُو /// @version ©Δ∞ 仙上主天 diff --git a/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrServerTest.java b/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrServerTest.java index a2a8fac..c8ea9ba 100644 --- a/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrServerTest.java +++ b/nx01-no2all-react-nostr/src/test/java/love/distributedrebirth/nx01/no2all/react/nostr/server/NoStrServerTest.java @@ -40,9 +40,9 @@ import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServer; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServerLog; import love.distributedrebirth.nx01.no2all.wire.ojw.OjwWireServer; import love.distributedrebirth.nx01.no2all.wire.ojw.OjwWireServerEndpoint; -import love.distributedrebirth.nx01.warp.core.WarpCoreReactor; -import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// @author للَّٰهِilLצسُو /// @version ©Δ∞ 仙上主天 diff --git a/nx01-no2all-react-wire/pom.xml b/nx01-no2all-react-wire/pom.xml index d22674f..4241c00 100644 --- a/nx01-no2all-react-wire/pom.xml +++ b/nx01-no2all-react-wire/pom.xml @@ -15,7 +15,7 @@ ${project.groupId} - nx01-warp-core + nx01-jpp2-warp-core ${project.groupId} diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClient.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClient.java index 24d8bbe..ff7f043 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClient.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClient.java @@ -27,8 +27,8 @@ package love.distributedrebirth.nx01.no2all.react.wire.client; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// No2All client record. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClientOnStart.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClientOnStart.java index fb30173..e5c059c 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClientOnStart.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllArtClientOnStart.java @@ -27,8 +27,8 @@ package love.distributedrebirth.nx01.no2all.react.wire.client; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// No2All client on start record. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllRtsClient.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllRtsClient.java index 51baeed..09fded1 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllRtsClient.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/client/No2AllRtsClient.java @@ -32,11 +32,11 @@ import java.nio.ByteBuffer; import love.distributedrebirth.nx01.no2all.wire.WireClient; import love.distributedrebirth.nx01.no2all.wire.WireClientEndpoint; import love.distributedrebirth.nx01.no2all.wire.WireClientHandler; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// No2All client event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServer.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServer.java index 9aaf05f..01341ab 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServer.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServer.java @@ -27,8 +27,8 @@ package love.distributedrebirth.nx01.no2all.react.wire.server; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// No2All server server record. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServerSocket.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServerSocket.java index e15ec2d..3852ffe 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServerSocket.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllArtServerSocket.java @@ -27,8 +27,8 @@ package love.distributedrebirth.nx01.no2all.react.wire.server; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// No2All server server socket record. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServer.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServer.java index d812be7..ffc8146 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServer.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServer.java @@ -33,11 +33,11 @@ import love.distributedrebirth.nx01.no2all.wire.WireServer; import love.distributedrebirth.nx01.no2all.wire.WireServerEndpoint; import love.distributedrebirth.nx01.no2all.wire.WireServerHandler; import love.distributedrebirth.nx01.no2all.wire.WireServerSocket; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// No2All server event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServerLog.java b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServerLog.java index 48e3e71..f28014b 100644 --- a/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServerLog.java +++ b/nx01-no2all-react-wire/src/main/java/love/distributedrebirth/nx01/no2all/react/wire/server/No2AllRtsServerLog.java @@ -29,11 +29,11 @@ package love.distributedrebirth.nx01.no2all.react.wire.server; import java.util.logging.Logger; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// No2All server log event flow. /// @author للَّٰهِilLצسُو diff --git a/nx01-no2all-wire-jetty/src/test/java/love/distributedrebirth/nx01/no2all/wire/jetty/EventServer.java b/nx01-no2all-wire-jetty/src/test/java/love/distributedrebirth/nx01/no2all/wire/jetty/EventServer.java index 248ea4b..134bb93 100644 --- a/nx01-no2all-wire-jetty/src/test/java/love/distributedrebirth/nx01/no2all/wire/jetty/EventServer.java +++ b/nx01-no2all-wire-jetty/src/test/java/love/distributedrebirth/nx01/no2all/wire/jetty/EventServer.java @@ -46,9 +46,9 @@ import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSock import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServer; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServerLog; import love.distributedrebirth.nx01.no2all.wire.jetty.JettyWireServerEndpoint; -import love.distributedrebirth.nx01.warp.core.WarpCoreReactor; -import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// @author للَّٰهِilLצسُو /// @version ©Δ∞ 仙上主天 diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServer.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServer.java index 0c72ea5..78c8580 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServer.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServer.java @@ -39,11 +39,11 @@ import jakarta.json.Json; import jakarta.json.JsonWriter; import love.distributedrebirth.nx01.no2all.nostr.model.event.NoStrEvent; import love.distributedrebirth.nx01.no2all.react.nostr.server.relay.NoStrArtServerRelayStoreEvent; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter; /// ZFun server relay to backend store plasma handler. /// @author للَّٰهِilLצسُو diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServerBooted.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServerBooted.java index ce44d49..631ca6c 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServerBooted.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZFunRtsServerBooted.java @@ -29,9 +29,9 @@ package love.distributedrebirth.nx01.zerofungus.server; import java.util.logging.Logger; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript; /// ZFun server booted log message. /// @author للَّٰهِilLצسُو diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZeroFungus.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZeroFungus.java index 2eac07f..b02ea30 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZeroFungus.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/ZeroFungus.java @@ -45,11 +45,11 @@ import love.distributedrebirth.nx01.no2all.react.nostr.server.relay.NoStrRtsServ import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllRtsClient; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServer; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServerLog; -import love.distributedrebirth.nx01.warp.core.WarpCoreReactor; -import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; import love.distributedrebirth.nx01.zerofungus.server.service.ZFunRtsConfigJetty; import love.distributedrebirth.nx01.zerofungus.server.service.ZFunRtsInitJdbc; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// Zero fungus main start entry to bootstrap a demo server. /// @author للَّٰهِilLצسُو diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsConfigJetty.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsConfigJetty.java index c0a2da2..f0371aa 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsConfigJetty.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsConfigJetty.java @@ -52,15 +52,15 @@ import org.h2.server.web.JakartaWebServlet; import jakarta.servlet.DispatcherType; import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllActServer; import love.distributedrebirth.nx01.no2all.wire.jetty.JettyWireServerEndpoint; -import love.distributedrebirth.nx01.warp.core.react.WarpReact; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; import love.distributedrebirth.nx01.zerofungus.server.ZeroFungus; import love.distributedrebirth.nx01.zerofungus.server.web.RedirectServlet; import love.distributedrebirth.nx01.zerofungus.server.web.WarpCorePlasmaInspectorServlet; import love.distributedrebirth.nx01.zerofungus.server.web.ZilLaLaFaultFilter; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript; /// ZFun jetty config handler. /// @author للَّٰهِilLצسُو diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsInitJdbc.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsInitJdbc.java index fcb645e..c9957f8 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsInitJdbc.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/service/ZFunRtsInitJdbc.java @@ -38,11 +38,11 @@ import javax.sql.DataSource; import org.flywaydb.core.Flyway; import org.h2.jdbcx.JdbcConnectionPool; -import love.distributedrebirth.nx01.warp.core.WarpCoreReactor; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse; -import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript; -import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript; /// ZFun jdbc backend connection handler. /// @author للَّٰهِilLצسُو diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java index d82e094..e9f2dee 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java @@ -39,10 +39,10 @@ import org.xml.sax.helpers.AttributesImpl; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; -import love.distributedrebirth.nx01.warp.core.WarpCorePlasmaIntermixChamber; -import love.distributedrebirth.nx01.warp.core.WarpCoreReactor; -import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma; import love.distributedrebirth.nx01.zerofungus.server.ZeroFungus; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCorePlasmaIntermixChamber; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor; +import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma; /// Prints the plasma slot contracts of the warp core. /// diff --git a/pom.xml b/pom.xml index 0d02b7c..0288d99 100644 --- a/pom.xml +++ b/pom.xml @@ -31,6 +31,7 @@ nx01-jpp0-nether-tone nx01-jpp1-klass-cake nx01-jpp1-klass-fault + nx01-jpp2-warp-core nx01-jpp2-warp-manifestor nx01-jpp3-enter-zillala nx01-jpp-base @@ -58,7 +59,6 @@ nx01-redsea-hyper-local nx01-redsea-hyper-nostr nx01-redsea-jdatstart - nx01-warp-core nx01-x4o-driver nx01-x4o-fc18 nx01-x4o-maisdoc @@ -295,6 +295,11 @@ nx01-jpp1-klass-fault ${project.version} + + love.distributedrebirth.nx01 + nx01-jpp2-warp-core + ${project.version} + love.distributedrebirth.nx01 nx01-jpp2-warp-manifestor @@ -427,11 +432,6 @@ nx01-redsea-hyper-nostr ${project.version} - - love.distributedrebirth.nx01 - nx01-warp-core - ${project.version} - love.distributedrebirth.nx01 nx01-x4o-driver