scrambledfile.cpp
来自「这是整套横扫千军3D版游戏的源码」· C++ 代码 · 共 161 行
CPP
161 行
/*
* scrambledfile.cpp
* Encrypted file class implementation
* Copyright (C) 2005 Christopher Han <xiphux@gmail.com>
*
* This file is part of hpiutil2.
*
* hpiutil2 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* hpiutil2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with hpiutil2; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "scrambledfile.h"
/**
* Constructor
* @param fname name of scrambled file to open as a c string
*/
hpiutil::scrambledfile::scrambledfile(const char *fname)
{
file.open(fname,std::ios::in|std::ios::binary);
scrambled = false;
}
/**
* Constructor
* @param fname name of scrambled file to open as a c++ string
*/
hpiutil::scrambledfile::scrambledfile(std::string const &fname)
{
file.open(fname.c_str(),std::ios::in|std::ios::binary);
scrambled = false;
}
/**
* Destructor
*/
hpiutil::scrambledfile::~scrambledfile()
{
file.close();
}
/**
* read
* reads a single byte from the file
* @return byte read
*/
boost::uint32_t hpiutil::scrambledfile::read()
{
boost::uint32_t oldpos = file.tellg();
boost::uint32_t ret = file.get();
if (scrambled && (ret != EOF))
ret = (char)(((key ^ oldpos) ^ ~ret)&0x00ff);
return ret;
}
/**
* read
* reads data from the file into a buffer
* @return number of bytes read
* @param buf buffer to read into
*/
boost::uint32_t hpiutil::scrambledfile::read(boost::uint8_t *buf)
{
boost::uint32_t oldpos = (boost::uint32_t)file.tellg();
file.read((char*)buf,sizeof(buf));
boost::uint32_t read = (boost::uint32_t)file.tellg() - oldpos;
if (scrambled) {
for (int i = 0; i < read; i++)
buf[i] = (boost::uint8_t)(((key ^ (oldpos+i)) ^ ~buf[i])&0x00ff);
}
return read;
}
/**
* read
* reads data from the file into a buffer
* @return number of bytes read
* @param buf buffer to read into
* @param off offset in file to start reading from
* @param len number of bytes to read
*/
boost::uint32_t hpiutil::scrambledfile::read(boost::uint8_t *buf, const boost::uint32_t off, const boost::uint32_t len)
{
file.seekg(off);
file.read((char*)buf,len);
if (scrambled) {
for (int i = 0; i < len; i++)
buf[i] = (boost::uint8_t)(((key ^ (i+off)) ^ ~buf[i])&0x00ff);
}
return ((boost::uint32_t)file.tellg()-off);
}
/**
* readint
* reads a 32-bit integer from the file,
* byte swabbing if necessary
* @return swabbed integer
*/
boost::uint32_t hpiutil::scrambledfile::readint()
{
boost::uint32_t a = read();
boost::uint32_t b = read();
boost::uint32_t c = read();
boost::uint32_t d = read();
return (d<<24)|(c<<16)|(b<<8)|a;
}
/**
* seek
* seek to an offset in the file
* @param pos offset to seek to
*/
void hpiutil::scrambledfile::seek(const boost::uint32_t pos)
{
file.seekg(pos,std::ios::beg);
}
/**
* setkey
* set or unset decryption key to use to unscramble
* @param k key to use (use 0 to disable)
*/
void hpiutil::scrambledfile::setkey(const boost::uint32_t k)
{
if (k) {
key = ~((k<<2)|(k>>6));
scrambled = true;
} else {
key = 0;
scrambled = false;
}
}
/**
* readstring
* reads a string of data from the file terminated by NULL or EOF
* @return string read
*/
std::string hpiutil::scrambledfile::readstring()
{
std::string data;
while (1) {
char i = read();
if ((i == 0)||(i == EOF))
break;
data.append(1,i);
}
return data;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?