mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 16:04:38 +01:00
refactor: Remove more debug code
This commit is contained in:
@@ -21,12 +21,9 @@ func UnpackSimple(data []byte) []byte {
|
|||||||
bf.SetLE()
|
bf.SetLE()
|
||||||
header := bf.ReadUint32()
|
header := bf.ReadUint32()
|
||||||
|
|
||||||
println("Decrypting")
|
|
||||||
|
|
||||||
if header == 0x1A524B4A {
|
if header == 0x1A524B4A {
|
||||||
bf.Seek(0x2, io.SeekCurrent)
|
bf.Seek(0x2, io.SeekCurrent)
|
||||||
jpkType := bf.ReadUint16()
|
jpkType := bf.ReadUint16()
|
||||||
println("JPK Type: ", jpkType)
|
|
||||||
|
|
||||||
switch jpkType {
|
switch jpkType {
|
||||||
case 3:
|
case 3:
|
||||||
@@ -40,8 +37,6 @@ func UnpackSimple(data []byte) []byte {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
println("Skipping")
|
|
||||||
|
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -110,8 +105,5 @@ func JPKCopy(outBuffer []byte, offset int, length int, index *int) {
|
|||||||
|
|
||||||
func ReadByte(bf *byteframe.ByteFrame) byte {
|
func ReadByte(bf *byteframe.ByteFrame) byte {
|
||||||
value := bf.ReadUint8()
|
value := bf.ReadUint8()
|
||||||
if value < 0 {
|
|
||||||
println("Not implemented")
|
|
||||||
}
|
|
||||||
return byte(value)
|
return byte(value)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ func readOriginalPointers(string_pointer int32, quest []byte) []byte {
|
|||||||
quest_failure_pointer := file_bytes.ReadInt32()
|
quest_failure_pointer := file_bytes.ReadInt32()
|
||||||
quest_contractor_pointer := file_bytes.ReadInt32()
|
quest_contractor_pointer := file_bytes.ReadInt32()
|
||||||
quest_description_pointer := file_bytes.ReadInt32()
|
quest_description_pointer := file_bytes.ReadInt32()
|
||||||
//Use String header pointers to seek to string and then read null terminated string
|
|
||||||
file_bytes.Seek(int64(quest_name_pointer), io.SeekStart)
|
file_bytes.Seek(int64(quest_name_pointer), io.SeekStart)
|
||||||
quest_name_string := file_bytes.ReadNullTerminatedBytes()
|
quest_name_string := file_bytes.ReadNullTerminatedBytes()
|
||||||
file_bytes.Seek(int64(quest_main_pointer), io.SeekStart)
|
file_bytes.Seek(int64(quest_main_pointer), io.SeekStart)
|
||||||
@@ -134,6 +134,7 @@ func readOriginalPointers(string_pointer int32, quest []byte) []byte {
|
|||||||
new_pointers.WriteNullTerminatedBytes(quest_failure_string)
|
new_pointers.WriteNullTerminatedBytes(quest_failure_string)
|
||||||
new_pointers.WriteNullTerminatedBytes(quest_contractor_string)
|
new_pointers.WriteNullTerminatedBytes(quest_contractor_string)
|
||||||
new_pointers.WriteNullTerminatedBytes(quest_description_string)
|
new_pointers.WriteNullTerminatedBytes(quest_description_string)
|
||||||
|
|
||||||
new_pointers.WriteUint8(18)
|
new_pointers.WriteUint8(18)
|
||||||
new_pointers.WriteBytes([]byte{0x83, 0x59, 0x89, 0x5B, 0x83, 0x3A, 0x58, 0xB6, 0x8E, 0x59, 0x82, 0xCC, 0x83, 0x58, 0x83, 0x58, 0x83, 0x81})
|
new_pointers.WriteBytes([]byte{0x83, 0x59, 0x89, 0x5B, 0x83, 0x3A, 0x58, 0xB6, 0x8E, 0x59, 0x82, 0xCC, 0x83, 0x58, 0x83, 0x58, 0x83, 0x81})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user