pixel-libgdx-backend was renamed to pixel-backend-libgdx II

This commit is contained in:
Robert Vokac 2024-09-11 17:35:08 +02:00
parent 7488fdccbf
commit 95e5d4f992
No known key found for this signature in database
GPG Key ID: C459E1E4B4A986BB
22 changed files with 23 additions and 21 deletions

View File

@ -6,7 +6,7 @@ import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration; import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import com.openeggbert.core.main.OpenEggbertGame; import com.openeggbert.core.main.OpenEggbertGame;
import com.pixelgamelibrary.Pixel; import com.pixelgamelibrary.Pixel;
import com.pixelgamelibrary.backends.libgdx.PixelLibGDXBackend; import com.pixelgamelibrary.backend.libgdx.PixelLibGDXBackend;
/** Launches the Android application. */ /** Launches the Android application. */
public class AndroidLauncher extends AndroidApplication { public class AndroidLauncher extends AndroidApplication {

View File

@ -7,6 +7,8 @@ buildscript {
google() google()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://repo.openeggbert.com/releases/' }
maven { url 'https://repo.openeggbert.com/snapshots/' }
} }
dependencies { dependencies {
classpath "com.android.tools.build:gradle:8.1.4" classpath "com.android.tools.build:gradle:8.1.4"

View File

@ -24,7 +24,7 @@
<inherits name="com.github.czyzby.websocket.GdxWebSocketSerialization" /> <inherits name="com.github.czyzby.websocket.GdxWebSocketSerialization" />
<inherits name="com.openeggbert.core.main.OpenEggbertGame" /> <inherits name="com.openeggbert.core.main.OpenEggbertGame" />
<inherits name="com.pixelgamelibrary.Pixel" /> <inherits name="com.pixelgamelibrary.Pixel" />
<inherits name="com.pixelgamelibrary.backends.libgdx.PixelLibGDXBackend" /> <inherits name="com.pixelgamelibrary.backend.libgdx.PixelLibGDXBackend" />
<!--<inherits name="com.openeggbert.gdx.storage.GdxStorageMainClass" />--> <!--<inherits name="com.openeggbert.gdx.storage.GdxStorageMainClass" />-->
<inherits name="formic" /> <inherits name="formic" />
<inherits name="guacamole_gdx_gwt" /> <inherits name="guacamole_gdx_gwt" />

View File

@ -6,7 +6,7 @@ import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
import com.openeggbert.core.configuration.ScreenResolution; import com.openeggbert.core.configuration.ScreenResolution;
import com.openeggbert.core.main.OpenEggbertGame; import com.openeggbert.core.main.OpenEggbertGame;
import com.pixelgamelibrary.Pixel; import com.pixelgamelibrary.Pixel;
import com.pixelgamelibrary.backends.libgdx.PixelLibGDXBackend; import com.pixelgamelibrary.backend.libgdx.PixelLibGDXBackend;
/** Launches the GWT application. */ /** Launches the GWT application. */
public class GwtLauncher extends GwtApplication { public class GwtLauncher extends GwtApplication {

View File

@ -26,7 +26,7 @@ import com.openeggbert.core.configuration.ScreenResolution;
import com.openeggbert.core.main.OpenEggbertGame; import com.openeggbert.core.main.OpenEggbertGame;
import com.openeggbert.core.gamespace.GameSpace; import com.openeggbert.core.gamespace.GameSpace;
import com.pixelgamelibrary.Pixel; import com.pixelgamelibrary.Pixel;
import com.pixelgamelibrary.backends.libgdx.PixelLibGDXBackend; import com.pixelgamelibrary.backend.libgdx.PixelLibGDXBackend;
import java.util.Optional; import java.util.Optional;
/** Launches the desktop (LWJGL3) application. */ /** Launches the desktop (LWJGL3) application. */

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.badlogic.gdx.Application; import com.badlogic.gdx.Application;
import static com.badlogic.gdx.Application.ApplicationType.Android; import static com.badlogic.gdx.Application.ApplicationType.Android;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.pixelgamelibrary.api.AssetI; import com.pixelgamelibrary.api.AssetI;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.pixelgamelibrary.api.AudioI; import com.pixelgamelibrary.api.AudioI;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.badlogic.gdx.utils.XmlReader; import com.badlogic.gdx.utils.XmlReader;
import com.pixelgamelibrary.api.XmlElement; import com.pixelgamelibrary.api.XmlElement;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Graphics; import com.badlogic.gdx.Graphics;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.pixelgamelibrary.api.InputI; import com.pixelgamelibrary.api.InputI;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.pixelgamelibrary.api.NetI; import com.pixelgamelibrary.api.NetI;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.badlogic.gdx.Application; import com.badlogic.gdx.Application;
import static com.badlogic.gdx.Application.ApplicationType.Desktop; import static com.badlogic.gdx.Application.ApplicationType.Desktop;

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.pixelgamelibrary.api.StorageI; import com.pixelgamelibrary.api.StorageI;
import com.pixelgamelibrary.backends.libgdx.storage.StorageFactory; import com.pixelgamelibrary.backend.libgdx.storage.StorageFactory;
import com.pixelgamelibrary.storage.Storage; import com.pixelgamelibrary.storage.Storage;
/** /**

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 com.pixelgamelibrary.backends.libgdx; package com.pixelgamelibrary.backend.libgdx;
import com.badlogic.gdx.utils.Base64Coder; import com.badlogic.gdx.utils.Base64Coder;
import com.badlogic.gdx.utils.XmlReader; import com.badlogic.gdx.utils.XmlReader;

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 com.pixelgamelibrary.backends.libgdx.storage; package com.pixelgamelibrary.backend.libgdx.storage;
import com.pixelgamelibrary.Platform; import com.pixelgamelibrary.Platform;

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 com.pixelgamelibrary.backends.libgdx.storage; package com.pixelgamelibrary.backend.libgdx.storage;
import com.pixelgamelibrary.Platform; import com.pixelgamelibrary.Platform;
import com.pixelgamelibrary.storage.Storage; import com.pixelgamelibrary.storage.Storage;

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 com.pixelgamelibrary.backends.libgdx.storage; package com.pixelgamelibrary.backend.libgdx.storage;
import com.pixelgamelibrary.Platform; import com.pixelgamelibrary.Platform;

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 com.pixelgamelibrary.backends.libgdx.storage; package com.pixelgamelibrary.backend.libgdx.storage;
import com.badlogic.gdx.Preferences; import com.badlogic.gdx.Preferences;
import com.pixelgamelibrary.storage.map.SimpleMap; import com.pixelgamelibrary.storage.map.SimpleMap;

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 com.pixelgamelibrary.backends.libgdx.storage; package com.pixelgamelibrary.backend.libgdx.storage;
import com.pixelgamelibrary.storage.map.MemoryStorage; import com.pixelgamelibrary.storage.map.MemoryStorage;
import com.pixelgamelibrary.Pixel; import com.pixelgamelibrary.Pixel;

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 com.pixelgamelibrary.backends.libgdx.storage; package com.pixelgamelibrary.backend.libgdx.storage;
import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Preferences; import com.badlogic.gdx.Preferences;