1
0
mirror of https://github.com/openeggbert/sprite-utils.git synced 2025-03-25 15:37:50 +01:00

Some changes

This commit is contained in:
Robert Vokac 2024-10-13 09:08:26 +02:00
parent 0b2efe092f
commit 99f7d66ff4
Signed by: robertvokac
GPG Key ID: FB9CE8E20AADA55F
17 changed files with 40 additions and 39 deletions

View File

@ -9,8 +9,8 @@
---------- ----------
N: Robert Vokac N: Robert Vokac
E: mail@robertvokac.com E: robertvokac@robertvokac.com
W: https://robertvokac.com W: https://robertvokac.com
P: 4096R/C459E1E4 B209 C3F1 25C7 2618 FB18 AC8E C459 E1E4 B4A9 86BB P: 4096R/C459E1E4 255C 69CC 1D09 CA54 EF0C C9DF FB9C E8E2 0AAD A55F
D: Founder D: Founder
S: Czech Republic S: Czech Republic

View File

21
pom.xml
View File

@ -3,6 +3,7 @@
sprite-utils: Tool used to work with sprites sprite-utils: Tool used to work with sprites
Copyright (C) 2024-2024 the original author or authors. Copyright (C) 2024-2024 the original author or authors.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3 as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version. of the License, or (at your option) any later version.
@ -28,7 +29,7 @@
<version>0.1.1-SNAPSHOT</version> <version>0.1.1-SNAPSHOT</version>
</parent> </parent>
<groupId>org.nanoboot.utils</groupId> <groupId>com.openeggbert.utils</groupId>
<artifactId>sprite-utils</artifactId> <artifactId>sprite-utils</artifactId>
<version>0.0.0-SNAPSHOT</version> <version>0.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
@ -80,7 +81,7 @@
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>org.nanoboot.spriteutils.core.Main</mainClass> <mainClass>com.openeggbert.utils.spriteutils.core.Main</mainClass>
</manifest> </manifest>
</archive> </archive>
<descriptorRefs> <descriptorRefs>
@ -173,26 +174,26 @@
<repositories> <repositories>
<repository> <repository>
<id>releases</id> <id>releases</id>
<name>nanoboot-releases-repository</name> <name>openeggbert-releases-repository</name>
<url>https://maven.nanoboot.org/releases</url> <url>https://repo.openeggbert.com/releases</url>
</repository> </repository>
<repository> <repository>
<id>snapshots</id> <id>snapshots</id>
<name>nanoboot-snapshots-repository</name> <name>openeggbert-snapshots-repository</name>
<url>https://maven.nanoboot.org/snapshots</url> <url>https://repo.openeggbert.com/snapshots</url>
</repository> </repository>
</repositories> </repositories>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>releases</id> <id>releases</id>
<name>nanoboot-releases-repository</name> <name>openeggbert-releases-repository</name>
<url>https://maven.nanoboot.org/releases</url> <url>https://repo.openeggbert.com/releases</url>
</pluginRepository> </pluginRepository>
<pluginRepository> <pluginRepository>
<id>snapshots</id> <id>snapshots</id>
<name>nanoboot-snapshots-repository</name> <name>openeggbert-snapshots-repository</name>
<url>https://maven.nanoboot.org/snapshots</url> <url>https://repo.openeggbert.com/snapshots</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.commands; package com.openeggbert.utils.spriteutils.commands;
import java.awt.BasicStroke; import java.awt.BasicStroke;
import java.awt.Color; import java.awt.Color;
@ -38,13 +38,13 @@ import net.sf.image4j.codec.bmp.BMPEncoder;
import net.sf.image4j.codec.bmp.BMPImage; import net.sf.image4j.codec.bmp.BMPImage;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
import org.nanoboot.spriteutils.core.Command; import com.openeggbert.utils.spriteutils.core.Command;
import org.nanoboot.spriteutils.core.SpriteSheet; import com.openeggbert.utils.spriteutils.core.SpriteSheet;
import org.nanoboot.spriteutils.core.SpriteSheetRow; import com.openeggbert.utils.spriteutils.core.SpriteSheetRow;
import org.nanoboot.spriteutils.core.SpriteUtilsArgs; import com.openeggbert.utils.spriteutils.core.SpriteUtilsArgs;
import org.nanoboot.spriteutils.core.SpriteUtilsException; import com.openeggbert.utils.spriteutils.core.SpriteUtilsException;
import org.nanoboot.spriteutils.core.SpriteUtilsOptions; import com.openeggbert.utils.spriteutils.core.SpriteUtilsOptions;
import org.nanoboot.spriteutils.core.Utils; import com.openeggbert.utils.spriteutils.core.Utils;
/** /**
* *

View File

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.commands; package com.openeggbert.utils.spriteutils.commands;
import org.nanoboot.spriteutils.core.Command; import com.openeggbert.utils.spriteutils.core.Command;
import org.nanoboot.spriteutils.core.SpriteUtilsArgs; import com.openeggbert.utils.spriteutils.core.SpriteUtilsArgs;
/** /**
* *

View File

@ -17,12 +17,12 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.commands; package com.openeggbert.utils.spriteutils.commands;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
import org.nanoboot.spriteutils.core.Command; import com.openeggbert.utils.spriteutils.core.Command;
import org.nanoboot.spriteutils.core.SpriteUtilsArgs; import com.openeggbert.utils.spriteutils.core.SpriteUtilsArgs;
/** /**
* *

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
/** /**
* *

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
/** /**
* @author <a href="mailto:mail@robertvokac.com">Robert Vokac</a> * @author <a href="mailto:mail@robertvokac.com">Robert Vokac</a>

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
import java.io.File; import java.io.File;
import java.util.ArrayList; import java.util.ArrayList;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;

View File

@ -17,15 +17,15 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
import org.nanoboot.spriteutils.commands.DrawCommand; import com.openeggbert.utils.spriteutils.commands.DrawCommand;
import org.nanoboot.spriteutils.commands.HelpCommand; import com.openeggbert.utils.spriteutils.commands.HelpCommand;
import org.nanoboot.spriteutils.commands.VersionCommand; import com.openeggbert.utils.spriteutils.commands.VersionCommand;
/** /**
* *

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;

View File

@ -16,7 +16,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
/** /**
* *

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
/** /**
* @author <a href="mailto:mail@robertvokac.com">Robert Vokac</a> * @author <a href="mailto:mail@robertvokac.com">Robert Vokac</a>

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
import java.awt.Color; import java.awt.Color;
import java.util.Optional; import java.util.Optional;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package org.nanoboot.spriteutils.core; package com.openeggbert.utils.spriteutils.core;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.File; import java.io.File;