public class GameImageInformation extends ImageInformation
GameImageInformation
object
only once and reuse it every time you need it. It's safe to use the same
GameImageInformation
reference for several players and in
multiple threads.Constructor and Description |
---|
GameImageInformation(java.lang.String type,
java.lang.String name)
Creates a new game image information object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
java.lang.String |
getChecksum()
Gets the MD5 checksum of this file.
|
byte[] |
getData()
Gets the byte data of the file.
|
java.lang.String |
getExtension()
Gets the file extension.
|
java.lang.String |
getFilename()
Gets the filename.
|
int |
hashCode() |
public GameImageInformation(java.lang.String type, java.lang.String name)
type
- the texture type, or more precisely, the folder in the game assets. E.g.
for block textures, the type would be "Constructions", for items, it would be "Items",
for world textures, it would be "World", for ores, it would be "World/Ores" etc. name
- the texture name. For example "woodmodern_material_0.dds" for the modern object
wood texture (see texture.jar file in your game assets for all texture names).public byte[] getData()
public java.lang.String getFilename()
public java.lang.String getExtension()
public java.lang.String getChecksum()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object