d2tools/saveCharacter.php

177 lines
4.8 KiB
PHP
Raw Normal View History

<?php
2023-06-02 05:42:12 +00:00
// Set error reporting to only show errors and parse errors
error_reporting(E_ERROR | E_PARSE);
2023-06-02 05:42:12 +00:00
// Set the time limit for script execution to unlimited
set_time_limit(-1);
2023-06-02 05:42:12 +00:00
// Set the maximum input time to unlimited
ini_set('max_input_time', '-1');
2023-06-02 05:42:12 +00:00
// Set the maximum execution time to unlimited
ini_set('max_execution_time', '0');
2023-06-02 05:42:12 +00:00
// Start the session
session_start();
2023-06-02 05:42:12 +00:00
// Start output buffering
ob_start();
2023-06-02 05:42:12 +00:00
// Define the constant 'DB_FILE' with the value of 'modname' session variable followed by ".db"
define('DB_FILE', $_SESSION['modname'] . ".db");
2023-06-02 05:42:12 +00:00
// Include the configuration file
require_once './config.php';
2023-06-02 05:42:12 +00:00
// Include the PDO wrapper file
require_once './_pdo.php';
2023-06-02 05:42:12 +00:00
// Include the required class files
require_once "./src/D2Functions.php";
require_once "./src/D2Database.php";
require_once './src/D2Files.php';
require_once './src/D2TxtParser.php';
require_once './src/D2ItemDesc.php';
2023-06-02 05:42:12 +00:00
require_once './src/D2Char.php';
2022-06-21 02:21:28 +00:00
require_once './src/D2CharStructureData.php';
2023-06-02 05:42:12 +00:00
require_once './src/D2ByteReader.php';
// Create an instance of D2CharStructureData class
$csData = new D2CharStructureData();
$g = $_GET;
$cmd = $g['cmd'];
// Get the file path from the POST data and replace backslashes /
$filePath = $g['filePath'];
$filePath = str_replace("\\", "\\\\", $filePath);
2023-06-02 05:42:12 +00:00
// Handle the WP check/uncheck
if ($cmd == "wp") {
$diff = $g['diff'];
2023-06-02 05:42:12 +00:00
if ($diff == "Norm") {
$offset = 643;
}
2023-06-02 05:42:12 +00:00
if ($diff == "NM") {
$offset = 667;
}
2023-06-02 05:42:12 +00:00
if ($diff == "Hell") {
$offset = 691;
}
2023-06-02 05:42:12 +00:00
/*
array (size=5)
'cmd' => string 'wp' (length=2)
'name' => string '1' (length=1)
'value' => string '1' (length=1)
'filePath' => string 'D:\\Diablo II\\MODS\\ironman-dev\\save\\Sorc.d2s' (length=48)
'diff' => string 'Norm' (length=4)
*/
$fileContents = file_get_contents($filePath); // Read the contents of the file
$ByteReader = new D2ByteReader($fileContents); // Create a new instance of D2ByteReader with the file data
$fileData = $ByteReader->getData(); // Get the data from the ByteReader instance
$wpBytes = $ByteReader->read($offset, 5, 1);
$wpBytesToBits = $ByteReader->toBits($wpBytes);
$BitReader = new D2BitReader($wpBytesToBits);
$BitReader->setBit($g['name'], $g['value']);
$newBits = $BitReader->getBits();
$newBitsToBytes = $ByteReader->bitsToHexString($newBits);
$ByteReader->writeBytes($offset, $newBitsToBytes);
$newFileData = $ByteReader->getData();
2023-06-02 05:42:12 +00:00
$fileSaved = file_put_contents($filePath, $newFileData);
$checksum = (shell_exec("bin\d2scs.exe \"$filePath\""));
2023-06-02 05:42:12 +00:00
if ($fileSaved) {
echo "Success";
} else {
echo "Fail";
}
}
2023-06-02 05:42:12 +00:00
/*
* array (size=5)
'cmd' => string 'q' (length=1)
'name' => string 'Sisters_Burial_Grounds' (length=29)
'value' => string '1' (length=1)
'filePath' => string 'D:\\Diablo II\\MODS\\ironman-dev\\save\\Sorc.d2s' (length=48)
'diff' => string 'Norm' (length=4)
2023-06-02 05:42:12 +00:00
At each quest offset, read a short, 2 bytes.
347 => 'Den_Of_Evil',
349 => 'Sisters_Burial_Grounds',
351 => 'Tools_Of_The_Trade',
353 => 'The_Search_For_Cain',
355 => 'The_Forgotten_Tower',
357 => 'Sisters_To_The_Slaughter',
2023-06-02 05:42:12 +00:00
Each short is 16 bytes.
*
* 0xFEFF = 11111110 11111111
* Short #0 Den of Evil Bit 4 is set when you enter the Den.
2023-06-02 05:42:12 +00:00
*/
2023-06-02 05:42:12 +00:00
if ($cmd == "q") {
$diff = $g['diff'];
if ($diff == "Norm") {
$qArray = array_flip($csData->qNorm);
$questOffset = $qArray[$g['name']];
}
2023-06-02 05:42:12 +00:00
if ($diff == "NM") {
$qArray = array_flip($csData->qNM);
$questOffset = $qArray[$g['name']];
}
2023-06-02 05:42:12 +00:00
if ($diff == "Hell") {
$qArray = array_flip($csData->qHell);
$questOffset = $qArray[$g['name']];
}
2023-06-02 05:42:12 +00:00
// Open the file in binary mode for both reading and writing
$fp = fopen($filePath, "rb+");
2023-06-02 05:42:12 +00:00
if ($g['value']) {
// Set the file pointer position to the quest offset
fseek($fp, $questOffset);
2023-06-02 05:42:12 +00:00
// Write the byte value 0xFE at the current position
fwrite($fp, pack('C', 0xFE));
2023-06-02 05:42:12 +00:00
// Move the file pointer to the next position
fseek($fp, $questOffset + 1);
2023-06-02 05:42:12 +00:00
// Write the byte value 0xFF at the current position
fwrite($fp, pack('C', 0xFF));
echo "Quest Just Finished, Collect Reward!";
} else {
// Set the file pointer position to the quest offset
fseek($fp, $questOffset);
2023-06-02 05:42:12 +00:00
// Write the byte value 0xFE at the current position
fwrite($fp, pack('C', 0x00));
2023-06-02 05:42:12 +00:00
// Move the file pointer to the next position
fseek($fp, $questOffset + 1);
2023-06-02 05:42:12 +00:00
// Write the byte value 0xFF at the current position
fwrite($fp, pack('C', 0x00));
echo "Quest Not Started Yet!";
}
2023-06-02 05:42:12 +00:00
$checksum = (shell_exec("bin\d2scs.exe \"$filePath\""));
fclose($fp);
2023-06-02 05:42:12 +00:00
}