Pixel was moved to another package

This commit is contained in:
Robert Vokac 2024-12-22 21:18:29 +01:00
parent 2c6bd52566
commit e6d7676df9
Signed by: robertvokac
GPG Key ID: FB9CE8E20AADA55F
137 changed files with 315 additions and 315 deletions

View File

@ -1 +1 @@
# Pixel Game Library
# Pixel Game Framework

View File

@ -5,7 +5,7 @@ plugins {
id 'maven-publish'
}
group = 'com.pixelgamelibrary'
group = 'com.openeggbert.pixel'
version = '0.0.0-SNAPSHOT'
repositories {
@ -47,7 +47,7 @@ test {
eclipse {
project {
name = 'pixel'
name = 'pixel-framework'
}
}
@ -61,10 +61,10 @@ idea {
}
}
// Include Pixel.gwt.xml in the JAR without moving it
// Include pixelframework.gwt.xml in the JAR without moving it
jar {
from(sourceSets.main.allSource) {
include 'com/pixelgamelibrary/pixelapi.gwt.xml'
include 'com/openeggbert/pixel/pixelframework.gwt.xml'
}
}
@ -87,8 +87,8 @@ task javadocJar(type: Jar) {
publishing {
publications {
mavenJava(MavenPublication) {
artifactId 'pixel'
groupId 'com.pixelgamelibrary'
artifactId 'pixel-framework'
groupId 'com.openeggbert.pixel'
from components.java
artifact sourceJar

View File

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

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
/**
*

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
import lombok.Getter;

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.screen.Screen;
import com.openeggbert.pixel.framework.screen.Screen;
/**
*

View File

@ -17,18 +17,18 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.interfaces.PixelBackend;
import com.pixelgamelibrary.api.interfaces.Files;
import com.pixelgamelibrary.api.interfaces.Audio;
import com.pixelgamelibrary.api.interfaces.Graphics;
import com.pixelgamelibrary.api.interfaces.Input;
import com.pixelgamelibrary.api.interfaces.Internal;
import com.pixelgamelibrary.api.interfaces.Net;
import com.pixelgamelibrary.api.interfaces.Utils;
import com.pixelgamelibrary.api.interfaces.App;
import com.pixelgamelibrary.api.interfaces.Extension;
import com.openeggbert.pixel.framework.interfaces.PixelBackend;
import com.openeggbert.pixel.framework.interfaces.Files;
import com.openeggbert.pixel.framework.interfaces.Audio;
import com.openeggbert.pixel.framework.interfaces.Graphics;
import com.openeggbert.pixel.framework.interfaces.Input;
import com.openeggbert.pixel.framework.interfaces.Internal;
import com.openeggbert.pixel.framework.interfaces.Net;
import com.openeggbert.pixel.framework.interfaces.Utils;
import com.openeggbert.pixel.framework.interfaces.App;
import com.openeggbert.pixel.framework.interfaces.Extension;
/**
*

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.game.Game;
import com.openeggbert.pixel.framework.game.Game;
import java.util.HashMap;
import java.util.Map;

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
/**
*

View File

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

View File

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

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.PixelException;
import com.openeggbert.pixel.framework.PixelException;
/** Represents the version of the game library.
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api;
package com.openeggbert.pixel.framework;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.app;
package com.openeggbert.pixel.framework.app;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.app;
package com.openeggbert.pixel.framework.app;
/**
*

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.app;
package com.openeggbert.pixel.framework.app;
import com.pixelgamelibrary.api.files.map.SimpleMap;
import com.openeggbert.pixel.framework.files.map.SimpleMap;
/**
*

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.audio;
package com.openeggbert.pixel.framework.audio;
/**
* The Music interface represents a longer audio track that can be controlled with playback functions.

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.audio;
package com.openeggbert.pixel.framework.audio;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
/**
* The Sound interface represents a short audio clip that can be played and controlled in various ways.

View File

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.extension;
package com.openeggbert.pixel.framework.extension;
import com.pixelgamelibrary.api.PixelException;
import com.pixelgamelibrary.api.interfaces.Extension;
import com.openeggbert.pixel.framework.PixelException;
import com.openeggbert.pixel.framework.interfaces.Extension;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

View File

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

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files;
package com.openeggbert.pixel.framework.files;
import com.pixelgamelibrary.api.PixelException;
import com.openeggbert.pixel.framework.PixelException;
/**
* FileException is a custom exception class that extends {@link PixelException}.

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files;
package com.openeggbert.pixel.framework.files;
import static com.pixelgamelibrary.api.files.RegularFileType.TEXT;
import static com.openeggbert.pixel.framework.files.RegularFileType.TEXT;
import java.util.ArrayList;
import java.util.List;

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files;
package com.openeggbert.pixel.framework.files;
import com.pixelgamelibrary.api.Platform;
import com.openeggbert.pixel.framework.Platform;
import java.util.List;
/**

View File

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

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files;
package com.openeggbert.pixel.framework.files;
/**

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files;
package com.openeggbert.pixel.framework.files;
/**

View File

@ -17,17 +17,17 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map;
package com.openeggbert.pixel.framework.files.map;
import com.pixelgamelibrary.api.Pixel;
import com.pixelgamelibrary.api.Platform;
import com.pixelgamelibrary.api.files.FileType;
import com.pixelgamelibrary.api.files.RegularFileType;
import com.pixelgamelibrary.api.files.FileException;
import com.pixelgamelibrary.api.files.FileSystemType;
import com.openeggbert.pixel.framework.Pixel;
import com.openeggbert.pixel.framework.Platform;
import com.openeggbert.pixel.framework.files.FileType;
import com.openeggbert.pixel.framework.files.RegularFileType;
import com.openeggbert.pixel.framework.files.FileException;
import com.openeggbert.pixel.framework.files.FileSystemType;
import java.util.List;
import java.util.stream.Collectors;
import com.pixelgamelibrary.api.files.FileSystem;
import com.openeggbert.pixel.framework.files.FileSystem;
/**
* Implementation of the FileSystem interface for managing a map-based file system.

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map;
package com.openeggbert.pixel.framework.files.map;
/**
*

View File

@ -18,12 +18,12 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map;
package com.openeggbert.pixel.framework.files.map;
import com.pixelgamelibrary.api.files.FileType;
import com.pixelgamelibrary.api.files.FileException;
import static com.pixelgamelibrary.api.files.FileType.DIRECTORY;
import static com.pixelgamelibrary.api.files.FileType.FILE;
import com.openeggbert.pixel.framework.files.FileType;
import com.openeggbert.pixel.framework.files.FileException;
import static com.openeggbert.pixel.framework.files.FileType.DIRECTORY;
import static com.openeggbert.pixel.framework.files.FileType.FILE;
/**
*

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map;
package com.openeggbert.pixel.framework.files.map;
import com.pixelgamelibrary.api.Platform;
import com.openeggbert.pixel.framework.Platform;
/**
* Implementation of FileSystem that uses an in-memory map for storing data.

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map;
package com.openeggbert.pixel.framework.files.map;
import java.util.Collections;
import java.util.HashMap;

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map;
package com.openeggbert.pixel.framework.files.map;
import java.util.List;
import java.util.Map;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell;
package com.openeggbert.pixel.framework.files.shell;
import java.util.function.Function;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell;
package com.openeggbert.pixel.framework.files.shell;
/**
* The {@code ShellCommand} interface defines the contract for commands that can be executed within

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell;
package com.openeggbert.pixel.framework.files.shell;
import java.util.Arrays;
import java.util.Date;
@ -28,7 +28,7 @@ import java.util.Optional;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import com.pixelgamelibrary.api.files.FileSystem;
import com.openeggbert.pixel.framework.files.FileSystem;
/**
* The ShellCommandLine class represents a command-line interface for interacting with file system.

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell;
package com.openeggbert.pixel.framework.files.shell;
/**
* The ShellCommandLineScanner class provides a command-line interface for interacting with

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell;
package com.openeggbert.pixel.framework.files.shell;
/**
* The ShellCommandResult class encapsulates the result of executing a file system command.

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell;
package com.openeggbert.pixel.framework.files.shell;
/**
* The {@code CommandLineScanner} interface defines a contract for scanning input from a command line.

View File

@ -17,11 +17,11 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.game;
package com.openeggbert.pixel.framework.game;
import com.pixelgamelibrary.api.ApplicationListener;
import com.pixelgamelibrary.api.OnSetScreenListener;
import com.pixelgamelibrary.api.screen.Screen;
import com.openeggbert.pixel.framework.ApplicationListener;
import com.openeggbert.pixel.framework.OnSetScreenListener;
import com.openeggbert.pixel.framework.screen.Screen;
/**
*

View File

@ -18,10 +18,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.game;
package com.openeggbert.pixel.framework.game;
import com.pixelgamelibrary.api.OnSetScreenListener;
import com.pixelgamelibrary.api.screen.Screen;
import com.openeggbert.pixel.framework.OnSetScreenListener;
import com.openeggbert.pixel.framework.screen.Screen;
/**
*

View File

@ -18,10 +18,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.game;
package com.openeggbert.pixel.framework.game;
import com.pixelgamelibrary.api.OnSetScreenListener;
import com.pixelgamelibrary.api.screen.Screen;
import com.openeggbert.pixel.framework.OnSetScreenListener;
import com.openeggbert.pixel.framework.screen.Screen;
/**

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import lombok.Getter;
import lombok.Setter;

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
/**
*

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.files.File;
import com.openeggbert.pixel.framework.files.File;
/**
*

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.math.Vector2;
import com.openeggbert.pixel.framework.math.Vector2;
/**
*

View File

@ -17,16 +17,16 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Pixel;
import com.pixelgamelibrary.api.PixelException;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_16;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_24;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_32;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_4;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_8;
import com.pixelgamelibrary.api.utils.StringUtilsImpl;
import com.openeggbert.pixel.framework.Pixel;
import com.openeggbert.pixel.framework.PixelException;
import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_16;
import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_24;
import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_32;
import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_4;
import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_8;
import com.openeggbert.pixel.framework.utils.StringUtilsImpl;
import java.util.BitSet;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
///////////////////////////////////////////////////////////////////////////////////////////////
// Pixel: Game library.

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.PixelException;
import com.openeggbert.pixel.framework.PixelException;
import lombok.Getter;
/**

View File

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Pixel;
import com.pixelgamelibrary.api.utils.BinaryUtils;
import com.openeggbert.pixel.framework.Pixel;
import com.openeggbert.pixel.framework.utils.BinaryUtils;
import java.util.BitSet;
import lombok.AllArgsConstructor;
import lombok.Getter;

View File

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

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
* Interface for drawable objects, providing methods for drawing shapes,

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.ViewMode;
import com.openeggbert.pixel.framework.ViewMode;
import java.util.List;
/**

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import lombok.AllArgsConstructor;
import lombok.Data;

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.files.File;
import com.openeggbert.pixel.framework.files.File;
/**
*

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
/**
*

View File

@ -17,11 +17,11 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable;
import com.pixelgamelibrary.api.math.Rectangle;
import com.pixelgamelibrary.api.math.Angle;
import com.openeggbert.pixel.framework.Disposable;
import com.openeggbert.pixel.framework.math.Rectangle;
import com.openeggbert.pixel.framework.math.Angle;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.files.File;
import com.openeggbert.pixel.framework.files.File;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics;
package com.openeggbert.pixel.framework.graphics;
/**
*

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input;
package com.openeggbert.pixel.framework.input;
/**
*

View File

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

View File

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

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input;
package com.openeggbert.pixel.framework.input;

View File

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

View File

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

View File

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

View File

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

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input;
package com.openeggbert.pixel.framework.input;
/**
*

View File

@ -17,14 +17,14 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.PixelFeature;
import com.pixelgamelibrary.api.Platform;
import com.pixelgamelibrary.api.game.Game;
import com.pixelgamelibrary.api.app.ClipBoard;
import com.pixelgamelibrary.api.app.LogLevel;
import com.pixelgamelibrary.api.app.Preferences;
import com.openeggbert.pixel.framework.PixelFeature;
import com.openeggbert.pixel.framework.Platform;
import com.openeggbert.pixel.framework.game.Game;
import com.openeggbert.pixel.framework.app.ClipBoard;
import com.openeggbert.pixel.framework.app.LogLevel;
import com.openeggbert.pixel.framework.app.Preferences;
/**
*

View File

@ -17,11 +17,11 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.audio.Music;
import com.pixelgamelibrary.api.audio.Sound;
import com.pixelgamelibrary.api.files.File;
import com.openeggbert.pixel.framework.audio.Music;
import com.openeggbert.pixel.framework.audio.Sound;
import com.openeggbert.pixel.framework.files.File;
/**
*

View File

@ -14,7 +14,7 @@
// If not, see <https://www.gnu.org/licenses/> or write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
////////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import java.util.List;

View File

@ -17,20 +17,20 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.files.FileException;
import com.pixelgamelibrary.api.files.FileSystemType;
import static com.pixelgamelibrary.api.files.FileSystemType.ASSETS;
import static com.pixelgamelibrary.api.files.FileSystemType.EXTERNAL;
import com.pixelgamelibrary.api.files.FileSystem;
import com.pixelgamelibrary.api.files.File;
import static com.pixelgamelibrary.api.files.FileSystemType.ABSOLUTE;
import static com.pixelgamelibrary.api.files.FileSystemType.ASSETS;
import static com.pixelgamelibrary.api.files.FileSystemType.EXTERNAL;
import static com.pixelgamelibrary.api.files.FileSystemType.LOCAL;
import static com.pixelgamelibrary.api.files.FileSystemType.RELATIVE;
import static com.pixelgamelibrary.api.files.FileSystemType.TMP;
import com.openeggbert.pixel.framework.files.FileException;
import com.openeggbert.pixel.framework.files.FileSystemType;
import static com.openeggbert.pixel.framework.files.FileSystemType.ASSETS;
import static com.openeggbert.pixel.framework.files.FileSystemType.EXTERNAL;
import com.openeggbert.pixel.framework.files.FileSystem;
import com.openeggbert.pixel.framework.files.File;
import static com.openeggbert.pixel.framework.files.FileSystemType.ABSOLUTE;
import static com.openeggbert.pixel.framework.files.FileSystemType.ASSETS;
import static com.openeggbert.pixel.framework.files.FileSystemType.EXTERNAL;
import static com.openeggbert.pixel.framework.files.FileSystemType.LOCAL;
import static com.openeggbert.pixel.framework.files.FileSystemType.RELATIVE;
import static com.openeggbert.pixel.framework.files.FileSystemType.TMP;
/**
*

View File

@ -17,20 +17,20 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.graphics.BitmapFont;
import com.pixelgamelibrary.api.graphics.BitmapFontFactory;
import com.pixelgamelibrary.api.graphics.Cursor;
import com.pixelgamelibrary.api.graphics.Monitor;
import com.openeggbert.pixel.framework.graphics.BitmapFont;
import com.openeggbert.pixel.framework.graphics.BitmapFontFactory;
import com.openeggbert.pixel.framework.graphics.Cursor;
import com.openeggbert.pixel.framework.graphics.Monitor;
import java.util.List;
import com.pixelgamelibrary.api.graphics.Pixmap;
import com.pixelgamelibrary.api.graphics.SpriteBatch;
import com.pixelgamelibrary.api.graphics.SpriteBatchFactory;
import com.pixelgamelibrary.api.graphics.Texture;
import com.pixelgamelibrary.api.graphics.TextureFactory;
import com.pixelgamelibrary.api.graphics.TextureRegion;
import com.pixelgamelibrary.api.files.File;
import com.openeggbert.pixel.framework.graphics.Pixmap;
import com.openeggbert.pixel.framework.graphics.SpriteBatch;
import com.openeggbert.pixel.framework.graphics.SpriteBatchFactory;
import com.openeggbert.pixel.framework.graphics.Texture;
import com.openeggbert.pixel.framework.graphics.TextureFactory;
import com.openeggbert.pixel.framework.graphics.TextureRegion;
import com.openeggbert.pixel.framework.files.File;
/**
*

View File

@ -17,17 +17,17 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.input.DeviceOrientation;
import com.pixelgamelibrary.api.input.InputProcessor;
import com.pixelgamelibrary.api.input.KeyboardKey;
import com.pixelgamelibrary.api.input.MouseButton;
import com.pixelgamelibrary.api.input.OnScreenKeyboardType;
import com.pixelgamelibrary.api.input.Peripheral;
import com.pixelgamelibrary.api.input.VibrationType;
import com.pixelgamelibrary.api.math.Vector2;
import com.pixelgamelibrary.api.math.Vector3;
import com.openeggbert.pixel.framework.input.DeviceOrientation;
import com.openeggbert.pixel.framework.input.InputProcessor;
import com.openeggbert.pixel.framework.input.KeyboardKey;
import com.openeggbert.pixel.framework.input.MouseButton;
import com.openeggbert.pixel.framework.input.OnScreenKeyboardType;
import com.openeggbert.pixel.framework.input.Peripheral;
import com.openeggbert.pixel.framework.input.VibrationType;
import com.openeggbert.pixel.framework.math.Vector2;
import com.openeggbert.pixel.framework.math.Vector3;
/**
*

View File

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

View File

@ -17,14 +17,14 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.net.sockets.ClientSocket;
import com.pixelgamelibrary.api.net.sockets.ServerSocket;
import com.pixelgamelibrary.api.net.sockets.ClientSocketHints;
import com.pixelgamelibrary.api.net.http.HttpRequest;
import com.pixelgamelibrary.api.net.http.HttpResponseListener;
import com.pixelgamelibrary.api.net.sockets.ServerSocketHints;
import com.openeggbert.pixel.framework.net.sockets.ClientSocket;
import com.openeggbert.pixel.framework.net.sockets.ServerSocket;
import com.openeggbert.pixel.framework.net.sockets.ClientSocketHints;
import com.openeggbert.pixel.framework.net.http.HttpRequest;
import com.openeggbert.pixel.framework.net.http.HttpResponseListener;
import com.openeggbert.pixel.framework.net.sockets.ServerSocketHints;
/**
*

View File

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.PixelException;
import com.pixelgamelibrary.api.extension.ExtensionImpl;
import com.openeggbert.pixel.framework.PixelException;
import com.openeggbert.pixel.framework.extension.ExtensionImpl;
/**
*

View File

@ -17,13 +17,13 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces;
package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.utils.BinaryUtilsImpl;
import com.pixelgamelibrary.api.utils.CollectionUtils;
import com.pixelgamelibrary.api.utils.ReflectionUtils;
import com.pixelgamelibrary.api.utils.StringUtils;
import com.pixelgamelibrary.api.utils.StringUtilsImpl;
import com.openeggbert.pixel.framework.utils.BinaryUtilsImpl;
import com.openeggbert.pixel.framework.utils.CollectionUtils;
import com.openeggbert.pixel.framework.utils.ReflectionUtils;
import com.openeggbert.pixel.framework.utils.StringUtils;
import com.openeggbert.pixel.framework.utils.StringUtilsImpl;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;

View File

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

View File

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

View File

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

View File

@ -17,12 +17,12 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math;
package com.openeggbert.pixel.framework.math;
import com.pixelgamelibrary.api.PixelException;
import static com.pixelgamelibrary.api.math.AngleUnit.GRADIAN;
import static com.pixelgamelibrary.api.math.AngleUnit.NORMALIZED;
import static com.pixelgamelibrary.api.math.AngleUnit.RADIAN;
import com.openeggbert.pixel.framework.PixelException;
import static com.openeggbert.pixel.framework.math.AngleUnit.GRADIAN;
import static com.openeggbert.pixel.framework.math.AngleUnit.NORMALIZED;
import static com.openeggbert.pixel.framework.math.AngleUnit.RADIAN;
/**
* Utility class for converting between different angle units.

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math;
package com.openeggbert.pixel.framework.math;
import lombok.AllArgsConstructor;
import lombok.Getter;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math;
package com.openeggbert.pixel.framework.math;
import lombok.AllArgsConstructor;
import lombok.Getter;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math;
package com.openeggbert.pixel.framework.math;
import lombok.AllArgsConstructor;
import lombok.Getter;

View File

@ -16,7 +16,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http;
package com.openeggbert.pixel.framework.net.http;
/**
* Enum representing the various HTTP methods used for making requests.

View File

@ -16,7 +16,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http;
package com.openeggbert.pixel.framework.net.http;
import java.io.InputStream;
import java.util.HashMap;

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http;
package com.openeggbert.pixel.framework.net.http;
import com.pixelgamelibrary.api.Disposable;
import com.openeggbert.pixel.framework.Disposable;
import java.io.InputStream;
import java.util.List;
import java.util.Map;

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http;
package com.openeggbert.pixel.framework.net.http;
import com.pixelgamelibrary.api.net.sockets.Socket;
import com.openeggbert.pixel.framework.net.sockets.Socket;
/**
* @author robertvokac

View File

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http;
package com.openeggbert.pixel.framework.net.http;
import com.pixelgamelibrary.api.PixelException;
import com.openeggbert.pixel.framework.PixelException;
import java.util.Arrays;
import java.util.function.Supplier;
import lombok.Getter;

View File

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.sockets;
package com.openeggbert.pixel.framework.net.sockets;
import java.io.InputStream;
import java.io.OutputStream;

Some files were not shown because too many files have changed in this diff Show More