mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-28 07:17:42 +01:00
Compare commits
2 Commits
fix-orderi
...
git_integr
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
547f76de33 | ||
|
|
6701d9784d |
17
.classpath
17
.classpath
@@ -5,7 +5,7 @@
|
|||||||
<classpathentry kind="src" path="hacked-libtiled"/>
|
<classpathentry kind="src" path="hacked-libtiled"/>
|
||||||
<classpathentry kind="src" path="siphash-zackehh/src/main/java"/>
|
<classpathentry kind="src" path="siphash-zackehh/src/main/java"/>
|
||||||
<classpathentry kind="src" path="minify"/>
|
<classpathentry kind="src" path="minify"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.8.0_152"/>
|
||||||
<classpathentry kind="lib" path="lib/jide-oss.jar"/>
|
<classpathentry kind="lib" path="lib/jide-oss.jar"/>
|
||||||
<classpathentry kind="lib" path="lib/json_simple-1.1.jar"/>
|
<classpathentry kind="lib" path="lib/json_simple-1.1.jar"/>
|
||||||
<classpathentry kind="lib" path="lib/junit-4.10.jar"/>
|
<classpathentry kind="lib" path="lib/junit-4.10.jar"/>
|
||||||
@@ -14,6 +14,19 @@
|
|||||||
<classpathentry kind="lib" path="lib/ui.jar"/>
|
<classpathentry kind="lib" path="lib/ui.jar"/>
|
||||||
<classpathentry kind="lib" path="lib/bsh-2.0b4.jar"/>
|
<classpathentry kind="lib" path="lib/bsh-2.0b4.jar"/>
|
||||||
<classpathentry kind="lib" path="lib/jsoup-1.10.2.jar" sourcepath="lib/jsoup-1.10.2-sources.jar"/>
|
<classpathentry kind="lib" path="lib/jsoup-1.10.2.jar" sourcepath="lib/jsoup-1.10.2-sources.jar"/>
|
||||||
<classpathentry kind="lib" path="lib/AndorsTrainer_v0.1.5.jar"/>
|
<classpathentry kind="lib" path="lib/AndorsTrainer_v0.1.4.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/commons-codec-1.6.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/commons-logging-1.1.3.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/httpclient-4.3.6.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/httpcore-4.3.3.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/JavaEWAH-1.1.6.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/jsch-0.1.54.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/jzlib-1.0.7.jar"/>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/org.eclipse.jgit-4.9.0.201710071750-r.jar">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="javadoc_location" value="jar:platform:/resource/ATContentStudio/lib/JGit/org.eclipse.jgit-4.9.0.201710071750-r-javadoc.jar!/"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="lib" path="lib/JGit/slf4j-api-1.7.2.jar"/>
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
6
.gitattributes
vendored
6
.gitattributes
vendored
@@ -1,6 +0,0 @@
|
|||||||
# Set default behavior to automatically normalize line endings.
|
|
||||||
* text=auto
|
|
||||||
|
|
||||||
# Force bash scripts to always use LF line endings so that if a repo is accessed
|
|
||||||
# in Unix via a file share from Windows, the scripts will work.
|
|
||||||
*.sh text eol=lf
|
|
||||||
69
.github/workflows/release.yml
vendored
69
.github/workflows/release.yml
vendored
@@ -1,69 +0,0 @@
|
|||||||
name: Release Build
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [ created ]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Get Version
|
|
||||||
id: get_version
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "Reading version from file:"
|
|
||||||
cat res/ATCS_latest
|
|
||||||
echo ""
|
|
||||||
VERSION=$(tr -d '[:space:]' < "res/ATCS_latest")
|
|
||||||
echo "Processed version: $VERSION"
|
|
||||||
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
|
||||||
echo "Environment variable set to: $VERSION"
|
|
||||||
|
|
||||||
- name: Set up JDK
|
|
||||||
uses: actions/setup-java@v2
|
|
||||||
with:
|
|
||||||
java-version: '11'
|
|
||||||
distribution: 'temurin'
|
|
||||||
|
|
||||||
- name: Build JAR
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
cd packaging
|
|
||||||
chmod +x package.sh
|
|
||||||
echo "Building JAR and ZIP for version: ${{ env.VERSION }}"
|
|
||||||
./package.sh
|
|
||||||
echo "Created artifacts:"
|
|
||||||
ls -la common/ATCS.jar
|
|
||||||
ls -la ATCS_${{ env.VERSION }}.zip
|
|
||||||
|
|
||||||
- name: Upload Release Assets (zip)
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
./packaging/ATCS_${{ env.VERSION }}.zip
|
|
||||||
|
|
||||||
- name: 'Install makensis (apt)'
|
|
||||||
run: sudo apt update && sudo apt install -y nsis nsis-pluginapi
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Create Windows-Installer with NSIS
|
|
||||||
uses: joncloud/makensis-action@v4
|
|
||||||
with:
|
|
||||||
script-file: packaging/Windows/ATCS_Installer.nsi
|
|
||||||
arguments: -DVERSION="${{ env.VERSION }}"
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Upload Release Assets (exe)
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
files: ./packaging/ATCS_${{ env.VERSION }}_Setup.exe
|
|
||||||
continue-on-error: true
|
|
||||||
10
.gitignore
vendored
10
.gitignore
vendored
@@ -1,13 +1,3 @@
|
|||||||
/ATCS_v*.jar
|
/ATCS_v*.jar
|
||||||
/Project
|
/Project
|
||||||
/bin
|
/bin
|
||||||
/packaging/tmp/
|
|
||||||
/out
|
|
||||||
packaging/common/lib
|
|
||||||
packaging/common/ATCS.jar
|
|
||||||
packaging/ATCS_*.zip
|
|
||||||
ATCS_v*.tar.gz
|
|
||||||
ATCS.jar
|
|
||||||
/packaging/common/ATCS.env.bat
|
|
||||||
/packaging/common/ATCS.env
|
|
||||||
/packaging/common/ATCS_v*.zip
|
|
||||||
|
|||||||
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
@@ -1,8 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
||||||
17
.idea/artifacts/ATContentStudio_jar.xml
generated
17
.idea/artifacts/ATContentStudio_jar.xml
generated
@@ -1,17 +0,0 @@
|
|||||||
<component name="ArtifactManager">
|
|
||||||
<artifact name="ATContentStudio:jar">
|
|
||||||
<output-path>$PROJECT_DIR$/out/artifacts/ATContentStudio_jar</output-path>
|
|
||||||
<root id="root">
|
|
||||||
<element id="archive" name="ATContentStudio.jar">
|
|
||||||
<element id="module-output" name="ATContentStudio" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/bsh-2.0b4.jar" path-in-jar="/" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/rsyntaxtextarea.jar" path-in-jar="/" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/prefuse.jar" path-in-jar="/" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/jsoup-1.10.2.jar" path-in-jar="/" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/json_simple-1.1.jar" path-in-jar="/" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/ui.jar" path-in-jar="/" />
|
|
||||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/jide-oss.jar" path-in-jar="/" />
|
|
||||||
</element>
|
|
||||||
</root>
|
|
||||||
</artifact>
|
|
||||||
</component>
|
|
||||||
19
.idea/codeStyles/Project.xml
generated
19
.idea/codeStyles/Project.xml
generated
@@ -1,19 +0,0 @@
|
|||||||
<component name="ProjectCodeStyleConfiguration">
|
|
||||||
<code_scheme name="Project" version="173">
|
|
||||||
<JavaCodeStyleSettings>
|
|
||||||
<option name="JD_P_AT_EMPTY_LINES" value="false" />
|
|
||||||
</JavaCodeStyleSettings>
|
|
||||||
<codeStyleSettings language="JAVA">
|
|
||||||
<option name="RIGHT_MARGIN" value="200" />
|
|
||||||
<option name="ALIGN_MULTILINE_PARAMETERS_IN_CALLS" value="true" />
|
|
||||||
<option name="CALL_PARAMETERS_WRAP" value="1" />
|
|
||||||
<option name="BINARY_OPERATION_WRAP" value="5" />
|
|
||||||
<option name="SOFT_MARGINS" value="120" />
|
|
||||||
</codeStyleSettings>
|
|
||||||
<codeStyleSettings language="JSON">
|
|
||||||
<indentOptions>
|
|
||||||
<option name="INDENT_SIZE" value="4" />
|
|
||||||
</indentOptions>
|
|
||||||
</codeStyleSettings>
|
|
||||||
</code_scheme>
|
|
||||||
</component>
|
|
||||||
5
.idea/codeStyles/codeStyleConfig.xml
generated
5
.idea/codeStyles/codeStyleConfig.xml
generated
@@ -1,5 +0,0 @@
|
|||||||
<component name="ProjectCodeStyleConfiguration">
|
|
||||||
<state>
|
|
||||||
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
|
|
||||||
</state>
|
|
||||||
</component>
|
|
||||||
4
.idea/misc.xml
generated
4
.idea/misc.xml
generated
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK" />
|
|
||||||
</project>
|
|
||||||
8
.idea/modules.xml
generated
8
.idea/modules.xml
generated
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectModuleManager">
|
|
||||||
<modules>
|
|
||||||
<module fileurl="file://$PROJECT_DIR$/ATContentStudio.iml" filepath="$PROJECT_DIR$/ATContentStudio.iml" />
|
|
||||||
</modules>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
6
.idea/vcs.xml
generated
6
.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
eclipse.preferences.version=1
|
eclipse.preferences.version=1
|
||||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
||||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
org.eclipse.jdt.core.compiler.compliance=1.8
|
||||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||||
org.eclipse.jdt.core.compiler.source=1.6
|
org.eclipse.jdt.core.compiler.source=1.8
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<jardesc>
|
<jardesc>
|
||||||
<jar path="ATContentStudio/ATCS_v0.6.20.jar"/>
|
<jar path="ATContentStudio/ATCS_v0.6.14.jar"/>
|
||||||
<options buildIfNeeded="true" compress="true" descriptionLocation="/ATContentStudio/ATCS_JAR.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="false" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
|
<options buildIfNeeded="true" compress="true" descriptionLocation="/ATContentStudio/ATCS_JAR.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="false" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
|
||||||
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
|
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
|
||||||
<selectedProjects/>
|
<selectedProjects/>
|
||||||
|
|||||||
@@ -1,117 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module type="JAVA_MODULE" version="4">
|
|
||||||
<component name="EclipseModuleManager">
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/jide-oss.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/json_simple-1.1.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/junit-4.10.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/prefuse.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/rsyntaxtextarea.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/ui.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/bsh-2.0b4.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/jsoup-1.10.2.jar!/" />
|
|
||||||
<libelement value="jar://$MODULE_DIR$/lib/AndorsTrainer_v0.1.5.jar!/" />
|
|
||||||
<src_description expected_position="0">
|
|
||||||
<src_folder value="file://$MODULE_DIR$/src" expected_position="0" />
|
|
||||||
<src_folder value="file://$MODULE_DIR$/res" expected_position="1" />
|
|
||||||
<src_folder value="file://$MODULE_DIR$/hacked-libtiled" expected_position="2" />
|
|
||||||
<src_folder value="file://$MODULE_DIR$/siphash-zackehh/src/main/java" expected_position="3" />
|
|
||||||
<src_folder value="file://$MODULE_DIR$/minify" expected_position="4" />
|
|
||||||
</src_description>
|
|
||||||
</component>
|
|
||||||
<component name="NewModuleRootManager">
|
|
||||||
<output url="file://$MODULE_DIR$/bin" />
|
|
||||||
<exclude-output />
|
|
||||||
<content url="file://$MODULE_DIR$">
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/hacked-libtiled" isTestSource="false" />
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/minify" isTestSource="false" />
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/res" isTestSource="false" />
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/siphash-zackehh/src/main/java" isTestSource="false" />
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
||||||
</content>
|
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
|
||||||
<orderEntry type="inheritedJdk" />
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="jide-oss.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/jide-oss.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="json_simple-1.1.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/json_simple-1.1.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="junit-4.10.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/junit-4.10.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="prefuse.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/prefuse.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="rsyntaxtextarea.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/rsyntaxtextarea.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="ui.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/ui.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="bsh-2.0b4.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/bsh-2.0b4.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="jsoup-1.10.2.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/jsoup-1.10.2.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/jsoup-1.10.2-sources.jar!/" />
|
|
||||||
</SOURCES>
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
<orderEntry type="module-library">
|
|
||||||
<library name="AndorsTrainer_v0.1.5.jar">
|
|
||||||
<CLASSES>
|
|
||||||
<root url="jar://$MODULE_DIR$/lib/AndorsTrainer_v0.1.5.jar!/" />
|
|
||||||
</CLASSES>
|
|
||||||
<JAVADOC />
|
|
||||||
<SOURCES />
|
|
||||||
</library>
|
|
||||||
</orderEntry>
|
|
||||||
</component>
|
|
||||||
</module>
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
@echo off
|
|
||||||
echo.
|
|
||||||
echo ***
|
|
||||||
echo *** createProject v1.0 (2024-08-24)
|
|
||||||
echo ***
|
|
||||||
echo *** This script will help to setup an ATCS project
|
|
||||||
echo *** and connect it to a repo on Github
|
|
||||||
echo ***
|
|
||||||
echo.
|
|
||||||
rem Save this script anywhere on your PC (e.g. C:\AT\createProject.bat)
|
|
||||||
rem Then open a command shell: CMD
|
|
||||||
rem and call the script in the shell.
|
|
||||||
|
|
||||||
if "%1"=="" goto :noParamError
|
|
||||||
|
|
||||||
echo You have entered:
|
|
||||||
echo.
|
|
||||||
echo ATCS-project: %1
|
|
||||||
echo in Directory: %2
|
|
||||||
echo Github user: %3
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
if "%3"=="" goto :help
|
|
||||||
if not "%4"=="" goto :help
|
|
||||||
|
|
||||||
if not exist %2 md %2
|
|
||||||
|
|
||||||
rem --- Create ATCS project (if not already done)
|
|
||||||
:atcs
|
|
||||||
if not exist %2\%1\created\drawable\char_hero.png (
|
|
||||||
echo.
|
|
||||||
echo Do the following steps:
|
|
||||||
echo.
|
|
||||||
echo 1. Start ATCS
|
|
||||||
echo 2. Create your ATCS workspace in %2
|
|
||||||
echo 3. Add the new project %1
|
|
||||||
echo 4. Exit ATCS
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
goto :atcs
|
|
||||||
) else (
|
|
||||||
echo ATCS Project exists
|
|
||||||
)
|
|
||||||
|
|
||||||
rem --- Create git repository
|
|
||||||
rem This is the really important part :)
|
|
||||||
rem -- go into project dir (even if we do not need to create the git repo)
|
|
||||||
echo cd %2\%1
|
|
||||||
cd %2\%1
|
|
||||||
|
|
||||||
if not exist %2\%1\readme.md (
|
|
||||||
echo creating readme
|
|
||||||
|
|
||||||
echo # %1 > readme.md
|
|
||||||
) else (
|
|
||||||
echo readme already exists
|
|
||||||
)
|
|
||||||
|
|
||||||
if not exist %2\%1\.gitignore (
|
|
||||||
echo creating gitignore
|
|
||||||
|
|
||||||
echo .workspace > .gitignore
|
|
||||||
echo .project >> .gitignore
|
|
||||||
echo .workspace.json >> .gitignore
|
|
||||||
echo .project.json >> .gitignore
|
|
||||||
echo altered/drawable >> .gitignore
|
|
||||||
echo altered/drawable/* >> .gitignore
|
|
||||||
echo created/drawable >> .gitignore
|
|
||||||
echo created/drawable/* >> .gitignore
|
|
||||||
echo tmp/res/values/loadresources.xml >> .gitignore
|
|
||||||
) else (
|
|
||||||
echo gitignore already existed
|
|
||||||
)
|
|
||||||
|
|
||||||
:git
|
|
||||||
if not exist %2\%1\.git (
|
|
||||||
echo Initializing git
|
|
||||||
git init -b main || (
|
|
||||||
echo "failed to init git. Please make sure it is installed"
|
|
||||||
pause
|
|
||||||
goto :git
|
|
||||||
)
|
|
||||||
:git_commit
|
|
||||||
git add readme.md
|
|
||||||
git add .gitignore
|
|
||||||
git commit -m "Init project" || (
|
|
||||||
echo "failed to create the initial commit."
|
|
||||||
pause
|
|
||||||
goto :git_commit
|
|
||||||
)
|
|
||||||
echo Done initializing git
|
|
||||||
) else (
|
|
||||||
echo git was already initialized
|
|
||||||
)
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo Now create your repo %1 on https://github.com/%3 (if not already done)
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
echo pushing to git repo https://github.com/%3/%1.git
|
|
||||||
git remote add origin https://github.com/%3/%1.git
|
|
||||||
git push -u origin main
|
|
||||||
|
|
||||||
echo.
|
|
||||||
echo At last you have to find the repo in your git client:
|
|
||||||
echo - In Smartgit: Menu option: Repository / Search for repository
|
|
||||||
echo.
|
|
||||||
goto :end
|
|
||||||
|
|
||||||
:noParamError
|
|
||||||
echo.
|
|
||||||
echo You have given no parameter.
|
|
||||||
echo Maybe you have just double clicked it? That won't work.
|
|
||||||
echo I have opened a CMD shell for you. Enter the command in that shell.
|
|
||||||
start cmd
|
|
||||||
echo Please switch to the CMD shell
|
|
||||||
|
|
||||||
:help
|
|
||||||
echo.
|
|
||||||
echo Enter the command with 3 parameters:
|
|
||||||
echo %0 project path git-user
|
|
||||||
echo.
|
|
||||||
echo Example: %0 feygard_1 c:\AT\ATCS NutAndor
|
|
||||||
echo.
|
|
||||||
|
|
||||||
:end
|
|
||||||
echo.
|
|
||||||
echo *** End ***
|
|
||||||
pause
|
|
||||||
@@ -43,7 +43,7 @@ public class MapObject implements Cloneable
|
|||||||
{
|
{
|
||||||
private Properties properties = new Properties();
|
private Properties properties = new Properties();
|
||||||
private ObjectGroup objectGroup;
|
private ObjectGroup objectGroup;
|
||||||
private Rectangle bounds;
|
private Rectangle bounds = new Rectangle();
|
||||||
private String name = "Object";
|
private String name = "Object";
|
||||||
private String type = "";
|
private String type = "";
|
||||||
private String imageSource = "";
|
private String imageSource = "";
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ public class Sprite
|
|||||||
|
|
||||||
private String name = null;
|
private String name = null;
|
||||||
private int id = -1;
|
private int id = -1;
|
||||||
private int flags;
|
private int flags = KEY_LOOP;
|
||||||
private float frameRate = 1.0f; //one fps
|
private float frameRate = 1.0f; //one fps
|
||||||
private Tile[] frames;
|
private Tile[] frames;
|
||||||
|
|
||||||
|
|||||||
@@ -98,11 +98,7 @@ public class TileSet implements Iterable<Tile>
|
|||||||
|
|
||||||
File f = new File(imgFilename);
|
File f = new File(imgFilename);
|
||||||
|
|
||||||
BufferedImage image;
|
BufferedImage image = ImageIO.read(f.getCanonicalFile());
|
||||||
try {
|
|
||||||
image = ImageIO.read(f.getCanonicalFile());
|
|
||||||
} catch (IOException e) { throw new IOException("Failed to load " + imgFilename);
|
|
||||||
}
|
|
||||||
if (image == null) {
|
if (image == null) {
|
||||||
throw new IOException("Failed to load " + imgFilename);
|
throw new IOException("Failed to load " + imgFilename);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -913,8 +913,7 @@ public class TMXMapReader
|
|||||||
private class MapEntityResolver implements EntityResolver
|
private class MapEntityResolver implements EntityResolver
|
||||||
{
|
{
|
||||||
public InputSource resolveEntity(String publicId, String systemId) {
|
public InputSource resolveEntity(String publicId, String systemId) {
|
||||||
if (systemId.equals("http://mapeditor.org/dtd/1.0/map.dtd") ||
|
if (systemId.equals("http://mapeditor.org/dtd/1.0/map.dtd")) {
|
||||||
systemId.equals("https://mapeditor.org/dtd/1.0/map.dtd")) {
|
|
||||||
return new InputSource(TMXMapReader.class.getResourceAsStream(
|
return new InputSource(TMXMapReader.class.getResourceAsStream(
|
||||||
"resources/map.dtd"));
|
"resources/map.dtd"));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,9 +47,6 @@ import java.util.Vector;
|
|||||||
import java.util.zip.DeflaterOutputStream;
|
import java.util.zip.DeflaterOutputStream;
|
||||||
import java.util.zip.GZIPOutputStream;
|
import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.TMXMapSet;
|
|
||||||
|
|
||||||
import tiled.core.AnimatedTile;
|
import tiled.core.AnimatedTile;
|
||||||
import tiled.core.Map;
|
import tiled.core.Map;
|
||||||
import tiled.core.MapLayer;
|
import tiled.core.MapLayer;
|
||||||
@@ -153,7 +150,7 @@ public class TMXMapWriter
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void writeMap(Map map, XMLWriter w, String wp) throws IOException {
|
private void writeMap(Map map, XMLWriter w, String wp) throws IOException {
|
||||||
w.writeDocType("map", null, "https://mapeditor.org/dtd/1.0/map.dtd");
|
w.writeDocType("map", null, "http://mapeditor.org/dtd/1.0/map.dtd");
|
||||||
w.startElement("map");
|
w.startElement("map");
|
||||||
|
|
||||||
w.writeAttribute("version", "1.0");
|
w.writeAttribute("version", "1.0");
|
||||||
@@ -241,15 +238,7 @@ public class TMXMapWriter
|
|||||||
} else {
|
} else {
|
||||||
w.startElement("tileset");
|
w.startElement("tileset");
|
||||||
w.writeAttribute("firstgid", getFirstGidForTileset(set));
|
w.writeAttribute("firstgid", getFirstGidForTileset(set));
|
||||||
if (set.sheet != null && set.sheet.parent.getDataType() == Type.source) {
|
|
||||||
String fileName = set.getName();
|
|
||||||
if (fileName.length() > 3 && !(fileName.substring(fileName.length() - 4).equalsIgnoreCase(".png"))) {
|
|
||||||
fileName += ".png";
|
|
||||||
}
|
|
||||||
w.writeAttribute("source", (TMXMapSet.DEFAULT_REL_PATH_TO_DRAWABLE + fileName).replace("\\", "/"));
|
|
||||||
} else {
|
|
||||||
w.writeAttribute("source", getRelativePath(wp, source));
|
w.writeAttribute("source", getRelativePath(wp, source));
|
||||||
}
|
|
||||||
if (set.getBaseDir() != null) {
|
if (set.getBaseDir() != null) {
|
||||||
w.writeAttribute("basedir", set.getBaseDir());
|
w.writeAttribute("basedir", set.getBaseDir());
|
||||||
}
|
}
|
||||||
@@ -290,15 +279,7 @@ public class TMXMapWriter
|
|||||||
|
|
||||||
if (tileBitmapFile != null) {
|
if (tileBitmapFile != null) {
|
||||||
w.startElement("image");
|
w.startElement("image");
|
||||||
if (set.sheet != null && set.sheet.parent.getDataType() == Type.source) {
|
|
||||||
String fileName = set.getName();
|
|
||||||
if (fileName.length() > 3 && !(fileName.substring(fileName.length() - 4).equalsIgnoreCase(".png"))) {
|
|
||||||
fileName += ".png";
|
|
||||||
}
|
|
||||||
w.writeAttribute("source", (TMXMapSet.DEFAULT_REL_PATH_TO_DRAWABLE + fileName).replace("\\", "/"));
|
|
||||||
} else {
|
|
||||||
w.writeAttribute("source", getRelativePath(wp, tileBitmapFile));
|
w.writeAttribute("source", getRelativePath(wp, tileBitmapFile));
|
||||||
}
|
|
||||||
if (set.sheetDimensions != null) {
|
if (set.sheetDimensions != null) {
|
||||||
w.writeAttribute("width", set.sheetDimensions.width);
|
w.writeAttribute("width", set.sheetDimensions.width);
|
||||||
w.writeAttribute("height", set.sheetDimensions.height);
|
w.writeAttribute("height", set.sheetDimensions.height);
|
||||||
@@ -588,7 +569,7 @@ public class TMXMapWriter
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Iterate while parents are the same
|
// Iterate while parents are the same
|
||||||
int shared;
|
int shared = 0;
|
||||||
int maxShared = Math.min(fromParents.size(), toParents.size());
|
int maxShared = Math.min(fromParents.size(), toParents.size());
|
||||||
for (shared = 0; shared < maxShared; shared++) {
|
for (shared = 0; shared < maxShared; shared++) {
|
||||||
String fromParent = fromParents.get(shared);
|
String fromParent = fromParents.get(shared);
|
||||||
|
|||||||
BIN
lib/AndorsTrainer_v0.1.4.jar
Normal file
BIN
lib/AndorsTrainer_v0.1.4.jar
Normal file
Binary file not shown.
BIN
lib/JGit/JavaEWAH-1.1.6.jar
Executable file
BIN
lib/JGit/JavaEWAH-1.1.6.jar
Executable file
Binary file not shown.
BIN
lib/JGit/commons-codec-1.6.jar
Executable file
BIN
lib/JGit/commons-codec-1.6.jar
Executable file
Binary file not shown.
BIN
lib/JGit/commons-logging-1.1.3.jar
Executable file
BIN
lib/JGit/commons-logging-1.1.3.jar
Executable file
Binary file not shown.
BIN
lib/JGit/httpclient-4.3.6.jar
Executable file
BIN
lib/JGit/httpclient-4.3.6.jar
Executable file
Binary file not shown.
BIN
lib/JGit/httpcore-4.3.3.jar
Executable file
BIN
lib/JGit/httpcore-4.3.3.jar
Executable file
Binary file not shown.
BIN
lib/JGit/jsch-0.1.54.jar
Executable file
BIN
lib/JGit/jsch-0.1.54.jar
Executable file
Binary file not shown.
BIN
lib/JGit/jzlib-1.0.7.jar
Executable file
BIN
lib/JGit/jzlib-1.0.7.jar
Executable file
Binary file not shown.
BIN
lib/JGit/org.eclipse.jgit-4.9.0.201710071750-r-javadoc.jar
Executable file
BIN
lib/JGit/org.eclipse.jgit-4.9.0.201710071750-r-javadoc.jar
Executable file
Binary file not shown.
BIN
lib/JGit/org.eclipse.jgit-4.9.0.201710071750-r.jar
Executable file
BIN
lib/JGit/org.eclipse.jgit-4.9.0.201710071750-r.jar
Executable file
Binary file not shown.
BIN
lib/JGit/slf4j-api-1.7.2.jar
Executable file
BIN
lib/JGit/slf4j-api-1.7.2.jar
Executable file
Binary file not shown.
BIN
lib/jide-oss.jar
BIN
lib/jide-oss.jar
Binary file not shown.
1
packaging/ATCS_latest
Normal file
1
packaging/ATCS_latest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
v0.6.14
|
||||||
2
packaging/Linux/.gitignore
vendored
Normal file
2
packaging/Linux/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/ATCS_v*.zip
|
||||||
|
/ATCS_v*.zip.rename
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set "ATCS_DIR=%~dp0"
|
set "ATCS_DIR=%~dp0"
|
||||||
set "MAX_MEM=1024M"
|
set "MAX_MEM=512M"
|
||||||
REM required minimum java version is 11
|
set "CP=%ATCS_DIR%lib\*"
|
||||||
set "JAVA=java.exe"
|
set "JAVA=javaw.exe"
|
||||||
set "JAVA_OPTS=-DFONT_SCALE=1.0 -Dswing.aatext=true"
|
set "JAVA_OPTS=-DFONT_SCALE=1.0 -Dswing.aatext=true"
|
||||||
set "ENV_FILE=%ATCS_DIR%ATCS.env.bat"
|
set "ENV_FILE=%ATCS_DIR%ATCS.env.bat"
|
||||||
|
set "MAIN_CLASS=com.gpl.rpg.atcontentstudio.ATContentStudio"
|
||||||
|
|
||||||
if exist "%ENV_FILE%" (
|
if exist "%ENV_FILE%" (
|
||||||
call "%ENV_FILE%"
|
call "%ENV_FILE%"
|
||||||
) else (
|
) else (
|
||||||
echo REM set "MAX_MEM=%MAX_MEM%">"%ENV_FILE%"
|
echo REM set "MAX_MEM=%MAX_MEM%">"%ENV_FILE%"
|
||||||
echo REM required minimum java version is 11
|
|
||||||
echo REM set "JAVA=%JAVA%">>"%ENV_FILE%"
|
echo REM set "JAVA=%JAVA%">>"%ENV_FILE%"
|
||||||
echo REM set "JAVA_OPTS=%JAVA_OPTS%">>"%ENV_FILE%"
|
echo REM set "JAVA_OPTS=%JAVA_OPTS%">>"%ENV_FILE%"
|
||||||
echo.>>"%ENV_FILE%"
|
echo.>>"%ENV_FILE%"
|
||||||
)
|
)
|
||||||
|
|
||||||
start "" "%JAVA%" %JAVA_OPTS% -Xmx%MAX_MEM% -jar "%ATCS_DIR%\ATCS.jar"
|
start "" "%JAVA%" %JAVA_OPTS% -Xmx%MAX_MEM% -cp "%CP%" %MAIN_CLASS%
|
||||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
22
packaging/Linux/ATCS/ATCS.sh
Normal file
22
packaging/Linux/ATCS/ATCS.sh
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
ATCS_DIR=$(dirname $(readlink -f "$0" || greadlink -f "$0" || stat -f "$0"))
|
||||||
|
MAX_MEM=512M
|
||||||
|
CP=$(find ${ATCS_DIR}/lib/ -name '*.jar' | paste -sd: -)
|
||||||
|
JAVA=java
|
||||||
|
JAVA_OPTS='-DFONT_SCALE=1.0 -Dswing.aatext=true'
|
||||||
|
ENV_FILE=${ATCS_DIR}/ATCS.env
|
||||||
|
MAIN_CLASS=com.gpl.rpg.atcontentstudio.ATContentStudio
|
||||||
|
|
||||||
|
if [ -f ${ENV_FILE} ]
|
||||||
|
then
|
||||||
|
source ${ENV_FILE}
|
||||||
|
else
|
||||||
|
echo "#MAX_MEM=${MAX_MEM}" > ${ENV_FILE}
|
||||||
|
echo "#JAVA=${JAVA}" >> ${ENV_FILE}
|
||||||
|
echo "#JAVA_OPTS=${JAVA_OPTS}" >> ${ENV_FILE}
|
||||||
|
echo "" >> ${ENV_FILE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
export ENV_FILE
|
||||||
|
|
||||||
|
$JAVA ${JAVA_OPTS} -Xmx${MAX_MEM} -cp ${CP} ${MAIN_CLASS}
|
||||||
1
packaging/Linux/ATCS/lib/.gitignore
vendored
Normal file
1
packaging/Linux/ATCS/lib/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/*.jar
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
Manifest-Version: 1.0
|
|
||||||
Main-Class: com.gpl.rpg.atcontentstudio.ATContentStudio
|
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
!include MUI2.nsh
|
!include MUI2.nsh
|
||||||
|
|
||||||
; Version will be passed as /DVERSION=vx.x.x
|
!define VERSION "0.6.14"
|
||||||
!define TRAINER_VERSION "0.1.5"
|
!define TRAINER_VERSION "0.1.4"
|
||||||
!define JAVA_BIN "java"
|
!define JAVA_BIN "javaw"
|
||||||
!define ATCS_SOURCE_DIR "..\..\"
|
|
||||||
|
|
||||||
Name "Andor's Trail Content Studio ${VERSION}"
|
Name "Andor's Trail Content Studio v${VERSION}"
|
||||||
OutFile "..\ATCS_${VERSION}_Setup.exe"
|
OutFile "ATCS_v${VERSION}_Setup.exe"
|
||||||
InstallDir "$PROGRAMFILES\ATCS\"
|
InstallDir "$PROGRAMFILES\ATCS\"
|
||||||
|
|
||||||
;SetCompressor /SOLID /FINAL lzma
|
;SetCompressor /SOLID /FINAL lzma
|
||||||
@@ -14,10 +13,10 @@ InstallDir "$PROGRAMFILES\ATCS\"
|
|||||||
Var StartMenuFolder
|
Var StartMenuFolder
|
||||||
|
|
||||||
!define MUI_WELCOMEPAGE_TITLE "Welcome to Andor's Trail Content Studio installer"
|
!define MUI_WELCOMEPAGE_TITLE "Welcome to Andor's Trail Content Studio installer"
|
||||||
!define MUI_WELCOMEPAGE_TEXT "This will install Andor's Trail Content Studio ${VERSION}"
|
!define MUI_WELCOMEPAGE_TEXT "This will install Andor's Trail Content Studio v${VERSION} installer"
|
||||||
!define MUI_FINISHPAGE_TEXT "Andor's Trail Content Studio ${VERSION} - Install completed !"
|
!define MUI_FINISHPAGE_TEXT "Andor's Trail Content Studio v${VERSION} install completed !"
|
||||||
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Andor's Trail Content Studio"
|
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Andor's Trail Content Studio"
|
||||||
!define MUI_PAGE_HEADER_TEXT "Installing Andor's Trail Content Studio ${VERSION}"
|
!define MUI_PAGE_HEADER_TEXT "Installing Andor's Trail Content Studio v${VERSION}"
|
||||||
|
|
||||||
|
|
||||||
;Start Menu Folder Page Configuration
|
;Start Menu Folder Page Configuration
|
||||||
@@ -47,50 +46,62 @@ Var StartMenuFolder
|
|||||||
!insertmacro MUI_UNPAGE_CONFIRM
|
!insertmacro MUI_UNPAGE_CONFIRM
|
||||||
!insertmacro MUI_UNPAGE_INSTFILES
|
!insertmacro MUI_UNPAGE_INSTFILES
|
||||||
|
|
||||||
|
|
||||||
!insertmacro MUI_LANGUAGE "English"
|
!insertmacro MUI_LANGUAGE "English"
|
||||||
|
|
||||||
|
|
||||||
;------------------------------------------------------------------------------------
|
|
||||||
Section install
|
Section install
|
||||||
|
|
||||||
;--- Create in ...\packaging\common\ ATCS.cmd ATCT.ico ATCS.jar
|
|
||||||
SetOutPath $INSTDIR
|
SetOutPath $INSTDIR
|
||||||
file "ATCS.ico"
|
file "ATCS.ico"
|
||||||
file "${ATCS_SOURCE_DIR}\packaging\common\ATCS.jar"
|
|
||||||
|
Delete "$INSTDIR\lib\*"
|
||||||
|
|
||||||
Call GetJRE
|
Call GetJRE
|
||||||
Pop $R0
|
Pop $R0
|
||||||
; file "${ATCS_SOURCE_DIR}\packaging\common\ATCS.cmd"
|
|
||||||
; !insertmacro _ReplaceInFile "ATCS.cmd" "java.exe" "$R0" (It was too much work this way)
|
|
||||||
FileOpen $9 "ATCS.cmd" w
|
FileOpen $9 "ATCS.cmd" w
|
||||||
FileWrite $9 '@echo off$\r$\n'
|
FileWrite $9 '@echo off$\r$\n'
|
||||||
FileWrite $9 '$\r$\n'
|
FileWrite $9 '$\r$\n'
|
||||||
FileWrite $9 'set "ATCS_DIR=%~dp0"$\r$\n'
|
FileWrite $9 'set "ATCS_DIR=%~dp0"$\r$\n'
|
||||||
FileWrite $9 'set "MAX_MEM=1024M"$\r$\n'
|
FileWrite $9 'set "MAX_MEM=512M"$\r$\n'
|
||||||
FileWrite $9 'REM required minimum java version is 11$\r$\n'
|
FileWrite $9 'set "CP=%ATCS_DIR%lib\*"$\r$\n'
|
||||||
FileWrite $9 'set "JAVA=$R0"$\r$\n'
|
FileWrite $9 'set "JAVA=$R0"$\r$\n'
|
||||||
FileWrite $9 'set "JAVA_OPTS=-DFONT_SCALE=1.0 -Dswing.aatext=true"$\r$\n'
|
FileWrite $9 'set "JAVA_OPTS="$\r$\n'
|
||||||
FileWrite $9 'set "ENV_FILE=%ATCS_DIR%ATCS.env.bat"$\r$\n'
|
FileWrite $9 'set "ENV_FILE=%ATCS_DIR%ATCS.env.bat"$\r$\n'
|
||||||
|
FileWrite $9 'set "MAIN_CLASS=com.gpl.rpg.atcontentstudio.ATContentStudio"$\r$\n'
|
||||||
FileWrite $9 '$\r$\n'
|
FileWrite $9 '$\r$\n'
|
||||||
FileWrite $9 'if exist "%ENV_FILE%" ($\r$\n'
|
FileWrite $9 'if exist "%ENV_FILE%" ($\r$\n'
|
||||||
FileWrite $9 ' call "%ENV_FILE%"$\r$\n'
|
FileWrite $9 ' call "%ENV_FILE%"$\r$\n'
|
||||||
FileWrite $9 ') else ($\r$\n'
|
FileWrite $9 ') else ($\r$\n'
|
||||||
FileWrite $9 ' echo REM set "MAX_MEM=%MAX_MEM%">"%ENV_FILE%"$\r$\n'
|
FileWrite $9 ' echo REM set "MAX_MEM=%MAX_MEM%">"%ENV_FILE%"$\r$\n'
|
||||||
FileWrite $9 ' echo REM required minimum java version is 11$\r$\n'
|
|
||||||
FileWrite $9 ' echo REM set "JAVA=%JAVA%">>"%ENV_FILE%"$\r$\n'
|
FileWrite $9 ' echo REM set "JAVA=%JAVA%">>"%ENV_FILE%"$\r$\n'
|
||||||
FileWrite $9 ' echo REM set "JAVA_OPTS=%JAVA_OPTS%">>"%ENV_FILE%"$\r$\n'
|
FileWrite $9 ' echo REM set "JAVA_OPTS=%JAVA_OPTS%">>"%ENV_FILE%"$\r$\n'
|
||||||
FileWrite $9 ' echo.>>"%ENV_FILE%"$\r$\n'
|
FileWrite $9 ' echo.>>"%ENV_FILE%"$\r$\n'
|
||||||
FileWrite $9 ')$\r$\n'
|
FileWrite $9 ')$\r$\n'
|
||||||
FileWrite $9 '$\r$\n'
|
FileWrite $9 '$\r$\n'
|
||||||
FileWrite $9 'start "" "%JAVA%" %JAVA_OPTS% -Xmx%MAX_MEM% -jar "%ATCS_DIR%\ATCS.jar"$\r$\n'
|
FileWrite $9 'start "" "%JAVA%" %JAVA_OPTS% -Xmx%MAX_MEM% -cp "%CP%" %MAIN_CLASS%$\r$\n'
|
||||||
FileClose $9
|
FileClose $9
|
||||||
|
|
||||||
|
SetOutPath "$INSTDIR\lib\"
|
||||||
|
file "jide-oss.jar"
|
||||||
|
file "ui.jar"
|
||||||
|
file "AndorsTrainer_v${TRAINER_VERSION}.jar"
|
||||||
|
file "junit-4.10.jar"
|
||||||
|
file "json_simple-1.1.jar"
|
||||||
|
file "ATCS_v${VERSION}.jar"
|
||||||
|
file "rsyntaxtextarea.jar"
|
||||||
|
file "prefuse.jar"
|
||||||
|
file "bsh-2.0b4.jar"
|
||||||
|
file "jsoup-1.10.2.jar"
|
||||||
|
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
|
||||||
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
||||||
|
|
||||||
|
|
||||||
!insertmacro MUI_STARTMENU_WRITE_BEGIN "ATCS"
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN "ATCS"
|
||||||
|
|
||||||
;--- Create shortcuts
|
;Create shortcuts
|
||||||
CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
|
CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
|
||||||
CreateShortcut "$SMPROGRAMS\$StartMenuFolder\Andor's Trail Content Studio.lnk" "$INSTDIR\ATCS.cmd" "" "$INSTDIR\ATCS.ico"
|
CreateShortcut "$SMPROGRAMS\$StartMenuFolder\Andor's Trail Content Studio.lnk" "$INSTDIR\ATCS.cmd" "" "$INSTDIR\ATCS.ico"
|
||||||
CreateShortcut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
CreateShortcut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
||||||
@@ -99,8 +110,6 @@ Section install
|
|||||||
|
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
|
|
||||||
;------------------------------------------------------------------------------------
|
|
||||||
Section uninstall
|
Section uninstall
|
||||||
|
|
||||||
Delete "$INSTDIR\lib\jide-oss.jar"
|
Delete "$INSTDIR\lib\jide-oss.jar"
|
||||||
@@ -108,17 +117,18 @@ Section uninstall
|
|||||||
Delete "$INSTDIR\lib\junit-4.10.jar"
|
Delete "$INSTDIR\lib\junit-4.10.jar"
|
||||||
Delete "$INSTDIR\lib\json_simple-1.1.jar"
|
Delete "$INSTDIR\lib\json_simple-1.1.jar"
|
||||||
Delete "$INSTDIR\lib\AndorsTrainer_v${TRAINER_VERSION}.jar"
|
Delete "$INSTDIR\lib\AndorsTrainer_v${TRAINER_VERSION}.jar"
|
||||||
|
Delete "$INSTDIR\lib\ATCS_v${VERSION}.jar"
|
||||||
Delete "$INSTDIR\lib\rsyntaxtextarea.jar"
|
Delete "$INSTDIR\lib\rsyntaxtextarea.jar"
|
||||||
Delete "$INSTDIR\lib\prefuse.jar"
|
Delete "$INSTDIR\lib\prefuse.jar"
|
||||||
Delete "$INSTDIR\lib\bsh-2.0b4.jar"
|
Delete "$INSTDIR\lib\bsh-2.0b4.jar"
|
||||||
Delete "$INSTDIR\lib\jsoup-1.10.2.jar"
|
Delete "$INSTDIR\lib\jsoup-1.10.2.jar"
|
||||||
RMDir "$INSTDIR\lib\"
|
RMDir "$INSTDIR\lib\"
|
||||||
|
|
||||||
Delete "$INSTDIR\ATCS.ico"
|
Delete "$INSTDIR\ATCS.ico"
|
||||||
Delete "$INSTDIR\ATCS.cmd"
|
Delete "$INSTDIR\ATCS.cmd"
|
||||||
Delete "$INSTDIR\ATCS.env.bat"
|
Delete "$INSTDIR\ATCS.env.bat"
|
||||||
Delete "$INSTDIR\ATCS.jar"
|
|
||||||
Delete "$INSTDIR\Uninstall.exe"
|
Delete "$INSTDIR\Uninstall.exe"
|
||||||
|
|
||||||
RMDir "$INSTDIR"
|
RMDir "$INSTDIR"
|
||||||
|
|
||||||
!insertmacro MUI_STARTMENU_GETFOLDER "ATCS" $StartMenuFolder
|
!insertmacro MUI_STARTMENU_GETFOLDER "ATCS" $StartMenuFolder
|
||||||
@@ -130,20 +140,19 @@ Section uninstall
|
|||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
|
|
||||||
;------------------------------------------------------------------------------------
|
|
||||||
Function GetJRE
|
Function GetJRE
|
||||||
;
|
;
|
||||||
; Find JRE (java.exe)
|
; Find JRE (javaw.exe)
|
||||||
; DISABLED 1 - in .\jre directory (JRE Installed with application)
|
; DISABLED 1 - in .\jre directory (JRE Installed with application)
|
||||||
; 2 - in JAVA_HOME environment variable
|
; 2 - in JAVA_HOME environment variable
|
||||||
; 3 - in the registry
|
; 3 - in the registry
|
||||||
; 4 - assume java.exe in current dir or PATH
|
; 4 - assume javaw.exe in current dir or PATH
|
||||||
|
|
||||||
Push $R0
|
Push $R0
|
||||||
Push $R1
|
Push $R1
|
||||||
|
|
||||||
;ClearErrors
|
;ClearErrors
|
||||||
;StrCpy $R0 "$EXEDIR\jre\bin\java.exe"
|
;StrCpy $R0 "$EXEDIR\jre\bin\javaw.exe"
|
||||||
;IfFileExists $R0 JreFound
|
;IfFileExists $R0 JreFound
|
||||||
;StrCpy $R0 ""
|
;StrCpy $R0 ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# get the directory of this script
|
|
||||||
ATCS_DIR="$(dirname "$(readlink -f "$0" || greadlink -f "$0" || stat -f "$0")")"
|
|
||||||
echo "ATCS_DIR: '${ATCS_DIR}'"
|
|
||||||
|
|
||||||
MAX_MEM="512M"
|
|
||||||
JAVA="java" # minimum required version is Java 11
|
|
||||||
JAVA_OPTS='-DFONT_SCALE=1.0 -Dswing.aatext=true'
|
|
||||||
|
|
||||||
ENV_FILE="${ATCS_DIR}/ATCS.env"
|
|
||||||
|
|
||||||
if [ -f "${ENV_FILE}" ]; then
|
|
||||||
source "${ENV_FILE}"
|
|
||||||
else
|
|
||||||
{
|
|
||||||
echo "#MAX_MEM=\"${MAX_MEM}\""
|
|
||||||
echo "#JAVA=\"${JAVA}\" # minimum required version is Java 11"
|
|
||||||
echo "#JAVA_OPTS=\"${JAVA_OPTS}\""
|
|
||||||
echo ""
|
|
||||||
}>"${ENV_FILE}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
export ENV_FILE
|
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
|
||||||
# (spellchecker is disabled for this line, because we want it to be split into multiple arguments)
|
|
||||||
$JAVA ${JAVA_OPTS} -Xmx${MAX_MEM} -jar "${ATCS_DIR}/ATCS.jar"
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
sh ./package.sh -windows
|
|
||||||
@@ -1,125 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Script to build ATCS.jar, replicating IntelliJ artifact definition
|
|
||||||
# Linux and Windows compatible
|
|
||||||
|
|
||||||
# --- Platform Detection ---
|
|
||||||
if [ "$1" = "-windows" ]; then
|
|
||||||
echo "Got '-windows' flag. Running Windows version"
|
|
||||||
PLATFORM="WINDOWS"
|
|
||||||
else
|
|
||||||
echo "No '-windows' flag. Running Linux version"
|
|
||||||
PLATFORM="LINUX"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# --- Configuration ---
|
|
||||||
PACKAGING_DIR=$(dirname "$(readlink -f "$0" || greadlink -f "$0" || stat -f "$0")") # Directory of this script
|
|
||||||
ATCS_SOURCE_DIR=$(dirname "${PACKAGING_DIR}") # Parent directory of this script, assumed to be ATCS source root
|
|
||||||
TEMP_DIR="${PACKAGING_DIR}/tmp"
|
|
||||||
JAR_LOCATION="${PACKAGING_DIR}/ATCS.jar" # Output JAR location as per script
|
|
||||||
MANIFEST_LOCATION="${PACKAGING_DIR}/Manifest.txt"
|
|
||||||
VERSION_FILE="${ATCS_SOURCE_DIR}/res/ATCS_latest"
|
|
||||||
SOURCE_BASE_DIR="${ATCS_SOURCE_DIR}/src" # Base directory for standard source code
|
|
||||||
LIB_BASE_DIR="${ATCS_SOURCE_DIR}/lib" # Base directory for libraries
|
|
||||||
|
|
||||||
# --- **ADDITIONAL SOURCE CODE FOLDERS** ---
|
|
||||||
EXTRA_SOURCE_DIRS=(
|
|
||||||
"hacked-libtiled"
|
|
||||||
"minify"
|
|
||||||
"siphash-zackehh/src/main/java"
|
|
||||||
)
|
|
||||||
|
|
||||||
# --- Libraries to include ---
|
|
||||||
LIBRARIES=(
|
|
||||||
"bsh-2.0b4.jar"
|
|
||||||
"jide-oss.jar"
|
|
||||||
"json_simple-1.1.jar"
|
|
||||||
"jsoup-1.10.2.jar"
|
|
||||||
"junit-4.10.jar"
|
|
||||||
"prefuse.jar"
|
|
||||||
"rsyntaxtextarea.jar"
|
|
||||||
"ui.jar"
|
|
||||||
)
|
|
||||||
|
|
||||||
# --- Get version ---
|
|
||||||
echo "Getting version"
|
|
||||||
VERSION=$(tr -d '[:space:]' < "${VERSION_FILE}")
|
|
||||||
echo "Got version ${VERSION}"
|
|
||||||
|
|
||||||
# --- Prepare temporary directory ---
|
|
||||||
echo "Removing tmp folder"
|
|
||||||
rm -rf "${TEMP_DIR}"
|
|
||||||
echo "Recreating tmp folder"
|
|
||||||
mkdir -p "${TEMP_DIR}"
|
|
||||||
|
|
||||||
# --- **EXTRACT lib files directly to TEMP_DIR** ---
|
|
||||||
echo 'Extracting lib files to TEMP_DIR'
|
|
||||||
for LIB in "${LIBRARIES[@]}"; do
|
|
||||||
echo "Extracting library: ${LIB}"
|
|
||||||
unzip -qo "${LIB_BASE_DIR}/${LIB}" -d "${TEMP_DIR}" # Extract JAR contents to TEMP_DIR root
|
|
||||||
done
|
|
||||||
|
|
||||||
# --- Set ClassPath ---
|
|
||||||
echo "Getting source files"
|
|
||||||
# Find all java files in source directories
|
|
||||||
SOURCE_FILES=$(find "${SOURCE_BASE_DIR}" "${EXTRA_SOURCE_DIRS[@]/#/${ATCS_SOURCE_DIR}/}" -name "*.java" -print)
|
|
||||||
#echo "SourceFiles: ${SOURCE_FILES}"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# --- Build Java classes ---
|
|
||||||
echo 'Building java classes'
|
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
|
||||||
# (we need word splitting here to pass multiple files)
|
|
||||||
javac -cp "${TEMP_DIR}" -d "${TEMP_DIR}" ${SOURCE_FILES}
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Compilation failed. Please check errors above."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Compilation successful"
|
|
||||||
|
|
||||||
# --- Copy res stuff to temp folder ---
|
|
||||||
echo "Copying some stuff to temp folder"
|
|
||||||
cp -r "${ATCS_SOURCE_DIR}"/res/* "${TEMP_DIR}/"
|
|
||||||
mkdir -p "${TEMP_DIR}/com/gpl/rpg/atcontentstudio/img"
|
|
||||||
mkdir -p "${TEMP_DIR}/tiled/io/resources/"
|
|
||||||
cp -r "${ATCS_SOURCE_DIR}"/src/com/gpl/rpg/atcontentstudio/img/* "${TEMP_DIR}/com/gpl/rpg/atcontentstudio/img/" # some icons
|
|
||||||
cp -r "${ATCS_SOURCE_DIR}"/hacked-libtiled/tiled/io/resources/* "${TEMP_DIR}/tiled/io/resources/" # dtd file for tmx maps
|
|
||||||
cp "${VERSION_FILE}" "${TEMP_DIR}/" # Copy version file
|
|
||||||
|
|
||||||
# --- Create JAR file ---
|
|
||||||
echo ""
|
|
||||||
echo "Creating jar at location: ${JAR_LOCATION}"
|
|
||||||
|
|
||||||
cd "${TEMP_DIR}" || exit # Change to temp dir for JAR command
|
|
||||||
|
|
||||||
# JAR command WITHOUT lib directory
|
|
||||||
jar cfm "${JAR_LOCATION}" "${MANIFEST_LOCATION}" -C . .
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "JAR creation failed."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd "${PACKAGING_DIR}" || exit # Go back to packaging dir
|
|
||||||
|
|
||||||
echo ''
|
|
||||||
echo "Done creating jar at ${JAR_LOCATION}"
|
|
||||||
cp -f "${JAR_LOCATION}" "${PACKAGING_DIR}/common/ATCS.jar" # Copy JAR to versioned name
|
|
||||||
|
|
||||||
# --- Create archive ---
|
|
||||||
cd "${PACKAGING_DIR}" || exit
|
|
||||||
echo "Creating archive"
|
|
||||||
if [ "$PLATFORM" = "WINDOWS" ]; then
|
|
||||||
# Use PowerShell's Compress-Archive which is available by default on Windows
|
|
||||||
powershell.exe -Command "Compress-Archive -Path './common/*' -DestinationPath './ATCS_${VERSION}.zip' -Force"
|
|
||||||
else
|
|
||||||
# Use zip command on Linux
|
|
||||||
zip -r "ATCS_${VERSION}.zip" common/* # archive the 'common' folder which now contains the JAR and libs
|
|
||||||
fi
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Archive creation failed."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Created archive at ${PACKAGING_DIR}/ATCS_${VERSION}.zip"
|
|
||||||
|
|
||||||
echo "Script finished."
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
v0.6.24
|
|
||||||
@@ -1,95 +1,64 @@
|
|||||||
atcs.spritesheet.actorconditions_1.category=actorcondition
|
atcs.spritesheet.actorconditions_1.category=actorcondition
|
||||||
atcs.spritesheet.actorconditions_2.category=actorcondition
|
atcs.spritesheet.actorconditions_2.category=actorcondition
|
||||||
atcs.spritesheet.actorconditions_japozero.category=actorcondition
|
atcs.spritesheet.actorconditions_japozero.category=actorcondition
|
||||||
atcs.spritesheet.actorconditions_newb.category=actorcondition
|
|
||||||
atcs.spritesheet.actorconditions_omi1.category=actorcondition
|
|
||||||
atcs.spritesheet.actorconditions_omi2.category=actorcondition
|
|
||||||
|
|
||||||
atcs.spritesheet.effect_blood3.animate=true
|
|
||||||
atcs.spritesheet.effect_blood4.animate=true
|
|
||||||
atcs.spritesheet.effect_bluetentacle.animate=true
|
|
||||||
atcs.spritesheet.effect_heal2.animate=true
|
|
||||||
atcs.spritesheet.effect_miss1.animate=true
|
|
||||||
atcs.spritesheet.effect_poison1.animate=true
|
|
||||||
atcs.spritesheet.effect_tometik1.animate=true
|
|
||||||
atcs.spritesheet.effect_tometik2.animate=true
|
|
||||||
|
|
||||||
atcs.spritesheet.items_armours.category=item
|
atcs.spritesheet.items_armours.category=item
|
||||||
atcs.spritesheet.items_armours_2.category=item
|
atcs.spritesheet.items_armours_2.category=item
|
||||||
atcs.spritesheet.items_armours_3.category=item
|
atcs.spritesheet.items_armours_3.category=item
|
||||||
atcs.spritesheet.items_books.category=item
|
atcs.spritesheet.items_weapons.category=item
|
||||||
atcs.spritesheet.items_consumables.category=item
|
atcs.spritesheet.items_weapons_2.category=item
|
||||||
atcs.spritesheet.items_consumables_omi1.category=item
|
atcs.spritesheet.items_weapons_3.category=item
|
||||||
atcs.spritesheet.items_feygard1.category=item
|
|
||||||
atcs.spritesheet.items_g03_package_omi1.category=item
|
|
||||||
atcs.spritesheet.items_japozero.category=item
|
|
||||||
atcs.spritesheet.items_jewelry.category=item
|
atcs.spritesheet.items_jewelry.category=item
|
||||||
|
atcs.spritesheet.items_rings_1.category=item
|
||||||
|
atcs.spritesheet.items_necklaces_1.category=item
|
||||||
|
atcs.spritesheet.items_consumables.category=item
|
||||||
|
atcs.spritesheet.items_japozero.category=item
|
||||||
|
atcs.spritesheet.items_books.category=item
|
||||||
atcs.spritesheet.items_misc.category=item
|
atcs.spritesheet.items_misc.category=item
|
||||||
atcs.spritesheet.items_misc_2.category=item
|
atcs.spritesheet.items_misc_2.category=item
|
||||||
atcs.spritesheet.items_misc_3.category=item
|
atcs.spritesheet.items_misc_3.category=item
|
||||||
atcs.spritesheet.items_misc_4.category=item
|
atcs.spritesheet.items_misc_4.category=item
|
||||||
atcs.spritesheet.items_misc_5.category=item
|
atcs.spritesheet.items_misc_5.category=item
|
||||||
atcs.spritesheet.items_misc_6.category=item
|
atcs.spritesheet.items_misc_6.category=item
|
||||||
atcs.spritesheet.items_necklaces_1.category=item
|
|
||||||
atcs.spritesheet.items_newb.category=item
|
|
||||||
atcs.spritesheet.items_omgeeky.category=item
|
|
||||||
atcs.spritesheet.items_omi2.category=item
|
|
||||||
atcs.spritesheet.items_phoenix01.category=item
|
|
||||||
atcs.spritesheet.items_reterski_1.category=item
|
atcs.spritesheet.items_reterski_1.category=item
|
||||||
atcs.spritesheet.items_rijackson_1.category=item
|
|
||||||
atcs.spritesheet.items_rings_1.category=item
|
|
||||||
atcs.spritesheet.items_tometik1.category=item
|
atcs.spritesheet.items_tometik1.category=item
|
||||||
atcs.spritesheet.items_tometik2.category=item
|
atcs.spritesheet.items_tometik2.category=item
|
||||||
atcs.spritesheet.items_tometik3.category=item
|
atcs.spritesheet.items_tometik3.category=item
|
||||||
atcs.spritesheet.items_weapons.category=item
|
|
||||||
atcs.spritesheet.items_weapons_2.category=item
|
|
||||||
atcs.spritesheet.items_weapons_3.category=item
|
|
||||||
|
|
||||||
atcs.spritesheet.monsters_antison.category=monster
|
|
||||||
atcs.spritesheet.monsters_armor1.category=monster
|
atcs.spritesheet.monsters_armor1.category=monster
|
||||||
atcs.spritesheet.monsters_arulirs.category=monster
|
|
||||||
|
|
||||||
atcs.spritesheet.monsters_cats.category=monster
|
|
||||||
atcs.spritesheet.monsters_dogs.category=monster
|
atcs.spritesheet.monsters_dogs.category=monster
|
||||||
atcs.spritesheet.monsters_eye1.category=monster
|
atcs.spritesheet.monsters_eye1.category=monster
|
||||||
atcs.spritesheet.monsters_eye2.category=monster
|
atcs.spritesheet.monsters_eye2.category=monster
|
||||||
atcs.spritesheet.monsters_eye3.category=monster
|
atcs.spritesheet.monsters_eye3.category=monster
|
||||||
atcs.spritesheet.monsters_eye4.category=monster
|
atcs.spritesheet.monsters_eye4.category=monster
|
||||||
atcs.spritesheet.monsters_fatboy73.category=monster
|
|
||||||
atcs.spritesheet.monsters_ghost1.category=monster
|
atcs.spritesheet.monsters_ghost1.category=monster
|
||||||
|
atcs.spritesheet.monsters_hydra1.category=monster
|
||||||
atcs.spritesheet.monsters_gisons.category=monster
|
atcs.spritesheet.monsters_hydra1.sizex=64
|
||||||
atcs.spritesheet.monsters_guynmart.category=monster
|
atcs.spritesheet.monsters_hydra1.sizey=64
|
||||||
|
|
||||||
atcs.spritesheet.monsters_insects.category=monster
|
atcs.spritesheet.monsters_insects.category=monster
|
||||||
atcs.spritesheet.monsters_johny.category=monster
|
|
||||||
atcs.spritesheet.monsters_karvis1.category=monster
|
|
||||||
atcs.spritesheet.monsters_karvis2.category=monster
|
|
||||||
atcs.spritesheet.monsters_ld1.category=monster
|
|
||||||
atcs.spritesheet.monsters_ld2.category=monster
|
|
||||||
atcs.spritesheet.monsters_liches.category=monster
|
atcs.spritesheet.monsters_liches.category=monster
|
||||||
atcs.spritesheet.monsters_mage.category=monster
|
atcs.spritesheet.monsters_mage.category=monster
|
||||||
atcs.spritesheet.monsters_mage2.category=monster
|
atcs.spritesheet.monsters_mage2.category=monster
|
||||||
atcs.spritesheet.monsters_maksiu1.category=monster
|
|
||||||
atcs.spritesheet.monsters_man1.category=monster
|
atcs.spritesheet.monsters_man1.category=monster
|
||||||
atcs.spritesheet.monsters_men.category=monster
|
atcs.spritesheet.monsters_men.category=monster
|
||||||
atcs.spritesheet.monsters_men2.category=monster
|
atcs.spritesheet.monsters_men2.category=monster
|
||||||
atcs.spritesheet.monsters_misc.category=monster
|
atcs.spritesheet.monsters_misc.category=monster
|
||||||
atcs.spritesheet.monsters_newb_1.category=monster
|
|
||||||
atcs.spritesheet.monsters_omi1.category=monster
|
|
||||||
atcs.spritesheet.monsters_omi1_b.category=monster
|
|
||||||
atcs.spritesheet.monsters_omi2.category=monster
|
|
||||||
atcs.spritesheet.monsters_phoenix01.category=monster
|
|
||||||
atcs.spritesheet.monsters_rats.category=monster
|
atcs.spritesheet.monsters_rats.category=monster
|
||||||
atcs.spritesheet.monsters_redshrike1.category=monster
|
|
||||||
atcs.spritesheet.monsters_rltiles1.category=monster
|
|
||||||
atcs.spritesheet.monsters_rltiles2.category=monster
|
|
||||||
atcs.spritesheet.monsters_rltiles3.category=monster
|
|
||||||
atcs.spritesheet.monsters_rltiles4.category=monster
|
|
||||||
atcs.spritesheet.monsters_rogue1.category=monster
|
atcs.spritesheet.monsters_rogue1.category=monster
|
||||||
atcs.spritesheet.monsters_skeleton1.category=monster
|
atcs.spritesheet.monsters_skeleton1.category=monster
|
||||||
atcs.spritesheet.monsters_skeleton2.category=monster
|
atcs.spritesheet.monsters_skeleton2.category=monster
|
||||||
atcs.spritesheet.monsters_snakes.category=monster
|
atcs.spritesheet.monsters_snakes.category=monster
|
||||||
|
atcs.spritesheet.monsters_warrior1.category=monster
|
||||||
|
atcs.spritesheet.monsters_wraiths.category=monster
|
||||||
|
atcs.spritesheet.monsters_zombie1.category=monster
|
||||||
|
atcs.spritesheet.monsters_zombie2.category=monster
|
||||||
|
atcs.spritesheet.monsters_karvis1.category=monster
|
||||||
|
atcs.spritesheet.monsters_karvis2.category=monster
|
||||||
|
atcs.spritesheet.monsters_rltiles1.category=monster
|
||||||
|
atcs.spritesheet.monsters_rltiles2.category=monster
|
||||||
|
atcs.spritesheet.monsters_rltiles3.category=monster
|
||||||
|
atcs.spritesheet.monsters_rltiles4.category=monster
|
||||||
|
atcs.spritesheet.monsters_redshrike1.category=monster
|
||||||
|
atcs.spritesheet.monsters_ld1.category=monster
|
||||||
|
atcs.spritesheet.monsters_ld2.category=monster
|
||||||
atcs.spritesheet.monsters_tometik1.category=monster
|
atcs.spritesheet.monsters_tometik1.category=monster
|
||||||
atcs.spritesheet.monsters_tometik2.category=monster
|
atcs.spritesheet.monsters_tometik2.category=monster
|
||||||
atcs.spritesheet.monsters_tometik3.category=monster
|
atcs.spritesheet.monsters_tometik3.category=monster
|
||||||
@@ -100,39 +69,20 @@ atcs.spritesheet.monsters_tometik7.category=monster
|
|||||||
atcs.spritesheet.monsters_tometik8.category=monster
|
atcs.spritesheet.monsters_tometik8.category=monster
|
||||||
atcs.spritesheet.monsters_tometik9.category=monster
|
atcs.spritesheet.monsters_tometik9.category=monster
|
||||||
atcs.spritesheet.monsters_tometik10.category=monster
|
atcs.spritesheet.monsters_tometik10.category=monster
|
||||||
atcs.spritesheet.monsters_warrior1.category=monster
|
|
||||||
atcs.spritesheet.monsters_unknown.category=monster
|
|
||||||
atcs.spritesheet.monsters_wraiths.category=monster
|
|
||||||
atcs.spritesheet.monsters_zombie1.category=monster
|
|
||||||
atcs.spritesheet.monsters_zombie2.category=monster
|
|
||||||
|
|
||||||
atcs.spritesheet.monsters_bosses_2x2.category=monster
|
|
||||||
atcs.spritesheet.monsters_bosses_2x2.sizex=64
|
|
||||||
atcs.spritesheet.monsters_bosses_2x2.sizey=64
|
|
||||||
atcs.spritesheet.monsters_cyclops.category=monster
|
|
||||||
atcs.spritesheet.monsters_cyclops.sizex=64
|
|
||||||
atcs.spritesheet.monsters_cyclops.sizey=96
|
|
||||||
atcs.spritesheet.monsters_demon1.category=monster
|
atcs.spritesheet.monsters_demon1.category=monster
|
||||||
atcs.spritesheet.monsters_demon1.sizex=64
|
atcs.spritesheet.monsters_demon1.sizex=64
|
||||||
atcs.spritesheet.monsters_demon1.sizey=64
|
atcs.spritesheet.monsters_demon1.sizey=64
|
||||||
atcs.spritesheet.monsters_demon2.category=monster
|
atcs.spritesheet.monsters_demon2.category=monster
|
||||||
atcs.spritesheet.monsters_demon2.sizex=64
|
atcs.spritesheet.monsters_demon2.sizex=64
|
||||||
atcs.spritesheet.monsters_demon2.sizey=64
|
atcs.spritesheet.monsters_demon2.sizey=64
|
||||||
atcs.spritesheet.monsters_giantbasilisk.category=monster
|
atcs.spritesheet.monsters_cyclops.category=monster
|
||||||
atcs.spritesheet.monsters_giantbasilisk.sizex=64
|
atcs.spritesheet.monsters_cyclops.sizex=64
|
||||||
atcs.spritesheet.monsters_giantbasilisk.sizey=64
|
atcs.spritesheet.monsters_cyclops.sizey=96
|
||||||
atcs.spritesheet.monsters_hydra1.category=monster
|
atcs.spritesheet.effect_blood3.animate=true
|
||||||
atcs.spritesheet.monsters_hydra1.sizex=64
|
atcs.spritesheet.effect_blood4.animate=true
|
||||||
atcs.spritesheet.monsters_hydra1.sizey=64
|
atcs.spritesheet.effect_bluetentacle.animate=true
|
||||||
atcs.spritesheet.monsters_newb_2.category=monster
|
atcs.spritesheet.effect_heal2.animate=true
|
||||||
atcs.spritesheet.monsters_newb_2.sizex=64
|
atcs.spritesheet.effect_poison1.animate=true
|
||||||
atcs.spritesheet.monsters_newb_2.sizey=32
|
atcs.spritesheet.effect_tometik1.animate=true
|
||||||
atcs.spritesheet.monsters_newb_3.category=monster
|
atcs.spritesheet.effect_tometik2.animate=true
|
||||||
atcs.spritesheet.monsters_newb_3.sizex=64
|
atcs.spritesheet.monsters_guynmart.category=monster
|
||||||
atcs.spritesheet.monsters_newb_3.sizey=64
|
|
||||||
atcs.spritesheet.monsters_newb_4.category=monster
|
|
||||||
atcs.spritesheet.monsters_newb_4.sizex=32
|
|
||||||
atcs.spritesheet.monsters_newb_4.sizey=64
|
|
||||||
atcs.spritesheet.monsters_1x2.category=monster
|
|
||||||
atcs.spritesheet.monsters_1x2.sizex=32
|
|
||||||
atcs.spritesheet.monsters_1x2.sizey=64
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
Manifest-Version: 1.0
|
|
||||||
Main-Class: com.gpl.rpg.atcontentstudio.ATContentStudio
|
|
||||||
Class-Path: jide-oss.jar jsoup-1.10.2.jar ui.jar junit-4.10.jar AndorsTr
|
|
||||||
ainer_v0.1.5.jar prefuse.jar rsyntaxtextarea.jar bsh-2.0b4.jar json_sim
|
|
||||||
ple-1.1.jar
|
|
||||||
|
|
||||||
@@ -1,16 +1,10 @@
|
|||||||
package com.gpl.rpg.atcontentstudio;
|
package com.gpl.rpg.atcontentstudio;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.Workspace;
|
import java.awt.Color;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.StudioFrame;
|
import java.awt.Desktop;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.WorkerDialog;
|
import java.awt.Dimension;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.WorkspaceSelector;
|
import java.awt.Font;
|
||||||
import prefuse.data.expression.parser.ExpressionParser;
|
import java.awt.Toolkit;
|
||||||
|
|
||||||
import javax.swing.*;
|
|
||||||
import javax.swing.event.HyperlinkEvent;
|
|
||||||
import javax.swing.event.HyperlinkListener;
|
|
||||||
import javax.swing.plaf.FontUIResource;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.awt.event.WindowAdapter;
|
import java.awt.event.WindowAdapter;
|
||||||
import java.awt.event.WindowEvent;
|
import java.awt.event.WindowEvent;
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
@@ -20,19 +14,47 @@ import java.io.InputStreamReader;
|
|||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.http.HttpTimeoutException;
|
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.*;
|
import java.util.Map;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import javax.swing.JEditorPane;
|
||||||
|
import javax.swing.JLabel;
|
||||||
|
import javax.swing.JOptionPane;
|
||||||
|
import javax.swing.UIDefaults;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.UnsupportedLookAndFeelException;
|
||||||
|
import javax.swing.event.HyperlinkEvent;
|
||||||
|
import javax.swing.event.HyperlinkListener;
|
||||||
|
import javax.swing.plaf.FontUIResource;
|
||||||
|
|
||||||
|
import org.eclipse.jgit.api.Git;
|
||||||
|
import org.eclipse.jgit.api.errors.GitAPIException;
|
||||||
|
import org.eclipse.jgit.attributes.AttributesNodeProvider;
|
||||||
|
import org.eclipse.jgit.internal.storage.file.FileRepository;
|
||||||
|
import org.eclipse.jgit.lib.ObjectDatabase;
|
||||||
|
import org.eclipse.jgit.lib.Ref;
|
||||||
|
import org.eclipse.jgit.lib.RefDatabase;
|
||||||
|
import org.eclipse.jgit.lib.ReflogReader;
|
||||||
|
import org.eclipse.jgit.lib.Repository;
|
||||||
|
import org.eclipse.jgit.lib.StoredConfig;
|
||||||
|
|
||||||
|
import prefuse.data.expression.parser.ExpressionParser;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Workspace;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.StudioFrame;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.WorkerDialog;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.WorkspaceSelector;
|
||||||
|
|
||||||
|
|
||||||
public class ATContentStudio {
|
public class ATContentStudio {
|
||||||
|
|
||||||
public static final String APP_NAME = "Andor's Trail Content Studio";
|
public static final String APP_NAME = "Andor's Trail Content Studio";
|
||||||
public static final String APP_VERSION = readVersionFromFile();
|
public static final String APP_VERSION = "v0.6.14";
|
||||||
|
|
||||||
public static final String CHECK_UPDATE_URL = "https://andorstrail.com/static/ATCS_latest";
|
public static final String CHECK_UPDATE_URL = "https://andorstrail.com/static/ATCS_latest";
|
||||||
public static final String DOWNLOAD_URL = "https://andorstrail.com/viewtopic.php?f=6&t=4806";
|
public static final String DOWNLOAD_URL = "https://andorstrail.com/viewtopic.php?f=6&t=4806";
|
||||||
@@ -40,11 +62,10 @@ public class ATContentStudio {
|
|||||||
public static final String FONT_SCALE_ENV_VAR_NAME = "FONT_SCALE";
|
public static final String FONT_SCALE_ENV_VAR_NAME = "FONT_SCALE";
|
||||||
|
|
||||||
public static boolean STARTED = false;
|
public static boolean STARTED = false;
|
||||||
public static float SCALING = 1.0f;
|
public static float SCALING=1.0f;
|
||||||
public static StudioFrame frame = null;
|
public static StudioFrame frame = null;
|
||||||
|
|
||||||
// Need to keep a strong reference to it, to avoid garbage collection that'll
|
//Need to keep a strong reference to it, to avoid garbage collection that'll reset these loggers.
|
||||||
// reset these loggers.
|
|
||||||
public static final List<Logger> configuredLoggers = new LinkedList<Logger>();
|
public static final List<Logger> configuredLoggers = new LinkedList<Logger>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -52,24 +73,50 @@ public class ATContentStudio {
|
|||||||
*/
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
String fontScaling = System.getProperty(FONT_SCALE_ENV_VAR_NAME);
|
String fontScaling = System.getProperty(FONT_SCALE_ENV_VAR_NAME);
|
||||||
Float fontScale;
|
Float fontScale = null;
|
||||||
if (fontScaling != null) {
|
if (fontScaling != null) {
|
||||||
try {
|
try {
|
||||||
fontScale = Float.parseFloat(fontScaling);
|
fontScale = Float.parseFloat(fontScaling);
|
||||||
SCALING = fontScale;
|
SCALING=fontScale;
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
System.err.println("Failed to parse font scaling parameter. Using default.");
|
System.err.println("Failed to parse font scaling parameter. Using default.");
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// try {
|
||||||
|
// Git git = new Git(new FileRepository("/home/xxx/git_repos/andors-trail/.git/"));
|
||||||
|
// List<Ref> branches = git.branchList().call();
|
||||||
|
// for (Ref branch : branches) {
|
||||||
|
// System.out.println(branch.getName());
|
||||||
|
// }
|
||||||
|
// } catch (IOException e1) {
|
||||||
|
// e1.printStackTrace();
|
||||||
|
// } catch (GitAPIException e1) {
|
||||||
|
// e1.printStackTrace();
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
ConfigCache.init();
|
ConfigCache.init();
|
||||||
|
|
||||||
|
try {
|
||||||
String laf = ConfigCache.getFavoriteLaFClassName();
|
String laf = ConfigCache.getFavoriteLaFClassName();
|
||||||
setLookAndFeel(laf);
|
if (laf == null) laf = UIManager.getSystemLookAndFeelClassName();
|
||||||
|
UIManager.setLookAndFeel(laf);
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (InstantiationException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (UnsupportedLookAndFeelException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
// Need to keep a strong reference to it, to avoid garbage collection that'll
|
|
||||||
// reset this setting.
|
scaleUIFont();
|
||||||
|
|
||||||
|
//Need to keep a strong reference to it, to avoid garbage collection that'll reset this setting.
|
||||||
Logger l = Logger.getLogger(ExpressionParser.class.getName());
|
Logger l = Logger.getLogger(ExpressionParser.class.getName());
|
||||||
l.setLevel(Level.OFF);
|
l.setLevel(Level.OFF);
|
||||||
configuredLoggers.add(l);
|
configuredLoggers.add(l);
|
||||||
@@ -78,7 +125,7 @@ public class ATContentStudio {
|
|||||||
wsSelect.pack();
|
wsSelect.pack();
|
||||||
Dimension sdim = Toolkit.getDefaultToolkit().getScreenSize();
|
Dimension sdim = Toolkit.getDefaultToolkit().getScreenSize();
|
||||||
Dimension wdim = wsSelect.getSize();
|
Dimension wdim = wsSelect.getSize();
|
||||||
wsSelect.setLocation((sdim.width - wdim.width) / 2, (sdim.height - wdim.height) / 2);
|
wsSelect.setLocation((sdim.width - wdim.width)/2, (sdim.height - wdim.height)/2);
|
||||||
wsSelect.setVisible(true);
|
wsSelect.setVisible(true);
|
||||||
|
|
||||||
wsSelect.addWindowListener(new WindowAdapter() {
|
wsSelect.addWindowListener(new WindowAdapter() {
|
||||||
@@ -87,21 +134,18 @@ public class ATContentStudio {
|
|||||||
if (wsSelect.selected != null && !STARTED) {
|
if (wsSelect.selected != null && !STARTED) {
|
||||||
ATContentStudio.STARTED = true;
|
ATContentStudio.STARTED = true;
|
||||||
final File workspaceRoot = new File(wsSelect.selected);
|
final File workspaceRoot = new File(wsSelect.selected);
|
||||||
WorkerDialog.showTaskMessage("Loading your workspace...", null, new Runnable() {
|
WorkerDialog.showTaskMessage("Loading your workspace...", null, new Runnable(){
|
||||||
public void run() {
|
public void run() {
|
||||||
Workspace.setActive(workspaceRoot);
|
Workspace.setActive(workspaceRoot);
|
||||||
if (Workspace.activeWorkspace.settings.useInternet.getCurrentValue()
|
if (Workspace.activeWorkspace.settings.useInternet.getCurrentValue() && Workspace.activeWorkspace.settings.checkUpdates.getCurrentValue()) {
|
||||||
&& Workspace.activeWorkspace.settings.checkUpdates.getCurrentValue()) {
|
|
||||||
new Thread() {
|
new Thread() {
|
||||||
public void run() {
|
public void run() {checkUpdate();}
|
||||||
checkUpdate();
|
|
||||||
}
|
|
||||||
}.start();
|
}.start();
|
||||||
}
|
}
|
||||||
frame = new StudioFrame(APP_NAME + " " + APP_VERSION);
|
frame = new StudioFrame(APP_NAME+" "+APP_VERSION);
|
||||||
frame.setVisible(true);
|
frame.setVisible(true);
|
||||||
frame.setDefaultCloseOperation(StudioFrame.DO_NOTHING_ON_CLOSE);
|
frame.setDefaultCloseOperation(StudioFrame.DO_NOTHING_ON_CLOSE);
|
||||||
}
|
};
|
||||||
});
|
});
|
||||||
for (File f : ConfigCache.getKnownWorkspaces()) {
|
for (File f : ConfigCache.getKnownWorkspaces()) {
|
||||||
if (workspaceRoot.equals(f)) {
|
if (workspaceRoot.equals(f)) {
|
||||||
@@ -119,34 +163,6 @@ public class ATContentStudio {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setLookAndFeel(String laf) {
|
|
||||||
if (laf == null)
|
|
||||||
{
|
|
||||||
System.out.println("No look and feel specified, using system default.");
|
|
||||||
laf = UIManager.getSystemLookAndFeelClassName();
|
|
||||||
}
|
|
||||||
System.out.println("Info: Setting look and feel to: " + laf);
|
|
||||||
|
|
||||||
try {
|
|
||||||
UIManager.setLookAndFeel(laf);
|
|
||||||
} catch (ClassNotFoundException e) {
|
|
||||||
System.err.println("Failed to load system look and feel. ");
|
|
||||||
System.err.println("Installed look and feel classes: ");
|
|
||||||
for (UIManager.LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
|
|
||||||
System.err.println(" " + info.getName() + " (" + info.getClassName() + ")");
|
|
||||||
}
|
|
||||||
System.err.println("Tried to load: " + laf + " but got this error:");
|
|
||||||
|
|
||||||
e.printStackTrace();
|
|
||||||
} catch (InstantiationException | UnsupportedLookAndFeelException | IllegalAccessException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
var newLaF = UIManager.getLookAndFeel();
|
|
||||||
System.out.println("Using look and feel: " + newLaF.getName() + " (" + newLaF.getClass().getName() + ")");
|
|
||||||
|
|
||||||
scaleUIFont();
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void checkUpdate() {
|
private static void checkUpdate() {
|
||||||
BufferedReader in = null;
|
BufferedReader in = null;
|
||||||
try {
|
try {
|
||||||
@@ -154,9 +170,7 @@ public class ATContentStudio {
|
|||||||
in = new BufferedReader(new InputStreamReader(url.openStream()));
|
in = new BufferedReader(new InputStreamReader(url.openStream()));
|
||||||
|
|
||||||
String inputLine, lastLine = null;
|
String inputLine, lastLine = null;
|
||||||
while ((inputLine = in.readLine()) != null) {
|
while ((inputLine = in.readLine()) != null) {lastLine = inputLine;}
|
||||||
lastLine = inputLine;
|
|
||||||
}
|
|
||||||
if (lastLine != null && !lastLine.equals(APP_VERSION)) {
|
if (lastLine != null && !lastLine.equals(APP_VERSION)) {
|
||||||
|
|
||||||
// for copying style
|
// for copying style
|
||||||
@@ -168,13 +182,13 @@ public class ATContentStudio {
|
|||||||
StringBuffer style = new StringBuffer("font-family:" + font.getFamily() + ";");
|
StringBuffer style = new StringBuffer("font-family:" + font.getFamily() + ";");
|
||||||
style.append("font-weight:" + (font.isBold() ? "bold" : "normal") + ";");
|
style.append("font-weight:" + (font.isBold() ? "bold" : "normal") + ";");
|
||||||
style.append("font-size:" + font.getSize() + "pt;");
|
style.append("font-size:" + font.getSize() + "pt;");
|
||||||
style.append("background-color: rgb(" + color.getRed() + "," + color.getGreen() + "," + color.getBlue()
|
style.append("background-color: rgb("+color.getRed()+","+color.getGreen()+","+color.getBlue()+");");
|
||||||
+ ");");
|
|
||||||
|
|
||||||
JEditorPane ep = new JEditorPane("text/html",
|
JEditorPane ep = new JEditorPane("text/html", "<html><body style=\"" + style + "\">"
|
||||||
"<html><body style=\"" + style + "\">" + "You are not running the latest ATCS version.<br/>"
|
+ "You are not running the latest ATCS version.<br/>"
|
||||||
+ "You can get the latest version (" + lastLine + ") by clicking the link below.<br/>"
|
+ "You can get the latest version ("+lastLine+") by clicking the link below.<br/>"
|
||||||
+ "<a href=\"" + DOWNLOAD_URL + "\">" + DOWNLOAD_URL + "</a><br/>" + "<br/>"
|
+ "<a href=\""+DOWNLOAD_URL+"\">"+DOWNLOAD_URL+"</a><br/>"
|
||||||
|
+ "<br/>"
|
||||||
+ "</body></html>");
|
+ "</body></html>");
|
||||||
|
|
||||||
ep.setEditable(false);
|
ep.setEditable(false);
|
||||||
@@ -200,18 +214,11 @@ public class ATContentStudio {
|
|||||||
}
|
}
|
||||||
} catch (MalformedURLException e) {
|
} catch (MalformedURLException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (HttpTimeoutException e) {
|
|
||||||
System.out.println("Could not connect to url to check for updates (timeout): " + CHECK_UPDATE_URL);
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
if (e.getMessage() != null && e.getMessage().startsWith("Server returned HTTP response code:")) {
|
e.printStackTrace();
|
||||||
System.out.println("Could not fetch current version from server to check for updates (non-success-status): " + e.getMessage());
|
|
||||||
} else {
|
|
||||||
System.out.println("Could not check for updates: '" + CHECK_UPDATE_URL + "' - " + e.getMessage());
|
|
||||||
}
|
|
||||||
} finally {
|
} finally {
|
||||||
try {
|
try {
|
||||||
if (in != null)
|
if (in != null) in.close();
|
||||||
in.close();
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
@@ -220,15 +227,15 @@ public class ATContentStudio {
|
|||||||
|
|
||||||
public static void scaleUIFont() {
|
public static void scaleUIFont() {
|
||||||
if (SCALING != 1.0f) {
|
if (SCALING != 1.0f) {
|
||||||
System.out.println("Scaling fonts to " + SCALING);
|
System.out.println("Scaling fonts to "+SCALING);
|
||||||
UIDefaults defaults = UIManager.getLookAndFeelDefaults();
|
UIDefaults defaults = UIManager.getLookAndFeelDefaults();
|
||||||
Map<Object, Object> newDefaults = new HashMap<Object, Object>();
|
Map<Object, Object> newDefaults = new HashMap<Object, Object>();
|
||||||
for (Enumeration<Object> e = defaults.keys(); e.hasMoreElements(); ) {
|
for (Enumeration<Object> e = defaults.keys(); e.hasMoreElements();) {
|
||||||
Object key = e.nextElement();
|
Object key = e.nextElement();
|
||||||
Object value = defaults.get(key);
|
Object value = defaults.get(key);
|
||||||
if (value instanceof Font) {
|
if (value instanceof Font) {
|
||||||
Font font = (Font) value;
|
Font font = (Font) value;
|
||||||
int newSize = (int) (font.getSize() * SCALING);
|
int newSize = (int)(font.getSize() * SCALING);
|
||||||
if (value instanceof FontUIResource) {
|
if (value instanceof FontUIResource) {
|
||||||
newDefaults.put(key, new FontUIResource(font.getName(), font.getStyle(), newSize));
|
newDefaults.put(key, new FontUIResource(font.getName(), font.getStyle(), newSize));
|
||||||
} else {
|
} else {
|
||||||
@@ -241,14 +248,4 @@ public class ATContentStudio {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String readVersionFromFile() {
|
|
||||||
try (BufferedReader reader = new BufferedReader(new InputStreamReader(
|
|
||||||
Objects.requireNonNull(ATContentStudio.class.getResourceAsStream("/ATCS_latest"))))) {
|
|
||||||
return reader.readLine();
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
return "unknown";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
package com.gpl.rpg.atcontentstudio;
|
package com.gpl.rpg.atcontentstudio;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.io.SettingsSave;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.io.SettingsSave;
|
||||||
|
|
||||||
public class ConfigCache implements Serializable {
|
public class ConfigCache implements Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = 4584324644282843961L;
|
private static final long serialVersionUID = 4584324644282843961L;
|
||||||
@@ -18,9 +18,9 @@ public class ConfigCache implements Serializable {
|
|||||||
|
|
||||||
static {
|
static {
|
||||||
if (System.getenv("APPDATA") != null) {
|
if (System.getenv("APPDATA") != null) {
|
||||||
CONFIG_CACHE_STORAGE = new File(System.getenv("APPDATA") + File.separator + ATContentStudio.APP_NAME + File.separator + "configCache");
|
CONFIG_CACHE_STORAGE = new File(System.getenv("APPDATA")+File.separator+ATContentStudio.APP_NAME+File.separator+"configCache" );
|
||||||
} else {
|
} else {
|
||||||
CONFIG_CACHE_STORAGE = new File(System.getenv("HOME") + File.separator + "." + ATContentStudio.APP_NAME + File.separator + "configCache");
|
CONFIG_CACHE_STORAGE = new File(System.getenv("HOME")+File.separator+"."+ATContentStudio.APP_NAME+File.separator+"configCache" );
|
||||||
}
|
}
|
||||||
CONFIG_CACHE_STORAGE.getParentFile().mkdirs();
|
CONFIG_CACHE_STORAGE.getParentFile().mkdirs();
|
||||||
if (CONFIG_CACHE_STORAGE.exists()) {
|
if (CONFIG_CACHE_STORAGE.exists()) {
|
||||||
@@ -77,7 +77,7 @@ public class ConfigCache implements Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void putNotifViewConfig(boolean[] view) {
|
public static void putNotifViewConfig(boolean[] view) {
|
||||||
for (int i = instance.notifConfig.length; i < 0; --i) {
|
for (int i=instance.notifConfig.length; i<0; --i) {
|
||||||
instance.notifConfig[i] = view[i];
|
instance.notifConfig[i] = view[i];
|
||||||
}
|
}
|
||||||
instance.save();
|
instance.save();
|
||||||
@@ -91,8 +91,7 @@ public class ConfigCache implements Serializable {
|
|||||||
return instance.notifConfig;
|
return instance.notifConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void init() {
|
public static void init() {}
|
||||||
}
|
|
||||||
|
|
||||||
public static void clear() {
|
public static void clear() {
|
||||||
instance.knownWorkspaces.clear();
|
instance.knownWorkspaces.clear();
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ public class Notification {
|
|||||||
|
|
||||||
public static List<Notification> notifs = new ArrayList<Notification>();
|
public static List<Notification> notifs = new ArrayList<Notification>();
|
||||||
private static List<NotificationListener> listeners = new CopyOnWriteArrayList<NotificationListener>();
|
private static List<NotificationListener> listeners = new CopyOnWriteArrayList<NotificationListener>();
|
||||||
public static boolean showS, showI, showW, showE;
|
public static boolean showS = true, showI = true, showW = true, showE = true;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
boolean[] config = ConfigCache.getNotifViewConfig();
|
boolean[] config = ConfigCache.getNotifViewConfig();
|
||||||
@@ -34,7 +34,7 @@ public class Notification {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "[" + type.toString() + "] " + text;
|
return "["+type.toString()+"] "+text;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void clear() {
|
public static void clear() {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package com.gpl.rpg.atcontentstudio;
|
|||||||
public interface NotificationListener {
|
public interface NotificationListener {
|
||||||
|
|
||||||
public void onNewNotification(Notification n);
|
public void onNewNotification(Notification n);
|
||||||
|
|
||||||
public void onListCleared(int i);
|
public void onListCleared(int i);
|
||||||
|
|
||||||
}
|
}
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 275 B |
Binary file not shown.
|
Before Width: | Height: | Size: 703 B |
@@ -1,8 +0,0 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.io;
|
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public interface JsonSerializable {
|
|
||||||
Map toMap();
|
|
||||||
void fromMap(Map map);
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,14 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.io;
|
package com.gpl.rpg.atcontentstudio.io;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.ObjectInputStream;
|
||||||
|
import java.io.ObjectOutputStream;
|
||||||
|
|
||||||
import java.io.*;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
|
||||||
public class SettingsSave {
|
public class SettingsSave {
|
||||||
|
|
||||||
@@ -14,21 +20,21 @@ public class SettingsSave {
|
|||||||
oos.writeObject(obj);
|
oos.writeObject(obj);
|
||||||
oos.flush();
|
oos.flush();
|
||||||
oos.close();
|
oos.close();
|
||||||
Notification.addSuccess(type + " successfully saved.");
|
Notification.addSuccess(type+" successfully saved.");
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " saving error: " + e.getMessage());
|
Notification.addError(type+" saving error: "+e.getMessage());
|
||||||
} finally {
|
} finally {
|
||||||
try {
|
try {
|
||||||
fos.close();
|
fos.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " saving error: " + e.getMessage());
|
Notification.addError(type+" saving error: "+e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " saving error: " + e.getMessage());
|
Notification.addError(type+" saving error: "+e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -42,27 +48,27 @@ public class SettingsSave {
|
|||||||
ois = new ObjectInputStream(fis);
|
ois = new ObjectInputStream(fis);
|
||||||
try {
|
try {
|
||||||
result = ois.readObject();
|
result = ois.readObject();
|
||||||
Notification.addSuccess(type + " successfully loaded.");
|
Notification.addSuccess(type+" successfully loaded.");
|
||||||
} catch (ClassNotFoundException e) {
|
} catch (ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " loading error: " + e.getMessage());
|
Notification.addError(type+" loading error: "+e.getMessage());
|
||||||
} finally {
|
} finally {
|
||||||
ois.close();
|
ois.close();
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " loading error: " + e.getMessage());
|
Notification.addError(type+" loading error: "+e.getMessage());
|
||||||
} finally {
|
} finally {
|
||||||
try {
|
try {
|
||||||
fis.close();
|
fis.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " loading error: " + e.getMessage());
|
Notification.addError(type+" loading error: "+e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Notification.addError(type + " loading error: " + e.getMessage());
|
Notification.addError(type+" loading error: "+e.getMessage());
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Enumeration;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class ClosedProject implements ProjectTreeNode {
|
public class ClosedProject implements ProjectTreeNode {
|
||||||
|
|
||||||
String name;
|
String name;
|
||||||
@@ -24,32 +25,26 @@ public class ClosedProject implements ProjectTreeNode {
|
|||||||
public TreeNode getChildAt(int childIndex) {
|
public TreeNode getChildAt(int childIndex) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode node) {
|
public int getIndex(TreeNode node) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Enumeration<ProjectTreeNode> children() {
|
public Enumeration<ProjectTreeNode> children() {
|
||||||
return null;
|
return null;
|
||||||
@@ -57,22 +52,19 @@ public class ClosedProject implements ProjectTreeNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -80,7 +72,7 @@ public class ClosedProject implements ProjectTreeNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return name + " [closed]";
|
return name+" [closed]";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -93,19 +85,16 @@ public class ClosedProject implements ProjectTreeNode {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
//TODO Create a cool Project icon.
|
//TODO Create a cool Project icon.
|
||||||
return DefaultIcons.getStdClosedIcon();
|
return DefaultIcons.getStdClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
//TODO Create a cool Project icon.
|
//TODO Create a cool Project icon.
|
||||||
return DefaultIcons.getStdClosedIcon();
|
return DefaultIcons.getStdClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
//TODO Create a cool Project icon.
|
//TODO Create a cool Project icon.
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.bookmarks.BookmarkEntry;
|
import java.awt.Image;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
import javax.swing.tree.TreeNode;
|
||||||
import java.awt.*;
|
|
||||||
import java.io.Serializable;
|
import com.gpl.rpg.atcontentstudio.model.bookmarks.BookmarkEntry;
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
|
|
||||||
public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
||||||
|
|
||||||
@@ -40,60 +44,51 @@ public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
|||||||
public Enumeration<ProjectTreeNode> children() {
|
public Enumeration<ProjectTreeNode> children() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int arg0) {
|
public TreeNode getChildAt(int arg0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode arg0) {
|
public int getIndex(TreeNode arg0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public abstract String getDesc();
|
public abstract String getDesc();
|
||||||
|
|
||||||
@@ -102,10 +97,10 @@ public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public abstract void parse();
|
public abstract void parse();
|
||||||
|
|
||||||
public abstract void link();
|
public abstract void link();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Project getProject() {
|
public Project getProject() {
|
||||||
return parent == null ? null : parent.getProject();
|
return parent == null ? null : parent.getProject();
|
||||||
@@ -115,17 +110,10 @@ public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {return null;}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {return null;}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return getIcon();
|
return getIcon();
|
||||||
@@ -184,7 +172,6 @@ public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
|||||||
|
|
||||||
public static interface BacklinksListener {
|
public static interface BacklinksListener {
|
||||||
public void backlinkAdded(GameDataElement gde);
|
public void backlinkAdded(GameDataElement gde);
|
||||||
|
|
||||||
public void backlinkRemoved(GameDataElement gde);
|
public void backlinkRemoved(GameDataElement gde);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -203,35 +190,4 @@ public abstract class GameDataElement implements ProjectTreeNode, Serializable {
|
|||||||
|
|
||||||
public abstract List<SaveEvent> attemptSave();
|
public abstract List<SaveEvent> attemptSave();
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if the current state indicates that parsing/linking should be skipped.
|
|
||||||
*
|
|
||||||
* @return true if the operation should be skipped, false otherwise
|
|
||||||
*/
|
|
||||||
protected boolean shouldSkipParseOrLink() {
|
|
||||||
if (shouldSkipParse()) return true;
|
|
||||||
if (this.state == State.linked) {
|
|
||||||
//Already linked.
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected boolean shouldSkipParse() {
|
|
||||||
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
|
||||||
//This type of state is unrelated to parsing/linking.
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures the element is parsed if needed based on its current state.
|
|
||||||
*/
|
|
||||||
protected void ensureParseIfNeeded() {
|
|
||||||
if (this.state == State.init) {
|
|
||||||
//Not parsed yet.
|
|
||||||
this.parse();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,28 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.io.JsonSerializable;
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
import javax.xml.parsers.DocumentBuilder;
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
|
||||||
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.Element;
|
||||||
|
import org.w3c.dom.NodeList;
|
||||||
|
import org.xml.sax.InputSource;
|
||||||
|
import org.xml.sax.SAXException;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project.ResourceSet;
|
import com.gpl.rpg.atcontentstudio.model.Project.ResourceSet;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.TMXMapSet;
|
import com.gpl.rpg.atcontentstudio.model.maps.TMXMapSet;
|
||||||
@@ -10,27 +32,13 @@ import com.gpl.rpg.atcontentstudio.model.sprites.SpriteSheetSet;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
||||||
import com.gpl.rpg.atcontentstudio.model.tools.writermode.WriterModeDataSet;
|
import com.gpl.rpg.atcontentstudio.model.tools.writermode.WriterModeDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
import org.w3c.dom.Document;
|
|
||||||
import org.w3c.dom.Element;
|
|
||||||
import org.w3c.dom.NodeList;
|
|
||||||
import org.xml.sax.InputSource;
|
|
||||||
import org.xml.sax.SAXException;
|
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
public class GameSource implements ProjectTreeNode, Serializable {
|
||||||
import javax.xml.parsers.DocumentBuilder;
|
|
||||||
import javax.xml.parsers.DocumentBuilderFactory;
|
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
public class GameSource implements ProjectTreeNode, Serializable, JsonSerializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = -1512979360971918158L;
|
private static final long serialVersionUID = -1512979360971918158L;
|
||||||
|
|
||||||
public static final String DEFAULT_REL_PATH_FOR_GAME_RESOURCE = "res" + File.separator + "values" + File.separator + "loadresources.xml";
|
public static final String DEFAULT_REL_PATH_FOR_GAME_RESOURCE = "res"+File.separator+"values"+File.separator+"loadresources.xml";
|
||||||
public static final String DEFAULT_REL_PATH_FOR_DEBUG_RESOURCE = "res" + File.separator + "values" + File.separator + "loadresources_debug.xml";
|
public static final String DEFAULT_REL_PATH_FOR_DEBUG_RESOURCE = "res"+File.separator+"values"+File.separator+"loadresources_debug.xml";
|
||||||
|
|
||||||
public transient GameDataSet gameData;
|
public transient GameDataSet gameData;
|
||||||
public transient TMXMapSet gameMaps;
|
public transient TMXMapSet gameMaps;
|
||||||
@@ -39,22 +47,6 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
public transient WriterModeDataSet writerModeDataSet;
|
public transient WriterModeDataSet writerModeDataSet;
|
||||||
private transient SavedSlotCollection v;
|
private transient SavedSlotCollection v;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Map toMap() {
|
|
||||||
Map map = new HashMap();
|
|
||||||
map.put("type", type.toString());
|
|
||||||
map.put("baseFolder", baseFolder.getPath());
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void fromMap(Map map) {
|
|
||||||
if(map==null)return;
|
|
||||||
type = Enum.valueOf(Type.class, (String)map.get("type"));
|
|
||||||
baseFolder = new File((String) map.get("baseFolder"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static enum Type {
|
public static enum Type {
|
||||||
source,
|
source,
|
||||||
referenced,
|
referenced,
|
||||||
@@ -65,14 +57,10 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
public File baseFolder;
|
public File baseFolder;
|
||||||
public Type type;
|
public Type type;
|
||||||
|
|
||||||
public transient Project parent;
|
public transient Project parent = null;
|
||||||
|
|
||||||
public transient Map<String, List<String>> referencedSourceFiles = null;
|
public transient Map<String, List<String>> referencedSourceFiles = null;
|
||||||
|
|
||||||
public GameSource(Map json, Project parent) {
|
|
||||||
fromMap(json);
|
|
||||||
refreshTransients(parent);
|
|
||||||
}
|
|
||||||
public GameSource(File folder, Project parent) {
|
public GameSource(File folder, Project parent) {
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
this.baseFolder = folder;
|
this.baseFolder = folder;
|
||||||
@@ -117,7 +105,7 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void readResourceList() {
|
public void readResourceList() {
|
||||||
File xmlFile;
|
File xmlFile = null;
|
||||||
if (parent.sourceSetToUse == ResourceSet.gameData) {
|
if (parent.sourceSetToUse == ResourceSet.gameData) {
|
||||||
xmlFile = new File(baseFolder, DEFAULT_REL_PATH_FOR_GAME_RESOURCE);
|
xmlFile = new File(baseFolder, DEFAULT_REL_PATH_FOR_GAME_RESOURCE);
|
||||||
} else if (parent.sourceSetToUse == ResourceSet.debugData) {
|
} else if (parent.sourceSetToUse == ResourceSet.debugData) {
|
||||||
@@ -150,7 +138,7 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
NodeList arrayItems = arrayNode.getElementsByTagName("item");
|
NodeList arrayItems = arrayNode.getElementsByTagName("item");
|
||||||
if (arrayItems != null) {
|
if (arrayItems != null) {
|
||||||
for (int j = 0; j < arrayItems.getLength(); j++) {
|
for (int j = 0; j < arrayItems.getLength(); j++) {
|
||||||
arrayContents.add(((Element) arrayItems.item(j)).getTextContent());
|
arrayContents.add(((Element)arrayItems.item(j)).getTextContent());
|
||||||
}
|
}
|
||||||
referencedSourceFiles.put(name, arrayContents);
|
referencedSourceFiles.put(name, arrayContents);
|
||||||
}
|
}
|
||||||
@@ -172,49 +160,40 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
public Enumeration<ProjectTreeNode> children() {
|
public Enumeration<ProjectTreeNode> children() {
|
||||||
return v.getNonEmptyElements();
|
return v.getNonEmptyElements();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int arg0) {
|
public TreeNode getChildAt(int arg0) {
|
||||||
return v.getNonEmptyElementAt(arg0);
|
return v.getNonEmptyElementAt(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return v.getNonEmptySize();
|
return v.getNonEmptySize();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode arg0) {
|
public int getIndex(TreeNode arg0) {
|
||||||
return v.getNonEmptyIndexOf((ProjectTreeNode) arg0);
|
return v.getNonEmptyIndexOf((ProjectTreeNode) arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
if (path.size() == 1 && this.v.getNonEmptySize() == 1) {
|
if (path.size() == 1 && this.v.getNonEmptySize() == 1) {
|
||||||
@@ -224,7 +203,6 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -232,20 +210,14 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
node.notifyCreated();
|
node.notifyCreated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
switch (type) {
|
switch(type) {
|
||||||
case altered:
|
case altered: return (needsSaving() ? "*" : "")+"Altered data";
|
||||||
return (needsSaving() ? "*" : "") + "Altered data";
|
case created: return (needsSaving() ? "*" : "")+"Created data";
|
||||||
case created:
|
case referenced: return (needsSaving() ? "*" : "")+"Referenced data";
|
||||||
return (needsSaving() ? "*" : "") + "Created data";
|
case source: return (needsSaving() ? "*" : "")+"AT Source"; //The fact that it is from "source" is already mentionned by its parent.
|
||||||
case referenced:
|
default: return (needsSaving() ? "*" : "")+"Game data";
|
||||||
return (needsSaving() ? "*" : "") + "Referenced data";
|
|
||||||
case source:
|
|
||||||
return (needsSaving() ? "*" : "") + "AT Source"; //The fact that it is from "source" is already mentionned by its parent.
|
|
||||||
default:
|
|
||||||
return (needsSaving() ? "*" : "") + "Game data";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,22 +252,18 @@ public class GameSource implements ProjectTreeNode, Serializable, JsonSerializab
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
return DefaultIcons.getATClosedIcon();
|
return DefaultIcons.getATClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getATClosedIcon();
|
return DefaultIcons.getATClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
return DefaultIcons.getATOpenIcon();
|
return DefaultIcons.getATOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GameDataSet getDataSet() {
|
public GameDataSet getDataSet() {
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -1,53 +1,19 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.io.JsonSerializable;
|
import java.awt.Dimension;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public class Preferences implements Serializable, JsonSerializable {
|
public class Preferences implements Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = 2455802658424031276L;
|
private static final long serialVersionUID = 2455802658424031276L;
|
||||||
|
|
||||||
public Dimension windowSize = null;
|
public Dimension windowSize = null;
|
||||||
public Map<String, Integer> splittersPositions = new HashMap<>();
|
public Map<String, Integer> splittersPositions = new HashMap<String, Integer>();
|
||||||
|
|
||||||
public Preferences() {
|
public Preferences() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Map toMap() {
|
|
||||||
Map map = new HashMap();
|
|
||||||
|
|
||||||
if(windowSize!= null){
|
|
||||||
Map windowSizeMap = new HashMap<>();
|
|
||||||
windowSizeMap.put("width", windowSize.width);
|
|
||||||
windowSizeMap.put("height", windowSize.height);
|
|
||||||
map.put("windowSize", windowSizeMap);
|
|
||||||
}
|
|
||||||
|
|
||||||
map.put("splittersPositions", splittersPositions);
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void fromMap(Map map) {
|
|
||||||
if(map == null) return;
|
|
||||||
|
|
||||||
Map windowSize1 = (Map) map.get("windowSize");
|
|
||||||
if(windowSize1 != null){
|
|
||||||
windowSize = new Dimension(((Number) windowSize1.get("width")).intValue(), ((Number) windowSize1.get("height")).intValue());
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, Number> splitters = (Map<String, Number>) map.get("splittersPositions");
|
|
||||||
Map<String, Integer> splittersInt = new HashMap<>(splitters.size());
|
|
||||||
for (Map.Entry<String, Number> entry : splitters. entrySet()){
|
|
||||||
splittersInt.put(entry.getKey(), entry.getValue().intValue());
|
|
||||||
}
|
|
||||||
splittersPositions = splittersInt;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,41 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.io.ByteArrayInputStream;
|
||||||
import com.gpl.rpg.atcontentstudio.io.JsonSerializable;
|
import java.io.File;
|
||||||
import com.gpl.rpg.atcontentstudio.io.SettingsSave;
|
import java.io.FileInputStream;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import java.io.FileNotFoundException;
|
||||||
import com.gpl.rpg.atcontentstudio.model.bookmarks.BookmarksRoot;
|
import java.io.FileOutputStream;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.*;
|
import java.io.FileWriter;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.TMXMap;
|
import java.io.IOException;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.TMXMapSet;
|
import java.io.Serializable;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.Worldmap;
|
import java.io.StringReader;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.WorldmapSegment;
|
import java.io.StringWriter;
|
||||||
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
import java.util.ArrayList;
|
||||||
import com.gpl.rpg.atcontentstudio.model.tools.writermode.WriterModeData;
|
import java.util.Collections;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import java.util.Enumeration;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.WorkerDialog;
|
import java.util.HashMap;
|
||||||
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
import javax.xml.parsers.DocumentBuilder;
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
import javax.xml.transform.OutputKeys;
|
||||||
|
import javax.xml.transform.Result;
|
||||||
|
import javax.xml.transform.Source;
|
||||||
|
import javax.xml.transform.Transformer;
|
||||||
|
import javax.xml.transform.TransformerException;
|
||||||
|
import javax.xml.transform.TransformerFactory;
|
||||||
|
import javax.xml.transform.dom.DOMSource;
|
||||||
|
import javax.xml.transform.stream.StreamResult;
|
||||||
|
import javax.xml.transform.stream.StreamSource;
|
||||||
|
|
||||||
|
import org.json.simple.JSONArray;
|
||||||
import org.w3c.dom.Comment;
|
import org.w3c.dom.Comment;
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
import org.w3c.dom.Element;
|
import org.w3c.dom.Element;
|
||||||
@@ -23,32 +43,40 @@ import org.w3c.dom.NodeList;
|
|||||||
import org.xml.sax.InputSource;
|
import org.xml.sax.InputSource;
|
||||||
import org.xml.sax.SAXException;
|
import org.xml.sax.SAXException;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
||||||
import javax.xml.parsers.DocumentBuilder;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import javax.xml.parsers.DocumentBuilderFactory;
|
import com.gpl.rpg.atcontentstudio.io.JsonPrettyWriter;
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
import com.gpl.rpg.atcontentstudio.io.SettingsSave;
|
||||||
import javax.xml.transform.*;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import javax.xml.transform.dom.DOMSource;
|
import com.gpl.rpg.atcontentstudio.model.bookmarks.BookmarksRoot;
|
||||||
import javax.xml.transform.stream.StreamResult;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.ActorCondition;
|
||||||
import javax.xml.transform.stream.StreamSource;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
||||||
import java.awt.*;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Droplist;
|
||||||
import java.io.*;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataCategory;
|
||||||
import java.nio.charset.StandardCharsets;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import java.nio.file.Files;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Item;
|
||||||
import java.nio.file.Path;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.ItemCategory;
|
||||||
import java.nio.file.Paths;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.JSONElement;
|
||||||
import java.util.List;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.NPC;
|
||||||
import java.util.*;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Quest;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.QuestStage;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.maps.TMXMap;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.maps.TMXMapSet;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.maps.Worldmap;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.maps.WorldmapSegment;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.saves.SavedGamesSet;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.tools.writermode.WriterModeData;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.WorkerDialog;
|
||||||
|
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
||||||
|
|
||||||
public class Project implements ProjectTreeNode, Serializable, JsonSerializable {
|
public class Project implements ProjectTreeNode, Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = 4807454973303366758L;
|
private static final long serialVersionUID = 4807454973303366758L;
|
||||||
private static final String drawablePath = TMXMapSet.DEFAULT_REL_PATH_TO_DRAWABLE.replace("\\", "/");
|
|
||||||
|
|
||||||
|
|
||||||
//Every instance field that is not transient will be saved in this file.
|
//Every instance field that is not transient will be saved in this file.
|
||||||
public static final String SETTINGS_FILE = ".project";
|
public static final String SETTINGS_FILE = ".project";
|
||||||
public static final String SETTINGS_FILE_JSON = ".project.json";
|
|
||||||
|
|
||||||
public String name;
|
public String name;
|
||||||
|
|
||||||
@@ -57,39 +85,19 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
|
|
||||||
public GameSource baseContent; //A.k.a library
|
public GameSource baseContent; //A.k.a library
|
||||||
|
|
||||||
|
public GameSource referencedContent; //Pointers to base content
|
||||||
public transient GameSource alteredContent; //Copied from base content (does not overwrite yet)
|
public transient GameSource alteredContent; //Copied from base content (does not overwrite yet)
|
||||||
public transient GameSource createdContent; //Stand-alone.
|
public transient GameSource createdContent; //Stand-alone.
|
||||||
public transient BookmarksRoot bookmarks;
|
public transient BookmarksRoot bookmarks;
|
||||||
|
|
||||||
|
|
||||||
|
public SavedGamesSet saves; //For simulations.
|
||||||
|
|
||||||
public transient SavedSlotCollection v;
|
public transient SavedSlotCollection v;
|
||||||
|
|
||||||
public transient Workspace parent;
|
public transient Workspace parent;
|
||||||
|
|
||||||
public Properties knownSpritesheetsProperties;
|
public Properties knownSpritesheetsProperties = null;
|
||||||
|
|
||||||
@Override
|
|
||||||
public Map toMap() {
|
|
||||||
Map map = new HashMap();
|
|
||||||
map.put("name", name.toString());
|
|
||||||
map.put("baseFolder", baseFolder.getPath());
|
|
||||||
map.put("open", open);
|
|
||||||
map.put("baseContent", baseContent.toMap());
|
|
||||||
map.put("sourceSetToUse", sourceSetToUse.toString());
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void fromMap(Map map) {
|
|
||||||
if(map==null)return;
|
|
||||||
name = (String) map.get("name");
|
|
||||||
baseFolder = new File((String) map.get("baseFolder"));
|
|
||||||
open = (boolean) map.get("open");
|
|
||||||
|
|
||||||
baseContent = new GameSource((Map) map.get("baseContent"), this);
|
|
||||||
|
|
||||||
sourceSetToUse = Enum.valueOf(ResourceSet.class, (String)map.get("sourceSetToUse"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static enum ResourceSet {
|
public static enum ResourceSet {
|
||||||
gameData,
|
gameData,
|
||||||
@@ -97,52 +105,53 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
allFiles
|
allFiles
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResourceSet sourceSetToUse;
|
public ResourceSet sourceSetToUse = ResourceSet.allFiles;
|
||||||
|
|
||||||
public Project(Workspace w, File projectFile) {
|
public Project(Workspace w, String name, File source, ResourceSet sourceSet) {
|
||||||
this.parent = w;
|
|
||||||
loadSpritesheetProperties();
|
|
||||||
Map json = FileUtils.mapFromJsonFile(projectFile);
|
|
||||||
this.fromMap(json);
|
|
||||||
|
|
||||||
initializeData();
|
|
||||||
save();
|
|
||||||
}
|
|
||||||
public Project(Workspace w, String name, File source, ResourceSet sourceSet){
|
|
||||||
this.parent = w;
|
this.parent = w;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.sourceSetToUse = sourceSet;
|
this.sourceSetToUse = sourceSet;
|
||||||
|
|
||||||
//CREATE PROJECT
|
//CREATE PROJECT
|
||||||
baseFolder = new File(w.baseFolder, name + File.separator);
|
baseFolder = new File(w.baseFolder, name+File.separator);
|
||||||
try {
|
try {
|
||||||
baseFolder.mkdir();
|
baseFolder.mkdir();
|
||||||
} catch (SecurityException e) {
|
} catch (SecurityException e) {
|
||||||
Notification.addError("Eror creating project root folder: " + e.getMessage());
|
Notification.addError("Eror creating project root folder: "+e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
open = true;
|
||||||
|
v = new SavedSlotCollection();
|
||||||
|
|
||||||
|
knownSpritesheetsProperties = new Properties();
|
||||||
|
try {
|
||||||
|
knownSpritesheetsProperties.load(Project.class.getResourceAsStream("/spritesheets.properties"));
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addWarn("Unable to load default spritesheets properties.");
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
loadSpritesheetProperties();
|
|
||||||
baseContent = new GameSource(source, this);
|
baseContent = new GameSource(source, this);
|
||||||
open = true;
|
|
||||||
initializeData();
|
|
||||||
linkAll();
|
|
||||||
save();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void initializeData() {
|
// referencedContent = new GameSource(this, GameSource.Type.referenced);
|
||||||
v = new SavedSlotCollection();
|
|
||||||
|
|
||||||
alteredContent = new GameSource(this, Type.altered);
|
alteredContent = new GameSource(this, GameSource.Type.altered);
|
||||||
createdContent = new GameSource(this, Type.created);
|
createdContent = new GameSource(this, GameSource.Type.created);
|
||||||
bookmarks = new BookmarksRoot(this);
|
bookmarks = new BookmarksRoot(this);
|
||||||
|
|
||||||
|
saves = new SavedGamesSet(this);
|
||||||
|
|
||||||
v.add(createdContent);
|
v.add(createdContent);
|
||||||
v.add(alteredContent);
|
v.add(alteredContent);
|
||||||
// v.add(referencedContent);
|
// v.add(referencedContent);
|
||||||
v.add(baseContent);
|
v.add(baseContent);
|
||||||
|
v.add(saves);
|
||||||
v.add(bookmarks);
|
v.add(bookmarks);
|
||||||
|
|
||||||
|
linkAll();
|
||||||
|
|
||||||
|
save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -183,22 +192,21 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -206,10 +214,9 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
node.notifyCreated();
|
node.notifyCreated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + name;
|
return (needsSaving() ? "*" : "")+name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -224,21 +231,13 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
|
|
||||||
|
|
||||||
public static Project fromFolder(Workspace w, File projRoot) {
|
public static Project fromFolder(Workspace w, File projRoot) {
|
||||||
Project p;
|
Project p = null;
|
||||||
|
|
||||||
File fJson = new File(projRoot, Project.SETTINGS_FILE_JSON);
|
|
||||||
if (fJson.exists()) {
|
|
||||||
p = new Project(w, fJson);
|
|
||||||
} else {
|
|
||||||
File f = new File(projRoot, Project.SETTINGS_FILE);
|
File f = new File(projRoot, Project.SETTINGS_FILE);
|
||||||
if (!f.exists()) {
|
if (!f.exists()) {
|
||||||
Notification.addError("Unable to find " + SETTINGS_FILE + " for project " + projRoot.getName());
|
Notification.addError("Unable to find "+SETTINGS_FILE+" for project "+projRoot.getName());
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
p = (Project) SettingsSave.loadInstance(f, "Project");
|
p = (Project) SettingsSave.loadInstance(f, "Project");
|
||||||
p.baseFolder = projRoot;
|
|
||||||
}
|
|
||||||
p.save();
|
|
||||||
}
|
}
|
||||||
p.refreshTransients(w);
|
p.refreshTransients(w);
|
||||||
return p;
|
return p;
|
||||||
@@ -249,7 +248,13 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
|
|
||||||
projectElementListeners = new HashMap<Class<? extends GameDataElement>, List<ProjectElementListener>>();
|
projectElementListeners = new HashMap<Class<? extends GameDataElement>, List<ProjectElementListener>>();
|
||||||
|
|
||||||
loadSpritesheetProperties();
|
try {
|
||||||
|
knownSpritesheetsProperties = new Properties();
|
||||||
|
knownSpritesheetsProperties.load(Project.class.getResourceAsStream("/spritesheets.properties"));
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addWarn("Unable to load default spritesheets properties.");
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
if (sourceSetToUse == null) {
|
if (sourceSetToUse == null) {
|
||||||
sourceSetToUse = ResourceSet.allFiles;
|
sourceSetToUse = ResourceSet.allFiles;
|
||||||
@@ -264,11 +269,14 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
createdContent = new GameSource(this, GameSource.Type.created);
|
createdContent = new GameSource(this, GameSource.Type.created);
|
||||||
bookmarks = new BookmarksRoot(this);
|
bookmarks = new BookmarksRoot(this);
|
||||||
|
|
||||||
|
saves.refreshTransients();
|
||||||
|
|
||||||
v = new SavedSlotCollection();
|
v = new SavedSlotCollection();
|
||||||
v.add(createdContent);
|
v.add(createdContent);
|
||||||
v.add(alteredContent);
|
v.add(alteredContent);
|
||||||
// v.add(referencedContent);
|
// v.add(referencedContent);
|
||||||
v.add(baseContent);
|
v.add(baseContent);
|
||||||
|
v.add(saves);
|
||||||
v.add(bookmarks);
|
v.add(bookmarks);
|
||||||
|
|
||||||
|
|
||||||
@@ -276,40 +284,51 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadSpritesheetProperties() {
|
|
||||||
knownSpritesheetsProperties = new Properties();
|
|
||||||
try {
|
|
||||||
knownSpritesheetsProperties.load(Project.class.getResourceAsStream("/spritesheets.properties"));
|
|
||||||
} catch (IOException e) {
|
|
||||||
Notification.addWarn("Unable to load default spritesheets properties.");
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void linkAll() {
|
public void linkAll() {
|
||||||
linkGameData(baseContent);
|
for (ProjectTreeNode node : baseContent.gameData.v.getNonEmptyIterable()) {
|
||||||
linkGameData(alteredContent);
|
|
||||||
linkGameData(createdContent);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void linkGameData(GameSource source) {
|
|
||||||
for (ProjectTreeNode node : source.gameData.v.getNonEmptyIterable()) {
|
|
||||||
if (node instanceof GameDataCategory<?>) {
|
if (node instanceof GameDataCategory<?>) {
|
||||||
for (GameDataElement e : ((GameDataCategory<?>) node).toList()) {
|
for (GameDataElement e : ((GameDataCategory<?>) node)) {
|
||||||
e.link();
|
e.link();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (TMXMap node : source.gameMaps.tmxMaps) {
|
for (ProjectTreeNode node : baseContent.gameMaps.tmxMaps) {
|
||||||
|
((TMXMap)node).link();
|
||||||
|
}
|
||||||
|
for (ProjectTreeNode node : alteredContent.gameData.v.getNonEmptyIterable()) {
|
||||||
|
if (node instanceof GameDataCategory<?>) {
|
||||||
|
for (GameDataElement e : ((GameDataCategory<?>) node)) {
|
||||||
|
e.link();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (ProjectTreeNode node : alteredContent.gameMaps.tmxMaps) {
|
||||||
|
((TMXMap)node).link();
|
||||||
|
}
|
||||||
|
for (ProjectTreeNode node : createdContent.gameData.v.getNonEmptyIterable()) {
|
||||||
|
if (node instanceof GameDataCategory<?>) {
|
||||||
|
for (GameDataElement e : ((GameDataCategory<?>) node)) {
|
||||||
|
e.link();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (ProjectTreeNode node : createdContent.gameMaps.tmxMaps) {
|
||||||
|
((TMXMap)node).link();
|
||||||
|
}
|
||||||
|
|
||||||
|
for (WorldmapSegment node : createdContent.worldmap) {
|
||||||
node.link();
|
node.link();
|
||||||
}
|
}
|
||||||
for (WorldmapSegment node : source.worldmap) {
|
for (WorldmapSegment node : alteredContent.worldmap) {
|
||||||
|
node.link();
|
||||||
|
}
|
||||||
|
for (WorldmapSegment node : baseContent.worldmap) {
|
||||||
node.link();
|
node.link();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void save() {
|
public void save() {
|
||||||
FileUtils.writeStringToFile(FileUtils.toJsonString(toMap()),new File(baseFolder, Project.SETTINGS_FILE_JSON), "Project " + this.name);
|
SettingsSave.saveInstance(this, new File(baseFolder, Project.SETTINGS_FILE), "Project "+this.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -403,7 +422,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public ActorCondition getActorCondition(int index) {
|
public ActorCondition getActorCondition(int index) {
|
||||||
if (index < createdContent.gameData.actorConditions.size()) {
|
if (index < createdContent.gameData.actorConditions.size()) {
|
||||||
return createdContent.gameData.actorConditions.get(index);
|
return createdContent.gameData.actorConditions.get(index);
|
||||||
} else if (index < getActorConditionCount()) {
|
} else if (index < getActorConditionCount()){
|
||||||
return getActorCondition(baseContent.gameData.actorConditions.get(index - createdContent.gameData.actorConditions.size()).id);
|
return getActorCondition(baseContent.gameData.actorConditions.get(index - createdContent.gameData.actorConditions.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -432,7 +451,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Dialogue getDialogue(int index) {
|
public Dialogue getDialogue(int index) {
|
||||||
if (index < createdContent.gameData.dialogues.size()) {
|
if (index < createdContent.gameData.dialogues.size()) {
|
||||||
return createdContent.gameData.dialogues.get(index);
|
return createdContent.gameData.dialogues.get(index);
|
||||||
} else if (index < getDialogueCount()) {
|
} else if (index < getDialogueCount()){
|
||||||
return getDialogue(baseContent.gameData.dialogues.get(index - createdContent.gameData.dialogues.size()).id);
|
return getDialogue(baseContent.gameData.dialogues.get(index - createdContent.gameData.dialogues.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -461,7 +480,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Droplist getDroplist(int index) {
|
public Droplist getDroplist(int index) {
|
||||||
if (index < createdContent.gameData.droplists.size()) {
|
if (index < createdContent.gameData.droplists.size()) {
|
||||||
return createdContent.gameData.droplists.get(index);
|
return createdContent.gameData.droplists.get(index);
|
||||||
} else if (index < getDroplistCount()) {
|
} else if (index < getDroplistCount()){
|
||||||
return getDroplist(baseContent.gameData.droplists.get(index - createdContent.gameData.droplists.size()).id);
|
return getDroplist(baseContent.gameData.droplists.get(index - createdContent.gameData.droplists.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -490,7 +509,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Item getItem(int index) {
|
public Item getItem(int index) {
|
||||||
if (index < createdContent.gameData.items.size()) {
|
if (index < createdContent.gameData.items.size()) {
|
||||||
return createdContent.gameData.items.get(index);
|
return createdContent.gameData.items.get(index);
|
||||||
} else if (index < getItemCount()) {
|
} else if (index < getItemCount()){
|
||||||
return getItem(baseContent.gameData.items.get(index - createdContent.gameData.items.size()).id);
|
return getItem(baseContent.gameData.items.get(index - createdContent.gameData.items.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -503,7 +522,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Item getItemIncludingAltered(int index) {
|
public Item getItemIncludingAltered(int index) {
|
||||||
if (index < createdContent.gameData.items.size()) {
|
if (index < createdContent.gameData.items.size()) {
|
||||||
return createdContent.gameData.items.get(index);
|
return createdContent.gameData.items.get(index);
|
||||||
} else if (index < createdContent.gameData.items.size() + alteredContent.gameData.items.size()) {
|
} else if (index < createdContent.gameData.items.size() + alteredContent.gameData.items.size()){
|
||||||
return alteredContent.gameData.items.get(index - createdContent.gameData.items.size());
|
return alteredContent.gameData.items.get(index - createdContent.gameData.items.size());
|
||||||
} else if (index < getItemCountIncludingAltered()) {
|
} else if (index < getItemCountIncludingAltered()) {
|
||||||
return baseContent.gameData.items.get(index - (createdContent.gameData.items.size() + alteredContent.gameData.items.size()));
|
return baseContent.gameData.items.get(index - (createdContent.gameData.items.size() + alteredContent.gameData.items.size()));
|
||||||
@@ -534,7 +553,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public ItemCategory getItemCategory(int index) {
|
public ItemCategory getItemCategory(int index) {
|
||||||
if (index < createdContent.gameData.itemCategories.size()) {
|
if (index < createdContent.gameData.itemCategories.size()) {
|
||||||
return createdContent.gameData.itemCategories.get(index);
|
return createdContent.gameData.itemCategories.get(index);
|
||||||
} else if (index < getItemCategoryCount()) {
|
} else if (index < getItemCategoryCount()){
|
||||||
return getItemCategory(baseContent.gameData.itemCategories.get(index - createdContent.gameData.itemCategories.size()).id);
|
return getItemCategory(baseContent.gameData.itemCategories.get(index - createdContent.gameData.itemCategories.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -570,7 +589,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public NPC getNPC(int index) {
|
public NPC getNPC(int index) {
|
||||||
if (index < createdContent.gameData.npcs.size()) {
|
if (index < createdContent.gameData.npcs.size()) {
|
||||||
return createdContent.gameData.npcs.get(index);
|
return createdContent.gameData.npcs.get(index);
|
||||||
} else if (index < getNPCCount()) {
|
} else if (index < getNPCCount()){
|
||||||
return getNPC(baseContent.gameData.npcs.get(index - createdContent.gameData.npcs.size()).id);
|
return getNPC(baseContent.gameData.npcs.get(index - createdContent.gameData.npcs.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -583,7 +602,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public NPC getNPCIncludingAltered(int index) {
|
public NPC getNPCIncludingAltered(int index) {
|
||||||
if (index < createdContent.gameData.npcs.size()) {
|
if (index < createdContent.gameData.npcs.size()) {
|
||||||
return createdContent.gameData.npcs.get(index);
|
return createdContent.gameData.npcs.get(index);
|
||||||
} else if (index < createdContent.gameData.npcs.size() + alteredContent.gameData.npcs.size()) {
|
} else if (index < createdContent.gameData.npcs.size() + alteredContent.gameData.npcs.size()){
|
||||||
return alteredContent.gameData.npcs.get(index - createdContent.gameData.npcs.size());
|
return alteredContent.gameData.npcs.get(index - createdContent.gameData.npcs.size());
|
||||||
} else if (index < getNPCCountIncludingAltered()) {
|
} else if (index < getNPCCountIncludingAltered()) {
|
||||||
return baseContent.gameData.npcs.get(index - (createdContent.gameData.npcs.size() + alteredContent.gameData.npcs.size()));
|
return baseContent.gameData.npcs.get(index - (createdContent.gameData.npcs.size() + alteredContent.gameData.npcs.size()));
|
||||||
@@ -614,7 +633,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Quest getQuest(int index) {
|
public Quest getQuest(int index) {
|
||||||
if (index < createdContent.gameData.quests.size()) {
|
if (index < createdContent.gameData.quests.size()) {
|
||||||
return createdContent.gameData.quests.get(index);
|
return createdContent.gameData.quests.get(index);
|
||||||
} else if (index < getQuestCount()) {
|
} else if (index < getQuestCount()){
|
||||||
return getQuest(baseContent.gameData.quests.get(index - createdContent.gameData.quests.size()).id);
|
return getQuest(baseContent.gameData.quests.get(index - createdContent.gameData.quests.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -642,7 +661,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public WorldmapSegment getWorldmapSegment(int index) {
|
public WorldmapSegment getWorldmapSegment(int index) {
|
||||||
if (index < createdContent.worldmap.size()) {
|
if (index < createdContent.worldmap.size()) {
|
||||||
return createdContent.worldmap.get(index);
|
return createdContent.worldmap.get(index);
|
||||||
} else if (index < getWorldmapSegmentCount()) {
|
} else if (index < getWorldmapSegmentCount()){
|
||||||
return getWorldmapSegment(baseContent.worldmap.get(index - createdContent.worldmap.size()).id);
|
return getWorldmapSegment(baseContent.worldmap.get(index - createdContent.worldmap.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -678,7 +697,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Spritesheet getSpritesheet(int index) {
|
public Spritesheet getSpritesheet(int index) {
|
||||||
if (index < createdContent.gameSprites.spritesheets.size()) {
|
if (index < createdContent.gameSprites.spritesheets.size()) {
|
||||||
return createdContent.gameSprites.spritesheets.get(index);
|
return createdContent.gameSprites.spritesheets.get(index);
|
||||||
} else if (index < getSpritesheetCount()) {
|
} else if (index < getSpritesheetCount()){
|
||||||
return getSpritesheet(baseContent.gameSprites.spritesheets.get(index - createdContent.gameSprites.spritesheets.size()).id);
|
return getSpritesheet(baseContent.gameSprites.spritesheets.get(index - createdContent.gameSprites.spritesheets.size()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -706,7 +725,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public TMXMap getMap(int index) {
|
public TMXMap getMap(int index) {
|
||||||
if (index < createdContent.gameMaps.getChildCount()) {
|
if (index < createdContent.gameMaps.getChildCount()) {
|
||||||
return createdContent.gameMaps.get(index);
|
return createdContent.gameMaps.get(index);
|
||||||
} else if (index < getMapCount()) {
|
} else if (index < getMapCount()){
|
||||||
return getMap(baseContent.gameMaps.get(index - createdContent.gameMaps.getChildCount()).id);
|
return getMap(baseContent.gameMaps.get(index - createdContent.gameMaps.getChildCount()).id);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -744,19 +763,16 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
//TODO Create a cool Project icon.
|
//TODO Create a cool Project icon.
|
||||||
return DefaultIcons.getStdClosedIcon();
|
return DefaultIcons.getStdClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
//TODO Create a cool Project icon.
|
//TODO Create a cool Project icon.
|
||||||
return DefaultIcons.getStdClosedIcon();
|
return DefaultIcons.getStdClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
//TODO Create a cool Project icon.
|
//TODO Create a cool Project icon.
|
||||||
@@ -766,7 +782,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public void makeWritable(JSONElement node) {
|
public void makeWritable(JSONElement node) {
|
||||||
GameSource.Type type = node.getDataType();
|
GameSource.Type type = node.getDataType();
|
||||||
if (type == null) {
|
if (type == null) {
|
||||||
Notification.addError("Unable to make " + node.getDesc() + " writable. No owning GameDataSet found.");
|
Notification.addError("Unable to make "+node.getDesc()+" writable. No owning GameDataSet found.");
|
||||||
} else {
|
} else {
|
||||||
if (type == GameSource.Type.source) {
|
if (type == GameSource.Type.source) {
|
||||||
JSONElement clone = (JSONElement) node.clone();
|
JSONElement clone = (JSONElement) node.clone();
|
||||||
@@ -787,16 +803,17 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
clone.state = GameDataElement.State.created;
|
clone.state = GameDataElement.State.created;
|
||||||
alteredContent.gameData.addElement(clone);
|
alteredContent.gameData.addElement(clone);
|
||||||
} else {
|
} else {
|
||||||
Notification.addError("Unable to make " + node.getDesc() + " writable. It does not originate from game source material.");
|
Notification.addError("Unable to make "+node.getDesc()+" writable. It does not originate from game source material.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void makeWritable(TMXMap node) {
|
public void makeWritable(TMXMap node) {
|
||||||
GameSource.Type type = node.getDataType();
|
GameSource.Type type = node.getDataType();
|
||||||
if (type == null) {
|
if (type == null) {
|
||||||
Notification.addError("Unable to make " + node.getDesc() + " writable. No owning GameDataSet found.");
|
Notification.addError("Unable to make "+node.getDesc()+" writable. No owning GameDataSet found.");
|
||||||
} else {
|
} else {
|
||||||
if (type == GameSource.Type.source) {
|
if (type == GameSource.Type.source) {
|
||||||
TMXMap clone = node.clone();
|
TMXMap clone = node.clone();
|
||||||
@@ -808,7 +825,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
clone.state = GameDataElement.State.created;
|
clone.state = GameDataElement.State.created;
|
||||||
alteredContent.gameMaps.addMap(clone);
|
alteredContent.gameMaps.addMap(clone);
|
||||||
} else {
|
} else {
|
||||||
Notification.addError("Unable to make " + node.getDesc() + " writable. It does not originate from game source material.");
|
Notification.addError("Unable to make "+node.getDesc()+" writable. It does not originate from game source material.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -816,7 +833,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
public void makeWritable(WorldmapSegment node) {
|
public void makeWritable(WorldmapSegment node) {
|
||||||
GameSource.Type type = node.getDataType();
|
GameSource.Type type = node.getDataType();
|
||||||
if (type == null) {
|
if (type == null) {
|
||||||
Notification.addError("Unable to make " + node.getDesc() + " writable. No owning GameDataSet found.");
|
Notification.addError("Unable to make "+node.getDesc()+" writable. No owning GameDataSet found.");
|
||||||
} else {
|
} else {
|
||||||
if (type == GameSource.Type.source) {
|
if (type == GameSource.Type.source) {
|
||||||
WorldmapSegment clone = node.clone();
|
WorldmapSegment clone = node.clone();
|
||||||
@@ -830,12 +847,13 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
clone.state = GameDataElement.State.created;
|
clone.state = GameDataElement.State.created;
|
||||||
alteredContent.worldmap.addSegment(clone);
|
alteredContent.worldmap.addSegment(clone);
|
||||||
} else {
|
} else {
|
||||||
Notification.addError("Unable to make " + node.getDesc() + " writable. It does not originate from game source material.");
|
Notification.addError("Unable to make "+node.getDesc()+" writable. It does not originate from game source material.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* @param node. Before calling this method, make sure that no other node with the same class and id exist in either created or altered.
|
* @param node. Before calling this method, make sure that no other node with the same class and id exist in either created or altered.
|
||||||
*/
|
*/
|
||||||
public void createElement(JSONElement node) {
|
public void createElement(JSONElement node) {
|
||||||
@@ -859,6 +877,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* @param node. Before calling this method, make sure that no other node with the same class and id exist in either created or altered.
|
* @param node. Before calling this method, make sure that no other node with the same class and id exist in either created or altered.
|
||||||
*/
|
*/
|
||||||
public void createElements(List<? extends JSONElement> nodes) {
|
public void createElements(List<? extends JSONElement> nodes) {
|
||||||
@@ -886,6 +905,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* @param node. Before calling this method, make sure that no other map with the same id exist in either created or altered.
|
* @param node. Before calling this method, make sure that no other map with the same id exist in either created or altered.
|
||||||
*/
|
*/
|
||||||
public void createElement(TMXMap node) {
|
public void createElement(TMXMap node) {
|
||||||
@@ -915,16 +935,16 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
|
|
||||||
public void moveToCreated(JSONElement target) {
|
public void moveToCreated(JSONElement target) {
|
||||||
target.childrenRemoved(new ArrayList<ProjectTreeNode>());
|
target.childrenRemoved(new ArrayList<ProjectTreeNode>());
|
||||||
((GameDataCategory<?>) target.getParent()).removeGeneric(target);
|
((GameDataCategory<?>)target.getParent()).remove(target);
|
||||||
target.state = GameDataElement.State.created;
|
target.state = GameDataElement.State.created;
|
||||||
createdContent.gameData.addElement(target);
|
createdContent.gameData.addElement(target);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void moveToAltered(JSONElement target) {
|
public void moveToAltered(JSONElement target) {
|
||||||
target.childrenRemoved(new ArrayList<ProjectTreeNode>());
|
target.childrenRemoved(new ArrayList<ProjectTreeNode>());
|
||||||
((GameDataCategory<?>) target.getParent()).removeGeneric(target);
|
((GameDataCategory<?>)target.getParent()).remove(target);
|
||||||
target.state = GameDataElement.State.created;
|
target.state = GameDataElement.State.created;
|
||||||
((JSONElement) target).jsonFile = new File(baseContent.gameData.getGameDataElement(((JSONElement) target).getClass(), target.id).jsonFile.getAbsolutePath());
|
((JSONElement) target).jsonFile = new File(baseContent.gameData.getGameDataElement(((JSONElement)target).getClass(), target.id).jsonFile.getAbsolutePath());
|
||||||
alteredContent.gameData.addElement((JSONElement) target);
|
alteredContent.gameData.addElement((JSONElement) target);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -949,6 +969,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void createWriterSketch(WriterModeData node) {
|
public void createWriterSketch(WriterModeData node) {
|
||||||
node.writable = true;
|
node.writable = true;
|
||||||
createdContent.writerModeDataSet.add(node);
|
createdContent.writerModeDataSet.add(node);
|
||||||
@@ -987,6 +1008,11 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void addSave(File selectedFile) {
|
||||||
|
saves.addSave(selectedFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public List<NPC> getSpawnGroup(String spawngroup_id) {
|
public List<NPC> getSpawnGroup(String spawngroup_id) {
|
||||||
List<NPC> result = new ArrayList<NPC>();
|
List<NPC> result = new ArrayList<NPC>();
|
||||||
int i = getNPCCount();
|
int i = getNPCCount();
|
||||||
@@ -1028,8 +1054,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void removeElementListener(Class<? extends GameDataElement> interestingType, ProjectElementListener listener) {
|
public void removeElementListener(Class<? extends GameDataElement> interestingType, ProjectElementListener listener) {
|
||||||
if (projectElementListeners.get(interestingType) != null)
|
if (projectElementListeners.get(interestingType) != null) projectElementListeners.get(interestingType).remove(listener);
|
||||||
projectElementListeners.get(interestingType).remove(listener);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void fireElementAdded(GameDataElement element, int index) {
|
public void fireElementAdded(GameDataElement element, int index) {
|
||||||
@@ -1049,22 +1074,16 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void exportProjectAsZipPackage(final File target) {
|
public void exportProjectAsZipPackage(final File target) {
|
||||||
WorkerDialog.showTaskMessage("Exporting project " + name + "...", ATContentStudio.frame, true, new Runnable() {
|
WorkerDialog.showTaskMessage("Exporting project "+name+"...", ATContentStudio.frame, true, new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
Notification.addInfo("Exporting project \"" + name + "\" as " + target.getAbsolutePath());
|
Notification.addInfo("Exporting project \""+name+"\" as "+target.getAbsolutePath());
|
||||||
|
|
||||||
|
File tmpDir = exportProjectToTmpDir();
|
||||||
|
|
||||||
File tmpDir;
|
|
||||||
try {
|
|
||||||
tmpDir = exportProjectToTmpDir();
|
|
||||||
FileUtils.writeToZip(tmpDir, target);
|
FileUtils.writeToZip(tmpDir, target);
|
||||||
FileUtils.deleteDir(tmpDir);
|
FileUtils.deleteDir(tmpDir);
|
||||||
} catch (IOException e) {
|
Notification.addSuccess("Project \""+name+"\" exported as "+target.getAbsolutePath());
|
||||||
// TODO Auto-generated catch block
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
Notification.addSuccess("Project \"" + name + "\" exported as " + target.getAbsolutePath());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -1072,29 +1091,23 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void exportProjectOverGameSource(final File target) {
|
public void exportProjectOverGameSource(final File target) {
|
||||||
WorkerDialog.showTaskMessage("Exporting project " + name + "...", ATContentStudio.frame, true, new Runnable() {
|
WorkerDialog.showTaskMessage("Exporting project "+name+"...", ATContentStudio.frame, true, new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
Notification.addInfo("Exporting project \"" + name + "\" into " + target.getAbsolutePath());
|
Notification.addInfo("Exporting project \""+name+"\" into "+target.getAbsolutePath());
|
||||||
|
|
||||||
|
File tmpDir = exportProjectToTmpDir();
|
||||||
|
|
||||||
File tmpDir;
|
|
||||||
try {
|
|
||||||
tmpDir = exportProjectToTmpDir();
|
|
||||||
FileUtils.copyOver(tmpDir, target);
|
FileUtils.copyOver(tmpDir, target);
|
||||||
FileUtils.deleteDir(tmpDir);
|
FileUtils.deleteDir(tmpDir);
|
||||||
} catch (IOException e) {
|
Notification.addSuccess("Project \""+name+"\" exported into "+target.getAbsolutePath());
|
||||||
// TODO Auto-generated catch block
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
Notification.addSuccess("Project \"" + name + "\" exported into " + target.getAbsolutePath());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public File exportProjectToTmpDir() throws IOException {
|
public File exportProjectToTmpDir() {
|
||||||
File tmpDir = new File(baseFolder, "tmp");
|
File tmpDir = new File(baseFolder, "tmp");
|
||||||
FileUtils.deleteDir(tmpDir);
|
FileUtils.deleteDir(tmpDir);
|
||||||
tmpDir.mkdir();
|
tmpDir.mkdir();
|
||||||
@@ -1106,15 +1119,13 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
// }
|
// }
|
||||||
Map<Class<? extends GameDataElement>, List<String>> writtenFilesPerDataType = new LinkedHashMap<Class<? extends GameDataElement>, List<String>>();
|
Map<Class<? extends GameDataElement>, List<String>> writtenFilesPerDataType = new LinkedHashMap<Class<? extends GameDataElement>, List<String>>();
|
||||||
List<String> writtenFiles;
|
List<String> writtenFiles;
|
||||||
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.actorConditions, alteredContent.gameData.actorConditions, baseContent.gameData.actorConditions, ActorCondition.class,
|
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.actorConditions, alteredContent.gameData.actorConditions, baseContent.gameData.actorConditions, ActorCondition.class, tmpJsonDataDir);
|
||||||
tmpJsonDataDir);
|
|
||||||
writtenFilesPerDataType.put(ActorCondition.class, writtenFiles);
|
writtenFilesPerDataType.put(ActorCondition.class, writtenFiles);
|
||||||
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.dialogues, alteredContent.gameData.dialogues, baseContent.gameData.dialogues, Dialogue.class, tmpJsonDataDir);
|
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.dialogues, alteredContent.gameData.dialogues, baseContent.gameData.dialogues, Dialogue.class, tmpJsonDataDir);
|
||||||
writtenFilesPerDataType.put(Dialogue.class, writtenFiles);
|
writtenFilesPerDataType.put(Dialogue.class, writtenFiles);
|
||||||
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.droplists, alteredContent.gameData.droplists, baseContent.gameData.droplists, Droplist.class, tmpJsonDataDir);
|
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.droplists, alteredContent.gameData.droplists, baseContent.gameData.droplists, Droplist.class, tmpJsonDataDir);
|
||||||
writtenFilesPerDataType.put(Droplist.class, writtenFiles);
|
writtenFilesPerDataType.put(Droplist.class, writtenFiles);
|
||||||
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.itemCategories, alteredContent.gameData.itemCategories, baseContent.gameData.itemCategories, ItemCategory.class,
|
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.itemCategories, alteredContent.gameData.itemCategories, baseContent.gameData.itemCategories, ItemCategory.class, tmpJsonDataDir);
|
||||||
tmpJsonDataDir);
|
|
||||||
writtenFilesPerDataType.put(ItemCategory.class, writtenFiles);
|
writtenFilesPerDataType.put(ItemCategory.class, writtenFiles);
|
||||||
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.items, alteredContent.gameData.items, baseContent.gameData.items, Item.class, tmpJsonDataDir);
|
writtenFiles = writeDataDeltaForDataType(createdContent.gameData.items, alteredContent.gameData.items, baseContent.gameData.items, Item.class, tmpJsonDataDir);
|
||||||
writtenFilesPerDataType.put(Item.class, writtenFiles);
|
writtenFilesPerDataType.put(Item.class, writtenFiles);
|
||||||
@@ -1128,12 +1139,12 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
writtenFiles = new LinkedList<String>();
|
writtenFiles = new LinkedList<String>();
|
||||||
for (File createdMapFile : createdContent.gameMaps.mapFolder.listFiles()) {
|
for (File createdMapFile : createdContent.gameMaps.mapFolder.listFiles()) {
|
||||||
if (createdMapFile.getName().equalsIgnoreCase("worldmap.xml")) continue;
|
if (createdMapFile.getName().equalsIgnoreCase("worldmap.xml")) continue;
|
||||||
copyTmxConverted(createdMapFile.toPath(), Paths.get(tmpMapDir.getAbsolutePath(), createdMapFile.getName()));
|
FileUtils.copyFile(createdMapFile, new File(tmpMapDir, createdMapFile.getName()));
|
||||||
writtenFiles.add(createdMapFile.getName());
|
writtenFiles.add(createdMapFile.getName());
|
||||||
}
|
}
|
||||||
for (File alteredMapFile : alteredContent.gameMaps.mapFolder.listFiles()) {
|
for (File alteredMapFile : alteredContent.gameMaps.mapFolder.listFiles()) {
|
||||||
if (alteredMapFile.getName().equalsIgnoreCase("worldmap.xml")) continue;
|
if (alteredMapFile.getName().equalsIgnoreCase("worldmap.xml")) continue;
|
||||||
copyTmxConverted(alteredMapFile.toPath(), Paths.get(tmpMapDir.getAbsolutePath(), alteredMapFile.getName()));
|
FileUtils.copyFile(alteredMapFile, new File(tmpMapDir, alteredMapFile.getName()));
|
||||||
writtenFiles.add(alteredMapFile.getName());
|
writtenFiles.add(alteredMapFile.getName());
|
||||||
}
|
}
|
||||||
writtenFilesPerDataType.put(TMXMap.class, writtenFiles);
|
writtenFilesPerDataType.put(TMXMap.class, writtenFiles);
|
||||||
@@ -1166,32 +1177,22 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
return tmpDir;
|
return tmpDir;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void copyTmxConverted(Path from, Path to) throws IOException {
|
|
||||||
String xml = new String(Files.readAllBytes(from), StandardCharsets.UTF_8);
|
|
||||||
xml = xml.replace("../../altered/spritesheets/", drawablePath);
|
|
||||||
xml = xml.replace("../../created/spritesheets/", drawablePath);
|
|
||||||
xml = xml.replace("../spritesheets/", drawablePath);
|
|
||||||
xml = xml.replace("../spritesheets/", drawablePath);
|
|
||||||
Files.write(to, xml.getBytes(StandardCharsets.UTF_8));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
public List<String> writeDataDeltaForDataType(GameDataCategory<? extends JSONElement> created, GameDataCategory<? extends JSONElement> altered, GameDataCategory<? extends JSONElement> source, Class<? extends JSONElement> gdeClass, File targetFolder) {
|
public List<String> writeDataDeltaForDataType(GameDataCategory<? extends JSONElement> created, GameDataCategory<? extends JSONElement> altered, GameDataCategory<? extends JSONElement> source, Class<? extends JSONElement> gdeClass, File targetFolder) {
|
||||||
List<String> filenamesToWrite = new LinkedList<String>();
|
List<String> filenamesToWrite = new LinkedList<String>();
|
||||||
Map<String, List<Map>> dataToWritePerFilename = new LinkedHashMap<String, List<Map>>();
|
Map<String, List<Map>> dataToWritePerFilename = new LinkedHashMap<String, List<Map>>();
|
||||||
for (JSONElement gde : altered.toList()) {
|
for (JSONElement gde : altered) {
|
||||||
if (!filenamesToWrite.contains(gde.jsonFile.getName())) {
|
if (!filenamesToWrite.contains(gde.jsonFile.getName())) {
|
||||||
filenamesToWrite.add(gde.jsonFile.getName());
|
filenamesToWrite.add(gde.jsonFile.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (JSONElement gde : created.toList()) {
|
for (JSONElement gde : created) {
|
||||||
if (!filenamesToWrite.contains(gde.jsonFile.getName())) {
|
if (!filenamesToWrite.contains(gde.jsonFile.getName())) {
|
||||||
filenamesToWrite.add(gde.jsonFile.getName());
|
filenamesToWrite.add(gde.jsonFile.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (String fName : filenamesToWrite) {
|
for (String fName : filenamesToWrite) {
|
||||||
for (JSONElement gde : source.toList()) {
|
for (JSONElement gde : source) {
|
||||||
if (gde.jsonFile.getName().equals(fName)) {
|
if (gde.jsonFile.getName().equals(fName)) {
|
||||||
if (dataToWritePerFilename.get(fName) == null) {
|
if (dataToWritePerFilename.get(fName) == null) {
|
||||||
dataToWritePerFilename.put(fName, new ArrayList<Map>());
|
dataToWritePerFilename.put(fName, new ArrayList<Map>());
|
||||||
@@ -1200,7 +1201,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
dataToWritePerFilename.get(fName).add(getGameDataElement(gdeClass, gde.id).toJson());
|
dataToWritePerFilename.get(fName).add(getGameDataElement(gdeClass, gde.id).toJson());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (JSONElement gde : created.toList()) {
|
for (JSONElement gde : created) {
|
||||||
if (gde.jsonFile.getName().equals(fName)) {
|
if (gde.jsonFile.getName().equals(fName)) {
|
||||||
if (dataToWritePerFilename.get(fName) == null) {
|
if (dataToWritePerFilename.get(fName) == null) {
|
||||||
dataToWritePerFilename.put(fName, new ArrayList<Map>());
|
dataToWritePerFilename.put(fName, new ArrayList<Map>());
|
||||||
@@ -1212,9 +1213,22 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
for (String fName : dataToWritePerFilename.keySet()) {
|
for (String fName : dataToWritePerFilename.keySet()) {
|
||||||
File jsonFile = new File(targetFolder, fName);
|
File jsonFile = new File(targetFolder, fName);
|
||||||
|
StringWriter writer = new JsonPrettyWriter();
|
||||||
String textToWrite = FileUtils.toJsonString(dataToWritePerFilename.get(fName));
|
try {
|
||||||
FileUtils.writeStringToFile(textToWrite, jsonFile, "JSON file '"+jsonFile.getAbsolutePath()+"'", false);
|
JSONArray.writeJSONString(dataToWritePerFilename.get(fName), writer);
|
||||||
|
} catch (IOException e) {
|
||||||
|
//Impossible with a StringWriter
|
||||||
|
}
|
||||||
|
String textToWrite = writer.toString();
|
||||||
|
try {
|
||||||
|
FileWriter w = new FileWriter(jsonFile);
|
||||||
|
w.write(textToWrite);
|
||||||
|
w.close();
|
||||||
|
// Notification.addSuccess("Json file "+jsonFile.getAbsolutePath()+" saved.");
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addError("Error while writing json file "+jsonFile.getAbsolutePath()+" : "+e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return filenamesToWrite;
|
return filenamesToWrite;
|
||||||
}
|
}
|
||||||
@@ -1277,19 +1291,19 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
NodeList arrayItems = arrayNode.getElementsByTagName("item");
|
NodeList arrayItems = arrayNode.getElementsByTagName("item");
|
||||||
if (arrayItems != null) {
|
if (arrayItems != null) {
|
||||||
for (int j = 0; j < arrayItems.getLength(); j++) {
|
for (int j = 0; j < arrayItems.getLength(); j++) {
|
||||||
resName = ((Element) arrayItems.item(j)).getTextContent();
|
resName = ((Element)arrayItems.item(j)).getTextContent();
|
||||||
if (resName == null) continue;
|
if (resName == null) continue;
|
||||||
resToFile = resName.replaceFirst("\\A" + resPrefix, "") + fileSuffix;
|
resToFile = resName.replaceFirst("\\A"+resPrefix, "")+fileSuffix;
|
||||||
writtenFiles.remove(resToFile);
|
writtenFiles.remove(resToFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!writtenFiles.isEmpty()) {
|
if (!writtenFiles.isEmpty()) {
|
||||||
Comment com = doc.createComment("Added by ATCS " + ATContentStudio.APP_VERSION + " for project " + getProject().name);
|
Comment com = doc.createComment("Added by ATCS "+ATContentStudio.APP_VERSION+" for project "+getProject().name);
|
||||||
arrayNode.appendChild(com);
|
arrayNode.appendChild(com);
|
||||||
Collections.sort(writtenFiles);
|
Collections.sort(writtenFiles);
|
||||||
for (String missingRes : writtenFiles) {
|
for (String missingRes : writtenFiles) {
|
||||||
Element item = doc.createElement("item");
|
Element item = doc.createElement("item");
|
||||||
fileToRes = resPrefix + missingRes.replaceFirst(fileSuffix + "\\z", "");
|
fileToRes = resPrefix+missingRes.replaceFirst(fileSuffix+"\\z", "");
|
||||||
item.setTextContent(fileToRes);
|
item.setTextContent(fileToRes);
|
||||||
arrayNode.appendChild(item);
|
arrayNode.appendChild(item);
|
||||||
}
|
}
|
||||||
@@ -1358,4 +1372,7 @@ public class Project implements ProjectTreeNode, Serializable, JsonSerializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +1,23 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import java.awt.Image;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
import javax.swing.tree.TreeNode;
|
||||||
import java.awt.*;
|
|
||||||
import java.util.List;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
|
|
||||||
public interface ProjectTreeNode extends TreeNode {
|
public interface ProjectTreeNode extends TreeNode {
|
||||||
|
|
||||||
public void childrenAdded(List<ProjectTreeNode> path);
|
public void childrenAdded(List<ProjectTreeNode> path);
|
||||||
|
|
||||||
public void childrenChanged(List<ProjectTreeNode> path);
|
public void childrenChanged(List<ProjectTreeNode> path);
|
||||||
|
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path);
|
public void childrenRemoved(List<ProjectTreeNode> path);
|
||||||
|
|
||||||
public void notifyCreated();
|
public void notifyCreated();
|
||||||
|
|
||||||
public String getDesc();
|
public String getDesc();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unnecessary for anything not below a Project. Can return null.
|
* Unnecessary for anything not below a Project. Can return null.
|
||||||
*
|
|
||||||
* @return the parent Project or null.
|
* @return the parent Project or null.
|
||||||
*/
|
*/
|
||||||
public Project getProject();
|
public Project getProject();
|
||||||
@@ -28,31 +25,29 @@ public interface ProjectTreeNode extends TreeNode {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Unnecessary for anything not below a GameDataSet. Can return null.
|
* Unnecessary for anything not below a GameDataSet. Can return null.
|
||||||
*
|
|
||||||
* @return the parent GameDataSet or null.
|
* @return the parent GameDataSet or null.
|
||||||
*/
|
*/
|
||||||
public GameDataSet getDataSet();
|
public GameDataSet getDataSet();
|
||||||
|
|
||||||
public Image getIcon();
|
public Image getIcon();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* @return The icon depicting this node when it is an open folder. Can be null for leaves.
|
* @return The icon depicting this node when it is an open folder. Can be null for leaves.
|
||||||
*/
|
*/
|
||||||
public Image getOpenIcon();
|
public Image getOpenIcon();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* @return The icon depicting this node when it is a closed folder. Can be null for leaves.
|
* @return The icon depicting this node when it is a closed folder. Can be null for leaves.
|
||||||
*/
|
*/
|
||||||
public Image getClosedIcon();
|
public Image getClosedIcon();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* @return The icon depicting this node when it is a leaf. Should return the closed one for empty folders.
|
* @return The icon depicting this node when it is a leaf. Should return the closed one for empty folders.
|
||||||
*/
|
*/
|
||||||
public Image getLeafIcon();
|
public Image getLeafIcon();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unnecessary for anything not below a GameSource. Can return null.
|
* Unnecessary for anything not below a GameSource. Can return null.
|
||||||
*
|
|
||||||
* @return the parent GameSource or null.
|
* @return the parent GameSource or null.
|
||||||
*/
|
*/
|
||||||
public GameSource.Type getDataType();
|
public GameSource.Type getDataType();
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ public class SaveEvent {
|
|||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (!(obj instanceof SaveEvent)) return false;
|
if (!(obj instanceof SaveEvent)) return false;
|
||||||
else return (((SaveEvent) obj).type == this.type) && (((SaveEvent) obj).target == this.target);
|
else return (((SaveEvent)obj).type == this.type) && (((SaveEvent)obj).target == this.target);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,30 +1,35 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
import javax.swing.tree.TreePath;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.io.JsonSerializable;
|
|
||||||
import com.gpl.rpg.atcontentstudio.io.SettingsSave;
|
import com.gpl.rpg.atcontentstudio.io.SettingsSave;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.ProjectsTree.ProjectsTreeModel;
|
import com.gpl.rpg.atcontentstudio.ui.ProjectsTree.ProjectsTreeModel;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.WorkerDialog;
|
import com.gpl.rpg.atcontentstudio.ui.WorkerDialog;
|
||||||
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
|
||||||
import org.jsoup.SerializationException;
|
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
public class Workspace implements ProjectTreeNode, Serializable {
|
||||||
import javax.swing.tree.TreePath;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.*;
|
|
||||||
import java.nio.file.Files;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
public class Workspace implements ProjectTreeNode, Serializable, JsonSerializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 7938633033601384956L;
|
private static final long serialVersionUID = 7938633033601384956L;
|
||||||
|
|
||||||
public static final String WS_SETTINGS_FILE = ".workspace";
|
public static final String WS_SETTINGS_FILE = ".workspace";
|
||||||
public static final String WS_SETTINGS_FILE_JSON = ".workspace.json";
|
|
||||||
|
|
||||||
public static Workspace activeWorkspace;
|
public static Workspace activeWorkspace;
|
||||||
|
|
||||||
@@ -40,7 +45,6 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
public transient ProjectsTreeModel projectsTreeModel = null;
|
public transient ProjectsTreeModel projectsTreeModel = null;
|
||||||
|
|
||||||
public Workspace(File workspaceRoot) {
|
public Workspace(File workspaceRoot) {
|
||||||
boolean freshWorkspace = false;
|
|
||||||
baseFolder = workspaceRoot;
|
baseFolder = workspaceRoot;
|
||||||
if (!workspaceRoot.exists()) {
|
if (!workspaceRoot.exists()) {
|
||||||
try {
|
try {
|
||||||
@@ -52,70 +56,23 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
settings = new WorkspaceSettings(this);
|
settings = new WorkspaceSettings(this);
|
||||||
settingsFile = new File(workspaceRoot, WS_SETTINGS_FILE_JSON);
|
settingsFile = new File(workspaceRoot, WS_SETTINGS_FILE);
|
||||||
if (!settingsFile.exists()) {
|
if (!settingsFile.exists()) {
|
||||||
try {
|
try {
|
||||||
settingsFile.createNewFile();
|
settingsFile.createNewFile();
|
||||||
freshWorkspace = true;
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error creating workspace datafile: "
|
Notification.addError("Error creating workspace datafile: "
|
||||||
+ e.getMessage());
|
+ e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
Notification.addSuccess("New workspace created: "
|
Notification.addSuccess("New workspace created: "
|
||||||
+ workspaceRoot.getAbsolutePath());
|
+ workspaceRoot.getAbsolutePath());
|
||||||
}
|
|
||||||
if (freshWorkspace)
|
|
||||||
save();
|
save();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Map toMap() {
|
|
||||||
Map map = new HashMap();
|
|
||||||
map.put("serialVersionUID", serialVersionUID);
|
|
||||||
map.put("preferences", preferences.toMap());
|
|
||||||
map.put("projectsName", (new ArrayList<String>(projectsName)));
|
|
||||||
map.put("projectsOpenByName", projectsOpenByName);
|
|
||||||
List<String> l = new ArrayList<>(knownMapSourcesFolders.size());
|
|
||||||
for (File f: knownMapSourcesFolders){
|
|
||||||
l.add(f.getPath());
|
|
||||||
}
|
|
||||||
map.put("knownMapSourcesFolders", l);
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void fromMap(Map map) {
|
|
||||||
if(serialVersionUID != (long) map.get("serialVersionUID")){
|
|
||||||
throw new SerializationException("wrong seriaVersionUID");
|
|
||||||
}
|
|
||||||
|
|
||||||
preferences.fromMap((Map) map.get("preferences"));
|
|
||||||
|
|
||||||
projectsName = new HashSet<>((List<String>) map.getOrDefault("projectsName", new HashSet<String>()));
|
|
||||||
|
|
||||||
projectsOpenByName = (Map<String, Boolean>) map.getOrDefault("projectsOpenByName", new HashMap<String, Boolean>() );
|
|
||||||
|
|
||||||
List<String> knownMapSourcesFolders1 = (List<String>) map.getOrDefault("knownMapSourcesFolders", new ArrayList<String>());
|
|
||||||
knownMapSourcesFolders = new HashSet<>();
|
|
||||||
if (knownMapSourcesFolders1 != null){
|
|
||||||
int size = knownMapSourcesFolders1.size();
|
|
||||||
for (String path: knownMapSourcesFolders1) {
|
|
||||||
//TODO: catch invalid paths...?
|
|
||||||
knownMapSourcesFolders.add(new File(path));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setActive(File workspaceRoot) {
|
public static void setActive(File workspaceRoot) {
|
||||||
Workspace w;
|
Workspace w = null;
|
||||||
File f2 = new File(workspaceRoot, WS_SETTINGS_FILE_JSON);
|
|
||||||
if (f2.exists()) {
|
|
||||||
w = loadWorkspaceFromJson(workspaceRoot, f2);
|
|
||||||
w.refreshTransients();
|
|
||||||
} else {
|
|
||||||
Notification.addInfo("Could not find json workspace file. Checking for binary file");
|
|
||||||
File f = new File(workspaceRoot, WS_SETTINGS_FILE);
|
File f = new File(workspaceRoot, WS_SETTINGS_FILE);
|
||||||
if (!workspaceRoot.exists() || !f.exists()) {
|
if (!workspaceRoot.exists() || !f.exists()) {
|
||||||
w = new Workspace(workspaceRoot);
|
w = new Workspace(workspaceRoot);
|
||||||
@@ -124,33 +81,19 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
if (w == null) {
|
if (w == null) {
|
||||||
w = new Workspace(workspaceRoot);
|
w = new Workspace(workspaceRoot);
|
||||||
} else {
|
} else {
|
||||||
w.settingsFile = f2;
|
|
||||||
w.baseFolder = workspaceRoot;
|
|
||||||
Notification.addInfo("Switched workspace to json format.");
|
|
||||||
w.refreshTransients();
|
w.refreshTransients();
|
||||||
}
|
}
|
||||||
w.save();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
activeWorkspace = w;
|
activeWorkspace = w;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Workspace loadWorkspaceFromJson(File workspaceRoot, File settingsFile) {
|
|
||||||
Workspace w = w = new Workspace(workspaceRoot);
|
|
||||||
Map json = FileUtils.mapFromJsonFile(settingsFile);
|
|
||||||
if (json!= null) {
|
|
||||||
w.fromMap(json);
|
|
||||||
}
|
|
||||||
return w;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void saveActive() {
|
public static void saveActive() {
|
||||||
activeWorkspace.save();
|
activeWorkspace.save();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void save() {
|
public void save() {
|
||||||
settings.save();
|
settings.save();
|
||||||
FileUtils.writeStringToFile(FileUtils.toJsonString(this), settingsFile, "Workspace");
|
SettingsSave.saveInstance(this, settingsFile, "Workspace");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -202,7 +145,7 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
if (projectsTreeModel != null) {
|
if (projectsTreeModel != null) {
|
||||||
while (path.size() > 1) {
|
while (path.size() > 1) {
|
||||||
projectsTreeModel.changeNode(new TreePath(path.toArray()));
|
projectsTreeModel.changeNode(new TreePath(path.toArray()));
|
||||||
path.remove(path.size() - 1);
|
path.remove(path.size()-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -368,6 +311,7 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
Notification.addError("Error while deleting closed project "
|
Notification.addError("Error while deleting closed project "
|
||||||
+ cp.name + ". Files may remain in the workspace.");
|
+ cp.name + ". Files may remain in the workspace.");
|
||||||
}
|
}
|
||||||
|
cp = null;
|
||||||
saveActive();
|
saveActive();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -383,6 +327,7 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
Notification.addError("Error while deleting project " + p.name
|
Notification.addError("Error while deleting project " + p.name
|
||||||
+ ". Files may remain in the workspace.");
|
+ ". Files may remain in the workspace.");
|
||||||
}
|
}
|
||||||
|
p = null;
|
||||||
saveActive();
|
saveActive();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -394,7 +339,7 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
for (File c : f.listFiles())
|
for (File c : f.listFiles())
|
||||||
b &= delete(c);
|
b &= delete(c);
|
||||||
}
|
}
|
||||||
return b & f.delete();
|
return b &= f.delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -420,4 +365,5 @@ public class Workspace implements ProjectTreeNode, Serializable, JsonSerializabl
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,21 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model;
|
package com.gpl.rpg.atcontentstudio.model;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.io.File;
|
||||||
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
import java.io.FileReader;
|
||||||
import org.json.simple.parser.JSONParser;
|
import java.io.FileWriter;
|
||||||
|
import java.io.IOException;
|
||||||
import java.io.*;
|
import java.io.StringWriter;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.JSONObject;
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.io.JsonPrettyWriter;
|
||||||
|
|
||||||
public class WorkspaceSettings {
|
public class WorkspaceSettings {
|
||||||
|
|
||||||
public static final String VERSION_KEY = "ATCS_Version";
|
public static final String VERSION_KEY = "ATCS_Version";
|
||||||
@@ -32,7 +38,7 @@ public class WorkspaceSettings {
|
|||||||
public static String DEFAULT_IMG_EDITOR_COMMAND = "gimp";
|
public static String DEFAULT_IMG_EDITOR_COMMAND = "gimp";
|
||||||
public Setting<String> imageEditorCommand = new PrimitiveSetting<String>("imageEditorCommand", DEFAULT_IMG_EDITOR_COMMAND);
|
public Setting<String> imageEditorCommand = new PrimitiveSetting<String>("imageEditorCommand", DEFAULT_IMG_EDITOR_COMMAND);
|
||||||
|
|
||||||
public static String[] LANGUAGE_LIST = new String[]{null, "de", "ru", "pl", "fr", "it", "es", "nl", "uk", "ca", "sv", "pt", "pt_BR", "zh_Hant", "zh_Hans", "ja", "cs", "tr", "ko", "hu", "sl", "bg", "id", "fi", "th", "gl", "ms", "pa", "az", "nb"};
|
public static String[] LANGUAGE_LIST = new String[]{null, "de", "ru", "pl", "fr", "it", "es", "nl", "uk", "ca", "sv", "pt", "pt_BR", "zh_Hant", "zh_Hans", "ja", "cs", "tr", "ko", "hu", "sl", "bg", "id", "fi", "th", "gl", "ms" ,"pa", "az", "nb"};
|
||||||
public Setting<String> translatorLanguage = new NullDefaultPrimitiveSetting<String>("translatorLanguage");
|
public Setting<String> translatorLanguage = new NullDefaultPrimitiveSetting<String>("translatorLanguage");
|
||||||
public static Boolean DEFAULT_ALLOW_INTERNET = true;
|
public static Boolean DEFAULT_ALLOW_INTERNET = true;
|
||||||
public Setting<Boolean> useInternet = new PrimitiveSetting<Boolean>("useInternet", DEFAULT_ALLOW_INTERNET);
|
public Setting<Boolean> useInternet = new PrimitiveSetting<Boolean>("useInternet", DEFAULT_ALLOW_INTERNET);
|
||||||
@@ -73,7 +79,7 @@ public class WorkspaceSettings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Notification.addError("Error while parsing workspace settings: " + e.getMessage());
|
Notification.addError("Error while parsing workspace settings: "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -107,8 +113,22 @@ public class WorkspaceSettings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
json.put(VERSION_KEY, SETTINGS_VERSION);
|
json.put(VERSION_KEY, SETTINGS_VERSION);
|
||||||
String toWrite = FileUtils.toJsonString(json);
|
StringWriter writer = new JsonPrettyWriter();
|
||||||
FileUtils.writeStringToFile(toWrite, file, "Workspace settings");
|
try {
|
||||||
|
JSONObject.writeJSONString(json, writer);
|
||||||
|
} catch (IOException e) {
|
||||||
|
//Impossible with a StringWriter
|
||||||
|
}
|
||||||
|
String toWrite = writer.toString();
|
||||||
|
try {
|
||||||
|
FileWriter w = new FileWriter(file);
|
||||||
|
w.write(toWrite);
|
||||||
|
w.close();
|
||||||
|
Notification.addSuccess("Workspace settings saved.");
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addError("Error while saving workspace settings : "+e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void resetDefault() {
|
public void resetDefault() {
|
||||||
@@ -140,7 +160,7 @@ public class WorkspaceSettings {
|
|||||||
|
|
||||||
public abstract void readFromJson(@SuppressWarnings("rawtypes") Map json);
|
public abstract void readFromJson(@SuppressWarnings("rawtypes") Map json);
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
public void saveToJson(Map json) {
|
public void saveToJson(Map json) {
|
||||||
if (!defaultValue.equals(value)) json.put(id, value);
|
if (!defaultValue.equals(value)) json.put(id, value);
|
||||||
}
|
}
|
||||||
@@ -154,9 +174,9 @@ public class WorkspaceSettings {
|
|||||||
this.value = this.defaultValue = defaultValue;
|
this.value = this.defaultValue = defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
public void readFromJson(Map json) {
|
public void readFromJson(Map json) {
|
||||||
if (json.get(id) != null) value = (X) json.get(id);
|
if (json.get(id) != null) value = (X)json.get(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -168,7 +188,7 @@ public class WorkspaceSettings {
|
|||||||
super(id, null);
|
super(id, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||||
@Override
|
@Override
|
||||||
public void saveToJson(Map json) {
|
public void saveToJson(Map json) {
|
||||||
if (value != null) json.put(id, value);
|
if (value != null) json.put(id, value);
|
||||||
@@ -182,13 +202,13 @@ public class WorkspaceSettings {
|
|||||||
this.value = this.defaultValue = defaultValue;
|
this.value = this.defaultValue = defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public void readFromJson(Map json) {
|
public void readFromJson(Map json) {
|
||||||
value = new ArrayList<X>();
|
value = new ArrayList<X>();
|
||||||
if (json.get(id) != null) {
|
if (json.get(id) != null) {
|
||||||
for (Object o : ((List) json.get(id))) {
|
for (Object o : ((List)json.get(id))) {
|
||||||
value.add((X) o);
|
value.add((X)o);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -196,4 +216,5 @@ public class WorkspaceSettings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
@@ -8,12 +15,6 @@ import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Quest;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Quest;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.QuestStage;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.QuestStage;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Enumeration;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class BookmarkEntry implements BookmarkNode {
|
public class BookmarkEntry implements BookmarkNode {
|
||||||
|
|
||||||
public GameDataElement bookmarkedElement;
|
public GameDataElement bookmarkedElement;
|
||||||
@@ -63,22 +64,21 @@ public class BookmarkEntry implements BookmarkNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -87,19 +87,13 @@ public class BookmarkEntry implements BookmarkNode {
|
|||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
if (bookmarkedElement instanceof QuestStage) {
|
if (bookmarkedElement instanceof QuestStage) {
|
||||||
String text = ((GameDataElement) bookmarkedElement).getDesc();
|
String text = ((GameDataElement)bookmarkedElement).getDesc();
|
||||||
if (text.length() > 60) {
|
if (text.length() > 60) {
|
||||||
text = text.substring(0, 57) + "...";
|
text = text.substring(0, 57)+"...";
|
||||||
}
|
}
|
||||||
return ((GameDataElement) bookmarkedElement).getDataType().toString() +
|
return ((GameDataElement)bookmarkedElement).getDataType().toString()+"/"+((Quest)((QuestStage)bookmarkedElement).parent).id+"#"+((QuestStage)bookmarkedElement).progress+":"+text;
|
||||||
"/" +
|
|
||||||
((Quest) ((QuestStage) bookmarkedElement).parent).id +
|
|
||||||
"#" +
|
|
||||||
((QuestStage) bookmarkedElement).progress +
|
|
||||||
":" +
|
|
||||||
text;
|
|
||||||
} else {
|
} else {
|
||||||
return ((GameDataElement) bookmarkedElement).getDataType().toString() + "/" + ((GameDataElement) bookmarkedElement).getDesc();
|
return ((GameDataElement)bookmarkedElement).getDataType().toString()+"/"+((GameDataElement)bookmarkedElement).getDesc();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +1,20 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
public class BookmarkFolder implements BookmarkNode {
|
public class BookmarkFolder implements BookmarkNode {
|
||||||
|
|
||||||
List<BookmarkNode> contents = new LinkedList<BookmarkNode>();
|
List<BookmarkNode> contents = new LinkedList<BookmarkNode>();
|
||||||
@@ -66,13 +70,13 @@ public class BookmarkFolder implements BookmarkNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,7 +89,6 @@ public class BookmarkFolder implements BookmarkNode {
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
|
|||||||
@@ -2,10 +2,9 @@ package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
|||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
|
|
||||||
public interface BookmarkNode extends ProjectTreeNode {
|
public interface BookmarkNode extends ProjectTreeNode{
|
||||||
|
|
||||||
public void save();
|
public void save();
|
||||||
|
|
||||||
public void delete();
|
public void delete();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +1,36 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
import com.gpl.rpg.atcontentstudio.model.SavedSlotCollection;
|
import com.gpl.rpg.atcontentstudio.model.SavedSlotCollection;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.*;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.ActorCondition;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Droplist;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Item;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.ItemCategory;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.NPC;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Quest;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.TMXMap;
|
import com.gpl.rpg.atcontentstudio.model.maps.TMXMap;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.WorldmapSegment;
|
import com.gpl.rpg.atcontentstudio.model.maps.WorldmapSegment;
|
||||||
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Enumeration;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class BookmarksRoot implements BookmarkNode {
|
public class BookmarksRoot implements BookmarkNode {
|
||||||
|
|
||||||
SavedSlotCollection v = new SavedSlotCollection();
|
SavedSlotCollection v = new SavedSlotCollection();
|
||||||
|
|
||||||
public transient Project parent;
|
public transient Project parent = null;
|
||||||
|
|
||||||
BookmarkFolder ac, diag, dl, it, ic, npc, q, tmx, sp, wm;
|
BookmarkFolder ac, diag, dl, it, ic, npc, q, tmx, sp, wm;
|
||||||
|
|
||||||
@@ -81,13 +90,11 @@ public class BookmarksRoot implements BookmarkNode {
|
|||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
if (path.size() == 1 && this.v.getNonEmptySize() == 1) {
|
if (path.size() == 1 && this.v.getNonEmptySize() == 1) {
|
||||||
@@ -97,7 +104,6 @@ public class BookmarksRoot implements BookmarkNode {
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -108,7 +114,7 @@ public class BookmarksRoot implements BookmarkNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + "Bookmarks";
|
return (needsSaving() ? "*" : "")+"Bookmarks";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -161,12 +167,11 @@ public class BookmarksRoot implements BookmarkNode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void delete() {
|
public void delete() {}
|
||||||
}
|
|
||||||
|
|
||||||
public void addBookmark(GameDataElement target) {
|
public void addBookmark(GameDataElement target) {
|
||||||
BookmarkEntry node;
|
BookmarkEntry node;
|
||||||
BookmarkFolder folder;
|
BookmarkFolder folder = null;
|
||||||
if (target instanceof ActorCondition) {
|
if (target instanceof ActorCondition) {
|
||||||
folder = ac;
|
folder = ac;
|
||||||
} else if (target instanceof Dialogue) {
|
} else if (target instanceof Dialogue) {
|
||||||
@@ -192,8 +197,7 @@ public class BookmarksRoot implements BookmarkNode {
|
|||||||
}
|
}
|
||||||
ProjectTreeNode higherEmptyParent = folder;
|
ProjectTreeNode higherEmptyParent = folder;
|
||||||
while (higherEmptyParent != null) {
|
while (higherEmptyParent != null) {
|
||||||
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode) higherEmptyParent.getParent()).isEmpty())
|
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode)higherEmptyParent.getParent()).isEmpty()) higherEmptyParent = (ProjectTreeNode)higherEmptyParent.getParent();
|
||||||
higherEmptyParent = (ProjectTreeNode) higherEmptyParent.getParent();
|
|
||||||
else break;
|
else break;
|
||||||
}
|
}
|
||||||
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.FileReader;
|
import java.io.FileReader;
|
||||||
@@ -15,20 +9,26 @@ import java.util.LinkedHashMap;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
|
|
||||||
|
|
||||||
public class ActorCondition extends JSONElement {
|
public class ActorCondition extends JSONElement {
|
||||||
|
|
||||||
private static final long serialVersionUID = -3969824899972048507L;
|
private static final long serialVersionUID = -3969824899972048507L;
|
||||||
|
|
||||||
public static final Integer MAGNITUDE_CLEAR = -99;
|
public static final Integer MAGNITUDE_CLEAR = -99;
|
||||||
public static final Integer DURATION_FOREVER = 999;
|
public static final Integer DURATION_FOREVER = 999;;
|
||||||
public static final Integer DURATION_NONE = 0;
|
public static final Integer DURATION_NONE = 0;
|
||||||
|
|
||||||
// Available from init state
|
// Available from init state
|
||||||
//public String id; inherited.
|
//public String id; inherited.
|
||||||
public String icon_id;
|
public String icon_id;
|
||||||
public String display_name;
|
public String display_name;
|
||||||
public String description;
|
|
||||||
|
|
||||||
// Available from parsed state
|
// Available from parsed state
|
||||||
public ACCategory category = null;
|
public ACCategory category = null;
|
||||||
@@ -46,7 +46,10 @@ public class ActorCondition extends JSONElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static enum VisualEffectID {
|
public static enum VisualEffectID {
|
||||||
redSplash, blueSwirl, greenSplash, miss
|
redSplash
|
||||||
|
,blueSwirl
|
||||||
|
,greenSplash
|
||||||
|
,miss
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class RoundEffect implements Cloneable {
|
public static class RoundEffect implements Cloneable {
|
||||||
@@ -94,7 +97,7 @@ public class ActorCondition extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + display_name + " (" + id + ")";
|
return (needsSaving() ? "*" : "")+display_name+" ("+id+")";
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
@@ -105,7 +108,7 @@ public class ActorCondition extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List actorConditions = (List) parser.parse(reader);
|
List actorConditions = (List) parser.parse(reader);
|
||||||
for (Object obj : actorConditions) {
|
for (Object obj : actorConditions) {
|
||||||
Map aCondJson = (Map) obj;
|
Map aCondJson = (Map)obj;
|
||||||
ActorCondition aCond = fromJson(aCondJson);
|
ActorCondition aCond = fromJson(aCondJson);
|
||||||
aCond.jsonFile = jsonFile;
|
aCond.jsonFile = jsonFile;
|
||||||
aCond.parent = category;
|
aCond.parent = category;
|
||||||
@@ -115,13 +118,13 @@ public class ActorCondition extends JSONElement {
|
|||||||
category.add(aCond);
|
category.add(aCond);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -154,7 +157,6 @@ public class ActorCondition extends JSONElement {
|
|||||||
@Override
|
@Override
|
||||||
public void parse(Map aCondJson) {
|
public void parse(Map aCondJson) {
|
||||||
|
|
||||||
if (aCondJson.get("description") != null) this.description = (String) aCondJson.get("description");
|
|
||||||
if (aCondJson.get("category") != null) this.category = ACCategory.valueOf((String) aCondJson.get("category"));
|
if (aCondJson.get("category") != null) this.category = ACCategory.valueOf((String) aCondJson.get("category"));
|
||||||
this.positive = JSONElement.getInteger((Number) aCondJson.get("isPositive"));
|
this.positive = JSONElement.getInteger((Number) aCondJson.get("isPositive"));
|
||||||
Map abilityEffect = (Map) aCondJson.get("abilityEffect");
|
Map abilityEffect = (Map) aCondJson.get("abilityEffect");
|
||||||
@@ -162,8 +164,8 @@ public class ActorCondition extends JSONElement {
|
|||||||
this.constant_ability_effect = new AbilityEffect();
|
this.constant_ability_effect = new AbilityEffect();
|
||||||
this.constant_ability_effect.increase_attack_chance = JSONElement.getInteger((Number) abilityEffect.get("increaseAttackChance"));
|
this.constant_ability_effect.increase_attack_chance = JSONElement.getInteger((Number) abilityEffect.get("increaseAttackChance"));
|
||||||
if (abilityEffect.get("increaseAttackDamage") != null) {
|
if (abilityEffect.get("increaseAttackDamage") != null) {
|
||||||
this.constant_ability_effect.increase_damage_min = JSONElement.getInteger((Number) (((Map) abilityEffect.get("increaseAttackDamage")).get("min")));
|
this.constant_ability_effect.increase_damage_min = JSONElement.getInteger((Number) (((Map)abilityEffect.get("increaseAttackDamage")).get("min")));
|
||||||
this.constant_ability_effect.increase_damage_max = JSONElement.getInteger((Number) (((Map) abilityEffect.get("increaseAttackDamage")).get("max")));
|
this.constant_ability_effect.increase_damage_max = JSONElement.getInteger((Number) (((Map)abilityEffect.get("increaseAttackDamage")).get("max")));
|
||||||
}
|
}
|
||||||
this.constant_ability_effect.max_hp_boost = JSONElement.getInteger((Number) abilityEffect.get("increaseMaxHP"));
|
this.constant_ability_effect.max_hp_boost = JSONElement.getInteger((Number) abilityEffect.get("increaseMaxHP"));
|
||||||
this.constant_ability_effect.max_ap_boost = JSONElement.getInteger((Number) abilityEffect.get("increaseMaxAP"));
|
this.constant_ability_effect.max_ap_boost = JSONElement.getInteger((Number) abilityEffect.get("increaseMaxAP"));
|
||||||
@@ -180,40 +182,38 @@ public class ActorCondition extends JSONElement {
|
|||||||
if (roundEffect != null) {
|
if (roundEffect != null) {
|
||||||
this.round_effect = new RoundEffect();
|
this.round_effect = new RoundEffect();
|
||||||
if (roundEffect.get("increaseCurrentHP") != null) {
|
if (roundEffect.get("increaseCurrentHP") != null) {
|
||||||
this.round_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map) roundEffect.get("increaseCurrentHP")).get("max")));
|
this.round_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)roundEffect.get("increaseCurrentHP")).get("max")));
|
||||||
this.round_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map) roundEffect.get("increaseCurrentHP")).get("min")));
|
this.round_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)roundEffect.get("increaseCurrentHP")).get("min")));
|
||||||
}
|
}
|
||||||
if (roundEffect.get("increaseCurrentAP") != null) {
|
if (roundEffect.get("increaseCurrentAP") != null) {
|
||||||
this.round_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map) roundEffect.get("increaseCurrentAP")).get("max")));
|
this.round_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)roundEffect.get("increaseCurrentAP")).get("max")));
|
||||||
this.round_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map) roundEffect.get("increaseCurrentAP")).get("min")));
|
this.round_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)roundEffect.get("increaseCurrentAP")).get("min")));
|
||||||
}
|
}
|
||||||
String vfx = (String) roundEffect.get("visualEffectID");
|
String vfx = (String) roundEffect.get("visualEffectID");
|
||||||
this.round_effect.visual_effect = null;
|
this.round_effect.visual_effect = null;
|
||||||
if (vfx != null) {
|
if (vfx != null) {
|
||||||
try {
|
try {
|
||||||
this.round_effect.visual_effect = VisualEffectID.valueOf(vfx);
|
this.round_effect.visual_effect = VisualEffectID.valueOf(vfx);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch(IllegalArgumentException e) {}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Map fullRoundEffect = (Map) aCondJson.get("fullRoundEffect");
|
Map fullRoundEffect = (Map) aCondJson.get("fullRoundEffect");
|
||||||
if (fullRoundEffect != null) {
|
if (fullRoundEffect != null) {
|
||||||
this.full_round_effect = new RoundEffect();
|
this.full_round_effect = new RoundEffect();
|
||||||
if (fullRoundEffect.get("increaseCurrentHP") != null) {
|
if (fullRoundEffect.get("increaseCurrentHP") != null) {
|
||||||
this.full_round_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map) fullRoundEffect.get("increaseCurrentHP")).get("max")));
|
this.full_round_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)fullRoundEffect.get("increaseCurrentHP")).get("max")));
|
||||||
this.full_round_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map) fullRoundEffect.get("increaseCurrentHP")).get("min")));
|
this.full_round_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)fullRoundEffect.get("increaseCurrentHP")).get("min")));
|
||||||
}
|
}
|
||||||
if (fullRoundEffect.get("increaseCurrentAP") != null) {
|
if (fullRoundEffect.get("increaseCurrentAP") != null) {
|
||||||
this.full_round_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map) fullRoundEffect.get("increaseCurrentAP")).get("max")));
|
this.full_round_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)fullRoundEffect.get("increaseCurrentAP")).get("max")));
|
||||||
this.full_round_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map) fullRoundEffect.get("increaseCurrentAP")).get("min")));
|
this.full_round_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)fullRoundEffect.get("increaseCurrentAP")).get("min")));
|
||||||
}
|
}
|
||||||
String vfx = (String) fullRoundEffect.get("visualEffectID");
|
String vfx = (String) fullRoundEffect.get("visualEffectID");
|
||||||
this.full_round_effect.visual_effect = null;
|
this.full_round_effect.visual_effect = null;
|
||||||
if (vfx != null) {
|
if (vfx != null) {
|
||||||
try {
|
try {
|
||||||
this.full_round_effect.visual_effect = VisualEffectID.valueOf(vfx);
|
this.full_round_effect.visual_effect = VisualEffectID.valueOf(vfx);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch(IllegalArgumentException e) {}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.state = State.parsed;
|
this.state = State.parsed;
|
||||||
@@ -222,19 +222,21 @@ public class ActorCondition extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
if (this.icon_id != null) {
|
if (this.icon_id != null) {
|
||||||
String spritesheetId = this.icon_id.split(":")[0];
|
String spritesheetId = this.icon_id.split(":")[0];
|
||||||
if (getProject().getSpritesheet(spritesheetId) == null) {
|
if (getProject().getSpritesheet(spritesheetId) == null) {
|
||||||
System.out.println("Actor Condition");
|
|
||||||
System.out.println(this.id);
|
System.out.println(this.id);
|
||||||
System.out.println("failed to load spritesheet:");
|
|
||||||
System.out.println(spritesheetId);
|
|
||||||
System.out.println("while creating backlink for icon_id:");
|
|
||||||
System.out.println(this.icon_id);
|
|
||||||
}
|
}
|
||||||
getProject().getSpritesheet(spritesheetId).addBacklink(this);
|
getProject().getSpritesheet(spritesheetId).addBacklink(this);
|
||||||
}
|
}
|
||||||
@@ -264,7 +266,6 @@ public class ActorCondition extends JSONElement {
|
|||||||
clone.state = this.state;
|
clone.state = this.state;
|
||||||
clone.id = this.id;
|
clone.id = this.id;
|
||||||
clone.display_name = this.display_name;
|
clone.display_name = this.display_name;
|
||||||
clone.description = this.description;
|
|
||||||
clone.icon_id = this.icon_id;
|
clone.icon_id = this.icon_id;
|
||||||
clone.category = this.category;
|
clone.category = this.category;
|
||||||
clone.positive = this.positive;
|
clone.positive = this.positive;
|
||||||
@@ -286,21 +287,19 @@ public class ActorCondition extends JSONElement {
|
|||||||
//Nothing to link to.
|
//Nothing to link to.
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map jsonAC = new LinkedHashMap();
|
Map jsonAC = new LinkedHashMap();
|
||||||
jsonAC.put("id", this.id);
|
jsonAC.put("id", this.id);
|
||||||
if (this.icon_id != null) jsonAC.put("iconID", this.icon_id);
|
if (this.icon_id != null) jsonAC.put("iconID", this.icon_id);
|
||||||
if (this.display_name != null) jsonAC.put("name", this.display_name);
|
if (this.display_name != null) jsonAC.put("name", this.display_name);
|
||||||
if (this.description != null) jsonAC.put("description", this.description);
|
|
||||||
if (this.category != null) jsonAC.put("category", this.category.toString());
|
if (this.category != null) jsonAC.put("category", this.category.toString());
|
||||||
if (this.positive != null && this.positive == 1) jsonAC.put("isPositive", this.positive);
|
if (this.positive != null && this.positive == 1) jsonAC.put("isPositive", this.positive);
|
||||||
if (this.stacking != null && this.stacking == 1) jsonAC.put("isStacking", this.stacking);
|
if (this.stacking != null && this.stacking == 1) jsonAC.put("isStacking", this.stacking);
|
||||||
if (this.round_effect != null) {
|
if (this.round_effect != null) {
|
||||||
Map jsonRound = new LinkedHashMap();
|
Map jsonRound = new LinkedHashMap();
|
||||||
if (this.round_effect.visual_effect != null)
|
if (this.round_effect.visual_effect != null) jsonRound.put("visualEffectID", this.round_effect.visual_effect.toString());
|
||||||
jsonRound.put("visualEffectID", this.round_effect.visual_effect.toString());
|
|
||||||
if (this.round_effect.hp_boost_min != null || this.round_effect.hp_boost_max != null) {
|
if (this.round_effect.hp_boost_min != null || this.round_effect.hp_boost_max != null) {
|
||||||
Map jsonHP = new LinkedHashMap();
|
Map jsonHP = new LinkedHashMap();
|
||||||
if (this.round_effect.hp_boost_min != null) jsonHP.put("min", this.round_effect.hp_boost_min);
|
if (this.round_effect.hp_boost_min != null) jsonHP.put("min", this.round_effect.hp_boost_min);
|
||||||
@@ -321,8 +320,7 @@ public class ActorCondition extends JSONElement {
|
|||||||
}
|
}
|
||||||
if (this.full_round_effect != null) {
|
if (this.full_round_effect != null) {
|
||||||
Map jsonFullRound = new LinkedHashMap();
|
Map jsonFullRound = new LinkedHashMap();
|
||||||
if (this.full_round_effect.visual_effect != null)
|
if (this.full_round_effect.visual_effect != null) jsonFullRound.put("visualEffectID", this.full_round_effect.visual_effect.toString());
|
||||||
jsonFullRound.put("visualEffectID", this.full_round_effect.visual_effect.toString());
|
|
||||||
if (this.full_round_effect.hp_boost_min != null || this.full_round_effect.hp_boost_max != null) {
|
if (this.full_round_effect.hp_boost_min != null || this.full_round_effect.hp_boost_max != null) {
|
||||||
Map jsonHP = new LinkedHashMap();
|
Map jsonHP = new LinkedHashMap();
|
||||||
if (this.full_round_effect.hp_boost_min != null) jsonHP.put("min", this.full_round_effect.hp_boost_min);
|
if (this.full_round_effect.hp_boost_min != null) jsonHP.put("min", this.full_round_effect.hp_boost_min);
|
||||||
@@ -343,36 +341,24 @@ public class ActorCondition extends JSONElement {
|
|||||||
}
|
}
|
||||||
if (this.constant_ability_effect != null) {
|
if (this.constant_ability_effect != null) {
|
||||||
Map jsonAbility = new LinkedHashMap();
|
Map jsonAbility = new LinkedHashMap();
|
||||||
if (this.constant_ability_effect.increase_attack_chance != null)
|
if (this.constant_ability_effect.increase_attack_chance != null) jsonAbility.put("increaseAttackChance", this.constant_ability_effect.increase_attack_chance);
|
||||||
jsonAbility.put("increaseAttackChance", this.constant_ability_effect.increase_attack_chance);
|
|
||||||
if (this.constant_ability_effect.increase_damage_min != null || this.constant_ability_effect.increase_damage_max != null) {
|
if (this.constant_ability_effect.increase_damage_min != null || this.constant_ability_effect.increase_damage_max != null) {
|
||||||
Map jsonAD = new LinkedHashMap();
|
Map jsonAD = new LinkedHashMap();
|
||||||
if (this.constant_ability_effect.increase_damage_min != null)
|
if (this.constant_ability_effect.increase_damage_min != null) jsonAD.put("min", this.constant_ability_effect.increase_damage_min);
|
||||||
jsonAD.put("min", this.constant_ability_effect.increase_damage_min);
|
|
||||||
else jsonAD.put("min", 0);
|
else jsonAD.put("min", 0);
|
||||||
if (this.constant_ability_effect.increase_damage_max != null)
|
if (this.constant_ability_effect.increase_damage_max != null) jsonAD.put("max", this.constant_ability_effect.increase_damage_max);
|
||||||
jsonAD.put("max", this.constant_ability_effect.increase_damage_max);
|
|
||||||
else jsonAD.put("max", 0);
|
else jsonAD.put("max", 0);
|
||||||
jsonAbility.put("increaseAttackDamage", jsonAD);
|
jsonAbility.put("increaseAttackDamage", jsonAD);
|
||||||
}
|
}
|
||||||
if (this.constant_ability_effect.max_hp_boost != null)
|
if (this.constant_ability_effect.max_hp_boost != null) jsonAbility.put("increaseMaxHP", this.constant_ability_effect.max_hp_boost);
|
||||||
jsonAbility.put("increaseMaxHP", this.constant_ability_effect.max_hp_boost);
|
if (this.constant_ability_effect.max_ap_boost != null) jsonAbility.put("increaseMaxAP", this.constant_ability_effect.max_ap_boost);
|
||||||
if (this.constant_ability_effect.max_ap_boost != null)
|
if (this.constant_ability_effect.increase_move_cost != null) jsonAbility.put("increaseMoveCost", this.constant_ability_effect.increase_move_cost);
|
||||||
jsonAbility.put("increaseMaxAP", this.constant_ability_effect.max_ap_boost);
|
if (this.constant_ability_effect.increase_use_cost != null) jsonAbility.put("increaseUseItemCost", this.constant_ability_effect.increase_use_cost);
|
||||||
if (this.constant_ability_effect.increase_move_cost != null)
|
if (this.constant_ability_effect.increase_reequip_cost != null) jsonAbility.put("increaseReequipCost", this.constant_ability_effect.increase_reequip_cost);
|
||||||
jsonAbility.put("increaseMoveCost", this.constant_ability_effect.increase_move_cost);
|
if (this.constant_ability_effect.increase_attack_cost != null) jsonAbility.put("increaseAttackCost", this.constant_ability_effect.increase_attack_cost);
|
||||||
if (this.constant_ability_effect.increase_use_cost != null)
|
if (this.constant_ability_effect.increase_critical_skill != null) jsonAbility.put("increaseCriticalSkill", this.constant_ability_effect.increase_critical_skill);
|
||||||
jsonAbility.put("increaseUseItemCost", this.constant_ability_effect.increase_use_cost);
|
if (this.constant_ability_effect.increase_block_chance != null) jsonAbility.put("increaseBlockChance", this.constant_ability_effect.increase_block_chance);
|
||||||
if (this.constant_ability_effect.increase_reequip_cost != null)
|
if (this.constant_ability_effect.increase_damage_resistance != null) jsonAbility.put("increaseDamageResistance", this.constant_ability_effect.increase_damage_resistance);
|
||||||
jsonAbility.put("increaseReequipCost", this.constant_ability_effect.increase_reequip_cost);
|
|
||||||
if (this.constant_ability_effect.increase_attack_cost != null)
|
|
||||||
jsonAbility.put("increaseAttackCost", this.constant_ability_effect.increase_attack_cost);
|
|
||||||
if (this.constant_ability_effect.increase_critical_skill != null)
|
|
||||||
jsonAbility.put("increaseCriticalSkill", this.constant_ability_effect.increase_critical_skill);
|
|
||||||
if (this.constant_ability_effect.increase_block_chance != null)
|
|
||||||
jsonAbility.put("increaseBlockChance", this.constant_ability_effect.increase_block_chance);
|
|
||||||
if (this.constant_ability_effect.increase_damage_resistance != null)
|
|
||||||
jsonAbility.put("increaseDamageResistance", this.constant_ability_effect.increase_damage_resistance);
|
|
||||||
jsonAC.put("abilityEffect", jsonAbility);
|
jsonAC.put("abilityEffect", jsonAbility);
|
||||||
}
|
}
|
||||||
return jsonAC;
|
return jsonAC;
|
||||||
@@ -380,7 +366,7 @@ public class ActorCondition extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "actorconditions_" + getProject().name + ".json";
|
return "actorconditions_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,384 +0,0 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.LinkedHashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public final class Common {
|
|
||||||
|
|
||||||
public static <T extends ActorConditionEffect> void actorConditionElementChanged(List<T> list, GameDataElement oldOne, GameDataElement newOne, GameDataElement backlink) {
|
|
||||||
if (list != null) {
|
|
||||||
for (T c : list) {
|
|
||||||
if (c.condition == oldOne) {
|
|
||||||
oldOne.removeBacklink(backlink);
|
|
||||||
c.condition = (ActorCondition) newOne;
|
|
||||||
if (newOne != null) newOne.addBacklink(backlink);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//region link common stuff
|
|
||||||
public static void linkConditions(List<? extends ActorConditionEffect> conditions, Project proj, GameDataElement backlink) {
|
|
||||||
if (conditions != null) {
|
|
||||||
for (ActorConditionEffect ce : conditions) {
|
|
||||||
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
|
||||||
if (ce.condition != null) ce.condition.addBacklink(backlink);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void linkEffects(HitEffect effect, Project proj, GameDataElement backlink) {
|
|
||||||
linkEffects((DeathEffect) effect, proj, backlink);
|
|
||||||
if (effect != null) {
|
|
||||||
linkConditions(effect.conditions_target, proj, backlink);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void linkEffects(DeathEffect effect, Project proj, GameDataElement backlink) {
|
|
||||||
if (effect != null) {
|
|
||||||
linkConditions(effect.conditions_source, proj, backlink);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void linkIcon(Project proj, String iconId, GameDataElement backlink) {
|
|
||||||
if (iconId != null) {
|
|
||||||
String spritesheetId = iconId.split(":")[0];
|
|
||||||
if (proj.getSpritesheet(spritesheetId) == null) {
|
|
||||||
Notification.addError("Error Spritesheet " + spritesheetId + ". has no backlink. (" + iconId + ")");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
proj.getSpritesheet(spritesheetId).addBacklink(backlink);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//endregion
|
|
||||||
|
|
||||||
//region write common stuff
|
|
||||||
public static void writeMinMaxToMap(Map parent, Integer min, Integer max, int defaultValue) {
|
|
||||||
if (min != null || max != null) {
|
|
||||||
if (min != null)
|
|
||||||
parent.put("min", min);
|
|
||||||
else parent.put("min", defaultValue);
|
|
||||||
if (max != null)
|
|
||||||
parent.put("max", max);
|
|
||||||
else parent.put("max", defaultValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeMinMaxToMap(Map parent, String key, Integer min, Integer max, int defaultValue) {
|
|
||||||
if (min != null || max != null) {
|
|
||||||
Map minMaxMap = new LinkedHashMap();
|
|
||||||
parent.put(key, minMaxMap);
|
|
||||||
writeMinMaxToMap(minMaxMap, min, max, defaultValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeDescriptionToMap(Map parent, String description) {
|
|
||||||
if (description != null) parent.put("description", description);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeIconToMap(Map parent, String icon_id) {
|
|
||||||
if (icon_id != null) parent.put("iconID", icon_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeHitReceivedEffectToMap(Map parent, HitReceivedEffect effect) {
|
|
||||||
if (effect != null) {
|
|
||||||
writeHitEffectToMap(parent, effect);
|
|
||||||
writeBasicEffectObjectToMap(effect.target, parent, "increaseAttackerCurrentHP", "increaseAttackerCurrentAP");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeHitReceivedEffectToMap(Map parent, HitReceivedEffect effect, String key) {
|
|
||||||
if (effect != null) {
|
|
||||||
Map effectJson = new LinkedHashMap();
|
|
||||||
parent.put(key, effectJson);
|
|
||||||
writeHitReceivedEffectToMap(effectJson, effect);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeHitEffectToMap(Map parent, HitEffect effect) {
|
|
||||||
if (effect != null) {
|
|
||||||
writeDeathEffectToMap(parent, effect);
|
|
||||||
writeTimedActorConditionEffectObjectToMap(effect.conditions_target, parent, "conditionsTarget");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeHitEffectToMap(Map parent, HitEffect effect, String key) {
|
|
||||||
if (effect != null) {
|
|
||||||
Map effectJson = new LinkedHashMap();
|
|
||||||
parent.put(key, effectJson);
|
|
||||||
writeHitEffectToMap(effectJson, effect);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeDeathEffectToMap(Map parent, DeathEffect effect) {
|
|
||||||
writeBasicEffectObjectToMap(effect, parent, "increaseCurrentHP", "increaseCurrentAP");
|
|
||||||
writeTimedActorConditionEffectObjectToMap(effect.conditions_source, parent, "conditionsSource");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeDeathEffectToMap(Map parent, DeathEffect effect, String key) {
|
|
||||||
if (effect != null) {
|
|
||||||
Map effectJson = new LinkedHashMap();
|
|
||||||
parent.put(key, effectJson);
|
|
||||||
writeDeathEffectToMap(effectJson, effect);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeBasicEffectObjectToMap(BasicEffect effect, Map parent, String keyHP, String keyAP) {
|
|
||||||
writeMinMaxToMap(parent, keyHP, effect.hp_boost_min, effect.hp_boost_max, 0);
|
|
||||||
|
|
||||||
writeMinMaxToMap(parent, keyAP, effect.ap_boost_min, effect.ap_boost_max, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeTimedActorConditionEffectObjectToMap(List<TimedActorConditionEffect> list, Map parent, String key) {
|
|
||||||
if (list != null) {
|
|
||||||
List conditionsSourceJson = new ArrayList();
|
|
||||||
parent.put(key, conditionsSourceJson);
|
|
||||||
for (TimedActorConditionEffect condition : list) {
|
|
||||||
Map conditionJson = new LinkedHashMap();
|
|
||||||
conditionsSourceJson.add(conditionJson);
|
|
||||||
writeTimedConditionEffectToMap(condition, conditionJson);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeConditionEffectToMap(ActorConditionEffect condition, Map parent) {
|
|
||||||
if (condition.condition != null) {
|
|
||||||
parent.put("condition", condition.condition.id);
|
|
||||||
} else if (condition.condition_id != null) {
|
|
||||||
parent.put("condition", condition.condition_id);
|
|
||||||
}
|
|
||||||
if (condition.magnitude != null) {
|
|
||||||
parent.put("magnitude", condition.magnitude);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeTimedConditionEffectToMap(TimedActorConditionEffect condition, Map parent) {
|
|
||||||
writeConditionEffectToMap(condition, parent);
|
|
||||||
if (condition.duration != null) {
|
|
||||||
parent.put("duration", condition.duration);
|
|
||||||
}
|
|
||||||
if (condition.chance != null) {
|
|
||||||
parent.put("chance", JSONElement.printJsonChance(condition.chance));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//endregion
|
|
||||||
public static class TimedActorConditionEffect extends ActorConditionEffect {
|
|
||||||
//Available from parsed state
|
|
||||||
public Integer duration = null;
|
|
||||||
public Double chance = null;
|
|
||||||
|
|
||||||
public TimedActorConditionEffect createClone() {
|
|
||||||
TimedActorConditionEffect cclone = new TimedActorConditionEffect();
|
|
||||||
cclone.magnitude = this.magnitude;
|
|
||||||
cclone.condition_id = this.condition_id;
|
|
||||||
cclone.condition = this.condition;
|
|
||||||
cclone.chance = this.chance;
|
|
||||||
cclone.duration = this.duration;
|
|
||||||
return cclone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isInfinite() {
|
|
||||||
return duration != null && duration.equals(ActorCondition.DURATION_FOREVER);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isImmunity() {
|
|
||||||
return (super.isClear()) && (duration != null && duration > ActorCondition.DURATION_NONE);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isClear() {
|
|
||||||
return (super.isClear()) && (duration == null || duration.equals(ActorCondition.DURATION_NONE));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ActorConditionEffect {
|
|
||||||
//Available from parsed state
|
|
||||||
public Integer magnitude = null;
|
|
||||||
public String condition_id = null;
|
|
||||||
|
|
||||||
//Available from linked state
|
|
||||||
public ActorCondition condition = null;
|
|
||||||
|
|
||||||
public boolean isClear() {
|
|
||||||
return magnitude == null || magnitude.equals(ActorCondition.MAGNITUDE_CLEAR);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public static ArrayList<TimedActorConditionEffect> parseTimedConditionEffects(List conditionsSourceJson) {
|
|
||||||
ArrayList<TimedActorConditionEffect> conditions_source;
|
|
||||||
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
|
||||||
conditions_source = new ArrayList<>();
|
|
||||||
for (Object conditionJsonObj : conditionsSourceJson) {
|
|
||||||
Map conditionJson = (Map) conditionJsonObj;
|
|
||||||
TimedActorConditionEffect condition = new TimedActorConditionEffect();
|
|
||||||
readConditionEffect(condition, conditionJson);
|
|
||||||
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
|
||||||
if (conditionJson.get("chance") != null)
|
|
||||||
condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
|
||||||
conditions_source.add(condition);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
conditions_source = null;
|
|
||||||
}
|
|
||||||
return conditions_source;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
private static void readConditionEffect(ActorConditionEffect condition, Map conditionJson) {
|
|
||||||
condition.condition_id = (String) conditionJson.get("condition");
|
|
||||||
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public static Common.DeathEffect parseDeathEffect(Map killEffect) {
|
|
||||||
Common.DeathEffect kill_effect = new Common.DeathEffect();
|
|
||||||
readDeathEffect(killEffect, kill_effect);
|
|
||||||
return kill_effect;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public static HitEffect parseHitEffect(Map hitEffect) {
|
|
||||||
Common.HitEffect hit_effect = new Common.HitEffect();
|
|
||||||
readHitEffect(hitEffect, hit_effect);
|
|
||||||
return hit_effect;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public static HitReceivedEffect parseHitReceivedEffect(Map hitReceivedEffect) {
|
|
||||||
HitReceivedEffect hit_received_effect = new Common.HitReceivedEffect();
|
|
||||||
readHitEffect(hitReceivedEffect, hit_received_effect);
|
|
||||||
if (hitReceivedEffect.get("increaseAttackerCurrentHP") != null) {
|
|
||||||
hit_received_effect.target.hp_boost_max = JSONElement.getInteger((Number) (((Map) hitReceivedEffect.get("increaseAttackerCurrentHP")).get("max")));
|
|
||||||
hit_received_effect.target.hp_boost_min = JSONElement.getInteger((Number) (((Map) hitReceivedEffect.get("increaseAttackerCurrentHP")).get("min")));
|
|
||||||
}
|
|
||||||
if (hitReceivedEffect.get("increaseAttackerCurrentAP") != null) {
|
|
||||||
hit_received_effect.target.ap_boost_max = JSONElement.getInteger((Number) (((Map) hitReceivedEffect.get("increaseAttackerCurrentAP")).get("max")));
|
|
||||||
hit_received_effect.target.ap_boost_min = JSONElement.getInteger((Number) (((Map) hitReceivedEffect.get("increaseAttackerCurrentAP")).get("min")));
|
|
||||||
}
|
|
||||||
return hit_received_effect;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
private static void readDeathEffect(Map killEffect, DeathEffect kill_effect) {
|
|
||||||
if (killEffect.get("increaseCurrentHP") != null) {
|
|
||||||
kill_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map) killEffect.get("increaseCurrentHP")).get("min")));
|
|
||||||
kill_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map) killEffect.get("increaseCurrentHP")).get("max")));
|
|
||||||
}
|
|
||||||
if (killEffect.get("increaseCurrentAP") != null) {
|
|
||||||
kill_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map) killEffect.get("increaseCurrentAP")).get("min")));
|
|
||||||
kill_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map) killEffect.get("increaseCurrentAP")).get("max")));
|
|
||||||
}
|
|
||||||
List conditionsSourceJson = (List) killEffect.get("conditionsSource");
|
|
||||||
kill_effect.conditions_source = parseTimedConditionEffects(conditionsSourceJson);
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
private static void readHitEffect(Map hitEffect, HitEffect hit_effect) {
|
|
||||||
readDeathEffect(hitEffect, hit_effect);
|
|
||||||
List conditionsTargetJson = (List) hitEffect.get("conditionsTarget");
|
|
||||||
hit_effect.conditions_target = parseTimedConditionEffects(conditionsTargetJson);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class BasicEffect {
|
|
||||||
public Integer hp_boost_min = null;
|
|
||||||
public Integer hp_boost_max = null;
|
|
||||||
public Integer ap_boost_min = null;
|
|
||||||
public Integer ap_boost_max = null;
|
|
||||||
|
|
||||||
public boolean isNull() {
|
|
||||||
if (ap_boost_min != null) return false;
|
|
||||||
if (ap_boost_max != null) return false;
|
|
||||||
if (hp_boost_min != null) return false;
|
|
||||||
if (hp_boost_max != null) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class DeathEffect extends BasicEffect {
|
|
||||||
//Available from parsed state
|
|
||||||
public List<TimedActorConditionEffect> conditions_source = null;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isNull() {
|
|
||||||
if (!super.isNull()) return false;
|
|
||||||
if (conditions_source != null) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class HitEffect extends DeathEffect {
|
|
||||||
//Available from parsed state
|
|
||||||
public List<TimedActorConditionEffect> conditions_target = null;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isNull() {
|
|
||||||
if (!super.isNull()) return false;
|
|
||||||
if (conditions_target != null) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class HitReceivedEffect extends Common.HitEffect {
|
|
||||||
//Available from parsed state
|
|
||||||
public BasicEffect target = new BasicEffect();
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isNull() {
|
|
||||||
if (!super.isNull()) return false;
|
|
||||||
if (!target.isNull()) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static void copyDeathEffectValues(Common.DeathEffect target, Common.DeathEffect source, GameDataElement backlink) {
|
|
||||||
copyEffectValues(target, source);
|
|
||||||
if (source.conditions_source != null) {
|
|
||||||
target.conditions_source = new ArrayList<>();
|
|
||||||
for (TimedActorConditionEffect c : source.conditions_source) {
|
|
||||||
TimedActorConditionEffect cclone = c.createClone();
|
|
||||||
if (cclone.condition != null) {
|
|
||||||
cclone.condition.addBacklink(backlink);
|
|
||||||
}
|
|
||||||
target.conditions_source.add(cclone);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void copyEffectValues(BasicEffect target, BasicEffect source) {
|
|
||||||
target.ap_boost_max = source.ap_boost_max;
|
|
||||||
target.ap_boost_min = source.ap_boost_min;
|
|
||||||
target.hp_boost_max = source.hp_boost_max;
|
|
||||||
target.hp_boost_min = source.hp_boost_min;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void copyHitEffectValues(Common.HitEffect target, Common.HitEffect source, GameDataElement backlink) {
|
|
||||||
copyDeathEffectValues(target, source, backlink);
|
|
||||||
if (source.conditions_target != null) {
|
|
||||||
target.conditions_target = new ArrayList<>();
|
|
||||||
for (TimedActorConditionEffect c : source.conditions_target) {
|
|
||||||
TimedActorConditionEffect cclone = c.createClone();
|
|
||||||
if (cclone.condition != null) {
|
|
||||||
cclone.condition.addBacklink(backlink);
|
|
||||||
}
|
|
||||||
target.conditions_target.add(cclone);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void copyHitReceivedEffectValues(Common.HitReceivedEffect target, Common.HitReceivedEffect source, GameDataElement backlink) {
|
|
||||||
copyHitEffectValues(target, source, backlink);
|
|
||||||
copyEffectValues(target.target, source.target);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,19 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileReader;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
@@ -7,16 +21,6 @@ import com.gpl.rpg.atcontentstudio.model.Project;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Requirement.RequirementType;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Requirement.RequirementType;
|
||||||
import com.gpl.rpg.atcontentstudio.model.maps.TMXMap;
|
import com.gpl.rpg.atcontentstudio.model.maps.TMXMap;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.FileReader;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
|
|
||||||
public class Dialogue extends JSONElement {
|
public class Dialogue extends JSONElement {
|
||||||
@@ -64,8 +68,7 @@ public class Dialogue extends JSONElement {
|
|||||||
deactivateSpawnArea,
|
deactivateSpawnArea,
|
||||||
activateMapObjectGroup,
|
activateMapObjectGroup,
|
||||||
deactivateMapObjectGroup,
|
deactivateMapObjectGroup,
|
||||||
changeMapFilter,
|
changeMapFilter
|
||||||
mapchange
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -91,7 +94,7 @@ public class Dialogue extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + id;
|
return (needsSaving() ? "*" : "")+id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getStaticDesc() {
|
public static String getStaticDesc() {
|
||||||
@@ -106,7 +109,7 @@ public class Dialogue extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List dialogues = (List) parser.parse(reader);
|
List dialogues = (List) parser.parse(reader);
|
||||||
for (Object obj : dialogues) {
|
for (Object obj : dialogues) {
|
||||||
Map dialogueJson = (Map) obj;
|
Map dialogueJson = (Map)obj;
|
||||||
Dialogue dialogue = fromJson(dialogueJson);
|
Dialogue dialogue = fromJson(dialogueJson);
|
||||||
dialogue.jsonFile = jsonFile;
|
dialogue.jsonFile = jsonFile;
|
||||||
dialogue.parent = category;
|
dialogue.parent = category;
|
||||||
@@ -116,13 +119,13 @@ public class Dialogue extends JSONElement {
|
|||||||
category.add(dialogue);
|
category.add(dialogue);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -158,7 +161,7 @@ public class Dialogue extends JSONElement {
|
|||||||
if (repliesJson != null && !repliesJson.isEmpty()) {
|
if (repliesJson != null && !repliesJson.isEmpty()) {
|
||||||
this.replies = new ArrayList<Dialogue.Reply>();
|
this.replies = new ArrayList<Dialogue.Reply>();
|
||||||
for (Object replyJsonObj : repliesJson) {
|
for (Object replyJsonObj : repliesJson) {
|
||||||
Map replyJson = (Map) replyJsonObj;
|
Map replyJson = (Map)replyJsonObj;
|
||||||
Reply reply = new Reply();
|
Reply reply = new Reply();
|
||||||
reply.text = (String) replyJson.get("text");
|
reply.text = (String) replyJson.get("text");
|
||||||
reply.next_phrase_id = (String) replyJson.get("nextPhraseID");
|
reply.next_phrase_id = (String) replyJson.get("nextPhraseID");
|
||||||
@@ -170,13 +173,10 @@ public class Dialogue extends JSONElement {
|
|||||||
Requirement requirement = new Requirement();
|
Requirement requirement = new Requirement();
|
||||||
requirement.jsonFile = this.jsonFile;
|
requirement.jsonFile = this.jsonFile;
|
||||||
requirement.parent = this;
|
requirement.parent = this;
|
||||||
if (requirementJson.get("requireType") != null)
|
if (requirementJson.get("requireType") != null) requirement.type = RequirementType.valueOf((String) requirementJson.get("requireType"));
|
||||||
requirement.type = RequirementType.valueOf((String) requirementJson.get("requireType"));
|
|
||||||
requirement.required_obj_id = (String) requirementJson.get("requireID");
|
requirement.required_obj_id = (String) requirementJson.get("requireID");
|
||||||
if (requirementJson.get("value") != null)
|
if (requirementJson.get("value") != null) requirement.required_value = JSONElement.getInteger(Integer.parseInt(requirementJson.get("value").toString()));
|
||||||
requirement.required_value = JSONElement.getInteger(Integer.parseInt(requirementJson.get("value").toString()));
|
if (requirementJson.get("negate") != null) requirement.negated = (Boolean) requirementJson.get("negate");
|
||||||
if (requirementJson.get("negate") != null)
|
|
||||||
requirement.negated = (Boolean) requirementJson.get("negate");
|
|
||||||
requirement.state = State.parsed;
|
requirement.state = State.parsed;
|
||||||
reply.requirements.add(requirement);
|
reply.requirements.add(requirement);
|
||||||
}
|
}
|
||||||
@@ -188,13 +188,11 @@ public class Dialogue extends JSONElement {
|
|||||||
if (rewardsJson != null && !rewardsJson.isEmpty()) {
|
if (rewardsJson != null && !rewardsJson.isEmpty()) {
|
||||||
this.rewards = new ArrayList<Dialogue.Reward>();
|
this.rewards = new ArrayList<Dialogue.Reward>();
|
||||||
for (Object rewardJsonObj : rewardsJson) {
|
for (Object rewardJsonObj : rewardsJson) {
|
||||||
Map rewardJson = (Map) rewardJsonObj;
|
Map rewardJson = (Map)rewardJsonObj;
|
||||||
Reward reward = new Reward();
|
Reward reward = new Reward();
|
||||||
if (rewardJson.get("rewardType") != null)
|
if (rewardJson.get("rewardType") != null) reward.type = Reward.RewardType.valueOf((String) rewardJson.get("rewardType"));
|
||||||
reward.type = Reward.RewardType.valueOf((String) rewardJson.get("rewardType"));
|
|
||||||
if (rewardJson.get("rewardID") != null) reward.reward_obj_id = (String) rewardJson.get("rewardID");
|
if (rewardJson.get("rewardID") != null) reward.reward_obj_id = (String) rewardJson.get("rewardID");
|
||||||
if (rewardJson.get("value") != null)
|
if (rewardJson.get("value") != null) reward.reward_value = JSONElement.getInteger((Number) rewardJson.get("value"));
|
||||||
reward.reward_value = JSONElement.getInteger((Number) rewardJson.get("value"));
|
|
||||||
if (rewardJson.get("mapName") != null) reward.map_name = (String) rewardJson.get("mapName");
|
if (rewardJson.get("mapName") != null) reward.map_name = (String) rewardJson.get("mapName");
|
||||||
this.rewards.add(reward);
|
this.rewards.add(reward);
|
||||||
}
|
}
|
||||||
@@ -203,15 +201,24 @@ public class Dialogue extends JSONElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
Project proj = getProject();
|
Project proj = getProject();
|
||||||
if (proj == null) {
|
if (proj == null) {
|
||||||
Notification.addError("Error linking dialogue " + id + ". No parent project found.");
|
Notification.addError("Error linking dialogue "+id+". No parent project found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this.switch_to_npc_id != null) this.switch_to_npc = proj.getNPC(this.switch_to_npc_id);
|
if (this.switch_to_npc_id != null) this.switch_to_npc = proj.getNPC(this.switch_to_npc_id);
|
||||||
@@ -242,7 +249,6 @@ public class Dialogue extends JSONElement {
|
|||||||
case removeSpawnArea:
|
case removeSpawnArea:
|
||||||
case deactivateSpawnArea:
|
case deactivateSpawnArea:
|
||||||
case changeMapFilter:
|
case changeMapFilter:
|
||||||
case mapchange:
|
|
||||||
reward.map = reward.map_name != null ? proj.getMap(reward.map_name) : null;
|
reward.map = reward.map_name != null ? proj.getMap(reward.map_name) : null;
|
||||||
break;
|
break;
|
||||||
case actorCondition:
|
case actorCondition:
|
||||||
@@ -266,7 +272,7 @@ public class Dialogue extends JSONElement {
|
|||||||
case removeQuestProgress:
|
case removeQuestProgress:
|
||||||
reward.reward_obj = proj.getQuest(reward.reward_obj_id);
|
reward.reward_obj = proj.getQuest(reward.reward_obj_id);
|
||||||
if (reward.reward_obj != null && reward.reward_value != null) {
|
if (reward.reward_obj != null && reward.reward_value != null) {
|
||||||
QuestStage stage = ((Quest) reward.reward_obj).getStage(reward.reward_value);
|
QuestStage stage = ((Quest)reward.reward_obj).getStage(reward.reward_value);
|
||||||
if (stage != null) {
|
if (stage != null) {
|
||||||
stage.addBacklink(this);
|
stage.addBacklink(this);
|
||||||
}
|
}
|
||||||
@@ -286,6 +292,7 @@ public class Dialogue extends JSONElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return DefaultIcons.getDialogueIcon();
|
return DefaultIcons.getDialogueIcon();
|
||||||
@@ -389,7 +396,7 @@ public class Dialogue extends JSONElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map dialogueJson = new LinkedHashMap();
|
Map dialogueJson = new LinkedHashMap();
|
||||||
@@ -403,7 +410,7 @@ public class Dialogue extends JSONElement {
|
|||||||
if (this.replies != null) {
|
if (this.replies != null) {
|
||||||
List repliesJson = new ArrayList();
|
List repliesJson = new ArrayList();
|
||||||
dialogueJson.put("replies", repliesJson);
|
dialogueJson.put("replies", repliesJson);
|
||||||
for (Reply reply : this.replies) {
|
for (Reply reply : this.replies){
|
||||||
Map replyJson = new LinkedHashMap();
|
Map replyJson = new LinkedHashMap();
|
||||||
repliesJson.add(replyJson);
|
repliesJson.add(replyJson);
|
||||||
if (reply.text != null) replyJson.put("text", reply.text);
|
if (reply.text != null) replyJson.put("text", reply.text);
|
||||||
@@ -455,7 +462,7 @@ public class Dialogue extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "conversationlist_" + getProject().name + ".json";
|
return "conversationlist_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.FileReader;
|
import java.io.FileReader;
|
||||||
@@ -18,6 +10,15 @@ import java.util.LinkedHashMap;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
|
|
||||||
public class Droplist extends JSONElement {
|
public class Droplist extends JSONElement {
|
||||||
|
|
||||||
@@ -35,7 +36,7 @@ public class Droplist extends JSONElement {
|
|||||||
public static class DroppedItem {
|
public static class DroppedItem {
|
||||||
//Available from parsed state;
|
//Available from parsed state;
|
||||||
public String item_id = null;
|
public String item_id = null;
|
||||||
public String chance = null;
|
public Double chance = null;
|
||||||
public Integer quantity_min = null;
|
public Integer quantity_min = null;
|
||||||
public Integer quantity_max = null;
|
public Integer quantity_max = null;
|
||||||
|
|
||||||
@@ -45,7 +46,7 @@ public class Droplist extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + id;
|
return (needsSaving() ? "*" : "")+id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getStaticDesc() {
|
public static String getStaticDesc() {
|
||||||
@@ -60,7 +61,7 @@ public class Droplist extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List droplists = (List) parser.parse(reader);
|
List droplists = (List) parser.parse(reader);
|
||||||
for (Object obj : droplists) {
|
for (Object obj : droplists) {
|
||||||
Map droplistJson = (Map) obj;
|
Map droplistJson = (Map)obj;
|
||||||
Droplist droplist = fromJson(droplistJson);
|
Droplist droplist = fromJson(droplistJson);
|
||||||
droplist.jsonFile = jsonFile;
|
droplist.jsonFile = jsonFile;
|
||||||
droplist.parent = category;
|
droplist.parent = category;
|
||||||
@@ -70,13 +71,13 @@ public class Droplist extends JSONElement {
|
|||||||
category.add(droplist);
|
category.add(droplist);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -110,11 +111,10 @@ public class Droplist extends JSONElement {
|
|||||||
if (droppedItemsJson != null && !droppedItemsJson.isEmpty()) {
|
if (droppedItemsJson != null && !droppedItemsJson.isEmpty()) {
|
||||||
this.dropped_items = new ArrayList<DroppedItem>();
|
this.dropped_items = new ArrayList<DroppedItem>();
|
||||||
for (Object droppedItemJsonObj : droppedItemsJson) {
|
for (Object droppedItemJsonObj : droppedItemsJson) {
|
||||||
Map droppedItemJson = (Map) droppedItemJsonObj;
|
Map droppedItemJson = (Map)droppedItemJsonObj;
|
||||||
DroppedItem droppedItem = new DroppedItem();
|
DroppedItem droppedItem = new DroppedItem();
|
||||||
droppedItem.item_id = (String) droppedItemJson.get("itemID");
|
droppedItem.item_id = (String) droppedItemJson.get("itemID");
|
||||||
//if (droppedItemJson.get("chance") != null) droppedItem.chance = JSONElement.parseChance(droppedItemJson.get("chance").toString());
|
if (droppedItemJson.get("chance") != null) droppedItem.chance = JSONElement.parseChance(droppedItemJson.get("chance").toString());
|
||||||
droppedItem.chance = (String) droppedItemJson.get("chance");
|
|
||||||
Map droppedItemQtyJson = (Map) droppedItemJson.get("quantity");
|
Map droppedItemQtyJson = (Map) droppedItemJson.get("quantity");
|
||||||
if (droppedItemQtyJson != null) {
|
if (droppedItemQtyJson != null) {
|
||||||
droppedItem.quantity_min = JSONElement.getInteger((Number) droppedItemQtyJson.get("min"));
|
droppedItem.quantity_min = JSONElement.getInteger((Number) droppedItemQtyJson.get("min"));
|
||||||
@@ -128,13 +128,20 @@ public class Droplist extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
Project proj = getProject();
|
Project proj = getProject();
|
||||||
if (proj == null) {
|
if (proj == null) {
|
||||||
Notification.addError("Error linking droplist " + id + ". No parent project found.");
|
Notification.addError("Error linking droplist "+id+". No parent project found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (dropped_items != null) {
|
if (dropped_items != null) {
|
||||||
@@ -147,6 +154,7 @@ public class Droplist extends JSONElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public static Image getImage() {
|
public static Image getImage() {
|
||||||
return DefaultIcons.getDroplistImage();
|
return DefaultIcons.getDroplistImage();
|
||||||
}
|
}
|
||||||
@@ -193,7 +201,7 @@ public class Droplist extends JSONElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map droplistJson = new LinkedHashMap();
|
Map droplistJson = new LinkedHashMap();
|
||||||
@@ -209,8 +217,7 @@ public class Droplist extends JSONElement {
|
|||||||
} else if (droppedItem.item_id != null) {
|
} else if (droppedItem.item_id != null) {
|
||||||
droppedItemJson.put("itemID", droppedItem.item_id);
|
droppedItemJson.put("itemID", droppedItem.item_id);
|
||||||
}
|
}
|
||||||
//if (droppedItem.chance != null) droppedItemJson.put("chance", JSONElement.printJsonChance(droppedItem.chance));
|
if (droppedItem.chance != null) droppedItemJson.put("chance", JSONElement.printJsonChance(droppedItem.chance));
|
||||||
if (droppedItem.chance != null) droppedItemJson.put("chance", droppedItem.chance);
|
|
||||||
if (droppedItem.quantity_min != null || droppedItem.quantity_max != null) {
|
if (droppedItem.quantity_min != null || droppedItem.quantity_max != null) {
|
||||||
Map quantityJson = new LinkedHashMap();
|
Map quantityJson = new LinkedHashMap();
|
||||||
droppedItemJson.put("quantity", quantityJson);
|
droppedItemJson.put("quantity", quantityJson);
|
||||||
@@ -227,7 +234,7 @@ public class Droplist extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "droplists_" + getProject().name + ".json";
|
return "droplists_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,115 +1,45 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.model.*;
|
import java.io.File;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import java.io.FileWriter;
|
||||||
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
import java.io.IOException;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
import javax.swing.tree.TreeNode;
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode {
|
import org.json.simple.JSONArray;
|
||||||
//region Data
|
|
||||||
private final ArrayList<String> keyList = new ArrayList<>();
|
|
||||||
private final HashMap<String, E> dataMap = new HashMap<>();
|
|
||||||
|
|
||||||
//endregion
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.io.JsonPrettyWriter;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
|
public class GameDataCategory<E extends JSONElement> extends ArrayList<E> implements ProjectTreeNode, Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 5486008219704443733L;
|
||||||
|
|
||||||
public GameDataSet parent;
|
public GameDataSet parent;
|
||||||
public String name;
|
public String name;
|
||||||
|
|
||||||
public GameDataCategory(GameDataSet parent, String name) {
|
public GameDataCategory(GameDataSet parent, String name) {
|
||||||
|
super();
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
//region Helpers
|
|
||||||
public E get(String key) {
|
|
||||||
return dataMap.get(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public E get(int index) {
|
|
||||||
String key = keyList.get(index);
|
|
||||||
return dataMap.get(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public E getIgnoreCase(String key) {
|
|
||||||
for (String k : keyList) {
|
|
||||||
if (k.equalsIgnoreCase(key)) {
|
|
||||||
return dataMap.get(k);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public E put(String key, E element) {
|
|
||||||
if (!dataMap.containsKey(key)) {
|
|
||||||
keyList.add(key);
|
|
||||||
}
|
|
||||||
return dataMap.put(key, element);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void add(E quest) {
|
|
||||||
String key = quest.id;
|
|
||||||
put(key, quest);
|
|
||||||
}
|
|
||||||
|
|
||||||
public E remove(String key) {
|
|
||||||
if (dataMap.containsKey(key)) {
|
|
||||||
keyList.remove(key);
|
|
||||||
}
|
|
||||||
return dataMap.remove(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public E remove(int index) {
|
|
||||||
String key = keyList.get(index);
|
|
||||||
keyList.remove(index);
|
|
||||||
return dataMap.remove(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean removeGeneric(JSONElement element){
|
|
||||||
return remove((E) element);
|
|
||||||
}
|
|
||||||
public boolean remove(E element) {
|
|
||||||
String key = element.id;
|
|
||||||
int index = getProject().getNodeIndex(element);
|
|
||||||
boolean result = false;
|
|
||||||
if (dataMap.containsKey(key)) {
|
|
||||||
keyList.remove(key);
|
|
||||||
dataMap.remove(key);
|
|
||||||
result = true;
|
|
||||||
}
|
|
||||||
getProject().fireElementRemoved(element, index);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int size() {
|
|
||||||
return dataMap.size();
|
|
||||||
}
|
|
||||||
public int indexOf(String key) {
|
|
||||||
return keyList.indexOf(key);
|
|
||||||
}
|
|
||||||
public int indexOf(E element) {
|
|
||||||
String key = element.id;
|
|
||||||
return keyList.indexOf(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ArrayList<E> toList() {
|
|
||||||
ArrayList<E> list = new ArrayList<>();
|
|
||||||
for (String key : keyList) {
|
|
||||||
list.add(dataMap.get(key));
|
|
||||||
}
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
|
|
||||||
//endregion
|
|
||||||
|
|
||||||
//region copied implementation of ProjectTreeNode
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int childIndex) {
|
public TreeNode getChildAt(int childIndex) {
|
||||||
return get(childIndex);
|
return get(childIndex);
|
||||||
@@ -127,7 +57,7 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode node) {
|
public int getIndex(TreeNode node) {
|
||||||
return indexOf((E) node);
|
return indexOf(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -142,21 +72,18 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Enumeration<E> children() {
|
public Enumeration<E> children() {
|
||||||
return Collections.enumeration(toList());
|
return Collections.enumeration(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
if (path.size() == 1 && this.getChildCount() == 1) {
|
if (path.size() == 1 && this.getChildCount() == 1) {
|
||||||
@@ -166,18 +93,16 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
for (E node : toList()) {
|
for (E node : this) {
|
||||||
node.notifyCreated();
|
node.notifyCreated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + this.name;
|
return (needsSaving() ? "*" : "")+this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -194,17 +119,14 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
return DefaultIcons.getJsonClosedIcon();
|
return DefaultIcons.getJsonClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getJsonClosedIcon();
|
return DefaultIcons.getJsonClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
return DefaultIcons.getJsonOpenIcon();
|
return DefaultIcons.getJsonOpenIcon();
|
||||||
@@ -216,43 +138,51 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GameSource.Type getDataType() {
|
public Type getDataType() {
|
||||||
return parent.getDataType();
|
return parent.getDataType();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isEmpty() {
|
|
||||||
return dataMap.isEmpty();
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
public void save(File jsonFile) {
|
public void save(File jsonFile) {
|
||||||
if (getDataType() != GameSource.Type.created && getDataType() != GameSource.Type.altered) {
|
if (getDataType() != GameSource.Type.created && getDataType() != GameSource.Type.altered) {
|
||||||
Notification.addError("Error while trying to write json file " + jsonFile.getAbsolutePath() + " : Game Source type " + getDataType().toString() + " should not be saved.");
|
Notification.addError("Error while trying to write json file "+jsonFile.getAbsolutePath()+" : Game Source type "+getDataType().toString()+" should not be saved.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
List<Map> dataToSave = new ArrayList<Map>();
|
List<Map> dataToSave = new ArrayList<Map>();
|
||||||
for (E element : toList()) {
|
for (E element : this) {
|
||||||
if (element.jsonFile.equals(jsonFile)) {
|
if (element.jsonFile.equals(jsonFile)) {
|
||||||
dataToSave.add(element.toJson());
|
dataToSave.add(element.toJson());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (dataToSave.isEmpty() && jsonFile.exists()) {
|
if (dataToSave.isEmpty() && jsonFile.exists()) {
|
||||||
if (jsonFile.delete()) {
|
if (jsonFile.delete()) {
|
||||||
Notification.addSuccess("File " + jsonFile.getAbsolutePath() + " deleted.");
|
Notification.addSuccess("File "+jsonFile.getAbsolutePath()+" deleted.");
|
||||||
} else {
|
} else {
|
||||||
Notification.addError("Error deleting file " + jsonFile.getAbsolutePath());
|
Notification.addError("Error deleting file "+jsonFile.getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
StringWriter writer = new JsonPrettyWriter();
|
||||||
String toWrite = FileUtils.toJsonString(dataToSave);
|
try {
|
||||||
if(FileUtils.writeStringToFile(toWrite, jsonFile, "JSON file '"+jsonFile.getAbsolutePath()+"'")){
|
JSONArray.writeJSONString(dataToSave, writer);
|
||||||
for (E element : dataMap.values()) {
|
} catch (IOException e) {
|
||||||
|
//Impossible with a StringWriter
|
||||||
|
}
|
||||||
|
String toWrite = writer.toString();
|
||||||
|
try {
|
||||||
|
FileWriter w = new FileWriter(jsonFile);
|
||||||
|
w.write(toWrite);
|
||||||
|
w.close();
|
||||||
|
for (E element : this) {
|
||||||
element.state = GameDataElement.State.saved;
|
element.state = GameDataElement.State.saved;
|
||||||
}
|
}
|
||||||
|
Notification.addSuccess("Json file "+jsonFile.getAbsolutePath()+" saved.");
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addError("Error while writing json file "+jsonFile.getAbsolutePath()+" : "+e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -261,8 +191,7 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
GameDataCategory<? extends JSONElement> impactedCategory = null;
|
GameDataCategory<? extends JSONElement> impactedCategory = null;
|
||||||
String impactedFileName = fileName;
|
String impactedFileName = fileName;
|
||||||
Map<String, Integer> containedIds = new LinkedHashMap<String, Integer>();
|
Map<String, Integer> containedIds = new LinkedHashMap<String, Integer>();
|
||||||
ArrayList<E> list = toList();
|
for (JSONElement node : this) {
|
||||||
for (JSONElement node : list) {
|
|
||||||
if (node.getDataType() == GameSource.Type.created && getProject().baseContent.gameData.getGameDataElement(node.getClass(), node.id) != null) {
|
if (node.getDataType() == GameSource.Type.created && getProject().baseContent.gameData.getGameDataElement(node.getClass(), node.id) != null) {
|
||||||
if (getProject().alteredContent.gameData.getGameDataElement(node.getClass(), node.id) != null) {
|
if (getProject().alteredContent.gameData.getGameDataElement(node.getClass(), node.id) != null) {
|
||||||
events.add(new SaveEvent(SaveEvent.Type.moveToAltered, node, true, "Element ID matches one already present in the altered game content. Change this ID before saving."));
|
events.add(new SaveEvent(SaveEvent.Type.moveToAltered, node, true, "Element ID matches one already present in the altered game content. Change this ID before saving."));
|
||||||
@@ -291,14 +220,13 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
for (String key : containedIds.keySet()) {
|
for (String key : containedIds.keySet()) {
|
||||||
if (containedIds.get(key) > 1) {
|
if (containedIds.get(key) > 1) {
|
||||||
E node = null;
|
E node = null;
|
||||||
for (E n : list) {
|
for (E n : this) {
|
||||||
if (key.equals(n.id)) {
|
if (key.equals(n.id)) {
|
||||||
node = n;
|
node = n;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
events.add(new SaveEvent(SaveEvent.Type.alsoSave, node, true,
|
events.add(new SaveEvent(SaveEvent.Type.alsoSave, node, true, "There are "+containedIds.get(node.id)+" elements with this ID in this category. Change the conflicting IDs before saving."));
|
||||||
"There are " + containedIds.get(node.id) + " elements with this ID in this category. Change the conflicting IDs before saving."));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (checkImpactedCategory && impactedCategory != null) {
|
if (checkImpactedCategory && impactedCategory != null) {
|
||||||
@@ -307,15 +235,19 @@ public class GameDataCategory<E extends JSONElement> implements ProjectTreeNode
|
|||||||
return events;
|
return events;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean remove(E o) {
|
||||||
|
int index = getProject().getNodeIndex(o);
|
||||||
|
boolean result = super.remove(o);
|
||||||
|
getProject().fireElementRemoved(o, index);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean needsSaving() {
|
public boolean needsSaving() {
|
||||||
for (E node : dataMap.values()) {
|
for (E node : this) {
|
||||||
if (node.needsSaving()) return true;
|
if (node.needsSaving()) return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//endregion
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
@@ -9,21 +18,13 @@ import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.SavedSlotCollection;
|
import com.gpl.rpg.atcontentstudio.model.SavedSlotCollection;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
|
|
||||||
public class GameDataSet implements ProjectTreeNode, Serializable {
|
public class GameDataSet implements ProjectTreeNode, Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = -8558067213826970968L;
|
private static final long serialVersionUID = -8558067213826970968L;
|
||||||
|
|
||||||
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res" + File.separator + "raw" + File.separator;
|
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res"+File.separator+"raw"+File.separator;
|
||||||
public static final String DEFAULT_REL_PATH_IN_PROJECT = "json" + File.separator;
|
public static final String DEFAULT_REL_PATH_IN_PROJECT = "json"+File.separator;
|
||||||
|
|
||||||
public static final String GAME_AC_ARRAY_NAME = "loadresource_actorconditions";
|
public static final String GAME_AC_ARRAY_NAME = "loadresource_actorconditions";
|
||||||
public static final String GAME_DIALOGUES_ARRAY_NAME = "loadresource_conversationlists";
|
public static final String GAME_DIALOGUES_ARRAY_NAME = "loadresource_conversationlists";
|
||||||
@@ -67,7 +68,7 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
items = new GameDataCategory<Item>(this, Item.getStaticDesc());
|
items = new GameDataCategory<Item>(this, Item.getStaticDesc());
|
||||||
itemCategories = new GameDataCategory<ItemCategory>(this, ItemCategory.getStaticDesc());
|
itemCategories = new GameDataCategory<ItemCategory>(this, ItemCategory.getStaticDesc());
|
||||||
npcs = new GameDataCategory<NPC>(this, NPC.getStaticDesc());
|
npcs = new GameDataCategory<NPC>(this, NPC.getStaticDesc());
|
||||||
quests = new GameDataCategory<>(this, Quest.getStaticDesc());
|
quests = new GameDataCategory<Quest>(this, Quest.getStaticDesc());
|
||||||
|
|
||||||
v.add(actorConditions);
|
v.add(actorConditions);
|
||||||
v.add(dialogues);
|
v.add(dialogues);
|
||||||
@@ -81,87 +82,85 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
if (parent.type == GameSource.Type.source && (parent.parent.sourceSetToUse == ResourceSet.debugData || parent.parent.sourceSetToUse == ResourceSet.gameData)) {
|
if (parent.type == GameSource.Type.source && (parent.parent.sourceSetToUse == ResourceSet.debugData || parent.parent.sourceSetToUse == ResourceSet.gameData)) {
|
||||||
String suffix = (parent.parent.sourceSetToUse == ResourceSet.debugData) ? DEBUG_SUFFIX : "";
|
String suffix = (parent.parent.sourceSetToUse == ResourceSet.debugData) ? DEBUG_SUFFIX : "";
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_AC_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_AC_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_AC_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_AC_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
ActorCondition.fromJson(f, actorConditions);
|
ActorCondition.fromJson(f, actorConditions);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_DIALOGUES_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_DIALOGUES_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_DIALOGUES_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_DIALOGUES_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
Dialogue.fromJson(f, dialogues);
|
Dialogue.fromJson(f, dialogues);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_DROPLISTS_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_DROPLISTS_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_DROPLISTS_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_DROPLISTS_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
Droplist.fromJson(f, droplists);
|
Droplist.fromJson(f, droplists);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_ITEMS_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_ITEMS_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_ITEMS_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_ITEMS_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
Item.fromJson(f, items);
|
Item.fromJson(f, items);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_ITEMCAT_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_ITEMCAT_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_ITEMCAT_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_ITEMCAT_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
ItemCategory.fromJson(f, itemCategories);
|
ItemCategory.fromJson(f, itemCategories);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_NPC_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_NPC_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_NPC_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_NPC_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
NPC.fromJson(f, npcs);
|
NPC.fromJson(f, npcs);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parent.referencedSourceFiles.get(GAME_QUESTS_ARRAY_NAME + suffix) != null) {
|
if (parent.referencedSourceFiles.get(GAME_QUESTS_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : parent.referencedSourceFiles.get(GAME_QUESTS_ARRAY_NAME + suffix)) {
|
for (String resource : parent.referencedSourceFiles.get(GAME_QUESTS_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(baseFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
Quest.fromJson(f, quests);
|
Quest.fromJson(f, quests);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (parent.type != GameSource.Type.referenced) {
|
} else if (parent.type != GameSource.Type.referenced) {
|
||||||
List<File> files = new ArrayList<File>(Arrays.stream(baseFolder.listFiles()).collect(Collectors.toList()));
|
for (File f : baseFolder.listFiles()) {
|
||||||
Collections.sort(files,Comparator.comparing(x->x.getName()));
|
|
||||||
for (File f : files) {
|
|
||||||
if (f.getName().startsWith("actorconditions_")) {
|
if (f.getName().startsWith("actorconditions_")) {
|
||||||
ActorCondition.fromJson(f, actorConditions);
|
ActorCondition.fromJson(f, actorConditions);
|
||||||
} else if (f.getName().startsWith("conversationlist_")) {
|
} else if (f.getName().startsWith("conversationlist_")) {
|
||||||
@@ -185,49 +184,40 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
public Enumeration<ProjectTreeNode> children() {
|
public Enumeration<ProjectTreeNode> children() {
|
||||||
return v.getNonEmptyElements();
|
return v.getNonEmptyElements();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int arg0) {
|
public TreeNode getChildAt(int arg0) {
|
||||||
return v.getNonEmptyElementAt(arg0);
|
return v.getNonEmptyElementAt(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return v.getNonEmptySize();
|
return v.getNonEmptySize();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode arg0) {
|
public int getIndex(TreeNode arg0) {
|
||||||
return v.getNonEmptyIndexOf((ProjectTreeNode) arg0);
|
return v.getNonEmptyIndexOf((ProjectTreeNode) arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
if (path.size() == 1 && this.v.getNonEmptySize() == 1) {
|
if (path.size() == 1 && this.v.getNonEmptySize() == 1) {
|
||||||
@@ -237,7 +227,6 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -245,10 +234,9 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
node.notifyCreated();
|
node.notifyCreated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + "JSON data";
|
return (needsSaving() ? "*" : "")+"JSON data";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -258,42 +246,82 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
|
|
||||||
public ActorCondition getActorCondition(String id) {
|
public ActorCondition getActorCondition(String id) {
|
||||||
if (actorConditions == null) return null;
|
if (actorConditions == null) return null;
|
||||||
return actorConditions.get(id);
|
for (ActorCondition gde : actorConditions) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Dialogue getDialogue(String id) {
|
public Dialogue getDialogue(String id) {
|
||||||
if (dialogues == null) return null;
|
if (dialogues == null) return null;
|
||||||
return dialogues.get(id);
|
for (Dialogue gde : dialogues) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Droplist getDroplist(String id) {
|
public Droplist getDroplist(String id) {
|
||||||
if (droplists == null) return null;
|
if (droplists == null) return null;
|
||||||
return droplists.get(id);
|
for (Droplist gde : droplists) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Item getItem(String id) {
|
public Item getItem(String id) {
|
||||||
if (items == null) return null;
|
if (items == null) return null;
|
||||||
return items.get(id);
|
for (Item gde : items) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ItemCategory getItemCategory(String id) {
|
public ItemCategory getItemCategory(String id) {
|
||||||
if (itemCategories == null) return null;
|
if (itemCategories == null) return null;
|
||||||
return itemCategories.get(id);
|
for (ItemCategory gde : itemCategories) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public NPC getNPC(String id) {
|
public NPC getNPC(String id) {
|
||||||
if (npcs == null) return null;
|
if (npcs == null) return null;
|
||||||
return npcs.get(id);
|
for (NPC gde : npcs) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public NPC getNPCIgnoreCase(String id) {
|
public NPC getNPCIgnoreCase(String id) {
|
||||||
if (npcs == null) return null;
|
if (npcs == null) return null;
|
||||||
return npcs.getIgnoreCase(id);
|
for (NPC gde : npcs) {
|
||||||
|
if (id.equalsIgnoreCase(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Quest getQuest(String id) {
|
public Quest getQuest(String id) {
|
||||||
if (quests == null) return null;
|
if (quests == null) return null;
|
||||||
return quests.get(id);
|
for (Quest gde : quests) {
|
||||||
|
if (id.equals(gde.id)){
|
||||||
|
return gde;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -306,17 +334,14 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
return DefaultIcons.getJsonClosedIcon();
|
return DefaultIcons.getJsonClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getJsonClosedIcon();
|
return DefaultIcons.getJsonClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
return DefaultIcons.getJsonOpenIcon();
|
return DefaultIcons.getJsonOpenIcon();
|
||||||
@@ -325,8 +350,7 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
public void addElement(JSONElement node) {
|
public void addElement(JSONElement node) {
|
||||||
ProjectTreeNode higherEmptyParent = this;
|
ProjectTreeNode higherEmptyParent = this;
|
||||||
while (higherEmptyParent != null) {
|
while (higherEmptyParent != null) {
|
||||||
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode) higherEmptyParent.getParent()).isEmpty())
|
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode)higherEmptyParent.getParent()).isEmpty()) higherEmptyParent = (ProjectTreeNode)higherEmptyParent.getParent();
|
||||||
higherEmptyParent = (ProjectTreeNode) higherEmptyParent.getParent();
|
|
||||||
else break;
|
else break;
|
||||||
}
|
}
|
||||||
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
||||||
@@ -359,7 +383,7 @@ public class GameDataSet implements ProjectTreeNode, Serializable {
|
|||||||
quests.add((Quest) node);
|
quests.add((Quest) node);
|
||||||
node.parent = quests;
|
node.parent = quests;
|
||||||
} else {
|
} else {
|
||||||
Notification.addError("Cannot add " + node.getDesc() + ". Unknown data type.");
|
Notification.addError("Cannot add "+node.getDesc()+". Unknown data type.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (node.jsonFile != null && parent.type == GameSource.Type.altered) {
|
if (node.jsonFile != null && parent.type == GameSource.Type.altered) {
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.FileReader;
|
import java.io.FileReader;
|
||||||
@@ -17,7 +10,13 @@ import java.util.LinkedHashMap;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import static com.gpl.rpg.atcontentstudio.model.gamedata.Common.*;
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
|
||||||
public class Item extends JSONElement {
|
public class Item extends JSONElement {
|
||||||
|
|
||||||
@@ -36,22 +35,45 @@ public class Item extends JSONElement {
|
|||||||
public String description = null;
|
public String description = null;
|
||||||
public HitEffect hit_effect = null;
|
public HitEffect hit_effect = null;
|
||||||
public HitReceivedEffect hit_received_effect = null;
|
public HitReceivedEffect hit_received_effect = null;
|
||||||
public HitEffect miss_effect = null;
|
public KillEffect kill_effect = null;
|
||||||
public HitReceivedEffect miss_received_effect = null;
|
|
||||||
public DeathEffect kill_effect = null;
|
|
||||||
public EquipEffect equip_effect = null;
|
public EquipEffect equip_effect = null;
|
||||||
|
|
||||||
//Available from linked state
|
//Available from linked state
|
||||||
public ItemCategory category = null;
|
public ItemCategory category = null;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static class KillEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer hp_boost_min = null;
|
||||||
|
public Integer hp_boost_max = null;
|
||||||
|
public Integer ap_boost_min = null;
|
||||||
|
public Integer ap_boost_max = null;
|
||||||
|
public List<TimedConditionEffect> conditions_source = null;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//Inheritance for code compactness, not semantically correct.
|
||||||
|
public static class HitEffect extends KillEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public List<TimedConditionEffect> conditions_target = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class HitReceivedEffect extends HitEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer hp_boost_min_target = null;
|
||||||
|
public Integer hp_boost_max_target = null;
|
||||||
|
public Integer ap_boost_min_target = null;
|
||||||
|
public Integer ap_boost_max_target = null;
|
||||||
|
}
|
||||||
|
|
||||||
public static class EquipEffect {
|
public static class EquipEffect {
|
||||||
//Available from parsed state
|
//Available from parsed state
|
||||||
public Integer damage_boost_min = null;
|
public Integer damage_boost_min = null;
|
||||||
public Integer damage_boost_max = null;
|
public Integer damage_boost_max = null;
|
||||||
public Integer max_hp_boost = null;
|
public Integer max_hp_boost = null;
|
||||||
public Integer max_ap_boost = null;
|
public Integer max_ap_boost = null;
|
||||||
public List<ActorConditionEffect> conditions = null;
|
public List<ConditionEffect> conditions = null;
|
||||||
public Integer increase_move_cost = null;
|
public Integer increase_move_cost = null;
|
||||||
public Integer increase_use_item_cost = null;
|
public Integer increase_use_item_cost = null;
|
||||||
public Integer increase_reequip_cost = null;
|
public Integer increase_reequip_cost = null;
|
||||||
@@ -61,9 +83,22 @@ public class Item extends JSONElement {
|
|||||||
public Integer increase_block_chance = null;
|
public Integer increase_block_chance = null;
|
||||||
public Integer increase_damage_resistance = null;
|
public Integer increase_damage_resistance = null;
|
||||||
public Double critical_multiplier = null;
|
public Double critical_multiplier = null;
|
||||||
public Integer damage_modifier = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static class ConditionEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer magnitude = null;
|
||||||
|
public String condition_id = null;
|
||||||
|
|
||||||
|
//Available from linked state
|
||||||
|
public ActorCondition condition = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class TimedConditionEffect extends ConditionEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer duration = null;
|
||||||
|
public Double chance = null;
|
||||||
|
}
|
||||||
|
|
||||||
public static enum DisplayType {
|
public static enum DisplayType {
|
||||||
ordinary,
|
ordinary,
|
||||||
@@ -75,7 +110,7 @@ public class Item extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + name + " (" + id + ")";
|
return (needsSaving() ? "*" : "")+name+" ("+id+")";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getStaticDesc() {
|
public static String getStaticDesc() {
|
||||||
@@ -90,7 +125,7 @@ public class Item extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List items = (List) parser.parse(reader);
|
List items = (List) parser.parse(reader);
|
||||||
for (Object obj : items) {
|
for (Object obj : items) {
|
||||||
Map itemJson = (Map) obj;
|
Map itemJson = (Map)obj;
|
||||||
Item item = fromJson(itemJson);
|
Item item = fromJson(itemJson);
|
||||||
item.jsonFile = jsonFile;
|
item.jsonFile = jsonFile;
|
||||||
item.parent = category;
|
item.parent = category;
|
||||||
@@ -100,13 +135,13 @@ public class Item extends JSONElement {
|
|||||||
category.add(item);
|
category.add(item);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -132,8 +167,7 @@ public class Item extends JSONElement {
|
|||||||
item.icon_id = (String) itemJson.get("iconID");
|
item.icon_id = (String) itemJson.get("iconID");
|
||||||
item.id = (String) itemJson.get("id");
|
item.id = (String) itemJson.get("id");
|
||||||
item.name = (String) itemJson.get("name");
|
item.name = (String) itemJson.get("name");
|
||||||
if (itemJson.get("displaytype") != null)
|
if (itemJson.get("displaytype") != null) item.display_type = DisplayType.valueOf((String) itemJson.get("displaytype"));
|
||||||
item.display_type = DisplayType.valueOf((String) itemJson.get("displaytype"));
|
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -152,8 +186,8 @@ public class Item extends JSONElement {
|
|||||||
if (equipEffect != null) {
|
if (equipEffect != null) {
|
||||||
this.equip_effect = new EquipEffect();
|
this.equip_effect = new EquipEffect();
|
||||||
if (equipEffect.get("increaseAttackDamage") != null) {
|
if (equipEffect.get("increaseAttackDamage") != null) {
|
||||||
this.equip_effect.damage_boost_min = JSONElement.getInteger((Number) (((Map) equipEffect.get("increaseAttackDamage")).get("min")));
|
this.equip_effect.damage_boost_min = JSONElement.getInteger((Number) (((Map)equipEffect.get("increaseAttackDamage")).get("min")));
|
||||||
this.equip_effect.damage_boost_max = JSONElement.getInteger((Number) (((Map) equipEffect.get("increaseAttackDamage")).get("max")));
|
this.equip_effect.damage_boost_max = JSONElement.getInteger((Number) (((Map)equipEffect.get("increaseAttackDamage")).get("max")));
|
||||||
}
|
}
|
||||||
this.equip_effect.max_hp_boost = JSONElement.getInteger((Number) equipEffect.get("increaseMaxHP"));
|
this.equip_effect.max_hp_boost = JSONElement.getInteger((Number) equipEffect.get("increaseMaxHP"));
|
||||||
this.equip_effect.max_ap_boost = JSONElement.getInteger((Number) equipEffect.get("increaseMaxAP"));
|
this.equip_effect.max_ap_boost = JSONElement.getInteger((Number) equipEffect.get("increaseMaxAP"));
|
||||||
@@ -167,16 +201,14 @@ public class Item extends JSONElement {
|
|||||||
this.equip_effect.increase_damage_resistance = JSONElement.getInteger((Number) equipEffect.get("increaseDamageResistance"));
|
this.equip_effect.increase_damage_resistance = JSONElement.getInteger((Number) equipEffect.get("increaseDamageResistance"));
|
||||||
//TODO correct game data, to unify format.
|
//TODO correct game data, to unify format.
|
||||||
// this.equip_effect.critical_multiplier = JSONElement.getDouble((Number) equipEffect.get("setCriticalMultiplier"));
|
// this.equip_effect.critical_multiplier = JSONElement.getDouble((Number) equipEffect.get("setCriticalMultiplier"));
|
||||||
if (equipEffect.get("setCriticalMultiplier") != null)
|
if (equipEffect.get("setCriticalMultiplier") != null) this.equip_effect.critical_multiplier = JSONElement.getDouble(Double.parseDouble(equipEffect.get("setCriticalMultiplier").toString()));
|
||||||
this.equip_effect.critical_multiplier = JSONElement.getDouble(Double.parseDouble(equipEffect.get("setCriticalMultiplier").toString()));
|
|
||||||
this.equip_effect.damage_modifier = JSONElement.getInteger((Number) equipEffect.get("setNonWeaponDamageModifier"));
|
|
||||||
|
|
||||||
List conditionsJson = (List) equipEffect.get("addedConditions");
|
List conditionsJson = (List) equipEffect.get("addedConditions");
|
||||||
if (conditionsJson != null && !conditionsJson.isEmpty()) {
|
if (conditionsJson != null && !conditionsJson.isEmpty()) {
|
||||||
this.equip_effect.conditions = new ArrayList<>();
|
this.equip_effect.conditions = new ArrayList<Item.ConditionEffect>();
|
||||||
for (Object conditionJsonObj : conditionsJson) {
|
for (Object conditionJsonObj : conditionsJson) {
|
||||||
Map conditionJson = (Map) conditionJsonObj;
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
ActorConditionEffect condition = new ActorConditionEffect();
|
ConditionEffect condition = new ConditionEffect();
|
||||||
condition.condition_id = (String) conditionJson.get("condition");
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
this.equip_effect.conditions.add(condition);
|
this.equip_effect.conditions.add(condition);
|
||||||
@@ -184,25 +216,90 @@ public class Item extends JSONElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Map hitEffect = (Map) itemJson.get("hitEffect");
|
Map hitEffect = (Map) itemJson.get("hitEffect");
|
||||||
if (hitEffect != null) {
|
if (hitEffect != null) {
|
||||||
this.hit_effect = parseHitEffect(hitEffect);
|
this.hit_effect = new HitEffect();
|
||||||
|
if (hitEffect.get("increaseCurrentHP") != null) {
|
||||||
|
this.hit_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentHP")).get("min")));
|
||||||
|
this.hit_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentHP")).get("max")));
|
||||||
|
}
|
||||||
|
if (hitEffect.get("increaseCurrentAP") != null) {
|
||||||
|
this.hit_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentAP")).get("min")));
|
||||||
|
this.hit_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentAP")).get("max")));
|
||||||
|
}
|
||||||
|
List conditionsSourceJson = (List) hitEffect.get("conditionsSource");
|
||||||
|
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
||||||
|
this.hit_effect.conditions_source = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsSourceJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_effect.conditions_source.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List conditionsTargetJson = (List) hitEffect.get("conditionsTarget");
|
||||||
|
if (conditionsTargetJson != null && !conditionsTargetJson.isEmpty()) {
|
||||||
|
this.hit_effect.conditions_target = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsTargetJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_effect.conditions_target.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Map hitReceivedEffect = (Map) itemJson.get("hitReceivedEffect");
|
Map hitReceivedEffect = (Map) itemJson.get("hitReceivedEffect");
|
||||||
if (hitReceivedEffect != null) {
|
if (hitReceivedEffect != null) {
|
||||||
this.hit_received_effect = parseHitReceivedEffect(hitReceivedEffect);
|
this.hit_received_effect = new HitReceivedEffect();
|
||||||
|
if (hitReceivedEffect.get("increaseCurrentHP") != null) {
|
||||||
|
this.hit_received_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentHP")).get("min")));
|
||||||
|
this.hit_received_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentHP")).get("max")));
|
||||||
|
}
|
||||||
|
if (hitReceivedEffect.get("increaseCurrentAP") != null) {
|
||||||
|
this.hit_received_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentAP")).get("min")));
|
||||||
|
this.hit_received_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentAP")).get("max")));
|
||||||
|
}
|
||||||
|
if (hitReceivedEffect.get("increaseAttackerCurrentHP") != null) {
|
||||||
|
this.hit_received_effect.hp_boost_min_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentHP")).get("min")));
|
||||||
|
this.hit_received_effect.hp_boost_max_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentHP")).get("max")));
|
||||||
|
}
|
||||||
|
if (hitReceivedEffect.get("increaseAttackerCurrentAP") != null) {
|
||||||
|
this.hit_received_effect.ap_boost_min_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentAP")).get("min")));
|
||||||
|
this.hit_received_effect.ap_boost_max_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentAP")).get("max")));
|
||||||
|
}
|
||||||
|
List conditionsSourceJson = (List) hitReceivedEffect.get("conditionsSource");
|
||||||
|
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
||||||
|
this.hit_received_effect.conditions_source = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsSourceJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_received_effect.conditions_source.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List conditionsTargetJson = (List) hitReceivedEffect.get("conditionsTarget");
|
||||||
|
if (conditionsTargetJson != null && !conditionsTargetJson.isEmpty()) {
|
||||||
|
this.hit_received_effect.conditions_target = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsTargetJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_received_effect.conditions_target.add(condition);
|
||||||
}
|
}
|
||||||
|
|
||||||
Map missEffect = (Map) itemJson.get("missEffect");
|
|
||||||
if (missEffect != null) {
|
|
||||||
this.miss_effect = parseHitEffect(missEffect);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Map missReceivedEffect = (Map) itemJson.get("missReceivedEffect");
|
|
||||||
if (missReceivedEffect != null) {
|
|
||||||
this.miss_received_effect = parseHitReceivedEffect(missReceivedEffect);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Map killEffect = (Map) itemJson.get("killEffect");
|
Map killEffect = (Map) itemJson.get("killEffect");
|
||||||
@@ -210,7 +307,28 @@ public class Item extends JSONElement {
|
|||||||
killEffect = (Map) itemJson.get("useEffect");
|
killEffect = (Map) itemJson.get("useEffect");
|
||||||
}
|
}
|
||||||
if (killEffect != null) {
|
if (killEffect != null) {
|
||||||
this.kill_effect = parseDeathEffect(killEffect);
|
this.kill_effect = new KillEffect();
|
||||||
|
if (killEffect.get("increaseCurrentHP") != null) {
|
||||||
|
this.kill_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)killEffect.get("increaseCurrentHP")).get("min")));
|
||||||
|
this.kill_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)killEffect.get("increaseCurrentHP")).get("max")));
|
||||||
|
}
|
||||||
|
if (killEffect.get("increaseCurrentAP") != null) {
|
||||||
|
this.kill_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)killEffect.get("increaseCurrentAP")).get("min")));
|
||||||
|
this.kill_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)killEffect.get("increaseCurrentAP")).get("max")));
|
||||||
|
}
|
||||||
|
List conditionsSourceJson = (List) killEffect.get("conditionsSource");
|
||||||
|
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
||||||
|
this.kill_effect.conditions_source = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsSourceJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.kill_effect.conditions_source.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.state = State.parsed;
|
this.state = State.parsed;
|
||||||
}
|
}
|
||||||
@@ -218,32 +336,68 @@ public class Item extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
Project proj = getProject();
|
Project proj = getProject();
|
||||||
if (proj == null) {
|
if (proj == null) {
|
||||||
Notification.addError("Error linking item " + id + ". No parent project found.");
|
Notification.addError("Error linking item "+id+". No parent project found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
linkIcon(proj, this.icon_id, this);
|
if (this.icon_id != null) {
|
||||||
|
String spritesheetId = this.icon_id.split(":")[0];
|
||||||
|
proj.getSpritesheet(spritesheetId).addBacklink(this);
|
||||||
|
}
|
||||||
if (this.category_id != null) this.category = proj.getItemCategory(this.category_id);
|
if (this.category_id != null) this.category = proj.getItemCategory(this.category_id);
|
||||||
if (this.category != null) this.category.addBacklink(this);
|
if (this.category != null) this.category.addBacklink(this);
|
||||||
if (this.equip_effect != null && this.equip_effect.conditions != null) {
|
if (this.equip_effect != null && this.equip_effect.conditions != null) {
|
||||||
linkConditions(this.equip_effect.conditions, proj, this);
|
for (ConditionEffect ce : this.equip_effect.conditions) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect != null && this.hit_effect.conditions_source != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_effect.conditions_source) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect != null && this.hit_effect.conditions_target != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_effect.conditions_target) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect != null && this.hit_received_effect.conditions_source != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_received_effect.conditions_source) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect != null && this.hit_received_effect.conditions_target != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_received_effect.conditions_target) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.kill_effect != null && this.kill_effect.conditions_source != null) {
|
||||||
|
for (TimedConditionEffect ce : this.kill_effect.conditions_source) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
linkEffects(this.hit_effect, proj, this);
|
|
||||||
linkEffects(this.hit_received_effect, proj, this);
|
|
||||||
linkEffects(this.miss_effect, proj, this);
|
|
||||||
linkEffects(this.miss_received_effect, proj, this);
|
|
||||||
linkEffects(this.kill_effect, proj, this);
|
|
||||||
this.state = State.linked;
|
this.state = State.linked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getProject().getIcon(icon_id);
|
return getProject().getIcon(icon_id);
|
||||||
@@ -272,7 +426,6 @@ public class Item extends JSONElement {
|
|||||||
clone.has_manual_price = this.has_manual_price;
|
clone.has_manual_price = this.has_manual_price;
|
||||||
if (this.equip_effect != null) {
|
if (this.equip_effect != null) {
|
||||||
clone.equip_effect = new EquipEffect();
|
clone.equip_effect = new EquipEffect();
|
||||||
clone.equip_effect.damage_modifier = this.equip_effect.damage_modifier;
|
|
||||||
clone.equip_effect.critical_multiplier = this.equip_effect.critical_multiplier;
|
clone.equip_effect.critical_multiplier = this.equip_effect.critical_multiplier;
|
||||||
clone.equip_effect.damage_boost_max = this.equip_effect.damage_boost_max;
|
clone.equip_effect.damage_boost_max = this.equip_effect.damage_boost_max;
|
||||||
clone.equip_effect.damage_boost_min = this.equip_effect.damage_boost_min;
|
clone.equip_effect.damage_boost_min = this.equip_effect.damage_boost_min;
|
||||||
@@ -287,9 +440,9 @@ public class Item extends JSONElement {
|
|||||||
clone.equip_effect.max_ap_boost = this.equip_effect.max_ap_boost;
|
clone.equip_effect.max_ap_boost = this.equip_effect.max_ap_boost;
|
||||||
clone.equip_effect.max_hp_boost = this.equip_effect.max_hp_boost;
|
clone.equip_effect.max_hp_boost = this.equip_effect.max_hp_boost;
|
||||||
if (this.equip_effect.conditions != null) {
|
if (this.equip_effect.conditions != null) {
|
||||||
clone.equip_effect.conditions = new ArrayList<>();
|
clone.equip_effect.conditions = new ArrayList<Item.ConditionEffect>();
|
||||||
for (ActorConditionEffect c : this.equip_effect.conditions) {
|
for (ConditionEffect c : this.equip_effect.conditions) {
|
||||||
ActorConditionEffect cclone = new ActorConditionEffect();
|
ConditionEffect cclone = new ConditionEffect();
|
||||||
cclone.magnitude = c.magnitude;
|
cclone.magnitude = c.magnitude;
|
||||||
cclone.condition_id = c.condition_id;
|
cclone.condition_id = c.condition_id;
|
||||||
cclone.condition = c.condition;
|
cclone.condition = c.condition;
|
||||||
@@ -302,23 +455,103 @@ public class Item extends JSONElement {
|
|||||||
}
|
}
|
||||||
if (this.hit_effect != null) {
|
if (this.hit_effect != null) {
|
||||||
clone.hit_effect = new HitEffect();
|
clone.hit_effect = new HitEffect();
|
||||||
copyHitEffectValues(clone.hit_effect, this.hit_effect, clone);
|
clone.hit_effect.ap_boost_max = this.hit_effect.ap_boost_max;
|
||||||
|
clone.hit_effect.ap_boost_min = this.hit_effect.ap_boost_min;
|
||||||
|
clone.hit_effect.hp_boost_max = this.hit_effect.hp_boost_max;
|
||||||
|
clone.hit_effect.hp_boost_min = this.hit_effect.hp_boost_min;
|
||||||
|
if (this.hit_effect.conditions_source != null) {
|
||||||
|
clone.hit_effect.conditions_source = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_effect.conditions_source) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_effect.conditions_source.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect.conditions_target != null) {
|
||||||
|
clone.hit_effect.conditions_target = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_effect.conditions_target) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_effect.conditions_target.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (this.hit_received_effect != null) {
|
if (this.hit_received_effect != null) {
|
||||||
clone.hit_received_effect = new HitReceivedEffect();
|
clone.hit_received_effect = new HitReceivedEffect();
|
||||||
copyHitReceivedEffectValues(clone.hit_received_effect, this.hit_received_effect, clone);
|
clone.hit_received_effect.ap_boost_max = this.hit_received_effect.ap_boost_max;
|
||||||
|
clone.hit_received_effect.ap_boost_min = this.hit_received_effect.ap_boost_min;
|
||||||
|
clone.hit_received_effect.hp_boost_max = this.hit_received_effect.hp_boost_max;
|
||||||
|
clone.hit_received_effect.hp_boost_min = this.hit_received_effect.hp_boost_min;
|
||||||
|
clone.hit_received_effect.ap_boost_max_target = this.hit_received_effect.ap_boost_max_target;
|
||||||
|
clone.hit_received_effect.ap_boost_min_target = this.hit_received_effect.ap_boost_min_target;
|
||||||
|
clone.hit_received_effect.hp_boost_max_target = this.hit_received_effect.hp_boost_max_target;
|
||||||
|
clone.hit_received_effect.hp_boost_min_target = this.hit_received_effect.hp_boost_min_target;
|
||||||
|
if (this.hit_received_effect.conditions_source != null) {
|
||||||
|
clone.hit_received_effect.conditions_source = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_received_effect.conditions_source) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_received_effect.conditions_source.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.conditions_target != null) {
|
||||||
|
clone.hit_received_effect.conditions_target = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_received_effect.conditions_target) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_received_effect.conditions_target.add(cclone);
|
||||||
}
|
}
|
||||||
if (this.miss_effect != null) {
|
|
||||||
clone.miss_effect = new HitEffect();
|
|
||||||
copyHitEffectValues(clone.miss_effect, this.miss_effect, clone);
|
|
||||||
}
|
}
|
||||||
if (this.miss_received_effect != null) {
|
|
||||||
clone.miss_received_effect = new HitReceivedEffect();
|
|
||||||
copyHitReceivedEffectValues(clone.miss_received_effect, this.miss_received_effect, clone);
|
|
||||||
}
|
}
|
||||||
if (this.kill_effect != null) {
|
if (this.kill_effect != null) {
|
||||||
clone.kill_effect = new DeathEffect();
|
clone.kill_effect = new KillEffect();
|
||||||
copyDeathEffectValues(clone.kill_effect, this.kill_effect, clone);
|
clone.kill_effect.ap_boost_max = this.kill_effect.ap_boost_max;
|
||||||
|
clone.kill_effect.ap_boost_min = this.kill_effect.ap_boost_min;
|
||||||
|
clone.kill_effect.hp_boost_max = this.kill_effect.hp_boost_max;
|
||||||
|
clone.kill_effect.hp_boost_min = this.kill_effect.hp_boost_min;
|
||||||
|
if (this.kill_effect.conditions_source != null) {
|
||||||
|
clone.kill_effect.conditions_source = new ArrayList<Item.TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.kill_effect.conditions_source) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.kill_effect.conditions_source.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return clone;
|
return clone;
|
||||||
}
|
}
|
||||||
@@ -330,42 +563,54 @@ public class Item extends JSONElement {
|
|||||||
this.category = (ItemCategory) newOne;
|
this.category = (ItemCategory) newOne;
|
||||||
if (newOne != null) newOne.addBacklink(this);
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
} else {
|
} else {
|
||||||
if (this.equip_effect != null) {
|
if (this.equip_effect != null && this.equip_effect.conditions != null) {
|
||||||
if (this.equip_effect.conditions != null) {
|
for (ConditionEffect c : this.equip_effect.conditions) {
|
||||||
actorConditionElementChanged(this.equip_effect.conditions, oldOne, newOne, this);
|
if (c.condition == oldOne) {
|
||||||
|
oldOne.removeBacklink(this);
|
||||||
|
c.condition = (ActorCondition) newOne;
|
||||||
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (this.hit_effect != null) {
|
|
||||||
actorConditionElementChanged(this.hit_effect.conditions_source, oldOne, newOne, this);
|
|
||||||
actorConditionElementChanged(this.hit_effect.conditions_target, oldOne, newOne, this);
|
|
||||||
}
|
}
|
||||||
if (this.hit_received_effect != null) {
|
if (this.hit_effect != null && this.hit_effect.conditions_source != null) {
|
||||||
actorConditionElementChanged(this.hit_received_effect.conditions_source, oldOne, newOne, this);
|
for (TimedConditionEffect c : this.hit_effect.conditions_source) {
|
||||||
actorConditionElementChanged(this.hit_received_effect.conditions_target, oldOne, newOne, this);
|
if (c.condition == oldOne) {
|
||||||
|
oldOne.removeBacklink(this);
|
||||||
|
c.condition = (ActorCondition) newOne;
|
||||||
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
}
|
}
|
||||||
if (this.miss_effect != null) {
|
|
||||||
actorConditionElementChanged(this.miss_effect.conditions_source, oldOne, newOne, this);
|
|
||||||
actorConditionElementChanged(this.miss_effect.conditions_target, oldOne, newOne, this);
|
|
||||||
}
|
}
|
||||||
if (this.miss_received_effect != null) {
|
|
||||||
actorConditionElementChanged(this.miss_received_effect.conditions_source, oldOne, newOne, this);
|
|
||||||
actorConditionElementChanged(this.miss_received_effect.conditions_target, oldOne, newOne, this);
|
|
||||||
}
|
}
|
||||||
|
if (this.hit_effect != null && this.hit_effect.conditions_target != null) {
|
||||||
if (this.kill_effect != null) {
|
for (TimedConditionEffect c : this.hit_effect.conditions_target) {
|
||||||
actorConditionElementChanged(this.kill_effect.conditions_source, oldOne, newOne, this);
|
if (c.condition == oldOne) {
|
||||||
|
oldOne.removeBacklink(this);
|
||||||
|
c.condition = (ActorCondition) newOne;
|
||||||
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
if (this.kill_effect != null && this.kill_effect.conditions_source != null) {
|
||||||
|
for (TimedConditionEffect c : this.kill_effect.conditions_source) {
|
||||||
|
if (c.condition == oldOne) {
|
||||||
|
oldOne.removeBacklink(this);
|
||||||
|
c.condition = (ActorCondition) newOne;
|
||||||
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map itemJson = new LinkedHashMap();
|
Map itemJson = new LinkedHashMap();
|
||||||
itemJson.put("id", this.id);
|
itemJson.put("id", this.id);
|
||||||
writeIconToMap(itemJson, this.icon_id);
|
if (this.icon_id != null) itemJson.put("iconID", this.icon_id);
|
||||||
if (this.name != null) itemJson.put("name", this.name);
|
if (this.name != null) itemJson.put("name", this.name);
|
||||||
if (this.display_type != null) itemJson.put("displaytype", this.display_type.toString());
|
if(this.display_type != null) itemJson.put("displaytype", this.display_type.toString());
|
||||||
|
|
||||||
if (this.has_manual_price != null) itemJson.put("hasManualPrice", this.has_manual_price);
|
if (this.has_manual_price != null) itemJson.put("hasManualPrice", this.has_manual_price);
|
||||||
if (this.base_market_cost != null) itemJson.put("baseMarketCost", this.base_market_cost);
|
if (this.base_market_cost != null) itemJson.put("baseMarketCost", this.base_market_cost);
|
||||||
@@ -374,70 +619,210 @@ public class Item extends JSONElement {
|
|||||||
} else if (this.category_id != null) {
|
} else if (this.category_id != null) {
|
||||||
itemJson.put("category", this.category_id);
|
itemJson.put("category", this.category_id);
|
||||||
}
|
}
|
||||||
writeDescriptionToMap(itemJson, this.description);
|
if (this.description != null) itemJson.put("description", this.description);
|
||||||
if (this.equip_effect != null) {
|
if (this.equip_effect != null) {
|
||||||
Map equipEffectJson = new LinkedHashMap();
|
Map equipEffectJson = new LinkedHashMap();
|
||||||
itemJson.put("equipEffect", equipEffectJson);
|
itemJson.put("equipEffect", equipEffectJson);
|
||||||
writeMinMaxToMap(equipEffectJson, "increaseAttackDamage", this.equip_effect.damage_boost_min, this.equip_effect.damage_boost_max, 0);
|
if (this.equip_effect.damage_boost_min != null || this.equip_effect.damage_boost_max != null) {
|
||||||
if (this.equip_effect.max_hp_boost != null)
|
Map damageJson = new LinkedHashMap();
|
||||||
equipEffectJson.put("increaseMaxHP", this.equip_effect.max_hp_boost);
|
equipEffectJson.put("increaseAttackDamage", damageJson);
|
||||||
if (this.equip_effect.max_ap_boost != null)
|
if (this.equip_effect.damage_boost_min != null) damageJson.put("min", this.equip_effect.damage_boost_min);
|
||||||
equipEffectJson.put("increaseMaxAP", this.equip_effect.max_ap_boost);
|
else damageJson.put("min", 0);
|
||||||
if (this.equip_effect.increase_move_cost != null)
|
if (this.equip_effect.damage_boost_max != null) damageJson.put("max", this.equip_effect.damage_boost_max);
|
||||||
equipEffectJson.put("increaseMoveCost", this.equip_effect.increase_move_cost);
|
else damageJson.put("max", 0);
|
||||||
if (this.equip_effect.increase_use_item_cost != null)
|
}
|
||||||
equipEffectJson.put("increaseUseItemCost", this.equip_effect.increase_use_item_cost);
|
if (this.equip_effect.max_hp_boost != null) equipEffectJson.put("increaseMaxHP", this.equip_effect.max_hp_boost);
|
||||||
if (this.equip_effect.increase_reequip_cost != null)
|
if (this.equip_effect.max_ap_boost != null) equipEffectJson.put("increaseMaxAP", this.equip_effect.max_ap_boost);
|
||||||
equipEffectJson.put("increaseReequipCost", this.equip_effect.increase_reequip_cost);
|
if (this.equip_effect.increase_move_cost != null) equipEffectJson.put("increaseMoveCost", this.equip_effect.increase_move_cost);
|
||||||
if (this.equip_effect.increase_attack_cost != null)
|
if (this.equip_effect.increase_use_item_cost != null) equipEffectJson.put("increaseUseItemCost", this.equip_effect.increase_use_item_cost);
|
||||||
equipEffectJson.put("increaseAttackCost", this.equip_effect.increase_attack_cost);
|
if (this.equip_effect.increase_reequip_cost != null) equipEffectJson.put("increaseReequipCost", this.equip_effect.increase_reequip_cost);
|
||||||
if (this.equip_effect.increase_attack_chance != null)
|
if (this.equip_effect.increase_attack_cost != null) equipEffectJson.put("increaseAttackCost", this.equip_effect.increase_attack_cost);
|
||||||
equipEffectJson.put("increaseAttackChance", this.equip_effect.increase_attack_chance);
|
if (this.equip_effect.increase_attack_chance != null) equipEffectJson.put("increaseAttackChance", this.equip_effect.increase_attack_chance);
|
||||||
if (this.equip_effect.increase_critical_skill != null)
|
if (this.equip_effect.increase_critical_skill != null) equipEffectJson.put("increaseCriticalSkill", this.equip_effect.increase_critical_skill);
|
||||||
equipEffectJson.put("increaseCriticalSkill", this.equip_effect.increase_critical_skill);
|
if (this.equip_effect.increase_block_chance != null) equipEffectJson.put("increaseBlockChance", this.equip_effect.increase_block_chance);
|
||||||
if (this.equip_effect.increase_block_chance != null)
|
if (this.equip_effect.increase_damage_resistance != null) equipEffectJson.put("increaseDamageResistance", this.equip_effect.increase_damage_resistance);
|
||||||
equipEffectJson.put("increaseBlockChance", this.equip_effect.increase_block_chance);
|
if (this.equip_effect.critical_multiplier != null) equipEffectJson.put("setCriticalMultiplier", this.equip_effect.critical_multiplier);
|
||||||
if (this.equip_effect.increase_damage_resistance != null)
|
|
||||||
equipEffectJson.put("increaseDamageResistance", this.equip_effect.increase_damage_resistance);
|
|
||||||
if (this.equip_effect.critical_multiplier != null)
|
|
||||||
equipEffectJson.put("setCriticalMultiplier", this.equip_effect.critical_multiplier);
|
|
||||||
if (this.equip_effect.damage_modifier != null)
|
|
||||||
equipEffectJson.put("setNonWeaponDamageModifier", this.equip_effect.damage_modifier);
|
|
||||||
if (this.equip_effect.conditions != null) {
|
if (this.equip_effect.conditions != null) {
|
||||||
List conditionsJson = new ArrayList();
|
List conditionsJson = new ArrayList();
|
||||||
equipEffectJson.put("addedConditions", conditionsJson);
|
equipEffectJson.put("addedConditions", conditionsJson);
|
||||||
for (ActorConditionEffect condition : this.equip_effect.conditions) {
|
for (ConditionEffect condition : this.equip_effect.conditions) {
|
||||||
Map conditionJson = new LinkedHashMap();
|
Map conditionJson = new LinkedHashMap();
|
||||||
conditionsJson.add(conditionJson);
|
conditionsJson.add(conditionJson);
|
||||||
writeConditionEffectToMap(condition, conditionJson);
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
writeHitEffectToMap(itemJson, this.hit_effect, "hitEffect");
|
if (this.hit_effect != null) {
|
||||||
writeHitReceivedEffectToMap(itemJson, this.hit_received_effect, "hitReceivedEffect");
|
Map hitEffectJson = new LinkedHashMap();
|
||||||
writeHitEffectToMap(itemJson, this.miss_effect, "missEffect");
|
itemJson.put("hitEffect", hitEffectJson);
|
||||||
writeHitReceivedEffectToMap(itemJson, this.miss_received_effect, "missReceivedEffect");
|
if (this.hit_effect.hp_boost_min != null || this.hit_effect.hp_boost_max != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
String key;
|
hitEffectJson.put("increaseCurrentHP", hpJson);
|
||||||
|
if (this.hit_effect.hp_boost_min != null) hpJson.put("min", this.hit_effect.hp_boost_min);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.hit_effect.hp_boost_max != null) hpJson.put("max", this.hit_effect.hp_boost_max);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_effect.ap_boost_min != null || this.hit_effect.ap_boost_max != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
hitEffectJson.put("increaseCurrentAP", apJson);
|
||||||
|
if (this.hit_effect.ap_boost_min != null) apJson.put("min", this.hit_effect.ap_boost_min);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.hit_effect.ap_boost_max != null) apJson.put("max", this.hit_effect.ap_boost_max);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_effect.conditions_source != null) {
|
||||||
|
List conditionsSourceJson = new ArrayList();
|
||||||
|
hitEffectJson.put("conditionsSource", conditionsSourceJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_effect.conditions_source) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsSourceJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect.conditions_target != null) {
|
||||||
|
List conditionsTargetJson = new ArrayList();
|
||||||
|
hitEffectJson.put("conditionsTarget", conditionsTargetJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_effect.conditions_target) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsTargetJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect != null) {
|
||||||
|
Map hitReceivedEffectJson = new LinkedHashMap();
|
||||||
|
itemJson.put("hitReceivedEffect", hitReceivedEffectJson);
|
||||||
|
if (this.hit_received_effect.hp_boost_min != null || this.hit_received_effect.hp_boost_max != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseCurrentHP", hpJson);
|
||||||
|
if (this.hit_received_effect.hp_boost_min != null) hpJson.put("min", this.hit_received_effect.hp_boost_min);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.hp_boost_max != null) hpJson.put("max", this.hit_received_effect.hp_boost_max);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.ap_boost_min != null || this.hit_received_effect.ap_boost_max != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseCurrentAP", apJson);
|
||||||
|
if (this.hit_received_effect.ap_boost_min != null) apJson.put("min", this.hit_received_effect.ap_boost_min);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.ap_boost_max != null) apJson.put("max", this.hit_received_effect.ap_boost_max);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.hp_boost_min_target != null || this.hit_received_effect.hp_boost_max_target != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseAttackerCurrentHP", hpJson);
|
||||||
|
if (this.hit_received_effect.hp_boost_min_target != null) hpJson.put("min", this.hit_received_effect.hp_boost_min_target);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.hp_boost_max_target != null) hpJson.put("max", this.hit_received_effect.hp_boost_max_target);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.ap_boost_min_target != null || this.hit_received_effect.ap_boost_max_target != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseAttackerCurrentAP", apJson);
|
||||||
|
if (this.hit_received_effect.ap_boost_min_target != null) apJson.put("min", this.hit_received_effect.ap_boost_min_target);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.ap_boost_max_target != null) apJson.put("max", this.hit_received_effect.ap_boost_max_target);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.conditions_source != null) {
|
||||||
|
List conditionsSourceJson = new ArrayList();
|
||||||
|
hitReceivedEffectJson.put("conditionsSource", conditionsSourceJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_received_effect.conditions_source) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsSourceJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.conditions_target != null) {
|
||||||
|
List conditionsTargetJson = new ArrayList();
|
||||||
|
hitReceivedEffectJson.put("conditionsTarget", conditionsTargetJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_received_effect.conditions_target) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsTargetJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.kill_effect != null) {
|
||||||
|
Map killEffectJson = new LinkedHashMap();
|
||||||
if (this.category != null && this.category.action_type != null && this.category.action_type == ItemCategory.ActionType.equip) {
|
if (this.category != null && this.category.action_type != null && this.category.action_type == ItemCategory.ActionType.equip) {
|
||||||
key = "killEffect";
|
itemJson.put("killEffect", killEffectJson);
|
||||||
} else if (this.category != null && this.category.action_type != null && this.category.action_type == ItemCategory.ActionType.use) {
|
} else if (this.category != null && this.category.action_type != null && this.category.action_type == ItemCategory.ActionType.use) {
|
||||||
key = "useEffect";
|
itemJson.put("useEffect", killEffectJson);
|
||||||
} else {
|
}
|
||||||
System.out.println("Could not create JSON-Map for Item: Failed to determine if the item should be used or equipped.");
|
if (this.kill_effect.hp_boost_min != null || this.kill_effect.hp_boost_max != null) {
|
||||||
key = null;
|
Map hpJson = new LinkedHashMap();
|
||||||
|
killEffectJson.put("increaseCurrentHP", hpJson);
|
||||||
|
if (this.kill_effect.hp_boost_min != null) hpJson.put("min", this.kill_effect.hp_boost_min);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.kill_effect.hp_boost_max != null) hpJson.put("max", this.kill_effect.hp_boost_max);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
}
|
||||||
|
if (this.kill_effect.ap_boost_min != null || this.kill_effect.ap_boost_max != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
killEffectJson.put("increaseCurrentAP", apJson);
|
||||||
|
if (this.kill_effect.ap_boost_min != null) apJson.put("min", this.kill_effect.ap_boost_min);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.kill_effect.ap_boost_max != null) apJson.put("max", this.kill_effect.ap_boost_max);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.kill_effect.conditions_source != null) {
|
||||||
|
List conditionsSourceJson = new ArrayList();
|
||||||
|
killEffectJson.put("conditionsSource", conditionsSourceJson);
|
||||||
|
for (TimedConditionEffect condition : this.kill_effect.conditions_source) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsSourceJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (key != null) {
|
|
||||||
writeDeathEffectToMap(itemJson, this.kill_effect, key);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return itemJson;
|
return itemJson;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "itemlist_" + getProject().name + ".json";
|
return "itemlist_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer computePrice() {
|
public Integer computePrice() {
|
||||||
@@ -446,7 +831,7 @@ public class Item extends JSONElement {
|
|||||||
if (category.action_type == ItemCategory.ActionType.use) {
|
if (category.action_type == ItemCategory.ActionType.use) {
|
||||||
price += kill_effect == null ? 0 : calculateUseCost();
|
price += kill_effect == null ? 0 : calculateUseCost();
|
||||||
} else if (category.action_type == ItemCategory.ActionType.equip) {
|
} else if (category.action_type == ItemCategory.ActionType.equip) {
|
||||||
price += equip_effect == null ? 0 : calculateEquipCost(isWeapon());
|
price += equip_effect == null ? 0 : calculateEquipCost(isWeapon());;
|
||||||
price += hit_effect == null ? 0 : calculateHitCost();
|
price += hit_effect == null ? 0 : calculateHitCost();
|
||||||
price += kill_effect == null ? 0 : calculateKillCost();
|
price += kill_effect == null ? 0 : calculateKillCost();
|
||||||
}
|
}
|
||||||
@@ -469,31 +854,30 @@ public class Item extends JSONElement {
|
|||||||
public int calculateUseCost() {
|
public int calculateUseCost() {
|
||||||
final float averageHPBoost = (zeroForNull(kill_effect.hp_boost_min) + zeroForNull(kill_effect.hp_boost_max)) / 2.0f;
|
final float averageHPBoost = (zeroForNull(kill_effect.hp_boost_min) + zeroForNull(kill_effect.hp_boost_max)) / 2.0f;
|
||||||
if (averageHPBoost == 0) return 0;
|
if (averageHPBoost == 0) return 0;
|
||||||
return (int) (0.1 * Math.signum(averageHPBoost) * Math.pow(Math.abs(averageHPBoost), 2) + 3 * averageHPBoost);
|
return (int) (0.1*Math.signum(averageHPBoost)*Math.pow(Math.abs(averageHPBoost), 2) + 3*averageHPBoost);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int calculateEquipCost(boolean isWeapon) {
|
public int calculateEquipCost(boolean isWeapon) {
|
||||||
final int costBC = (int) (3 * Math.pow(Math.max(0, zeroForNull(equip_effect.increase_block_chance)), 2.5) + 28 * zeroForNull(equip_effect.increase_block_chance));
|
final int costBC = (int) (3*Math.pow(Math.max(0, zeroForNull(equip_effect.increase_block_chance)), 2.5) + 28*zeroForNull(equip_effect.increase_block_chance));
|
||||||
final int costAC = (int) (0.4 * Math.pow(Math.max(0, zeroForNull(equip_effect.increase_attack_chance)), 2.5) - 6 * Math.pow(
|
final int costAC = (int) (0.4*Math.pow(Math.max(0,zeroForNull(equip_effect.increase_attack_chance)), 2.5) - 6*Math.pow(Math.abs(Math.min(0,zeroForNull(equip_effect.increase_attack_chance))),2.7));
|
||||||
Math.abs(Math.min(0, zeroForNull(equip_effect.increase_attack_chance))), 2.7));
|
|
||||||
final int costAP = isWeapon ?
|
final int costAP = isWeapon ?
|
||||||
(int) (0.2 * Math.pow(10.0f / zeroForNull(equip_effect.increase_attack_cost), 8) - 25 * zeroForNull(equip_effect.increase_attack_cost))
|
(int) (0.2*Math.pow(10.0f/zeroForNull(equip_effect.increase_attack_cost), 8) - 25*zeroForNull(equip_effect.increase_attack_cost))
|
||||||
: -3125 * zeroForNull(equip_effect.increase_attack_cost);
|
:-3125 * zeroForNull(equip_effect.increase_attack_cost);
|
||||||
final int costDR = 1325 * zeroForNull(equip_effect.increase_damage_resistance);
|
final int costDR = 1325 * zeroForNull(equip_effect.increase_damage_resistance);
|
||||||
final int costDMG_Min = isWeapon ?
|
final int costDMG_Min = isWeapon ?
|
||||||
(int) (10 * Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_min)), 2.5))
|
(int) (10*Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_min)), 2.5))
|
||||||
: (int) (10 * Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_min)), 3) + zeroForNull(equip_effect.damage_boost_min) * 80);
|
:(int) (10*Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_min)), 3) + zeroForNull(equip_effect.damage_boost_min)*80);
|
||||||
final int costDMG_Max = isWeapon ?
|
final int costDMG_Max = isWeapon ?
|
||||||
(int) (2 * Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_max)), 2.1))
|
(int) (2*Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_max)), 2.1))
|
||||||
: (int) (2 * Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_max)), 3) + zeroForNull(equip_effect.damage_boost_max) * 20);
|
:(int) (2*Math.pow(Math.max(0, zeroForNull(equip_effect.damage_boost_max)), 3) + zeroForNull(equip_effect.damage_boost_max)*20);
|
||||||
final int costCS = (int) (2.2 * Math.pow(zeroForNull(equip_effect.increase_critical_skill), 3));
|
final int costCS = (int) (2.2*Math.pow(zeroForNull(equip_effect.increase_critical_skill), 3));
|
||||||
final int costCM = (int) (50 * Math.pow(Math.max(0, zeroForNull(equip_effect.critical_multiplier)), 2));
|
final int costCM = (int) (50*Math.pow(Math.max(0, zeroForNull(equip_effect.critical_multiplier)), 2));
|
||||||
|
|
||||||
final int costMaxHP = (int) (30 * Math.pow(Math.max(0, zeroForNull(equip_effect.max_hp_boost)), 1.2) + 70 * zeroForNull(equip_effect.max_hp_boost));
|
final int costMaxHP = (int) (30*Math.pow(Math.max(0,zeroForNull(equip_effect.max_hp_boost)), 1.2) + 70*zeroForNull(equip_effect.max_hp_boost));
|
||||||
final int costMaxAP = (int) (50 * Math.pow(Math.max(0, zeroForNull(equip_effect.max_ap_boost)), 3) + 750 * zeroForNull(equip_effect.max_ap_boost));
|
final int costMaxAP = (int) (50*Math.pow(Math.max(0,zeroForNull(equip_effect.max_ap_boost)), 3) + 750*zeroForNull(equip_effect.max_ap_boost));
|
||||||
final int costMovement = (int) (510 * Math.pow(Math.max(0, -zeroForNull(equip_effect.increase_move_cost)), 2.5) - 350 * zeroForNull(equip_effect.increase_move_cost));
|
final int costMovement = (int) (510*Math.pow(Math.max(0,-zeroForNull(equip_effect.increase_move_cost)), 2.5) - 350*zeroForNull(equip_effect.increase_move_cost));
|
||||||
final int costUseItem = (int) (915 * Math.pow(Math.max(0, -zeroForNull(equip_effect.increase_use_item_cost)), 3) - 430 * zeroForNull(equip_effect.increase_use_item_cost));
|
final int costUseItem = (int)(915*Math.pow(Math.max(0,-zeroForNull(equip_effect.increase_use_item_cost)), 3) - 430*zeroForNull(equip_effect.increase_use_item_cost));
|
||||||
final int costReequip = (int) (450 * Math.pow(Math.max(0, -zeroForNull(equip_effect.increase_reequip_cost)), 2) - 250 * zeroForNull(equip_effect.increase_reequip_cost));
|
final int costReequip = (int)(450*Math.pow(Math.max(0,-zeroForNull(equip_effect.increase_reequip_cost)), 2) - 250*zeroForNull(equip_effect.increase_reequip_cost));
|
||||||
|
|
||||||
return costBC + costAC + costAP + costDR + costDMG_Min + costDMG_Max + costCS + costCM
|
return costBC + costAC + costAP + costDR + costDMG_Min + costDMG_Max + costCS + costCM
|
||||||
+ costMaxHP + costMaxAP
|
+ costMaxHP + costMaxAP
|
||||||
@@ -506,8 +890,8 @@ public class Item extends JSONElement {
|
|||||||
final float averageAPBoost = (zeroForNull(hit_effect.ap_boost_min) + zeroForNull(hit_effect.ap_boost_max)) / 2.0f;
|
final float averageAPBoost = (zeroForNull(hit_effect.ap_boost_min) + zeroForNull(hit_effect.ap_boost_max)) / 2.0f;
|
||||||
if (averageHPBoost == 0 && averageAPBoost == 0) return 0;
|
if (averageHPBoost == 0 && averageAPBoost == 0) return 0;
|
||||||
|
|
||||||
final int costBoostHP = (int) (2770 * Math.pow(Math.max(0, averageHPBoost), 2.5) + 450 * averageHPBoost);
|
final int costBoostHP = (int)(2770*Math.pow(Math.max(0,averageHPBoost), 2.5) + 450*averageHPBoost);
|
||||||
final int costBoostAP = (int) (3100 * Math.pow(Math.max(0, averageAPBoost), 2.5) + 300 * averageAPBoost);
|
final int costBoostAP = (int)(3100*Math.pow(Math.max(0,averageAPBoost), 2.5) + 300*averageAPBoost);
|
||||||
return costBoostHP + costBoostAP;
|
return costBoostHP + costBoostAP;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -516,8 +900,8 @@ public class Item extends JSONElement {
|
|||||||
final float averageAPBoost = (zeroForNull(kill_effect.ap_boost_min) + zeroForNull(kill_effect.ap_boost_max)) / 2.0f;
|
final float averageAPBoost = (zeroForNull(kill_effect.ap_boost_min) + zeroForNull(kill_effect.ap_boost_max)) / 2.0f;
|
||||||
if (averageHPBoost == 0 && averageAPBoost == 0) return 0;
|
if (averageHPBoost == 0 && averageAPBoost == 0) return 0;
|
||||||
|
|
||||||
final int costBoostHP = (int) (923 * Math.pow(Math.max(0, averageHPBoost), 2.5) + 450 * averageHPBoost);
|
final int costBoostHP = (int)(923*Math.pow(Math.max(0,averageHPBoost), 2.5) + 450*averageHPBoost);
|
||||||
final int costBoostAP = (int) (1033 * Math.pow(Math.max(0, averageAPBoost), 2.5) + 300 * averageAPBoost);
|
final int costBoostAP = (int)(1033*Math.pow(Math.max(0,averageAPBoost), 2.5) + 300*averageAPBoost);
|
||||||
return costBoostHP + costBoostAP;
|
return costBoostHP + costBoostAP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.FileReader;
|
import java.io.FileReader;
|
||||||
@@ -16,6 +9,15 @@ import java.util.LinkedHashMap;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
|
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
|
|
||||||
public class ItemCategory extends JSONElement {
|
public class ItemCategory extends JSONElement {
|
||||||
|
|
||||||
private static final long serialVersionUID = -348864002519568300L;
|
private static final long serialVersionUID = -348864002519568300L;
|
||||||
@@ -97,7 +99,7 @@ public class ItemCategory extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + name + " (" + id + ")";
|
return (needsSaving() ? "*" : "")+name+" ("+id+")";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getStaticDesc() {
|
public static String getStaticDesc() {
|
||||||
@@ -113,7 +115,7 @@ public class ItemCategory extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List itemCategories = (List) parser.parse(reader);
|
List itemCategories = (List) parser.parse(reader);
|
||||||
for (Object obj : itemCategories) {
|
for (Object obj : itemCategories) {
|
||||||
Map itemCatJson = (Map) obj;
|
Map itemCatJson = (Map)obj;
|
||||||
ItemCategory itemCat = fromJson(itemCatJson);
|
ItemCategory itemCat = fromJson(itemCatJson);
|
||||||
itemCat.jsonFile = jsonFile;
|
itemCat.jsonFile = jsonFile;
|
||||||
itemCat.parent = category;
|
itemCat.parent = category;
|
||||||
@@ -123,13 +125,13 @@ public class ItemCategory extends JSONElement {
|
|||||||
category.add(itemCat);
|
category.add(itemCat);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -154,16 +156,14 @@ public class ItemCategory extends JSONElement {
|
|||||||
ItemCategory itemCat = new ItemCategory();
|
ItemCategory itemCat = new ItemCategory();
|
||||||
itemCat.id = (String) itemCatJson.get("id");
|
itemCat.id = (String) itemCatJson.get("id");
|
||||||
itemCat.name = (String) itemCatJson.get("name");
|
itemCat.name = (String) itemCatJson.get("name");
|
||||||
if (itemCatJson.get("inventorySlot") != null)
|
if (itemCatJson.get("inventorySlot") != null) itemCat.slot = InventorySlot.valueOf((String) itemCatJson.get("inventorySlot"));
|
||||||
itemCat.slot = InventorySlot.valueOf((String) itemCatJson.get("inventorySlot"));
|
|
||||||
return itemCat;
|
return itemCat;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
@Override
|
@Override
|
||||||
public void parse(Map itemCatJson) {
|
public void parse(Map itemCatJson) {
|
||||||
if (itemCatJson.get("actionType") != null)
|
if (itemCatJson.get("actionType") != null) action_type = ActionType.valueOf((String) itemCatJson.get("actionType"));
|
||||||
action_type = ActionType.valueOf((String) itemCatJson.get("actionType"));
|
|
||||||
if (itemCatJson.get("size") != null) size = Size.valueOf((String) itemCatJson.get("size"));
|
if (itemCatJson.get("size") != null) size = Size.valueOf((String) itemCatJson.get("size"));
|
||||||
this.state = State.parsed;
|
this.state = State.parsed;
|
||||||
|
|
||||||
@@ -171,10 +171,17 @@ public class ItemCategory extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
|
|
||||||
//Nothing to link to :D
|
//Nothing to link to :D
|
||||||
this.state = State.linked;
|
this.state = State.linked;
|
||||||
@@ -257,7 +264,7 @@ public class ItemCategory extends JSONElement {
|
|||||||
} catch (NoSuchFieldException e) {
|
} catch (NoSuchFieldException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Failed to load item category icon " + res);
|
Notification.addError("Failed to load item category icon "+res);
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -300,7 +307,7 @@ public class ItemCategory extends JSONElement {
|
|||||||
// Nothing to link to.
|
// Nothing to link to.
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map itemCatJson = new LinkedHashMap();
|
Map itemCatJson = new LinkedHashMap();
|
||||||
@@ -315,7 +322,7 @@ public class ItemCategory extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "itemcategories_" + getProject().name + ".json";
|
return "itemcategories_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,21 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileReader;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.JSONObject;
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.io.JsonPrettyWriter;
|
import com.gpl.rpg.atcontentstudio.io.JsonPrettyWriter;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
||||||
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
|
||||||
import org.json.simple.JSONObject;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public abstract class JSONElement extends GameDataElement {
|
public abstract class JSONElement extends GameDataElement {
|
||||||
|
|
||||||
@@ -22,7 +26,8 @@ public abstract class JSONElement extends GameDataElement {
|
|||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
public void parse() {
|
public void parse() {
|
||||||
if (shouldSkipParse()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
JSONParser parser = new JSONParser();
|
JSONParser parser = new JSONParser();
|
||||||
@@ -31,31 +36,22 @@ public abstract class JSONElement extends GameDataElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List gameDataElements = (List) parser.parse(reader);
|
List gameDataElements = (List) parser.parse(reader);
|
||||||
for (Object obj : gameDataElements) {
|
for (Object obj : gameDataElements) {
|
||||||
Map jsonObj = (Map) obj;
|
Map jsonObj = (Map)obj;
|
||||||
String id = (String) jsonObj.get("id");
|
String id = (String) jsonObj.get("id");
|
||||||
try {
|
if (id != null && id.equals(this.id )) {
|
||||||
if (id != null && id.equals(this.id)) {
|
|
||||||
this.parse(jsonObj);
|
this.parse(jsonObj);
|
||||||
this.state = State.parsed;
|
this.state = State.parsed;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
|
||||||
System.out.println("Error in ID: " + id);
|
|
||||||
System.out.println(e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
System.out.println(id);
|
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -72,11 +68,16 @@ public abstract class JSONElement extends GameDataElement {
|
|||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
public abstract Map toJson();
|
public abstract Map toJson();
|
||||||
|
|
||||||
public String toJsonString() {
|
public String toJsonString() {
|
||||||
Map json = this.toJson();
|
StringWriter writer = new JsonPrettyWriter();
|
||||||
return FileUtils.toJsonString(json);
|
try {
|
||||||
|
JSONObject.writeJSONString(this.toJson(), writer);
|
||||||
|
} catch (IOException e) {
|
||||||
|
//Impossible with a StringWriter
|
||||||
}
|
}
|
||||||
|
return writer.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GameDataSet getDataSet() {
|
public GameDataSet getDataSet() {
|
||||||
@@ -88,7 +89,7 @@ public abstract class JSONElement extends GameDataElement {
|
|||||||
|
|
||||||
public void save() {
|
public void save() {
|
||||||
if (this.getParent() instanceof GameDataCategory<?> && writable) {
|
if (this.getParent() instanceof GameDataCategory<?> && writable) {
|
||||||
((GameDataCategory<?>) this.getParent()).save(this.jsonFile);
|
((GameDataCategory<?>)this.getParent()).save(this.jsonFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -96,7 +97,7 @@ public abstract class JSONElement extends GameDataElement {
|
|||||||
* Returns null if save occurred (no notable events).
|
* Returns null if save occurred (no notable events).
|
||||||
*/
|
*/
|
||||||
public List<SaveEvent> attemptSave() {
|
public List<SaveEvent> attemptSave() {
|
||||||
List<SaveEvent> events = ((GameDataCategory<?>) this.getParent()).attemptSave(true, this.jsonFile.getName());
|
List<SaveEvent> events = ((GameDataCategory<?>)this.getParent()).attemptSave(true, this.jsonFile.getName());
|
||||||
if (events == null || events.isEmpty()) {
|
if (events == null || events.isEmpty()) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -131,20 +132,18 @@ public abstract class JSONElement extends GameDataElement {
|
|||||||
double a = 1;
|
double a = 1;
|
||||||
try {
|
try {
|
||||||
a = Integer.parseInt(s.substring(0, c));
|
a = Integer.parseInt(s.substring(0, c));
|
||||||
} catch (NumberFormatException nfe) {
|
} catch (NumberFormatException nfe) {}
|
||||||
}
|
|
||||||
double b = 100;
|
double b = 100;
|
||||||
try {
|
try {
|
||||||
b = Integer.parseInt(s.substring(c + 1));
|
b = Integer.parseInt(s.substring(c+1));
|
||||||
} catch (NumberFormatException nfe) {
|
} catch (NumberFormatException nfe) {}
|
||||||
|
return a/b;
|
||||||
}
|
}
|
||||||
return a / b;
|
else {
|
||||||
} else {
|
|
||||||
double a = 10;
|
double a = 10;
|
||||||
try {
|
try {
|
||||||
a = Double.parseDouble(s);
|
a = Double.parseDouble(s);
|
||||||
} catch (NumberFormatException nfe) {
|
} catch (NumberFormatException nfe) {}
|
||||||
}
|
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileReader;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.FileReader;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.LinkedHashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import static com.gpl.rpg.atcontentstudio.model.gamedata.Common.*;
|
|
||||||
|
|
||||||
public class NPC extends JSONElement {
|
public class NPC extends JSONElement {
|
||||||
|
|
||||||
@@ -38,7 +38,6 @@ public class NPC extends JSONElement {
|
|||||||
public Integer attack_damage_min = null;
|
public Integer attack_damage_min = null;
|
||||||
public String spawngroup_id = null;
|
public String spawngroup_id = null;
|
||||||
public String faction_id = null;
|
public String faction_id = null;
|
||||||
public Integer horizontalFlipChance = null;
|
|
||||||
public String dialogue_id = null;
|
public String dialogue_id = null;
|
||||||
public String droplist_id = null;
|
public String droplist_id = null;
|
||||||
public Integer attack_cost = null;
|
public Integer attack_cost = null;
|
||||||
@@ -74,9 +73,43 @@ public class NPC extends JSONElement {
|
|||||||
wholeMap
|
wholeMap
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static class DeathEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer hp_boost_min = null;
|
||||||
|
public Integer hp_boost_max = null;
|
||||||
|
public Integer ap_boost_min = null;
|
||||||
|
public Integer ap_boost_max = null;
|
||||||
|
public List<TimedConditionEffect> conditions_source = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class HitEffect extends DeathEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public List<TimedConditionEffect> conditions_target = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class HitReceivedEffect extends HitEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer hp_boost_min_target = null;
|
||||||
|
public Integer hp_boost_max_target = null;
|
||||||
|
public Integer ap_boost_min_target = null;
|
||||||
|
public Integer ap_boost_max_target = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class TimedConditionEffect {
|
||||||
|
//Available from parsed state
|
||||||
|
public Integer magnitude = null;
|
||||||
|
public String condition_id = null;
|
||||||
|
public Integer duration = null;
|
||||||
|
public Double chance = null;
|
||||||
|
|
||||||
|
//Available from linked state
|
||||||
|
public ActorCondition condition = null;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + name + " (" + id + ")";
|
return (needsSaving() ? "*" : "")+name+" ("+id+")";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getStaticDesc() {
|
public static String getStaticDesc() {
|
||||||
@@ -92,7 +125,7 @@ public class NPC extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List npcs = (List) parser.parse(reader);
|
List npcs = (List) parser.parse(reader);
|
||||||
for (Object obj : npcs) {
|
for (Object obj : npcs) {
|
||||||
Map npcJson = (Map) obj;
|
Map npcJson = (Map)obj;
|
||||||
NPC npc = fromJson(npcJson);
|
NPC npc = fromJson(npcJson);
|
||||||
npc.jsonFile = jsonFile;
|
npc.jsonFile = jsonFile;
|
||||||
npc.parent = category;
|
npc.parent = category;
|
||||||
@@ -102,13 +135,13 @@ public class NPC extends JSONElement {
|
|||||||
category.add(npc);
|
category.add(npc);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -146,17 +179,14 @@ public class NPC extends JSONElement {
|
|||||||
this.max_ap = JSONElement.getInteger((Number) npcJson.get("maxAP"));
|
this.max_ap = JSONElement.getInteger((Number) npcJson.get("maxAP"));
|
||||||
this.move_cost = JSONElement.getInteger((Number) npcJson.get("moveCost"));
|
this.move_cost = JSONElement.getInteger((Number) npcJson.get("moveCost"));
|
||||||
this.unique = JSONElement.getInteger((Number) npcJson.get("unique"));
|
this.unique = JSONElement.getInteger((Number) npcJson.get("unique"));
|
||||||
if (npcJson.get("monsterClass") != null)
|
if (npcJson.get("monsterClass") != null) this.monster_class = MonsterClass.valueOf((String) npcJson.get("monsterClass"));
|
||||||
this.monster_class = MonsterClass.valueOf((String) npcJson.get("monsterClass"));
|
if (npcJson.get("movementAggressionType") != null) this.movement_type = MovementType.valueOf((String) npcJson.get("movementAggressionType"));
|
||||||
if (npcJson.get("movementAggressionType") != null)
|
|
||||||
this.movement_type = MovementType.valueOf((String) npcJson.get("movementAggressionType"));
|
|
||||||
if (npcJson.get("attackDamage") != null) {
|
if (npcJson.get("attackDamage") != null) {
|
||||||
this.attack_damage_min = JSONElement.getInteger((Number) (((Map) npcJson.get("attackDamage")).get("min")));
|
this.attack_damage_min = JSONElement.getInteger((Number) (((Map)npcJson.get("attackDamage")).get("min")));
|
||||||
this.attack_damage_max = JSONElement.getInteger((Number) (((Map) npcJson.get("attackDamage")).get("max")));
|
this.attack_damage_max = JSONElement.getInteger((Number) (((Map)npcJson.get("attackDamage")).get("max")));
|
||||||
}
|
}
|
||||||
this.spawngroup_id = (String) npcJson.get("spawnGroup");
|
this.spawngroup_id = (String) npcJson.get("spawnGroup");
|
||||||
this.faction_id = (String) npcJson.get("faction");
|
this.faction_id = (String) npcJson.get("faction");
|
||||||
this.horizontalFlipChance = JSONElement.getInteger((Number) npcJson.get("horizontalFlipChance"));
|
|
||||||
this.dialogue_id = (String) npcJson.get("phraseID");
|
this.dialogue_id = (String) npcJson.get("phraseID");
|
||||||
this.droplist_id = (String) npcJson.get("droplistID");
|
this.droplist_id = (String) npcJson.get("droplistID");
|
||||||
this.attack_cost = JSONElement.getInteger((Number) npcJson.get("attackCost"));
|
this.attack_cost = JSONElement.getInteger((Number) npcJson.get("attackCost"));
|
||||||
@@ -164,49 +194,184 @@ public class NPC extends JSONElement {
|
|||||||
this.critical_skill = JSONElement.getInteger((Number) npcJson.get("criticalSkill"));
|
this.critical_skill = JSONElement.getInteger((Number) npcJson.get("criticalSkill"));
|
||||||
//TODO correct game data, to unify format.
|
//TODO correct game data, to unify format.
|
||||||
// this.critical_multiplier = JSONElement.getDouble((Number) npcJson.get("criticalMultiplier"));
|
// this.critical_multiplier = JSONElement.getDouble((Number) npcJson.get("criticalMultiplier"));
|
||||||
if (npcJson.get("criticalMultiplier") != null)
|
if (npcJson.get("criticalMultiplier") != null) this.critical_multiplier = JSONElement.getDouble(Double.parseDouble(npcJson.get("criticalMultiplier").toString()));
|
||||||
this.critical_multiplier = JSONElement.getDouble(Double.parseDouble(npcJson.get("criticalMultiplier").toString()));
|
|
||||||
|
|
||||||
this.block_chance = JSONElement.getInteger((Number) npcJson.get("blockChance"));
|
this.block_chance = JSONElement.getInteger((Number) npcJson.get("blockChance"));
|
||||||
this.damage_resistance = JSONElement.getInteger((Number) npcJson.get("damageResistance"));
|
this.damage_resistance = JSONElement.getInteger((Number) npcJson.get("damageResistance"));
|
||||||
|
|
||||||
Map hitEffect = (Map) npcJson.get("hitEffect");
|
Map hitEffect = (Map) npcJson.get("hitEffect");
|
||||||
if (hitEffect != null) {
|
if (hitEffect != null) {
|
||||||
this.hit_effect = parseHitEffect(hitEffect);
|
this.hit_effect = new HitEffect();
|
||||||
|
if (hitEffect.get("increaseCurrentHP") != null) {
|
||||||
|
this.hit_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentHP")).get("max")));
|
||||||
|
this.hit_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentHP")).get("min")));
|
||||||
|
}
|
||||||
|
if (hitEffect.get("increaseCurrentAP") != null) {
|
||||||
|
this.hit_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentAP")).get("max")));
|
||||||
|
this.hit_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)hitEffect.get("increaseCurrentAP")).get("min")));
|
||||||
|
}
|
||||||
|
List conditionsSourceJson = (List) hitEffect.get("conditionsSource");
|
||||||
|
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
||||||
|
this.hit_effect.conditions_source = new ArrayList<NPC.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsSourceJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_effect.conditions_source.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List conditionsTargetJson = (List) hitEffect.get("conditionsTarget");
|
||||||
|
if (conditionsTargetJson != null && !conditionsTargetJson.isEmpty()) {
|
||||||
|
this.hit_effect.conditions_target = new ArrayList<NPC.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsTargetJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_effect.conditions_target.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Map hitReceivedEffect = (Map) npcJson.get("hitReceivedEffect");
|
Map hitReceivedEffect = (Map) npcJson.get("hitReceivedEffect");
|
||||||
if (hitReceivedEffect != null) {
|
if (hitReceivedEffect != null) {
|
||||||
this.hit_received_effect = parseHitReceivedEffect(hitReceivedEffect);
|
this.hit_received_effect = new HitReceivedEffect();
|
||||||
|
if (hitReceivedEffect.get("increaseCurrentHP") != null) {
|
||||||
|
this.hit_received_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentHP")).get("max")));
|
||||||
|
this.hit_received_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentHP")).get("min")));
|
||||||
|
}
|
||||||
|
if (hitReceivedEffect.get("increaseCurrentAP") != null) {
|
||||||
|
this.hit_received_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentAP")).get("max")));
|
||||||
|
this.hit_received_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseCurrentAP")).get("min")));
|
||||||
|
}
|
||||||
|
if (hitReceivedEffect.get("increaseAttackerCurrentHP") != null) {
|
||||||
|
this.hit_received_effect.hp_boost_max_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentHP")).get("max")));
|
||||||
|
this.hit_received_effect.hp_boost_min_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentHP")).get("min")));
|
||||||
|
}
|
||||||
|
if (hitReceivedEffect.get("increaseAttackerCurrentAP") != null) {
|
||||||
|
this.hit_received_effect.ap_boost_max_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentAP")).get("max")));
|
||||||
|
this.hit_received_effect.ap_boost_min_target = JSONElement.getInteger((Number) (((Map)hitReceivedEffect.get("increaseAttackerCurrentAP")).get("min")));
|
||||||
|
}
|
||||||
|
List conditionsSourceJson = (List) hitReceivedEffect.get("conditionsSource");
|
||||||
|
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
||||||
|
this.hit_received_effect.conditions_source = new ArrayList<NPC.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsSourceJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_received_effect.conditions_source.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List conditionsTargetJson = (List) hitReceivedEffect.get("conditionsTarget");
|
||||||
|
if (conditionsTargetJson != null && !conditionsTargetJson.isEmpty()) {
|
||||||
|
this.hit_received_effect.conditions_target = new ArrayList<NPC.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsTargetJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.hit_received_effect.conditions_target.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Map deathEffect = (Map) npcJson.get("deathEffect");
|
Map deathEffect = (Map) npcJson.get("deathEffect");
|
||||||
if (deathEffect != null) {
|
if (deathEffect != null) {
|
||||||
this.death_effect = parseDeathEffect(deathEffect);
|
this.death_effect = new HitEffect();
|
||||||
|
if (deathEffect.get("increaseCurrentHP") != null) {
|
||||||
|
this.death_effect.hp_boost_max = JSONElement.getInteger((Number) (((Map)deathEffect.get("increaseCurrentHP")).get("max")));
|
||||||
|
this.death_effect.hp_boost_min = JSONElement.getInteger((Number) (((Map)deathEffect.get("increaseCurrentHP")).get("min")));
|
||||||
}
|
}
|
||||||
|
if (deathEffect.get("increaseCurrentAP") != null) {
|
||||||
|
this.death_effect.ap_boost_max = JSONElement.getInteger((Number) (((Map)deathEffect.get("increaseCurrentAP")).get("max")));
|
||||||
|
this.death_effect.ap_boost_min = JSONElement.getInteger((Number) (((Map)deathEffect.get("increaseCurrentAP")).get("min")));
|
||||||
|
}
|
||||||
|
List conditionsSourceJson = (List) deathEffect.get("conditionsSource");
|
||||||
|
if (conditionsSourceJson != null && !conditionsSourceJson.isEmpty()) {
|
||||||
|
this.death_effect.conditions_source = new ArrayList<NPC.TimedConditionEffect>();
|
||||||
|
for (Object conditionJsonObj : conditionsSourceJson) {
|
||||||
|
Map conditionJson = (Map)conditionJsonObj;
|
||||||
|
TimedConditionEffect condition = new TimedConditionEffect();
|
||||||
|
condition.condition_id = (String) conditionJson.get("condition");
|
||||||
|
condition.magnitude = JSONElement.getInteger((Number) conditionJson.get("magnitude"));
|
||||||
|
condition.duration = JSONElement.getInteger((Number) conditionJson.get("duration"));
|
||||||
|
if (conditionJson.get("chance") != null) condition.chance = JSONElement.parseChance(conditionJson.get("chance").toString());
|
||||||
|
this.death_effect.conditions_source.add(condition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
Project proj = getProject();
|
Project proj = getProject();
|
||||||
if (proj == null) {
|
if (proj == null) {
|
||||||
Notification.addError("Error linking item " + id + ". No parent project found.");
|
Notification.addError("Error linking item "+id+". No parent project found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
linkIcon(proj, this.icon_id, this);
|
if (this.icon_id != null) {
|
||||||
|
String spritesheetId = this.icon_id.split(":")[0];
|
||||||
|
proj.getSpritesheet(spritesheetId).addBacklink(this);
|
||||||
|
}
|
||||||
|
|
||||||
if (this.dialogue_id != null) this.dialogue = proj.getDialogue(this.dialogue_id);
|
if (this.dialogue_id != null) this.dialogue = proj.getDialogue(this.dialogue_id);
|
||||||
if (this.dialogue != null) this.dialogue.addBacklink(this);
|
if (this.dialogue != null) this.dialogue.addBacklink(this);
|
||||||
|
|
||||||
if (this.droplist_id != null) this.droplist = proj.getDroplist(this.droplist_id);
|
if (this.droplist_id != null) this.droplist = proj.getDroplist(this.droplist_id);
|
||||||
if (this.droplist != null) this.droplist.addBacklink(this);
|
if (this.droplist != null) this.droplist.addBacklink(this);
|
||||||
|
|
||||||
linkEffects(this.hit_effect, proj, this);
|
if (this.hit_effect != null && this.hit_effect.conditions_source != null) {
|
||||||
linkEffects(this.hit_received_effect, proj, this);
|
for (TimedConditionEffect ce : this.hit_effect.conditions_source) {
|
||||||
linkEffects(this.death_effect, proj, this);
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect != null && this.hit_effect.conditions_target != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_effect.conditions_target) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect != null && this.hit_received_effect.conditions_source != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_received_effect.conditions_source) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect != null && this.hit_received_effect.conditions_target != null) {
|
||||||
|
for (TimedConditionEffect ce : this.hit_received_effect.conditions_target) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.death_effect != null && this.death_effect.conditions_source != null) {
|
||||||
|
for (TimedConditionEffect ce : this.death_effect.conditions_source) {
|
||||||
|
if (ce.condition_id != null) ce.condition = proj.getActorCondition(ce.condition_id);
|
||||||
|
if (ce.condition != null) ce.condition.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
this.state = State.linked;
|
this.state = State.linked;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -246,18 +411,105 @@ public class NPC extends JSONElement {
|
|||||||
}
|
}
|
||||||
clone.droplist_id = this.droplist_id;
|
clone.droplist_id = this.droplist_id;
|
||||||
clone.faction_id = this.faction_id;
|
clone.faction_id = this.faction_id;
|
||||||
clone.horizontalFlipChance = this.horizontalFlipChance;
|
|
||||||
if (this.hit_effect != null) {
|
if (this.hit_effect != null) {
|
||||||
clone.hit_effect = new HitEffect();
|
clone.hit_effect = new HitEffect();
|
||||||
copyHitEffectValues(clone.hit_effect, this.hit_effect, clone);
|
clone.hit_effect.ap_boost_max = this.hit_effect.ap_boost_max;
|
||||||
|
clone.hit_effect.ap_boost_min = this.hit_effect.ap_boost_min;
|
||||||
|
clone.hit_effect.hp_boost_max = this.hit_effect.hp_boost_max;
|
||||||
|
clone.hit_effect.hp_boost_min = this.hit_effect.hp_boost_min;
|
||||||
|
if (this.hit_effect.conditions_source != null) {
|
||||||
|
clone.hit_effect.conditions_source = new ArrayList<TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_effect.conditions_source) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_effect.conditions_source.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect.conditions_target != null) {
|
||||||
|
clone.hit_effect.conditions_target = new ArrayList<TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_effect.conditions_target) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_effect.conditions_target.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (this.hit_received_effect != null) {
|
if (this.hit_received_effect != null) {
|
||||||
clone.hit_received_effect = new HitReceivedEffect();
|
clone.hit_received_effect = new HitReceivedEffect();
|
||||||
copyHitReceivedEffectValues(clone.hit_received_effect, this.hit_received_effect, clone);
|
clone.hit_received_effect.ap_boost_max = this.hit_received_effect.ap_boost_max;
|
||||||
|
clone.hit_received_effect.ap_boost_min = this.hit_received_effect.ap_boost_min;
|
||||||
|
clone.hit_received_effect.hp_boost_max = this.hit_received_effect.hp_boost_max;
|
||||||
|
clone.hit_received_effect.hp_boost_min = this.hit_received_effect.hp_boost_min;
|
||||||
|
clone.hit_received_effect.ap_boost_max_target = this.hit_received_effect.ap_boost_max_target;
|
||||||
|
clone.hit_received_effect.ap_boost_min_target = this.hit_received_effect.ap_boost_min_target;
|
||||||
|
clone.hit_received_effect.hp_boost_max_target = this.hit_received_effect.hp_boost_max_target;
|
||||||
|
clone.hit_received_effect.hp_boost_min_target = this.hit_received_effect.hp_boost_min_target;
|
||||||
|
if (this.hit_received_effect.conditions_source != null) {
|
||||||
|
clone.hit_received_effect.conditions_source = new ArrayList<TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_received_effect.conditions_source) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_received_effect.conditions_source.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.conditions_target != null) {
|
||||||
|
clone.hit_received_effect.conditions_target = new ArrayList<TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.hit_received_effect.conditions_target) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.hit_received_effect.conditions_target.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (this.death_effect != null) {
|
if (this.death_effect != null) {
|
||||||
clone.death_effect = new DeathEffect();
|
clone.death_effect = new DeathEffect();
|
||||||
copyDeathEffectValues(clone.death_effect, this.death_effect, clone);
|
clone.death_effect.ap_boost_max = this.death_effect.ap_boost_max;
|
||||||
|
clone.death_effect.ap_boost_min = this.death_effect.ap_boost_min;
|
||||||
|
clone.death_effect.hp_boost_max = this.death_effect.hp_boost_max;
|
||||||
|
clone.death_effect.hp_boost_min = this.death_effect.hp_boost_min;
|
||||||
|
if (this.death_effect.conditions_source != null) {
|
||||||
|
clone.death_effect.conditions_source = new ArrayList<TimedConditionEffect>();
|
||||||
|
for (TimedConditionEffect c : this.death_effect.conditions_source) {
|
||||||
|
TimedConditionEffect cclone = new TimedConditionEffect();
|
||||||
|
cclone.magnitude = c.magnitude;
|
||||||
|
cclone.condition_id = c.condition_id;
|
||||||
|
cclone.condition = c.condition;
|
||||||
|
cclone.chance = c.chance;
|
||||||
|
cclone.duration = c.duration;
|
||||||
|
if (cclone.condition != null) {
|
||||||
|
cclone.condition.addBacklink(clone);
|
||||||
|
}
|
||||||
|
clone.death_effect.conditions_source.add(cclone);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
clone.max_ap = this.max_ap;
|
clone.max_ap = this.max_ap;
|
||||||
clone.max_hp = this.max_hp;
|
clone.max_hp = this.max_hp;
|
||||||
@@ -281,31 +533,51 @@ public class NPC extends JSONElement {
|
|||||||
this.droplist = (Droplist) newOne;
|
this.droplist = (Droplist) newOne;
|
||||||
if (newOne != null) newOne.addBacklink(this);
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
} else {
|
} else {
|
||||||
if (this.hit_effect != null) {
|
if (this.hit_effect != null && this.hit_effect.conditions_source != null) {
|
||||||
actorConditionElementChanged(this.hit_effect.conditions_source, oldOne, newOne, this);
|
for (TimedConditionEffect tce : this.hit_effect.conditions_source) {
|
||||||
actorConditionElementChanged(this.hit_effect.conditions_target, oldOne, newOne, this);
|
if (tce.condition == oldOne) {
|
||||||
|
oldOne.removeBacklink(this);
|
||||||
|
tce.condition = (ActorCondition) newOne;
|
||||||
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect != null && this.hit_effect.conditions_target != null) {
|
||||||
|
for (TimedConditionEffect tce : this.hit_effect.conditions_target) {
|
||||||
|
if (tce.condition == oldOne) {
|
||||||
|
oldOne.removeBacklink(this);
|
||||||
|
tce.condition = (ActorCondition) newOne;
|
||||||
|
if (newOne != null) newOne.addBacklink(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map npcJson = new LinkedHashMap();
|
Map npcJson = new LinkedHashMap();
|
||||||
npcJson.put("id", this.id);
|
npcJson.put("id", this.id);
|
||||||
if (this.name != null) npcJson.put("name", this.name);
|
if (this.name != null) npcJson.put("name", this.name);
|
||||||
writeIconToMap(npcJson, this.icon_id);
|
if (this.icon_id != null) npcJson.put("iconID", this.icon_id);
|
||||||
if (this.max_hp != null) npcJson.put("maxHP", this.max_hp);
|
if (this.max_hp != null) npcJson.put("maxHP", this.max_hp);
|
||||||
if (this.max_ap != null) npcJson.put("maxAP", this.max_ap);
|
if (this.max_ap != null) npcJson.put("maxAP", this.max_ap);
|
||||||
if (this.move_cost != null) npcJson.put("moveCost", this.move_cost);
|
if (this.move_cost != null) npcJson.put("moveCost", this.move_cost);
|
||||||
if (this.unique != null) npcJson.put("unique", this.unique);
|
if (this.unique != null) npcJson.put("unique", this.unique);
|
||||||
if (this.monster_class != null) npcJson.put("monsterClass", this.monster_class.toString());
|
if (this.monster_class != null) npcJson.put("monsterClass", this.monster_class.toString());
|
||||||
if (this.movement_type != null) npcJson.put("movementAggressionType", this.movement_type.toString());
|
if (this.movement_type != null) npcJson.put("movementAggressionType", this.movement_type.toString());
|
||||||
writeMinMaxToMap(npcJson, "attackDamage", this.attack_damage_min, attack_damage_max, 0);
|
if (this.attack_damage_min != null || this.attack_damage_max != null) {
|
||||||
|
Map adJson = new LinkedHashMap();
|
||||||
|
npcJson.put("attackDamage", adJson);
|
||||||
|
if (this.attack_damage_min != null) adJson.put("min", this.attack_damage_min);
|
||||||
|
else adJson.put("min", 0);
|
||||||
|
if (this.attack_damage_max != null) adJson.put("max", this.attack_damage_max);
|
||||||
|
else adJson.put("max", 0);
|
||||||
|
}
|
||||||
if (this.spawngroup_id != null) npcJson.put("spawnGroup", this.spawngroup_id);
|
if (this.spawngroup_id != null) npcJson.put("spawnGroup", this.spawngroup_id);
|
||||||
if (this.faction_id != null) npcJson.put("faction", this.faction_id);
|
if (this.faction_id != null) npcJson.put("faction", this.faction_id);
|
||||||
if (this.horizontalFlipChance != null) npcJson.put("horizontalFlipChance", this.horizontalFlipChance);
|
|
||||||
if (this.dialogue != null) {
|
if (this.dialogue != null) {
|
||||||
npcJson.put("phraseID", this.dialogue.id);
|
npcJson.put("phraseID", this.dialogue.id);
|
||||||
} else if (this.dialogue_id != null) {
|
} else if (this.dialogue_id != null) {
|
||||||
@@ -322,34 +594,186 @@ public class NPC extends JSONElement {
|
|||||||
if (this.critical_multiplier != null) npcJson.put("criticalMultiplier", this.critical_multiplier);
|
if (this.critical_multiplier != null) npcJson.put("criticalMultiplier", this.critical_multiplier);
|
||||||
if (this.block_chance != null) npcJson.put("blockChance", this.block_chance);
|
if (this.block_chance != null) npcJson.put("blockChance", this.block_chance);
|
||||||
if (this.damage_resistance != null) npcJson.put("damageResistance", this.damage_resistance);
|
if (this.damage_resistance != null) npcJson.put("damageResistance", this.damage_resistance);
|
||||||
writeHitEffectToMap(npcJson, this.hit_effect, "hitEffect");
|
if (this.hit_effect != null) {
|
||||||
writeHitReceivedEffectToMap(npcJson, this.hit_received_effect, "hitReceivedEffect");
|
Map hitEffectJson = new LinkedHashMap();
|
||||||
writeDeathEffectToMap(npcJson, this.death_effect, "deathEffect");
|
npcJson.put("hitEffect", hitEffectJson);
|
||||||
|
if (this.hit_effect.hp_boost_min != null || this.hit_effect.hp_boost_max != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
|
hitEffectJson.put("increaseCurrentHP", hpJson);
|
||||||
|
if (this.hit_effect.hp_boost_min != null) hpJson.put("min", this.hit_effect.hp_boost_min);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.hit_effect.hp_boost_max != null) hpJson.put("max", this.hit_effect.hp_boost_max);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_effect.ap_boost_min != null || this.hit_effect.ap_boost_max != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
hitEffectJson.put("increaseCurrentAP", apJson);
|
||||||
|
if (this.hit_effect.ap_boost_min != null) apJson.put("min", this.hit_effect.ap_boost_min);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.hit_effect.ap_boost_max != null) apJson.put("max", this.hit_effect.ap_boost_max);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_effect.conditions_source != null) {
|
||||||
|
List conditionsSourceJson = new ArrayList();
|
||||||
|
hitEffectJson.put("conditionsSource", conditionsSourceJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_effect.conditions_source) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsSourceJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_effect.conditions_target != null) {
|
||||||
|
List conditionsTargetJson = new ArrayList();
|
||||||
|
hitEffectJson.put("conditionsTarget", conditionsTargetJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_effect.conditions_target) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsTargetJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect != null) {
|
||||||
|
Map hitReceivedEffectJson = new LinkedHashMap();
|
||||||
|
npcJson.put("hitReceivedEffect", hitReceivedEffectJson);
|
||||||
|
if (this.hit_received_effect.hp_boost_min != null || this.hit_received_effect.hp_boost_max != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseCurrentHP", hpJson);
|
||||||
|
if (this.hit_received_effect.hp_boost_min != null) hpJson.put("min", this.hit_received_effect.hp_boost_min);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.hp_boost_max != null) hpJson.put("max", this.hit_received_effect.hp_boost_max);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.ap_boost_min != null || this.hit_received_effect.ap_boost_max != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseCurrentAP", apJson);
|
||||||
|
if (this.hit_received_effect.ap_boost_min != null) apJson.put("min", this.hit_received_effect.ap_boost_min);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.ap_boost_max != null) apJson.put("max", this.hit_received_effect.ap_boost_max);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.hp_boost_min_target != null || this.hit_received_effect.hp_boost_max_target != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseAttackerCurrentHP", hpJson);
|
||||||
|
if (this.hit_received_effect.hp_boost_min_target != null) hpJson.put("min", this.hit_received_effect.hp_boost_min_target);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.hp_boost_max_target != null) hpJson.put("max", this.hit_received_effect.hp_boost_max_target);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.ap_boost_min_target != null || this.hit_received_effect.ap_boost_max_target != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
hitReceivedEffectJson.put("increaseAttackerCurrentAP", apJson);
|
||||||
|
if (this.hit_received_effect.ap_boost_min_target != null) apJson.put("min", this.hit_received_effect.ap_boost_min_target);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.hit_received_effect.ap_boost_max_target != null) apJson.put("max", this.hit_received_effect.ap_boost_max_target);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.conditions_source != null) {
|
||||||
|
List conditionsSourceJson = new ArrayList();
|
||||||
|
hitReceivedEffectJson.put("conditionsSource", conditionsSourceJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_received_effect.conditions_source) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsSourceJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.hit_received_effect.conditions_target != null) {
|
||||||
|
List conditionsTargetJson = new ArrayList();
|
||||||
|
hitReceivedEffectJson.put("conditionsTarget", conditionsTargetJson);
|
||||||
|
for (TimedConditionEffect condition : this.hit_received_effect.conditions_target) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsTargetJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.death_effect != null) {
|
||||||
|
Map deathEffectJson = new LinkedHashMap();
|
||||||
|
npcJson.put("deathEffect", deathEffectJson);
|
||||||
|
if (this.death_effect.hp_boost_min != null || this.death_effect.hp_boost_max != null) {
|
||||||
|
Map hpJson = new LinkedHashMap();
|
||||||
|
deathEffectJson.put("increaseCurrentHP", hpJson);
|
||||||
|
if (this.death_effect.hp_boost_min != null) hpJson.put("min", this.death_effect.hp_boost_min);
|
||||||
|
else hpJson.put("min", 0);
|
||||||
|
if (this.death_effect.hp_boost_max != null) hpJson.put("max", this.death_effect.hp_boost_max);
|
||||||
|
else hpJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.death_effect.ap_boost_min != null || this.death_effect.ap_boost_max != null) {
|
||||||
|
Map apJson = new LinkedHashMap();
|
||||||
|
deathEffectJson.put("increaseCurrentAP", apJson);
|
||||||
|
if (this.death_effect.ap_boost_min != null) apJson.put("min", this.death_effect.ap_boost_min);
|
||||||
|
else apJson.put("min", 0);
|
||||||
|
if (this.death_effect.ap_boost_max != null) apJson.put("max", this.death_effect.ap_boost_max);
|
||||||
|
else apJson.put("max", 0);
|
||||||
|
}
|
||||||
|
if (this.death_effect.conditions_source != null) {
|
||||||
|
List conditionsSourceJson = new ArrayList();
|
||||||
|
deathEffectJson.put("conditionsSource", conditionsSourceJson);
|
||||||
|
for (TimedConditionEffect condition : this.death_effect.conditions_source) {
|
||||||
|
Map conditionJson = new LinkedHashMap();
|
||||||
|
conditionsSourceJson.add(conditionJson);
|
||||||
|
if (condition.condition != null) {
|
||||||
|
conditionJson.put("condition", condition.condition.id);
|
||||||
|
} else if (condition.condition_id != null) {
|
||||||
|
conditionJson.put("condition", condition.condition_id);
|
||||||
|
}
|
||||||
|
if (condition.magnitude != null) conditionJson.put("magnitude", condition.magnitude);
|
||||||
|
if (condition.duration != null) conditionJson.put("duration", condition.duration);
|
||||||
|
if (condition.chance != null) conditionJson.put("chance", JSONElement.printJsonChance(condition.chance));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return npcJson;
|
return npcJson;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "monsterlist_" + getProject().name + ".json";
|
return "monsterlist_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getMonsterExperience() {
|
public int getMonsterExperience() {
|
||||||
double EXP_FACTOR_DAMAGERESISTANCE = 9;
|
double EXP_FACTOR_DAMAGERESISTANCE = 9;
|
||||||
double EXP_FACTOR_SCALING = 0.7;
|
double EXP_FACTOR_SCALING = 0.7;
|
||||||
|
|
||||||
double attacksPerTurn = Math.floor((double) (max_ap != null ? max_ap : 10.0) / (double) (attack_cost != null ? attack_cost : 10.0));
|
double attacksPerTurn = Math.floor((double)(max_ap != null ? max_ap : 10.0) / (double)(attack_cost != null ? attack_cost : 10.0));
|
||||||
double avgDamagePotential = 0;
|
double avgDamagePotential = 0;
|
||||||
if (attack_damage_min != null || attack_damage_max != null) {
|
if (attack_damage_min != null || attack_damage_max != null) {
|
||||||
avgDamagePotential = ((double) (attack_damage_min != null ? attack_damage_min : 0) + (double) (attack_damage_max != null ? attack_damage_max : 0)) / 2.0;
|
avgDamagePotential = ((double)(attack_damage_min != null ? attack_damage_min : 0) + (double)(attack_damage_max != null ? attack_damage_max : 0)) / 2.0;
|
||||||
}
|
}
|
||||||
double avgCrit = 0;
|
double avgCrit = 0;
|
||||||
if (critical_skill != null && critical_multiplier != null) {
|
if (critical_skill != null && critical_multiplier != null) {
|
||||||
avgCrit = (double) (critical_skill / 100.0) * critical_multiplier;
|
avgCrit = (double)(critical_skill / 100.0) * critical_multiplier;
|
||||||
}
|
}
|
||||||
double avgAttackHP = attacksPerTurn * ((double) (attack_chance != null ? attack_chance : 0) / 100.0) * avgDamagePotential * (1 + avgCrit);
|
double avgAttackHP = attacksPerTurn * ((double)(attack_chance != null ? attack_chance : 0) / 100.0) * avgDamagePotential * (1 + avgCrit);
|
||||||
double avgDefenseHP = ((max_hp != null ? max_hp : 1) * (1 + ((double) (block_chance != null ? block_chance : 0) / 100.0))) +
|
double avgDefenseHP = ((max_hp != null ? max_hp : 1) * (1 + ((double)(block_chance != null ? block_chance : 0) / 100.0))) + ( EXP_FACTOR_DAMAGERESISTANCE * (damage_resistance != null ? damage_resistance : 0));
|
||||||
(EXP_FACTOR_DAMAGERESISTANCE * (damage_resistance != null ? damage_resistance : 0));
|
|
||||||
double attackConditionBonus = 0;
|
double attackConditionBonus = 0;
|
||||||
if (hit_effect != null && hit_effect.conditions_target != null && hit_effect.conditions_target.size() > 0) {
|
if (hit_effect != null && hit_effect.conditions_target != null && hit_effect.conditions_target.size() > 0) {
|
||||||
attackConditionBonus = 50;
|
attackConditionBonus = 50;
|
||||||
@@ -357,7 +781,7 @@ public class NPC extends JSONElement {
|
|||||||
double experience = (((avgAttackHP * 3) + avgDefenseHP) * EXP_FACTOR_SCALING) + attackConditionBonus;
|
double experience = (((avgAttackHP * 3) + avgDefenseHP) * EXP_FACTOR_SCALING) + attackConditionBonus;
|
||||||
|
|
||||||
return new Double(Math.ceil(experience)).intValue();
|
return new Double(Math.ceil(experience)).intValue();
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import java.awt.Image;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
import org.json.simple.parser.ParseException;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.FileReader;
|
import java.io.FileReader;
|
||||||
@@ -17,6 +10,14 @@ import java.util.LinkedHashMap;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
public class Quest extends JSONElement {
|
public class Quest extends JSONElement {
|
||||||
|
|
||||||
private static final long serialVersionUID = 2004839647483250099L;
|
private static final long serialVersionUID = 2004839647483250099L;
|
||||||
@@ -31,7 +32,7 @@ public class Quest extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + name + " (" + id + ")";
|
return (needsSaving() ? "*" : "")+name+" ("+id+")";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getStaticDesc() {
|
public static String getStaticDesc() {
|
||||||
@@ -47,7 +48,7 @@ public class Quest extends JSONElement {
|
|||||||
reader = new FileReader(jsonFile);
|
reader = new FileReader(jsonFile);
|
||||||
List quests = (List) parser.parse(reader);
|
List quests = (List) parser.parse(reader);
|
||||||
for (Object obj : quests) {
|
for (Object obj : quests) {
|
||||||
Map questJson = (Map) obj;
|
Map questJson = (Map)obj;
|
||||||
Quest quest = fromJson(questJson);
|
Quest quest = fromJson(questJson);
|
||||||
quest.jsonFile = jsonFile;
|
quest.jsonFile = jsonFile;
|
||||||
quest.parent = category;
|
quest.parent = category;
|
||||||
@@ -57,13 +58,13 @@ public class Quest extends JSONElement {
|
|||||||
category.add(quest);
|
category.add(quest);
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
Notification.addError("Error while parsing JSON file " + jsonFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while parsing JSON file "+jsonFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
@@ -101,7 +102,7 @@ public class Quest extends JSONElement {
|
|||||||
this.stages = new ArrayList<QuestStage>();
|
this.stages = new ArrayList<QuestStage>();
|
||||||
if (questStagesJson != null && !questStagesJson.isEmpty()) {
|
if (questStagesJson != null && !questStagesJson.isEmpty()) {
|
||||||
for (Object questStageJsonObj : questStagesJson) {
|
for (Object questStageJsonObj : questStagesJson) {
|
||||||
Map questStageJson = (Map) questStageJsonObj;
|
Map questStageJson = (Map)questStageJsonObj;
|
||||||
QuestStage questStage = new QuestStage(this);
|
QuestStage questStage = new QuestStage(this);
|
||||||
questStage.parse(questStageJson);
|
questStage.parse(questStageJson);
|
||||||
this.stages.add(questStage);
|
this.stages.add(questStage);
|
||||||
@@ -112,10 +113,17 @@ public class Quest extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
|
|
||||||
for (QuestStage stage : stages) {
|
for (QuestStage stage : stages) {
|
||||||
stage.link();
|
stage.link();
|
||||||
@@ -143,7 +151,7 @@ public class Quest extends JSONElement {
|
|||||||
clone.visible_in_log = this.visible_in_log;
|
clone.visible_in_log = this.visible_in_log;
|
||||||
if (this.stages != null) {
|
if (this.stages != null) {
|
||||||
clone.stages = new ArrayList<QuestStage>();
|
clone.stages = new ArrayList<QuestStage>();
|
||||||
for (QuestStage stage : this.stages) {
|
for (QuestStage stage : this.stages){
|
||||||
clone.stages.add((QuestStage) stage.clone(clone));
|
clone.stages.add((QuestStage) stage.clone(clone));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -155,7 +163,7 @@ public class Quest extends JSONElement {
|
|||||||
//Nothing to link to.
|
//Nothing to link to.
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map questJson = new LinkedHashMap();
|
Map questJson = new LinkedHashMap();
|
||||||
@@ -175,7 +183,7 @@ public class Quest extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return "questlist_" + getProject().name + ".json";
|
return "questlist_"+getProject().name+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
public QuestStage getStage(Integer stageId) {
|
public QuestStage getStage(Integer stageId) {
|
||||||
@@ -186,4 +194,5 @@ public class Quest extends JSONElement {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.LinkedHashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public class QuestStage extends JSONElement {
|
public class QuestStage extends JSONElement {
|
||||||
|
|
||||||
private static final long serialVersionUID = 8313645819951513431L;
|
private static final long serialVersionUID = 8313645819951513431L;
|
||||||
@@ -16,7 +16,7 @@ public class QuestStage extends JSONElement {
|
|||||||
public Integer exp_reward = null;
|
public Integer exp_reward = null;
|
||||||
public Integer finishes_quest = null;
|
public Integer finishes_quest = null;
|
||||||
|
|
||||||
public QuestStage(Quest parent) {
|
public QuestStage(Quest parent){
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,14 +34,14 @@ public class QuestStage extends JSONElement {
|
|||||||
@Override
|
@Override
|
||||||
public void parse(Map jsonObj) {
|
public void parse(Map jsonObj) {
|
||||||
progress = JSONElement.getInteger((Number) jsonObj.get("progress"));
|
progress = JSONElement.getInteger((Number) jsonObj.get("progress"));
|
||||||
this.id = ((Quest) parent).id + ":" + progress;
|
this.id = ((Quest)parent).id+":"+progress;
|
||||||
log_text = (String) jsonObj.get("logText");
|
log_text = (String) jsonObj.get("logText");
|
||||||
exp_reward = JSONElement.getInteger((Number) jsonObj.get("rewardExperience"));
|
exp_reward = JSONElement.getInteger((Number) jsonObj.get("rewardExperience"));
|
||||||
finishes_quest = JSONElement.getInteger((Number) jsonObj.get("finishesQuest"));
|
finishes_quest = JSONElement.getInteger((Number) jsonObj.get("finishesQuest"));
|
||||||
state = State.parsed;
|
state = State.parsed;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@Override
|
@Override
|
||||||
public Map toJson() {
|
public Map toJson() {
|
||||||
Map stageJson = new LinkedHashMap();
|
Map stageJson = new LinkedHashMap();
|
||||||
@@ -54,15 +54,22 @@ public class QuestStage extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return progress + " - " + (exp_reward != null ? "[" + exp_reward + "XP]" : "") + ((finishes_quest != null) && (finishes_quest == 1) ? "[END]" : "") + log_text;
|
return progress+" - "+(exp_reward != null ? "["+exp_reward+"XP]" : "")+((finishes_quest != null) && (finishes_quest == 1) ? "[END]" : "")+log_text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
|
|
||||||
//Nothing to link to :D
|
//Nothing to link to :D
|
||||||
this.state = State.linked;
|
this.state = State.linked;
|
||||||
@@ -75,7 +82,7 @@ public class QuestStage extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
return ((Quest) parent).getProjectFilename();
|
return ((Quest)parent).getProjectFilename();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
package com.gpl.rpg.atcontentstudio.model.gamedata;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
|
||||||
public class Requirement extends JSONElement {
|
public class Requirement extends JSONElement {
|
||||||
|
|
||||||
private static final long serialVersionUID = 7295593297142310955L;
|
private static final long serialVersionUID = 7295593297142310955L;
|
||||||
@@ -26,13 +26,10 @@ public class Requirement extends JSONElement {
|
|||||||
countedItemTypes.add(RequirementType.inventoryRemove);
|
countedItemTypes.add(RequirementType.inventoryRemove);
|
||||||
countedItemTypes.add(RequirementType.inventoryKeep);
|
countedItemTypes.add(RequirementType.inventoryKeep);
|
||||||
countedItemTypes.add(RequirementType.usedItem);
|
countedItemTypes.add(RequirementType.usedItem);
|
||||||
countedItemTypes.add(RequirementType.wear);
|
|
||||||
countedItemTypes.add(RequirementType.wearRemove);
|
|
||||||
COMPATIBLE_TYPES.put(RequirementType.inventoryRemove, countedItemTypes);
|
COMPATIBLE_TYPES.put(RequirementType.inventoryRemove, countedItemTypes);
|
||||||
COMPATIBLE_TYPES.put(RequirementType.inventoryKeep, countedItemTypes);
|
COMPATIBLE_TYPES.put(RequirementType.inventoryKeep, countedItemTypes);
|
||||||
COMPATIBLE_TYPES.put(RequirementType.usedItem, countedItemTypes);
|
COMPATIBLE_TYPES.put(RequirementType.usedItem, countedItemTypes);
|
||||||
COMPATIBLE_TYPES.put(RequirementType.wear, countedItemTypes);
|
|
||||||
COMPATIBLE_TYPES.put(RequirementType.wearRemove, countedItemTypes);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Available from parsed state
|
//Available from parsed state
|
||||||
@@ -57,51 +54,60 @@ public class Requirement extends JSONElement {
|
|||||||
spentGold,
|
spentGold,
|
||||||
consumedBonemeals,
|
consumedBonemeals,
|
||||||
hasActorCondition,
|
hasActorCondition,
|
||||||
factionScore,
|
factionScore
|
||||||
random,
|
|
||||||
factionScoreEquals,
|
|
||||||
wearRemove,
|
|
||||||
date,
|
|
||||||
dateEquals,
|
|
||||||
time,
|
|
||||||
timeEquals,
|
|
||||||
skillIncrease
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum SkillID {
|
public enum SkillID {
|
||||||
weaponChance, weaponDmg, barter, dodge, barkSkin, moreCriticals, betterCriticals, speed // Raises max ap
|
weaponChance
|
||||||
, coinfinder, moreExp, cleave // +10ap on kill
|
,weaponDmg
|
||||||
, eater // +1hp per kill
|
,barter
|
||||||
, fortitude // +N hp per levelup
|
,dodge
|
||||||
, evasion // increase successful flee chance & reduce chance of monster attack
|
,barkSkin
|
||||||
, regeneration // +N hp per round
|
,moreCriticals
|
||||||
, lowerExploss, magicfinder, resistanceMental // lowers chance to get negative active conditions by monsters (Mental like Dazed)
|
,betterCriticals
|
||||||
, resistancePhysical // lowers chance to get negative active conditions by monsters (Physical Capacity like Minor fatigue)
|
,speed // Raises max ap
|
||||||
, resistanceBlood // lowers chance to get negative active conditions by monsters (Blood Disorder like Weak Poison)
|
,coinfinder
|
||||||
, shadowBless, sporeImmunity, crit1 // lowers atk ability
|
,moreExp
|
||||||
, crit2 // lowers def ability ,rejuvenation // Reduces magnitudes of conditions
|
,cleave // +10ap on kill
|
||||||
, rejuvenation // Reduces magnitudes of conditions
|
,eater // +1hp per kill
|
||||||
, taunt // Causes AP loss of attackers that miss
|
,fortitude // +N hp per levelup
|
||||||
, concussion // AC loss for monsters with (AC-BC)>N
|
,evasion // increase successful flee chance & reduce chance of monster attack
|
||||||
, weaponProficiencyDagger, weaponProficiency1hsword, weaponProficiency2hsword, weaponProficiencyAxe, weaponProficiencyBlunt, weaponProficiencyUnarmed, weaponProficiencyPole, armorProficiencyShield, armorProficiencyUnarmored, armorProficiencyLight, armorProficiencyHeavy, fightstyleDualWield, fightstyle2hand, fightstyleWeaponShield, specializationDualWield, specialization2hand, specializationWeaponShield
|
,regeneration // +N hp per round
|
||||||
|
,lowerExploss
|
||||||
|
,magicfinder
|
||||||
|
,resistanceMental // lowers chance to get negative active conditions by monsters (Mental like Dazed)
|
||||||
|
,resistancePhysical // lowers chance to get negative active conditions by monsters (Physical Capacity like Minor fatigue)
|
||||||
|
,resistanceBlood // lowers chance to get negative active conditions by monsters (Blood Disorder like Weak Poison)
|
||||||
|
,shadowBless
|
||||||
|
,crit1 // lowers atk ability
|
||||||
|
,crit2 // lowers def ability ,rejuvenation // Reduces magnitudes of conditions
|
||||||
|
,rejuvenation // Reduces magnitudes of conditions
|
||||||
|
,taunt // Causes AP loss of attackers that miss
|
||||||
|
,concussion // AC loss for monsters with (AC-BC)>N
|
||||||
|
,weaponProficiencyDagger
|
||||||
|
,weaponProficiency1hsword
|
||||||
|
,weaponProficiency2hsword
|
||||||
|
,weaponProficiencyAxe
|
||||||
|
,weaponProficiencyBlunt
|
||||||
|
,weaponProficiencyUnarmed
|
||||||
|
,armorProficiencyShield
|
||||||
|
,armorProficiencyUnarmored
|
||||||
|
,armorProficiencyLight
|
||||||
|
,armorProficiencyHeavy
|
||||||
|
,fightstyleDualWield
|
||||||
|
,fightstyle2hand
|
||||||
|
,fightstyleWeaponShield
|
||||||
|
,specializationDualWield
|
||||||
|
,specialization2hand
|
||||||
|
,specializationWeaponShield
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
String obj_id = "";
|
|
||||||
if (required_obj_id != null) {
|
|
||||||
obj_id = required_obj_id;
|
|
||||||
if (type != null && type == RequirementType.random) {
|
|
||||||
obj_id = " Chance " + obj_id + (required_obj_id.contains("/") ? "" : "%");
|
|
||||||
} else {
|
|
||||||
obj_id += ":";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ((negated != null && negated) ? "NOT " : "")
|
return ((negated != null && negated) ? "NOT " : "")
|
||||||
+ (type == null ? "" : type.toString() + ":")
|
+(type == null ? "" : type.toString()+":")
|
||||||
+ obj_id
|
+(required_obj_id == null ? "" : required_obj_id+":")
|
||||||
+ (required_value == null ? "" : required_value.toString());
|
+(required_value == null ? "" : required_value.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -123,13 +129,20 @@ public class Requirement extends JSONElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
if (shouldSkipParseOrLink()) {
|
if (this.state == State.created || this.state == State.modified || this.state == State.saved) {
|
||||||
|
//This type of state is unrelated to parsing/linking.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.state == State.init) {
|
||||||
|
//Not parsed yet.
|
||||||
|
this.parse();
|
||||||
|
} else if (this.state == State.linked) {
|
||||||
|
//Already linked.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ensureParseIfNeeded();
|
|
||||||
Project proj = getProject();
|
Project proj = getProject();
|
||||||
if (proj == null) {
|
if (proj == null) {
|
||||||
Notification.addError("Error linking requirement " + getDesc() + ". No parent project found.");
|
Notification.addError("Error linking requirement "+getDesc()+". No parent project found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
switch (type) {
|
switch (type) {
|
||||||
@@ -140,7 +153,6 @@ public class Requirement extends JSONElement {
|
|||||||
case inventoryRemove:
|
case inventoryRemove:
|
||||||
case usedItem:
|
case usedItem:
|
||||||
case wear:
|
case wear:
|
||||||
case wearRemove:
|
|
||||||
this.required_obj = proj.getItem(required_obj_id);
|
this.required_obj = proj.getItem(required_obj_id);
|
||||||
break;
|
break;
|
||||||
case killedMonster:
|
case killedMonster:
|
||||||
@@ -150,7 +162,7 @@ public class Requirement extends JSONElement {
|
|||||||
case questProgress:
|
case questProgress:
|
||||||
this.required_obj = proj.getQuest(required_obj_id);
|
this.required_obj = proj.getQuest(required_obj_id);
|
||||||
if (this.required_obj != null && this.required_value != null) {
|
if (this.required_obj != null && this.required_value != null) {
|
||||||
QuestStage stage = ((Quest) this.required_obj).getStage(this.required_value);
|
QuestStage stage = ((Quest)this.required_obj).getStage(this.required_value);
|
||||||
if (stage != null) {
|
if (stage != null) {
|
||||||
stage.addBacklink((GameDataElement) this.parent);
|
stage.addBacklink((GameDataElement) this.parent);
|
||||||
}
|
}
|
||||||
@@ -161,13 +173,6 @@ public class Requirement extends JSONElement {
|
|||||||
case spentGold:
|
case spentGold:
|
||||||
case timerElapsed:
|
case timerElapsed:
|
||||||
case factionScore:
|
case factionScore:
|
||||||
case factionScoreEquals:
|
|
||||||
case random:
|
|
||||||
case date:
|
|
||||||
case dateEquals:
|
|
||||||
case time:
|
|
||||||
case timeEquals:
|
|
||||||
case skillIncrease:
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (this.required_obj != null) this.required_obj.addBacklink((GameDataElement) this.parent);
|
if (this.required_obj != null) this.required_obj.addBacklink((GameDataElement) this.parent);
|
||||||
@@ -209,7 +214,6 @@ public class Requirement extends JSONElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getProjectFilename() {
|
public String getProjectFilename() {
|
||||||
throw new Error("Thou shalt not reach this method.");
|
throw new Error("Thou shalt not reach this method.");
|
||||||
@@ -221,11 +225,6 @@ public class Requirement extends JSONElement {
|
|||||||
required_obj_id = null;
|
required_obj_id = null;
|
||||||
required_value = null;
|
required_value = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (destType == RequirementType.random) {
|
|
||||||
required_obj_id = "50/100";
|
|
||||||
}
|
|
||||||
|
|
||||||
type = destType;
|
type = destType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,16 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Droplist;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Droplist;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
public class ContainerArea extends MapObject {
|
public class ContainerArea extends MapObject {
|
||||||
|
|
||||||
public Droplist droplist = null;
|
public Droplist droplist = null;
|
||||||
|
|
||||||
public ContainerArea(tiled.core.MapObject obj) {
|
public ContainerArea(tiled.core.MapObject obj) {}
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Requirement;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Requirement;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
public class KeyArea extends MapObject {
|
public class KeyArea extends MapObject {
|
||||||
|
|
||||||
public String dialogue_id;
|
public String dialogue_id = null;
|
||||||
public Dialogue dialogue = null;
|
public Dialogue dialogue = null;
|
||||||
public Requirement requirement;
|
public Requirement requirement = null;
|
||||||
public boolean oldSchoolRequirement;
|
public boolean oldSchoolRequirement = true;
|
||||||
|
|
||||||
public KeyArea(tiled.core.MapObject obj) {
|
public KeyArea(tiled.core.MapObject obj) {
|
||||||
dialogue_id = obj.getProperties().getProperty("phrase");
|
dialogue_id = obj.getProperties().getProperty("phrase");
|
||||||
@@ -79,7 +79,7 @@ public class KeyArea extends MapObject {
|
|||||||
}
|
}
|
||||||
if (requirement != null) {
|
if (requirement != null) {
|
||||||
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
||||||
tmxObject.setName(requirement.required_obj_id + ":" + ((requirement.required_value == null) ? "" : Integer.toString(requirement.required_value)));
|
tmxObject.setName(requirement.required_obj_id+":"+((requirement.required_value == null) ? "" : Integer.toString(requirement.required_value)));
|
||||||
} else {
|
} else {
|
||||||
if (requirement.type != null) {
|
if (requirement.type != null) {
|
||||||
tmxObject.getProperties().setProperty("requireType", requirement.type.toString());
|
tmxObject.getProperties().setProperty("requireType", requirement.type.toString());
|
||||||
@@ -101,8 +101,7 @@ public class KeyArea extends MapObject {
|
|||||||
|
|
||||||
public void updateNameFromRequirementChange() {
|
public void updateNameFromRequirementChange() {
|
||||||
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
||||||
name = (requirement.negated != null && requirement.negated) ? "NOT " : "" + requirement.required_obj_id + ":" + ((requirement.required_value == null) ? "" : Integer.toString(
|
name = (requirement.negated != null && requirement.negated) ? "NOT " : "" + requirement.required_obj_id+":"+((requirement.required_value == null) ? "" : Integer.toString(requirement.required_value));
|
||||||
requirement.required_value));
|
|
||||||
} else if (oldSchoolRequirement) {
|
} else if (oldSchoolRequirement) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
String futureName = requirement.type.toString() + "#" + Integer.toString(i);
|
String futureName = requirement.type.toString() + "#" + Integer.toString(i);
|
||||||
|
|||||||
@@ -1,16 +1,17 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
|
|
||||||
public class MapChange extends MapObject {
|
public class MapChange extends MapObject {
|
||||||
|
|
||||||
public String map_id;
|
public String map_id = null;
|
||||||
public TMXMap map = null;
|
public TMXMap map = null;
|
||||||
public String place_id;
|
public String place_id = null;
|
||||||
|
|
||||||
public MapChange(tiled.core.MapObject obj) {
|
public MapChange(tiled.core.MapObject obj) {
|
||||||
this.map_id = obj.getProperties().getProperty("map");
|
this.map_id = obj.getProperties().getProperty("map");
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
public abstract class MapObject {
|
public abstract class MapObject {
|
||||||
|
|
||||||
public int x, y, w, h;
|
public int x, y, w, h;
|
||||||
@@ -64,7 +64,7 @@ public abstract class MapObject {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unknown map object type: " + obj.getType() + "with name " + obj.getName() + " in map " + parentMap.id);
|
Notification.addWarn("Unknown map object type: "+obj.getType()+"with name "+obj.getName()+" in map "+parentMap.id);
|
||||||
}
|
}
|
||||||
if (result != null) {
|
if (result != null) {
|
||||||
result.x = obj.getX();
|
result.x = obj.getX();
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
|
||||||
public class MapObjectGroup {
|
public class MapObjectGroup {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Requirement;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Requirement;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
|
|
||||||
public class ReplaceArea extends MapObject {
|
public class ReplaceArea extends MapObject {
|
||||||
|
|
||||||
public Requirement requirement;
|
public Requirement requirement = null;
|
||||||
public boolean oldSchoolRequirement = false;
|
public boolean oldSchoolRequirement = false;
|
||||||
|
|
||||||
public List<ReplaceArea.Replacement> replacements = null;
|
public List<ReplaceArea.Replacement> replacements = null;
|
||||||
@@ -66,24 +66,36 @@ public class ReplaceArea extends MapObject {
|
|||||||
requirement.elementChanged(oldOne, newOne);
|
requirement.elementChanged(oldOne, newOne);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ReplaceArea.Replacement createReplacement(String source, String target) {
|
public ReplaceArea.Replacement addReplacement(String source, String target) {
|
||||||
Replacement repl = new Replacement(source, target);
|
Replacement repl = new Replacement(source, target);
|
||||||
|
addReplacement(repl);
|
||||||
return repl;
|
return repl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void addReplacement(ReplaceArea.Replacement repl) {
|
||||||
|
if (replacements == null) replacements = new ArrayList<ReplaceArea.Replacement>();
|
||||||
|
replacements.add(repl);
|
||||||
|
}
|
||||||
|
|
||||||
|
// public void removeReplacement(String source, String target) {
|
||||||
|
// replacedLayers.remove(source);
|
||||||
|
// }
|
||||||
|
|
||||||
|
public void removeReplacement(Replacement repl) {
|
||||||
|
replacements.remove(repl);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void savePropertiesInTmxObject(tiled.core.MapObject tmxObject) {
|
public void savePropertiesInTmxObject(tiled.core.MapObject tmxObject) {
|
||||||
if (replacements != null) {
|
if (replacements != null) {
|
||||||
for (Replacement r : replacements)
|
for(Replacement r : replacements)
|
||||||
tmxObject.getProperties().setProperty(r.sourceLayer, r.targetLayer);
|
tmxObject.getProperties().setProperty(r.sourceLayer, r.targetLayer);
|
||||||
}
|
}
|
||||||
if (requirement != null) {
|
if (requirement != null) {
|
||||||
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
||||||
tmxObject.setName(requirement.required_obj_id + ":" + ((requirement.required_value == null) ? "" : Integer.toString(requirement.required_value)));
|
tmxObject.setName(requirement.required_obj_id+":"+((requirement.required_value == null) ? "" : Integer.toString(requirement.required_value)));
|
||||||
} else {
|
} else {
|
||||||
if (requirement.type != null) {
|
|
||||||
tmxObject.getProperties().setProperty("requireType", requirement.type.toString());
|
tmxObject.getProperties().setProperty("requireType", requirement.type.toString());
|
||||||
}
|
|
||||||
if (requirement.required_obj != null) {
|
if (requirement.required_obj != null) {
|
||||||
tmxObject.getProperties().setProperty("requireId", requirement.required_obj.id);
|
tmxObject.getProperties().setProperty("requireId", requirement.required_obj.id);
|
||||||
} else if (requirement.required_obj_id != null) {
|
} else if (requirement.required_obj_id != null) {
|
||||||
@@ -102,8 +114,7 @@ public class ReplaceArea extends MapObject {
|
|||||||
//Don't use yet !
|
//Don't use yet !
|
||||||
public void updateNameFromRequirementChange() {
|
public void updateNameFromRequirementChange() {
|
||||||
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
if (oldSchoolRequirement && Requirement.RequirementType.questProgress.equals(requirement.type) && (requirement.negated == null || !requirement.negated)) {
|
||||||
name = (requirement.negated != null && requirement.negated) ? "NOT " : "" + requirement.required_obj_id + ":" + ((requirement.required_value == null) ? "" : Integer.toString(
|
name = (requirement.negated != null && requirement.negated) ? "NOT " : "" + requirement.required_obj_id+":"+((requirement.required_value == null) ? "" : Integer.toString(requirement.required_value));
|
||||||
requirement.required_value));
|
|
||||||
} else if (oldSchoolRequirement) {
|
} else if (oldSchoolRequirement) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
String futureName = requirement.type.toString() + "#" + Integer.toString(i);
|
String futureName = requirement.type.toString() + "#" + Integer.toString(i);
|
||||||
@@ -117,7 +128,6 @@ public class ReplaceArea extends MapObject {
|
|||||||
|
|
||||||
public class Replacement {
|
public class Replacement {
|
||||||
public String sourceLayer, targetLayer;
|
public String sourceLayer, targetLayer;
|
||||||
|
|
||||||
public Replacement(String source, String target) {
|
public Replacement(String source, String target) {
|
||||||
this.sourceLayer = source;
|
this.sourceLayer = source;
|
||||||
this.targetLayer = target;
|
this.targetLayer = target;
|
||||||
|
|||||||
@@ -1,19 +1,17 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
|
|
||||||
public class RestArea extends MapObject {
|
public class RestArea extends MapObject {
|
||||||
|
|
||||||
public RestArea(tiled.core.MapObject obj) {
|
public RestArea(tiled.core.MapObject obj) {}
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void link() {
|
public void link() {}
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
public class ScriptArea extends MapObject {
|
public class ScriptArea extends MapObject {
|
||||||
|
|
||||||
public Dialogue dialogue = null;
|
public Dialogue dialogue = null;
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.Dialogue;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
public class SignArea extends MapObject {
|
public class SignArea extends MapObject {
|
||||||
|
|
||||||
public Dialogue dialogue = null;
|
public Dialogue dialogue = null;
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.NPC;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.NPC;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class SpawnArea extends MapObject {
|
public class SpawnArea extends MapObject {
|
||||||
|
|
||||||
public int quantity = 1;
|
public int quantity = 1;
|
||||||
public int respawnSpeed = 10;
|
public int spawnchance = 10;
|
||||||
public boolean active = true;
|
public boolean active = true;
|
||||||
public boolean ignoreAreas = false;
|
public boolean ignoreAreas = false;
|
||||||
public String spawngroup_id;
|
public String spawngroup_id;
|
||||||
@@ -21,8 +21,8 @@ public class SpawnArea extends MapObject {
|
|||||||
if (obj.getProperties().getProperty("quantity") != null) {
|
if (obj.getProperties().getProperty("quantity") != null) {
|
||||||
this.quantity = Integer.parseInt(obj.getProperties().getProperty("quantity"));
|
this.quantity = Integer.parseInt(obj.getProperties().getProperty("quantity"));
|
||||||
}
|
}
|
||||||
if (obj.getProperties().getProperty("respawnspeed") != null) {
|
if (obj.getProperties().getProperty("spawnchance") != null) {
|
||||||
this.respawnSpeed = Integer.parseInt(obj.getProperties().getProperty("respawnspeed"));
|
this.spawnchance = Integer.parseInt(obj.getProperties().getProperty("spawnchance"));
|
||||||
}
|
}
|
||||||
if (obj.getProperties().getProperty("active") != null) {
|
if (obj.getProperties().getProperty("active") != null) {
|
||||||
this.active = Boolean.parseBoolean(obj.getProperties().getProperty("active"));
|
this.active = Boolean.parseBoolean(obj.getProperties().getProperty("active"));
|
||||||
@@ -32,7 +32,7 @@ public class SpawnArea extends MapObject {
|
|||||||
}
|
}
|
||||||
if (obj.getProperties().getProperty("spawngroup") != null) {
|
if (obj.getProperties().getProperty("spawngroup") != null) {
|
||||||
this.spawngroup_id = obj.getProperties().getProperty("spawngroup");
|
this.spawngroup_id = obj.getProperties().getProperty("spawngroup");
|
||||||
} else if (obj.getName() != null) {
|
} else if (obj.getName() != null ){
|
||||||
this.spawngroup_id = obj.getName();
|
this.spawngroup_id = obj.getName();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -82,8 +82,8 @@ public class SpawnArea extends MapObject {
|
|||||||
if (quantity != 1) {
|
if (quantity != 1) {
|
||||||
tmxObject.getProperties().setProperty("quantity", Integer.toString(quantity));
|
tmxObject.getProperties().setProperty("quantity", Integer.toString(quantity));
|
||||||
}
|
}
|
||||||
if (respawnSpeed != 10) {
|
if (spawnchance != 10) {
|
||||||
tmxObject.getProperties().setProperty("respawnspeed", Integer.toString(respawnSpeed));
|
tmxObject.getProperties().setProperty("spawnchance", Integer.toString(spawnchance));
|
||||||
}
|
}
|
||||||
if (!this.active) {
|
if (!this.active) {
|
||||||
tmxObject.getProperties().setProperty("active", Boolean.toString(active));
|
tmxObject.getProperties().setProperty("active", Boolean.toString(active));
|
||||||
@@ -92,4 +92,5 @@ public class SpawnArea extends MapObject {
|
|||||||
tmxObject.getProperties().setProperty("ignoreAreas", Boolean.toString(ignoreAreas));
|
tmxObject.getProperties().setProperty("ignoreAreas", Boolean.toString(ignoreAreas));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,35 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileWriter;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.StringReader;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.CopyOnWriteArrayList;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
|
import tiled.io.TMXMapReader;
|
||||||
|
import tiled.io.TMXMapWriter;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.*;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.NPC;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.NPC;
|
||||||
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
import com.gpl.rpg.atcontentstudio.model.sprites.Spritesheet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
import tiled.io.TMXMapReader;
|
|
||||||
import tiled.io.TMXMapWriter;
|
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.concurrent.CopyOnWriteArrayList;
|
|
||||||
|
|
||||||
public class TMXMap extends GameDataElement {
|
public class TMXMap extends GameDataElement {
|
||||||
|
|
||||||
@@ -40,7 +54,7 @@ public class TMXMap extends GameDataElement {
|
|||||||
bluetint
|
bluetint
|
||||||
}
|
}
|
||||||
|
|
||||||
public File tmxFile;
|
public File tmxFile = null;
|
||||||
public tiled.core.Map tmxMap = null;
|
public tiled.core.Map tmxMap = null;
|
||||||
public Set<Spritesheet> usedSpritesheets = null;
|
public Set<Spritesheet> usedSpritesheets = null;
|
||||||
public List<MapObjectGroup> groups = null;
|
public List<MapObjectGroup> groups = null;
|
||||||
@@ -72,9 +86,9 @@ public class TMXMap extends GameDataElement {
|
|||||||
colorFilter = ColorFilter.valueOf(((String) tmxMap.getProperties().get("colorfilter")));
|
colorFilter = ColorFilter.valueOf(((String) tmxMap.getProperties().get("colorfilter")));
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
Notification.addError("Impossible to load TMX map file " + tmxFile.getAbsolutePath());
|
Notification.addError("Impossible to load TMX map file "+tmxFile.getAbsolutePath());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Notification.addError("Error while loading TMX map file " + tmxFile.getAbsolutePath() + ": " + e.getMessage());
|
Notification.addError("Error while loading TMX map file "+tmxFile.getAbsolutePath()+": "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
for (tiled.core.MapLayer layer : tmxMap.getLayers()) {
|
for (tiled.core.MapLayer layer : tmxMap.getLayers()) {
|
||||||
@@ -123,7 +137,7 @@ public class TMXMap extends GameDataElement {
|
|||||||
s.addBacklink(clone);
|
s.addBacklink(clone);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Notification.addError("Error while cloning map " + this.id + " : " + e.getMessage());
|
Notification.addError("Error while cloning map "+this.id+" : "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,30 +181,28 @@ public class TMXMap extends GameDataElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + id;
|
return (needsSaving() ? "*" : "")+id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -202,21 +214,14 @@ public class TMXMap extends GameDataElement {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return DefaultIcons.getTiledIconIcon();
|
return DefaultIcons.getTiledIconIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getTiledIconIcon();
|
return DefaultIcons.getTiledIconIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {return null;}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {return null;}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GameDataSet getDataSet() {
|
public GameDataSet getDataSet() {
|
||||||
@@ -253,10 +258,10 @@ public class TMXMap extends GameDataElement {
|
|||||||
if (getDataType() == GameSource.Type.source) {
|
if (getDataType() == GameSource.Type.source) {
|
||||||
writer.writeMap(tmxMap, baos, tmxFile.getAbsolutePath());
|
writer.writeMap(tmxMap, baos, tmxFile.getAbsolutePath());
|
||||||
} else {
|
} else {
|
||||||
writer.writeMap(tmxMap, baos, ((TMXMapSet) this.parent).mapFolder.getAbsolutePath() + File.separator + "placeholder.tmx");
|
writer.writeMap(tmxMap, baos, getProject().baseContent.gameMaps.mapFolder.getAbsolutePath()+File.separator+"placeholder.tmx");
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Notification.addError("Error while converting map " + getDesc() + " to XML: " + e.getMessage());
|
Notification.addError("Error while converting map "+getDesc()+" to XML: "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
return baos.toString();
|
return baos.toString();
|
||||||
@@ -278,9 +283,9 @@ public class TMXMap extends GameDataElement {
|
|||||||
w.close();
|
w.close();
|
||||||
this.state = State.saved;
|
this.state = State.saved;
|
||||||
changedOnDisk = false;
|
changedOnDisk = false;
|
||||||
Notification.addSuccess("TMX file " + tmxFile.getAbsolutePath() + " saved.");
|
Notification.addSuccess("TMX file "+tmxFile.getAbsolutePath()+" saved.");
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error while writing TMX file " + tmxFile.getAbsolutePath() + " : " + e.getMessage());
|
Notification.addError("Error while writing TMX file "+tmxFile.getAbsolutePath()+" : "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -297,12 +302,12 @@ public class TMXMap extends GameDataElement {
|
|||||||
if (writable) {
|
if (writable) {
|
||||||
if (tmxFile.exists()) {
|
if (tmxFile.exists()) {
|
||||||
if (tmxFile.delete()) {
|
if (tmxFile.delete()) {
|
||||||
Notification.addSuccess("TMX file " + tmxFile.getAbsolutePath() + " deleted.");
|
Notification.addSuccess("TMX file "+tmxFile.getAbsolutePath()+" deleted.");
|
||||||
} else {
|
} else {
|
||||||
Notification.addError("Error while deleting TMX file " + tmxFile.getAbsolutePath());
|
Notification.addError("Error while deleting TMX file "+tmxFile.getAbsolutePath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
((TMXMapSet) parent).tmxMaps.remove(this);
|
((TMXMapSet)parent).tmxMaps.remove(this);
|
||||||
//TODO clear blacklinks ?
|
//TODO clear blacklinks ?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -408,24 +413,22 @@ public class TMXMap extends GameDataElement {
|
|||||||
for (MapObjectGroup g : groups) {
|
for (MapObjectGroup g : groups) {
|
||||||
for (MapObject o : g.mapObjects) {
|
for (MapObject o : g.mapObjects) {
|
||||||
if (o instanceof ContainerArea) {
|
if (o instanceof ContainerArea) {
|
||||||
if (((ContainerArea) o).droplist != null) ((ContainerArea) o).droplist.elementChanged(this, null);
|
if (((ContainerArea)o).droplist != null) ((ContainerArea)o).droplist.elementChanged(this, null);
|
||||||
} else if (o instanceof KeyArea) {
|
} else if (o instanceof KeyArea) {
|
||||||
if (((KeyArea) o).dialogue != null) ((KeyArea) o).dialogue.elementChanged(this, null);
|
if (((KeyArea)o).dialogue != null) ((KeyArea)o).dialogue.elementChanged(this, null);
|
||||||
if (((KeyArea) o).requirement != null && ((KeyArea) o).requirement.required_obj != null)
|
if (((KeyArea)o).requirement != null && ((KeyArea)o).requirement.required_obj != null) ((KeyArea)o).requirement.required_obj.elementChanged(this, null);
|
||||||
((KeyArea) o).requirement.required_obj.elementChanged(this, null);
|
|
||||||
} else if (o instanceof MapChange) {
|
} else if (o instanceof MapChange) {
|
||||||
if (((MapChange) o).map != null) ((MapChange) o).map.elementChanged(this, null);
|
if (((MapChange)o).map != null) ((MapChange)o).map.elementChanged(this, null);
|
||||||
} else if (o instanceof ReplaceArea) {
|
} else if (o instanceof ReplaceArea) {
|
||||||
if (((ReplaceArea) o).requirement != null && ((ReplaceArea) o).requirement.required_obj != null)
|
if (((ReplaceArea)o).requirement != null && ((ReplaceArea)o).requirement.required_obj != null) ((ReplaceArea)o).requirement.required_obj.elementChanged(this, null);
|
||||||
((ReplaceArea) o).requirement.required_obj.elementChanged(this, null);
|
|
||||||
} else if (o instanceof RestArea) {
|
} else if (o instanceof RestArea) {
|
||||||
} else if (o instanceof ScriptArea) {
|
} else if (o instanceof ScriptArea) {
|
||||||
if (((ScriptArea) o).dialogue != null) ((ScriptArea) o).dialogue.elementChanged(this, null);
|
if (((ScriptArea)o).dialogue != null) ((ScriptArea)o).dialogue.elementChanged(this, null);
|
||||||
} else if (o instanceof SignArea) {
|
} else if (o instanceof SignArea) {
|
||||||
if (((SignArea) o).dialogue != null) ((SignArea) o).dialogue.elementChanged(this, null);
|
if (((SignArea)o).dialogue != null) ((SignArea)o).dialogue.elementChanged(this, null);
|
||||||
} else if (o instanceof SpawnArea) {
|
} else if (o instanceof SpawnArea) {
|
||||||
if (((SpawnArea) o).spawnGroup != null) {
|
if (((SpawnArea)o).spawnGroup != null) {
|
||||||
for (NPC n : ((SpawnArea) o).spawnGroup) {
|
for (NPC n : ((SpawnArea)o).spawnGroup) {
|
||||||
n.elementChanged(this, null);
|
n.elementChanged(this, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -458,7 +461,6 @@ public class TMXMap extends GameDataElement {
|
|||||||
|
|
||||||
public interface MapChangedOnDiskListener {
|
public interface MapChangedOnDiskListener {
|
||||||
public void mapChanged();
|
public void mapChanged();
|
||||||
|
|
||||||
public void mapReloaded();
|
public void mapReloaded();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,24 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.FileSystems;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.nio.file.Paths;
|
||||||
|
import java.nio.file.StandardWatchEventKinds;
|
||||||
|
import java.nio.file.WatchEvent;
|
||||||
|
import java.nio.file.WatchKey;
|
||||||
|
import java.nio.file.WatchService;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Comparator;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
@@ -10,20 +29,11 @@ import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
|||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
import com.gpl.rpg.atcontentstudio.utils.FileUtils;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.file.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
|
|
||||||
public class TMXMapSet implements ProjectTreeNode {
|
public class TMXMapSet implements ProjectTreeNode {
|
||||||
|
|
||||||
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res" + File.separator + "xml" + File.separator;
|
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res"+File.separator+"xml"+File.separator;
|
||||||
public static final String DEFAULT_REL_PATH_IN_PROJECT = "maps" + File.separator;
|
public static final String DEFAULT_REL_PATH_IN_PROJECT = "maps"+File.separator;
|
||||||
public static final String DEFAULT_REL_PATH_TO_DRAWABLE = ".." + File.separator + "drawable" + File.separator;
|
public static final String DEFAULT_REL_PATH_TO_DRAWABLE = ".."+File.separator+"drawable"+File.separator;
|
||||||
|
|
||||||
public static final String GAME_MAPS_ARRAY_NAME = "loadresource_maps";
|
public static final String GAME_MAPS_ARRAY_NAME = "loadresource_maps";
|
||||||
public static final String DEBUG_SUFFIX = "_debug";
|
public static final String DEBUG_SUFFIX = "_debug";
|
||||||
@@ -39,26 +49,27 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
this.parent = source;
|
this.parent = source;
|
||||||
if (source.type == GameSource.Type.source) {
|
if (source.type == GameSource.Type.source) {
|
||||||
this.mapFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_SOURCE);
|
this.mapFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_SOURCE);
|
||||||
} else if (source.type == GameSource.Type.created | source.type == GameSource.Type.altered) {
|
}
|
||||||
|
else if (source.type == GameSource.Type.created | source.type == GameSource.Type.altered) {
|
||||||
this.mapFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_PROJECT);
|
this.mapFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_PROJECT);
|
||||||
if (!this.mapFolder.exists()) {
|
if (!this.mapFolder.exists()) {
|
||||||
this.mapFolder.mkdirs();
|
this.mapFolder.mkdirs();
|
||||||
}
|
}
|
||||||
FileUtils.makeSymlink(getProject().baseContent.gameSprites.drawableFolder, new File(mapFolder.getAbsolutePath() + File.separator + DEFAULT_REL_PATH_TO_DRAWABLE));
|
FileUtils.makeSymlink(getProject().baseContent.gameSprites.drawableFolder, new File(mapFolder.getAbsolutePath()+File.separator+DEFAULT_REL_PATH_TO_DRAWABLE));
|
||||||
}
|
}
|
||||||
this.tmxMaps = new ArrayList<TMXMap>();
|
this.tmxMaps = new ArrayList<TMXMap>();
|
||||||
|
|
||||||
if (source.type == GameSource.Type.source && (source.parent.sourceSetToUse == ResourceSet.debugData || source.parent.sourceSetToUse == ResourceSet.gameData)) {
|
if (source.type == GameSource.Type.source && (source.parent.sourceSetToUse == ResourceSet.debugData || source.parent.sourceSetToUse == ResourceSet.gameData)) {
|
||||||
String suffix = (source.parent.sourceSetToUse == ResourceSet.debugData) ? DEBUG_SUFFIX : "";
|
String suffix = (source.parent.sourceSetToUse == ResourceSet.debugData) ? DEBUG_SUFFIX : "";
|
||||||
|
|
||||||
if (source.referencedSourceFiles.get(GAME_MAPS_ARRAY_NAME + suffix) != null) {
|
if (source.referencedSourceFiles.get(GAME_MAPS_ARRAY_NAME+suffix) != null) {
|
||||||
for (String resource : source.referencedSourceFiles.get(GAME_MAPS_ARRAY_NAME + suffix)) {
|
for (String resource : source.referencedSourceFiles.get(GAME_MAPS_ARRAY_NAME+suffix)) {
|
||||||
File f = new File(mapFolder, resource.replaceAll(RESOURCE_PREFIX, "") + FILENAME_SUFFIX);
|
File f = new File(mapFolder, resource.replaceAll(RESOURCE_PREFIX, "")+FILENAME_SUFFIX);
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
TMXMap map = new TMXMap(this, f);
|
TMXMap map = new TMXMap(this, f);
|
||||||
tmxMaps.add(map);
|
tmxMaps.add(map);
|
||||||
} else {
|
} else {
|
||||||
Notification.addWarn("Unable to locate resource " + resource + " in the game source for project " + getProject().name);
|
Notification.addWarn("Unable to locate resource "+resource+" in the game source for project "+getProject().name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -82,18 +93,16 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
});
|
});
|
||||||
if (source.type == GameSource.Type.created | source.type == GameSource.Type.altered) {
|
if (source.type == GameSource.Type.created | source.type == GameSource.Type.altered) {
|
||||||
final Path folderPath = Paths.get(mapFolder.getAbsolutePath());
|
final Path folderPath = Paths.get(mapFolder.getAbsolutePath());
|
||||||
Thread watcher = new Thread("Map folder watcher for " + getProject().name + "/" + source.type) {
|
Thread watcher = new Thread("Map folder watcher for "+getProject().name+"/"+source.type) {
|
||||||
public void run() {
|
public void run() {
|
||||||
WatchService watchService;
|
WatchService watchService;
|
||||||
|
|
||||||
while (getProject().open) {
|
while(getProject().open) {
|
||||||
try {
|
try {
|
||||||
watchService = FileSystems.getDefault().newWatchService();
|
watchService = FileSystems.getDefault().newWatchService();
|
||||||
/*WatchKey watchKey = */
|
/*WatchKey watchKey = */folderPath.register(watchService, StandardWatchEventKinds.ENTRY_MODIFY);
|
||||||
folderPath.register(watchService, StandardWatchEventKinds.ENTRY_MODIFY, StandardWatchEventKinds.ENTRY_CREATE);
|
|
||||||
WatchKey wk;
|
WatchKey wk;
|
||||||
validService:
|
validService: while(getProject().open) {
|
||||||
while (getProject().open) {
|
|
||||||
wk = watchService.poll(10, TimeUnit.SECONDS);
|
wk = watchService.poll(10, TimeUnit.SECONDS);
|
||||||
if (wk != null) {
|
if (wk != null) {
|
||||||
for (WatchEvent<?> event : wk.pollEvents()) {
|
for (WatchEvent<?> event : wk.pollEvents()) {
|
||||||
@@ -105,7 +114,7 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
map.mapChangedOnDisk();
|
map.mapChangedOnDisk();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!wk.reset()) {
|
if(!wk.reset()) {
|
||||||
watchService.close();
|
watchService.close();
|
||||||
break validService;
|
break validService;
|
||||||
}
|
}
|
||||||
@@ -117,8 +126,7 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
watcher.start();
|
watcher.start();
|
||||||
}
|
}
|
||||||
@@ -128,49 +136,40 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
public Enumeration<TMXMap> children() {
|
public Enumeration<TMXMap> children() {
|
||||||
return Collections.enumeration(tmxMaps);
|
return Collections.enumeration(tmxMaps);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int arg0) {
|
public TreeNode getChildAt(int arg0) {
|
||||||
return tmxMaps.get(arg0);
|
return tmxMaps.get(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return tmxMaps.size();
|
return tmxMaps.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode arg0) {
|
public int getIndex(TreeNode arg0) {
|
||||||
return tmxMaps.indexOf(arg0);
|
return tmxMaps.indexOf(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
if (path.size() == 1 && this.getChildCount() == 1) {
|
if (path.size() == 1 && this.getChildCount() == 1) {
|
||||||
@@ -180,7 +179,6 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -188,10 +186,9 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
map.notifyCreated();
|
map.notifyCreated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + "TMX Maps";
|
return (needsSaving() ? "*" : "")+"TMX Maps";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -204,17 +201,14 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
return DefaultIcons.getTmxClosedIcon();
|
return DefaultIcons.getTmxClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getTmxClosedIcon();
|
return DefaultIcons.getTmxClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
return DefaultIcons.getTmxOpenIcon();
|
return DefaultIcons.getTmxOpenIcon();
|
||||||
@@ -238,7 +232,7 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
public TMXMap getMap(String id) {
|
public TMXMap getMap(String id) {
|
||||||
if (tmxMaps == null) return null;
|
if (tmxMaps == null) return null;
|
||||||
for (TMXMap map : tmxMaps) {
|
for (TMXMap map : tmxMaps) {
|
||||||
if (id.equals(map.id)) {
|
if (id.equals(map.id)){
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -248,8 +242,7 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
public void addMap(TMXMap node) {
|
public void addMap(TMXMap node) {
|
||||||
ProjectTreeNode higherEmptyParent = this;
|
ProjectTreeNode higherEmptyParent = this;
|
||||||
while (higherEmptyParent != null) {
|
while (higherEmptyParent != null) {
|
||||||
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode) higherEmptyParent.getParent()).isEmpty())
|
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode)higherEmptyParent.getParent()).isEmpty()) higherEmptyParent = (ProjectTreeNode)higherEmptyParent.getParent();
|
||||||
higherEmptyParent = (ProjectTreeNode) higherEmptyParent.getParent();
|
|
||||||
else break;
|
else break;
|
||||||
}
|
}
|
||||||
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
||||||
@@ -259,7 +252,7 @@ public class TMXMapSet implements ProjectTreeNode {
|
|||||||
node.tmxFile = new File(this.mapFolder, node.tmxFile.getName());
|
node.tmxFile = new File(this.mapFolder, node.tmxFile.getName());
|
||||||
} else {
|
} else {
|
||||||
//Created node.
|
//Created node.
|
||||||
node.tmxFile = new File(this.mapFolder, node.id + ".tmx");
|
node.tmxFile = new File(this.mapFolder, node.id+".tmx");
|
||||||
}
|
}
|
||||||
node.parent = this;
|
node.parent = this;
|
||||||
if (higherEmptyParent != null) higherEmptyParent.notifyCreated();
|
if (higherEmptyParent != null) higherEmptyParent.notifyCreated();
|
||||||
|
|||||||
@@ -1,5 +1,40 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.awt.Point;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
import javax.xml.parsers.DocumentBuilder;
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
import javax.xml.transform.OutputKeys;
|
||||||
|
import javax.xml.transform.Result;
|
||||||
|
import javax.xml.transform.Source;
|
||||||
|
import javax.xml.transform.Transformer;
|
||||||
|
import javax.xml.transform.TransformerConfigurationException;
|
||||||
|
import javax.xml.transform.TransformerException;
|
||||||
|
import javax.xml.transform.TransformerFactory;
|
||||||
|
import javax.xml.transform.TransformerFactoryConfigurationError;
|
||||||
|
import javax.xml.transform.dom.DOMSource;
|
||||||
|
import javax.xml.transform.stream.StreamResult;
|
||||||
|
|
||||||
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.Element;
|
||||||
|
import org.w3c.dom.NodeList;
|
||||||
|
import org.xml.sax.InputSource;
|
||||||
|
import org.xml.sax.SAXException;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
@@ -7,35 +42,18 @@ import com.gpl.rpg.atcontentstudio.model.Project;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
import org.w3c.dom.Document;
|
|
||||||
import org.w3c.dom.Element;
|
|
||||||
import org.w3c.dom.NodeList;
|
|
||||||
import org.xml.sax.InputSource;
|
|
||||||
import org.xml.sax.SAXException;
|
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import javax.xml.parsers.DocumentBuilder;
|
|
||||||
import javax.xml.parsers.DocumentBuilderFactory;
|
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
|
||||||
import javax.xml.transform.*;
|
|
||||||
import javax.xml.transform.dom.DOMSource;
|
|
||||||
import javax.xml.transform.stream.StreamResult;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.*;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
public class Worldmap extends ArrayList<WorldmapSegment> implements ProjectTreeNode {
|
public class Worldmap extends ArrayList<WorldmapSegment> implements ProjectTreeNode {
|
||||||
|
|
||||||
private static final long serialVersionUID = 4590409256594556179L;
|
private static final long serialVersionUID = 4590409256594556179L;
|
||||||
|
|
||||||
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res/xml/worldmap.xml";
|
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res/xml/worldmap.xml";
|
||||||
public static final String DEFAULT_REL_PATH_IN_PROJECT = "maps" + File.separator + "worldmap.xml";
|
public static final String DEFAULT_REL_PATH_IN_PROJECT = "maps"+File.separator+"worldmap.xml";
|
||||||
|
|
||||||
public File worldmapFile;
|
public File worldmapFile;
|
||||||
public GameSource parent;
|
public GameSource parent;
|
||||||
|
|
||||||
public Map<String, Map<String, Point>> segments = new LinkedHashMap<String, Map<String, Point>>();
|
public Map<String, Map<String, Point>> segments = new LinkedHashMap<String, Map<String,Point>>();
|
||||||
|
|
||||||
public Worldmap(GameSource gameSource) {
|
public Worldmap(GameSource gameSource) {
|
||||||
this.parent = gameSource;
|
this.parent = gameSource;
|
||||||
@@ -134,13 +152,13 @@ public class Worldmap extends ArrayList<WorldmapSegment> implements ProjectTreeN
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0,this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -156,9 +174,8 @@ public class Worldmap extends ArrayList<WorldmapSegment> implements ProjectTreeN
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + "Worldmap";
|
return (needsSaving() ? "*" : "")+"Worldmap";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -173,17 +190,14 @@ public class Worldmap extends ArrayList<WorldmapSegment> implements ProjectTreeN
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return DefaultIcons.getMapClosedIcon();
|
return DefaultIcons.getMapClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
return DefaultIcons.getMapClosedIcon();
|
return DefaultIcons.getMapClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
return DefaultIcons.getMapOpenIcon();
|
return DefaultIcons.getMapOpenIcon();
|
||||||
@@ -231,8 +245,7 @@ public class Worldmap extends ArrayList<WorldmapSegment> implements ProjectTreeN
|
|||||||
public void addSegment(WorldmapSegment node) {
|
public void addSegment(WorldmapSegment node) {
|
||||||
ProjectTreeNode higherEmptyParent = this;
|
ProjectTreeNode higherEmptyParent = this;
|
||||||
while (higherEmptyParent != null) {
|
while (higherEmptyParent != null) {
|
||||||
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode) higherEmptyParent.getParent()).isEmpty())
|
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode)higherEmptyParent.getParent()).isEmpty()) higherEmptyParent = (ProjectTreeNode)higherEmptyParent.getParent();
|
||||||
higherEmptyParent = (ProjectTreeNode) higherEmptyParent.getParent();
|
|
||||||
else break;
|
else break;
|
||||||
}
|
}
|
||||||
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
||||||
|
|||||||
@@ -1,26 +1,34 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.maps;
|
package com.gpl.rpg.atcontentstudio.model.maps;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.awt.Point;
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
import javax.xml.transform.OutputKeys;
|
||||||
|
import javax.xml.transform.Result;
|
||||||
|
import javax.xml.transform.Source;
|
||||||
|
import javax.xml.transform.Transformer;
|
||||||
|
import javax.xml.transform.TransformerException;
|
||||||
|
import javax.xml.transform.TransformerFactory;
|
||||||
|
import javax.xml.transform.dom.DOMSource;
|
||||||
|
import javax.xml.transform.stream.StreamResult;
|
||||||
|
|
||||||
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.Element;
|
||||||
|
import org.w3c.dom.NodeList;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
import org.w3c.dom.Document;
|
|
||||||
import org.w3c.dom.Element;
|
|
||||||
import org.w3c.dom.NodeList;
|
|
||||||
|
|
||||||
import javax.xml.parsers.DocumentBuilderFactory;
|
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
|
||||||
import javax.xml.transform.*;
|
|
||||||
import javax.xml.transform.dom.DOMSource;
|
|
||||||
import javax.xml.transform.stream.StreamResult;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.ByteArrayOutputStream;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.LinkedHashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public class WorldmapSegment extends GameDataElement {
|
public class WorldmapSegment extends GameDataElement {
|
||||||
|
|
||||||
@@ -48,7 +56,7 @@ public class WorldmapSegment extends GameDataElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + id;
|
return (needsSaving() ? "*" : "")+id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -91,7 +99,7 @@ public class WorldmapSegment extends GameDataElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WorldmapSegment clone() {
|
public WorldmapSegment clone() {
|
||||||
WorldmapSegment clone = new WorldmapSegment((Worldmap) parent, id, (Element) xmlNode.cloneNode(true));
|
WorldmapSegment clone = new WorldmapSegment((Worldmap)parent, id, (Element) xmlNode.cloneNode(true));
|
||||||
|
|
||||||
return clone;
|
return clone;
|
||||||
}
|
}
|
||||||
@@ -122,7 +130,7 @@ public class WorldmapSegment extends GameDataElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
oldOne.removeBacklink(this);
|
oldOne.removeBacklink(this);
|
||||||
if (newOne != null) newOne.addBacklink(this);
|
if(newOne != null) newOne.addBacklink(this);
|
||||||
|
|
||||||
if (modified) {
|
if (modified) {
|
||||||
this.state = GameDataElement.State.modified;
|
this.state = GameDataElement.State.modified;
|
||||||
@@ -138,7 +146,7 @@ public class WorldmapSegment extends GameDataElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void save() {
|
public void save() {
|
||||||
((Worldmap) parent).save();
|
((Worldmap)parent).save();
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toXml() {
|
public String toXml() {
|
||||||
@@ -224,7 +232,6 @@ public class WorldmapSegment extends GameDataElement {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return DefaultIcons.getUIMapIcon();
|
return DefaultIcons.getUIMapIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getUIMapIcon();
|
return DefaultIcons.getUIMapIcon();
|
||||||
|
|||||||
177
src/com/gpl/rpg/atcontentstudio/model/saves/SavedGame.java
Normal file
177
src/com/gpl/rpg/atcontentstudio/model/saves/SavedGame.java
Normal file
@@ -0,0 +1,177 @@
|
|||||||
|
package com.gpl.rpg.atcontentstudio.model.saves;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
|
import com.gpl.rpg.andorstrainer.io.SavedGameIO;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
|
public class SavedGame extends GameDataElement {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -6443495534761084990L;
|
||||||
|
|
||||||
|
public File savedFile;
|
||||||
|
transient public com.gpl.rpg.andorstrainer.model.SavedGame loadedSave = null;
|
||||||
|
transient public SavedGamesSet parent;
|
||||||
|
|
||||||
|
public SavedGame(SavedGamesSet parent, File f) throws IOException {
|
||||||
|
savedFile = f;
|
||||||
|
refreshTransients(parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void refreshTransients(SavedGamesSet parent) throws IOException {
|
||||||
|
this.parent = parent;
|
||||||
|
this.loadedSave = SavedGameIO.loadFile(savedFile);
|
||||||
|
if (this.loadedSave == null) {
|
||||||
|
throw new IOException("Unable to load save: "+savedFile.getAbsolutePath());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Enumeration<ProjectTreeNode> children() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean getAllowsChildren() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TreeNode getChildAt(int arg0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getChildCount() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getIndex(TreeNode arg0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TreeNode getParent() {
|
||||||
|
return parent;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isLeaf() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
|
path.add(0,this);
|
||||||
|
parent.childrenAdded(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
|
path.add(0,this);
|
||||||
|
parent.childrenChanged(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
|
path.add(0,this);
|
||||||
|
parent.childrenRemoved(path);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void notifyCreated() {
|
||||||
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String getDesc() {
|
||||||
|
return (needsSaving() ? "*" : "")+loadedSave.displayInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Project getProject() {
|
||||||
|
return parent.getProject();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Image getIcon() {
|
||||||
|
return DefaultIcons.getHeroIcon();
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public Image getLeafIcon() {
|
||||||
|
return DefaultIcons.getHeroIcon();
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public Image getClosedIcon() {return null;}
|
||||||
|
@Override
|
||||||
|
public Image getOpenIcon() {return null;}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GameDataSet getDataSet() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Type getDataType() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isEmpty() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void parse() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void link() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GameDataElement clone() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void elementChanged(GameDataElement oldOne, GameDataElement newOne) {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getProjectFilename() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void save() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<SaveEvent> attemptSave() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
180
src/com/gpl/rpg/atcontentstudio/model/saves/SavedGamesSet.java
Normal file
180
src/com/gpl/rpg/atcontentstudio/model/saves/SavedGamesSet.java
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
package com.gpl.rpg.atcontentstudio.model.saves;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Vector;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
||||||
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
|
public class SavedGamesSet implements ProjectTreeNode, Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -6565834239789184087L;
|
||||||
|
|
||||||
|
public Vector<SavedGame> saves; //For simulations.
|
||||||
|
|
||||||
|
public Project parent;
|
||||||
|
|
||||||
|
public SavedGamesSet(Project parent) {
|
||||||
|
this.parent = parent;
|
||||||
|
saves = new Vector<SavedGame>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void refreshTransients() {
|
||||||
|
for (SavedGame save : saves) {
|
||||||
|
try {
|
||||||
|
save.refreshTransients(this);
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addError(e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addSave(File f) {
|
||||||
|
try {
|
||||||
|
ProjectTreeNode higherEmptyParent = this;
|
||||||
|
while (higherEmptyParent != null) {
|
||||||
|
if (higherEmptyParent.getParent() != null && ((ProjectTreeNode)higherEmptyParent.getParent()).isEmpty()) higherEmptyParent = (ProjectTreeNode)higherEmptyParent.getParent();
|
||||||
|
else break;
|
||||||
|
}
|
||||||
|
if (higherEmptyParent == this && !this.isEmpty()) higherEmptyParent = null;
|
||||||
|
SavedGame node = new SavedGame(this, f);
|
||||||
|
saves.add(node);
|
||||||
|
if (higherEmptyParent != null) higherEmptyParent.notifyCreated();
|
||||||
|
else node.notifyCreated();
|
||||||
|
} catch (IOException e) {
|
||||||
|
Notification.addError(e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public SavedGame getSave(File f) {
|
||||||
|
for (SavedGame save : saves) {
|
||||||
|
if (save.savedFile.equals(f)) return save;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Enumeration<? extends ProjectTreeNode> children() {
|
||||||
|
return saves.elements();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean getAllowsChildren() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TreeNode getChildAt(int arg0) {
|
||||||
|
return saves.elementAt(arg0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getChildCount() {
|
||||||
|
return saves.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getIndex(TreeNode arg0) {
|
||||||
|
return saves.indexOf(arg0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TreeNode getParent() {
|
||||||
|
return parent;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isLeaf() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
|
path.add(0, this);
|
||||||
|
parent.childrenAdded(path);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
|
path.add(0, this);
|
||||||
|
parent.childrenChanged(path);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
|
if (path.size() == 1 && this.getChildCount() == 1) {
|
||||||
|
childrenRemoved(new ArrayList<ProjectTreeNode>());
|
||||||
|
} else {
|
||||||
|
path.add(0, this);
|
||||||
|
parent.childrenRemoved(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void notifyCreated() {
|
||||||
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
|
for (SavedGame s : saves) {
|
||||||
|
s.notifyCreated();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String getDesc() {
|
||||||
|
return (needsSaving() ? "*" : "")+"Saved games";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Project getProject() {
|
||||||
|
return parent.getProject();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Image getIcon() {
|
||||||
|
return getOpenIcon();
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public Image getClosedIcon() {
|
||||||
|
return DefaultIcons.getSavClosedIcon();
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public Image getLeafIcon() {
|
||||||
|
return DefaultIcons.getSavClosedIcon();
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public Image getOpenIcon() {
|
||||||
|
return DefaultIcons.getSavOpenIcon();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GameDataSet getDataSet() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public Type getDataType() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isEmpty() {
|
||||||
|
return saves.isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean needsSaving() {
|
||||||
|
for (ProjectTreeNode node : saves) {
|
||||||
|
if (node.needsSaving()) return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,14 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.sprites;
|
package com.gpl.rpg.atcontentstudio.model.sprites;
|
||||||
|
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
import com.gpl.rpg.atcontentstudio.model.GameSource;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
import com.gpl.rpg.atcontentstudio.model.GameSource.Type;
|
||||||
import com.gpl.rpg.atcontentstudio.model.Project;
|
import com.gpl.rpg.atcontentstudio.model.Project;
|
||||||
@@ -7,16 +16,10 @@ import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
||||||
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class SpriteSheetSet implements ProjectTreeNode {
|
public class SpriteSheetSet implements ProjectTreeNode {
|
||||||
|
|
||||||
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res" + File.separator + "drawable" + File.separator;
|
public static final String DEFAULT_REL_PATH_IN_SOURCE = "res"+File.separator+"drawable"+File.separator;
|
||||||
public static final String DEFAULT_REL_PATH_IN_PROJECT = "spritesheets" + File.separator;
|
public static final String DEFAULT_REL_PATH_IN_PROJECT = "spritesheets"+File.separator;
|
||||||
|
|
||||||
public File drawableFolder = null;
|
public File drawableFolder = null;
|
||||||
|
|
||||||
@@ -26,8 +29,7 @@ public class SpriteSheetSet implements ProjectTreeNode {
|
|||||||
|
|
||||||
public SpriteSheetSet(GameSource source) {
|
public SpriteSheetSet(GameSource source) {
|
||||||
this.parent = source;
|
this.parent = source;
|
||||||
if (source.type == GameSource.Type.source)
|
if (source.type == GameSource.Type.source) this.drawableFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_SOURCE);
|
||||||
this.drawableFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_SOURCE);
|
|
||||||
else if (source.type == GameSource.Type.created | source.type == GameSource.Type.altered) {
|
else if (source.type == GameSource.Type.created | source.type == GameSource.Type.altered) {
|
||||||
this.drawableFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_PROJECT);
|
this.drawableFolder = new File(source.baseFolder, DEFAULT_REL_PATH_IN_PROJECT);
|
||||||
if (!this.drawableFolder.exists()) {
|
if (!this.drawableFolder.exists()) {
|
||||||
@@ -42,56 +44,46 @@ public class SpriteSheetSet implements ProjectTreeNode {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
spritesheets.sort(Comparator.comparing(s -> s.id));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Enumeration<Spritesheet> children() {
|
public Enumeration<Spritesheet> children() {
|
||||||
return Collections.enumeration(spritesheets);
|
return Collections.enumeration(spritesheets);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int arg0) {
|
public TreeNode getChildAt(int arg0) {
|
||||||
return spritesheets.get(arg0);
|
return spritesheets.get(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return spritesheets.size();
|
return spritesheets.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode arg0) {
|
public int getIndex(TreeNode arg0) {
|
||||||
return spritesheets.indexOf(arg0);
|
return spritesheets.indexOf(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
if (path.size() == 1 && this.getChildCount() == 1) {
|
if (path.size() == 1 && this.getChildCount() == 1) {
|
||||||
@@ -101,7 +93,6 @@ public class SpriteSheetSet implements ProjectTreeNode {
|
|||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
@@ -109,10 +100,9 @@ public class SpriteSheetSet implements ProjectTreeNode {
|
|||||||
s.notifyCreated();
|
s.notifyCreated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + "Spritesheets";
|
return (needsSaving() ? "*" : "")+"Spritesheets";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -124,17 +114,14 @@ public class SpriteSheetSet implements ProjectTreeNode {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getOpenIcon();
|
return getOpenIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {
|
||||||
return DefaultIcons.getSpriteClosedIcon();
|
return DefaultIcons.getSpriteClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return DefaultIcons.getSpriteClosedIcon();
|
return DefaultIcons.getSpriteClosedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {
|
||||||
return DefaultIcons.getSpriteOpenIcon();
|
return DefaultIcons.getSpriteOpenIcon();
|
||||||
@@ -158,7 +145,7 @@ public class SpriteSheetSet implements ProjectTreeNode {
|
|||||||
public Spritesheet getSpritesheet(String id) {
|
public Spritesheet getSpritesheet(String id) {
|
||||||
if (spritesheets == null) return null;
|
if (spritesheets == null) return null;
|
||||||
for (Spritesheet sheet : spritesheets) {
|
for (Spritesheet sheet : spritesheets) {
|
||||||
if (id.equals(sheet.id)) {
|
if (id.equals(sheet.id)){
|
||||||
return sheet;
|
return sheet;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,19 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.sprites;
|
package com.gpl.rpg.atcontentstudio.model.sprites;
|
||||||
|
|
||||||
|
import java.awt.Graphics;
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
|
import javax.swing.tree.TreeNode;
|
||||||
|
|
||||||
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
import com.gpl.rpg.atcontentstudio.ATContentStudio;
|
||||||
import com.gpl.rpg.atcontentstudio.Notification;
|
import com.gpl.rpg.atcontentstudio.Notification;
|
||||||
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
||||||
@@ -9,15 +23,6 @@ import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
|||||||
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
import com.gpl.rpg.atcontentstudio.model.SaveEvent;
|
||||||
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
import com.gpl.rpg.atcontentstudio.model.gamedata.GameDataSet;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
|
||||||
import javax.swing.tree.TreeNode;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
public class Spritesheet extends GameDataElement {
|
public class Spritesheet extends GameDataElement {
|
||||||
|
|
||||||
private static final long serialVersionUID = -5981708088278528586L;
|
private static final long serialVersionUID = -5981708088278528586L;
|
||||||
@@ -35,7 +40,7 @@ public class Spritesheet extends GameDataElement {
|
|||||||
monster,
|
monster,
|
||||||
item,
|
item,
|
||||||
actorcondition
|
actorcondition
|
||||||
}
|
};
|
||||||
|
|
||||||
//Lazy initialization.
|
//Lazy initialization.
|
||||||
public BufferedImage spritesheet = null;
|
public BufferedImage spritesheet = null;
|
||||||
@@ -47,19 +52,19 @@ public class Spritesheet extends GameDataElement {
|
|||||||
this.id = f.getName().substring(0, f.getName().lastIndexOf("."));
|
this.id = f.getName().substring(0, f.getName().lastIndexOf("."));
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
|
||||||
String cat = getProject().getSpritesheetsProperty("atcs.spritesheet." + this.id + ".category");
|
String cat = getProject().getSpritesheetsProperty("atcs.spritesheet."+this.id+".category");
|
||||||
if (cat != null) {
|
if (cat != null) {
|
||||||
this.category = Category.valueOf(cat);
|
this.category = Category.valueOf(cat);
|
||||||
}
|
}
|
||||||
String sizex = getProject().getSpritesheetsProperty("atcs.spritesheet." + this.id + ".sizex");
|
String sizex = getProject().getSpritesheetsProperty("atcs.spritesheet."+this.id+".sizex");
|
||||||
if (sizex != null) {
|
if (sizex != null) {
|
||||||
this.spriteWidth = Integer.parseInt(sizex);
|
this.spriteWidth = Integer.parseInt(sizex);
|
||||||
}
|
}
|
||||||
String sizey = getProject().getSpritesheetsProperty("atcs.spritesheet." + this.id + ".sizey");
|
String sizey = getProject().getSpritesheetsProperty("atcs.spritesheet."+this.id+".sizey");
|
||||||
if (sizey != null) {
|
if (sizey != null) {
|
||||||
this.spriteHeight = Integer.parseInt(sizey);
|
this.spriteHeight = Integer.parseInt(sizey);
|
||||||
}
|
}
|
||||||
String anim = getProject().getSpritesheetsProperty("atcs.spritesheet." + this.id + ".animate");
|
String anim = getProject().getSpritesheetsProperty("atcs.spritesheet."+this.id+".animate");
|
||||||
if (anim != null) {
|
if (anim != null) {
|
||||||
this.animated = Boolean.parseBoolean(anim);
|
this.animated = Boolean.parseBoolean(anim);
|
||||||
}
|
}
|
||||||
@@ -69,63 +74,52 @@ public class Spritesheet extends GameDataElement {
|
|||||||
public Enumeration<ProjectTreeNode> children() {
|
public Enumeration<ProjectTreeNode> children() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getAllowsChildren() {
|
public boolean getAllowsChildren() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getChildAt(int arg0) {
|
public TreeNode getChildAt(int arg0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getChildCount() {
|
public int getChildCount() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getIndex(TreeNode arg0) {
|
public int getIndex(TreeNode arg0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TreeNode getParent() {
|
public TreeNode getParent() {
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLeaf() {
|
public boolean isLeaf() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenAdded(List<ProjectTreeNode> path) {
|
public void childrenAdded(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenAdded(path);
|
parent.childrenAdded(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenChanged(List<ProjectTreeNode> path) {
|
public void childrenChanged(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenChanged(path);
|
parent.childrenChanged(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void childrenRemoved(List<ProjectTreeNode> path) {
|
public void childrenRemoved(List<ProjectTreeNode> path) {
|
||||||
path.add(0, this);
|
path.add(0, this);
|
||||||
parent.childrenRemoved(path);
|
parent.childrenRemoved(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyCreated() {
|
public void notifyCreated() {
|
||||||
childrenAdded(new ArrayList<ProjectTreeNode>());
|
childrenAdded(new ArrayList<ProjectTreeNode>());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return (needsSaving() ? "*" : "") + spritesheetFile.getName();
|
return (needsSaving() ? "*" : "")+spritesheetFile.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -138,12 +132,12 @@ public class Spritesheet extends GameDataElement {
|
|||||||
try {
|
try {
|
||||||
spritesheet = ImageIO.read(spritesheetFile);
|
spritesheet = ImageIO.read(spritesheetFile);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error loading image " + spritesheetFile.getAbsolutePath() + " : " + e.getMessage());
|
Notification.addError("Error loading image "+spritesheetFile.getAbsolutePath()+" : "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (int) (Math.ceil(((double) spritesheet.getWidth()) / ((double) spriteWidth)) * Math.ceil(((double) spritesheet.getHeight()) / ((double) spriteHeight)));
|
return (int) (Math.ceil(((double)spritesheet.getWidth()) / ((double)spriteWidth)) * Math.ceil(((double)spritesheet.getHeight()) / ((double)spriteHeight)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public BufferedImage getImage(int index) {
|
public BufferedImage getImage(int index) {
|
||||||
@@ -151,7 +145,7 @@ public class Spritesheet extends GameDataElement {
|
|||||||
try {
|
try {
|
||||||
spritesheet = ImageIO.read(spritesheetFile);
|
spritesheet = ImageIO.read(spritesheetFile);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Notification.addError("Error loading image " + spritesheetFile.getAbsolutePath() + " : " + e.getMessage());
|
Notification.addError("Error loading image "+spritesheetFile.getAbsolutePath()+" : "+e.getMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -181,7 +175,7 @@ public class Spritesheet extends GameDataElement {
|
|||||||
}
|
}
|
||||||
Image result = getImage(index);
|
Image result = getImage(index);
|
||||||
if (result == null) return null;
|
if (result == null) return null;
|
||||||
result = result.getScaledInstance((int) (16 * ATContentStudio.SCALING), (int) (16 * ATContentStudio.SCALING), Image.SCALE_SMOOTH);
|
result = result.getScaledInstance((int)(16*ATContentStudio.SCALING), (int)(16*ATContentStudio.SCALING), Image.SCALE_SMOOTH);
|
||||||
cache_icon.put(index, result);
|
cache_icon.put(index, result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -196,21 +190,14 @@ public class Spritesheet extends GameDataElement {
|
|||||||
public Image getIcon() {
|
public Image getIcon() {
|
||||||
return getIcon(0);
|
return getIcon(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getLeafIcon() {
|
public Image getLeafIcon() {
|
||||||
return getIcon();
|
return getIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getClosedIcon() {
|
public Image getClosedIcon() {return null;}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Image getOpenIcon() {
|
public Image getOpenIcon() {return null;}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -230,7 +217,7 @@ public class Spritesheet extends GameDataElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void parse() {
|
public void parse() {
|
||||||
if (this.state == GameDataElement.State.init) {
|
if(this.state == GameDataElement.State.init){
|
||||||
this.state = GameDataElement.State.parsed;
|
this.state = GameDataElement.State.parsed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -240,7 +227,7 @@ public class Spritesheet extends GameDataElement {
|
|||||||
if (this.state == GameDataElement.State.init) {
|
if (this.state == GameDataElement.State.init) {
|
||||||
this.parse();
|
this.parse();
|
||||||
}
|
}
|
||||||
if (this.state == GameDataElement.State.parsed) {
|
if(this.state == GameDataElement.State.parsed) {
|
||||||
this.state = GameDataElement.State.linked;
|
this.state = GameDataElement.State.linked;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -268,14 +255,10 @@ public class Spritesheet extends GameDataElement {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void save() {
|
public void save() {
|
||||||
if (this.category != null)
|
if (this.category != null) getProject().setSpritesheetsProperty("atcs.spritesheet."+this.id+".category", this.category.toString());
|
||||||
getProject().setSpritesheetsProperty("atcs.spritesheet." + this.id + ".category", this.category.toString());
|
if (this.spriteWidth != 32) getProject().setSpritesheetsProperty("atcs.spritesheet."+this.id+".sizex", Integer.toString(this.spriteWidth));
|
||||||
if (this.spriteWidth != 32)
|
if (this.spriteHeight != 32) getProject().setSpritesheetsProperty("atcs.spritesheet."+this.id+".sizey", Integer.toString(this.spriteHeight));
|
||||||
getProject().setSpritesheetsProperty("atcs.spritesheet." + this.id + ".sizex", Integer.toString(this.spriteWidth));
|
if (this.animated)getProject().setSpritesheetsProperty("atcs.spritesheet."+this.id+".animate", Boolean.toString(this.animated));
|
||||||
if (this.spriteHeight != 32)
|
|
||||||
getProject().setSpritesheetsProperty("atcs.spritesheet." + this.id + ".sizey", Integer.toString(this.spriteHeight));
|
|
||||||
if (this.animated)
|
|
||||||
getProject().setSpritesheetsProperty("atcs.spritesheet." + this.id + ".animate", Boolean.toString(this.animated));
|
|
||||||
getProject().save();
|
getProject().save();
|
||||||
|
|
||||||
this.state = GameDataElement.State.saved;
|
this.state = GameDataElement.State.saved;
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
package com.gpl.rpg.atcontentstudio.model.tools.i18n;
|
package com.gpl.rpg.atcontentstudio.model.tools.i18n;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.File;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.io.FileWriter;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.Writer;
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -15,7 +17,7 @@ public class PoPotWriter {
|
|||||||
|
|
||||||
public static void writePoFile(Map<String, List<String>> stringsResources, Map<String, String> translations, File destination) {
|
public static void writePoFile(Map<String, List<String>> stringsResources, Map<String, String> translations, File destination) {
|
||||||
try {
|
try {
|
||||||
Writer fw = new OutputStreamWriter(new FileOutputStream(destination), StandardCharsets.UTF_8);
|
FileWriter fw = new FileWriter(destination);
|
||||||
if (translations.get("") != null) {
|
if (translations.get("") != null) {
|
||||||
fw.write(translations.get(""));
|
fw.write(translations.get(""));
|
||||||
writeEndOfEntry(fw);
|
writeEndOfEntry(fw);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user