You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by se...@apache.org on 2021/05/04 14:15:14 UTC

[incubator-nlpcraft] branch NLPCRAFT-315 updated (9f0a1c1 -> fa6853b)

This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a change to branch NLPCRAFT-315
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.


    from 9f0a1c1  WIP.
     add 57a0f49  Minecraft example minor improvements.
     add e23d320  Minecraft example fixes.
     new fa6853b  Merge branch 'master' into NLPCRAFT-315

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/prepare.sh                                     |   5 +-
 .../assets/nlpcraft-example-minecraft-mod-1.0.jar  | Bin 15986 -> 17857 bytes
 .../example/minecraft/NCMinecraftExampleMod.java   |  10 +-
 .../minecraft/utils/NCMinecraftFilesDump.java      | 169 +++++++++++++++++++++
 .../minecraft/utils/NCMinecraftFilesDump.java      |  88 -----------
 nlpcraft-examples/minecraft/pom.xml                |   7 +-
 ...Processor.kt => MinecraftFillMatchProcessor.kt} |   3 +-
 .../nlpcraft/example/minecraft/MinecraftModel.kt   |   6 +-
 .../minecraft/src/main/resources/block.json        |  14 +-
 .../minecraft/src/main/resources/item.json         |  14 +-
 10 files changed, 201 insertions(+), 115 deletions(-)
 rename nlpcraft-examples/minecraft-mod/src/main/java/org/apache/{nplcraft => nlpcraft}/example/minecraft/NCMinecraftExampleMod.java (96%)
 create mode 100644 nlpcraft-examples/minecraft-mod/src/main/java/org/apache/nlpcraft/example/minecraft/utils/NCMinecraftFilesDump.java
 delete mode 100644 nlpcraft-examples/minecraft-mod/src/main/java/org/apache/nplcraft/example/minecraft/utils/NCMinecraftFilesDump.java
 rename nlpcraft-examples/minecraft/src/main/kotlin/org/apache/nlpcraft/example/minecraft/{MinecraftFIllMatchProcessor.kt => MinecraftFillMatchProcessor.kt} (98%)

[incubator-nlpcraft] 01/01: Merge branch 'master' into NLPCRAFT-315

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch NLPCRAFT-315
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit fa6853bd1458927105201c6779c8e5b8471b3ccf
Merge: 9f0a1c1 e23d320
Author: Sergey Kamov <sk...@gmail.com>
AuthorDate: Tue May 4 17:14:59 2021 +0300

    Merge branch 'master' into NLPCRAFT-315

 bin/prepare.sh                                     |   5 +-
 .../assets/nlpcraft-example-minecraft-mod-1.0.jar  | Bin 15986 -> 17857 bytes
 .../example/minecraft/NCMinecraftExampleMod.java   |  10 +-
 .../minecraft/utils/NCMinecraftFilesDump.java      | 169 +++++++++++++++++++++
 .../minecraft/utils/NCMinecraftFilesDump.java      |  88 -----------
 nlpcraft-examples/minecraft/pom.xml                |   7 +-
 ...Processor.kt => MinecraftFillMatchProcessor.kt} |   3 +-
 .../nlpcraft/example/minecraft/MinecraftModel.kt   |   6 +-
 .../minecraft/src/main/resources/block.json        |  14 +-
 .../minecraft/src/main/resources/item.json         |  14 +-
 10 files changed, 201 insertions(+), 115 deletions(-)

diff --cc nlpcraft-examples/minecraft/src/main/kotlin/org/apache/nlpcraft/example/minecraft/MinecraftFillMatchProcessor.kt
index 195e6d9,f4dfdbe..75790e1
--- a/nlpcraft-examples/minecraft/src/main/kotlin/org/apache/nlpcraft/example/minecraft/MinecraftFillMatchProcessor.kt
+++ b/nlpcraft-examples/minecraft/src/main/kotlin/org/apache/nlpcraft/example/minecraft/MinecraftFillMatchProcessor.kt
@@@ -23,9 -23,10 +23,9 @@@ import org.apache.nlpcraft.model.
  import java.util.*
  
  /**
 - * Special processor for support 'fillIntent' intent processing.
 - * Is is designed as separated class to simplify main model class.
 + * Special processor to support 'fillIntent' intent processing.
   */
- class MinecraftFIllMatchProcessor {
+ class MinecraftFillMatchProcessor {
      internal data class Coordinate(val x: Int = 0, val y: Int = 0, val z: Int = 0) {
          override fun toString(): String {
              return "$x $y $z"