This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
project: Merge upstream
- Loading branch information
Showing
33 changed files
with
1,495 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
cache/src/main/java/net/runelite/cache/definitions/HitSplatDefinition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (c) 2020, Hexagon <[email protected]> | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright notice, this | ||
* list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
package net.runelite.cache.definitions; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class HitSplatDefinition | ||
{ | ||
private String stringFormat = ""; | ||
private int varbitID = -1; | ||
private int leftSprite = -1; | ||
private int leftSprite2 = -1; | ||
private int rightSpriteId = -1; | ||
private int fontType = -1; | ||
private int backgroundSprite = -1; | ||
private int varpID = -1; | ||
private int useDamage = -1; | ||
private int textColor = 0xFFFFFF; | ||
private int displayCycles = 70; | ||
private int[] multihitsplats; | ||
private int scrollToOffsetX = 0; | ||
private int fadeStartCycle = -1; | ||
private int scrollToOffsetY = 0; | ||
private int textOffsetY = 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
cache/src/main/java/net/runelite/cache/definitions/loaders/HitSplatLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/* | ||
* Copyright (c) 2020, Hexagon <[email protected]> | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright notice, this | ||
* list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
package net.runelite.cache.definitions.loaders; | ||
|
||
import net.runelite.cache.definitions.HitSplatDefinition; | ||
import net.runelite.cache.io.InputStream; | ||
|
||
public class HitSplatLoader | ||
{ | ||
public HitSplatDefinition load(byte[] data) | ||
{ | ||
HitSplatDefinition def = new HitSplatDefinition(); | ||
InputStream stream = new InputStream(data); | ||
|
||
for (; ; ) | ||
{ | ||
int opcode = stream.readUnsignedByte(); | ||
|
||
switch (opcode) | ||
{ | ||
case 0: | ||
return def; | ||
case 1: | ||
def.setFontType(stream.readBigSmart2()); | ||
break; | ||
case 2: | ||
def.setTextColor(stream.read24BitInt()); | ||
break; | ||
case 3: | ||
def.setLeftSprite(stream.readBigSmart2()); | ||
break; | ||
case 4: | ||
def.setLeftSprite2(stream.readBigSmart2()); | ||
break; | ||
case 5: | ||
def.setBackgroundSprite(stream.readBigSmart2()); | ||
break; | ||
case 6: | ||
def.setRightSpriteId(stream.readBigSmart2()); | ||
break; | ||
case 7: | ||
def.setScrollToOffsetX(stream.readShort()); | ||
break; | ||
case 8: | ||
def.setStringFormat(stream.readString2()); | ||
break; | ||
case 9: | ||
def.setDisplayCycles(stream.readUnsignedShort()); | ||
break; | ||
case 10: | ||
def.setScrollToOffsetY(stream.readShort()); | ||
break; | ||
case 11: | ||
def.setFadeStartCycle(0); | ||
break; | ||
case 12: | ||
def.setUseDamage(stream.readUnsignedByte()); | ||
break; | ||
case 13: | ||
def.setTextOffsetY(stream.readShort()); | ||
break; | ||
case 14: | ||
def.setFadeStartCycle(stream.readUnsignedShort()); | ||
break; | ||
case 17: | ||
case 18: | ||
int varbitId = stream.readUnsignedShort(); | ||
|
||
if (varbitId == 0xFFFF) | ||
{ | ||
varbitId = -1; | ||
} | ||
def.setVarbitID(varbitId); | ||
|
||
int varp = stream.readUnsignedShort(); | ||
if (varp == 0xFFFF) | ||
{ | ||
varp = -1; | ||
} | ||
def.setVarpID(varp); | ||
|
||
int id = -1; | ||
if (opcode == 18) | ||
{ | ||
id = stream.readUnsignedShort(); | ||
if (id == 0xFFFF) | ||
{ | ||
id = -1; | ||
} | ||
} | ||
|
||
int length = stream.readUnsignedByte(); | ||
int[] multihitsplats = new int[length + 2]; | ||
|
||
for (int i = 0; i <= length; i++) | ||
{ | ||
multihitsplats[i] = stream.readUnsignedShort(); | ||
if (multihitsplats[i] == 0xFFFF) | ||
{ | ||
multihitsplats[i] = -1; | ||
} | ||
} | ||
|
||
multihitsplats[length + 1] = id; | ||
|
||
def.setMultihitsplats(multihitsplats); | ||
break; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.