godot/core/io/file_access_pack.cpp

500 lines
11 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* file_access_pack.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
2014-02-10 02:10:30 +01:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
2014-02-10 02:10:30 +01:00
#include "file_access_pack.h"
#include "version.h"
#include <stdio.h>
#define PACK_VERSION 1
Error PackedData::add_pack(const String &p_path) {
2014-02-10 02:10:30 +01:00
for (int i = 0; i < sources.size(); i++) {
2014-02-10 02:10:30 +01:00
if (sources[i]->try_open_pack(p_path)) {
return OK;
};
};
return ERR_FILE_UNRECOGNIZED;
};
void PackedData::add_path(const String &pkg_path, const String &path, uint64_t ofs, uint64_t size, const uint8_t *p_md5, PackSource *p_src) {
2014-02-10 02:10:30 +01:00
PathMD5 pmd5(path.md5_buffer());
//printf("adding path %ls, %lli, %lli\n", path.c_str(), pmd5.a, pmd5.b);
bool exists = files.has(pmd5);
2014-02-10 02:10:30 +01:00
PackedFile pf;
pf.pack = pkg_path;
pf.offset = ofs;
pf.size = size;
for (int i = 0; i < 16; i++)
pf.md5[i] = p_md5[i];
2014-02-10 02:10:30 +01:00
pf.src = p_src;
files[pmd5] = pf;
2014-02-10 02:10:30 +01:00
if (!exists) {
//search for dir
String p = path.replace_first("res://", "");
PackedDir *cd = root;
2014-02-10 02:10:30 +01:00
if (p.find("/") != -1) { //in a subdir
2014-02-10 02:10:30 +01:00
Vector<String> ds = p.get_base_dir().split("/");
2014-02-10 02:10:30 +01:00
for (int j = 0; j < ds.size(); j++) {
2014-02-10 02:10:30 +01:00
if (!cd->subdirs.has(ds[j])) {
PackedDir *pd = memnew(PackedDir);
pd->name = ds[j];
pd->parent = cd;
cd->subdirs[pd->name] = pd;
cd = pd;
2014-02-10 02:10:30 +01:00
} else {
cd = cd->subdirs[ds[j]];
2014-02-10 02:10:30 +01:00
}
}
}
String filename = path.get_file();
// Don't add as a file if the path points to a directoryy
if (!filename.empty()) {
cd->files.insert(filename);
}
2014-02-10 02:10:30 +01:00
}
}
void PackedData::add_pack_source(PackSource *p_source) {
2015-05-07 01:37:25 +02:00
if (p_source != NULL) {
sources.push_back(p_source);
}
2014-02-10 02:10:30 +01:00
};
PackedData *PackedData::singleton = NULL;
2014-02-10 02:10:30 +01:00
PackedData::PackedData() {
singleton = this;
root = memnew(PackedDir);
root->parent = NULL;
disabled = false;
2014-02-10 02:10:30 +01:00
add_pack_source(memnew(PackedSourcePCK));
}
void PackedData::_free_packed_dirs(PackedDir *p_dir) {
for (Map<String, PackedDir *>::Element *E = p_dir->subdirs.front(); E; E = E->next())
_free_packed_dirs(E->get());
memdelete(p_dir);
}
PackedData::~PackedData() {
for (int i = 0; i < sources.size(); i++) {
memdelete(sources[i]);
}
_free_packed_dirs(root);
}
2014-02-10 02:10:30 +01:00
//////////////////////////////////////////////////////////////////
bool PackedSourcePCK::try_open_pack(const String &p_path) {
2014-02-10 02:10:30 +01:00
FileAccess *f = FileAccess::open(p_path, FileAccess::READ);
2014-02-10 02:10:30 +01:00
if (!f)
return false;
//printf("try open %ls!\n", p_path.c_str());
uint32_t magic = f->get_32();
2014-02-10 02:10:30 +01:00
if (magic != 0x43504447) {
2014-02-10 02:10:30 +01:00
//maybe at he end.... self contained exe
f->seek_end();
f->seek(f->get_position() - 4);
2014-02-10 02:10:30 +01:00
magic = f->get_32();
if (magic != 0x43504447) {
2014-02-10 02:10:30 +01:00
memdelete(f);
return false;
}
f->seek(f->get_position() - 12);
2014-02-10 02:10:30 +01:00
uint64_t ds = f->get_64();
f->seek(f->get_position() - ds - 8);
2014-02-10 02:10:30 +01:00
magic = f->get_32();
if (magic != 0x43504447) {
2014-02-10 02:10:30 +01:00
memdelete(f);
return false;
}
}
uint32_t version = f->get_32();
2014-02-10 02:10:30 +01:00
uint32_t ver_major = f->get_32();
uint32_t ver_minor = f->get_32();
uint32_t ver_rev = f->get_32();
ERR_EXPLAIN("Pack version unsupported: " + itos(version));
ERR_FAIL_COND_V(version != PACK_VERSION, false);
ERR_EXPLAIN("Pack created with a newer version of the engine: " + itos(ver_major) + "." + itos(ver_minor) + "." + itos(ver_rev));
ERR_FAIL_COND_V(ver_major > VERSION_MAJOR || (ver_major == VERSION_MAJOR && ver_minor > VERSION_MINOR), false);
2014-02-10 02:10:30 +01:00
for (int i = 0; i < 16; i++) {
2014-02-10 02:10:30 +01:00
//reserved
f->get_32();
}
int file_count = f->get_32();
for (int i = 0; i < file_count; i++) {
2014-02-10 02:10:30 +01:00
uint32_t sl = f->get_32();
CharString cs;
cs.resize(sl + 1);
f->get_buffer((uint8_t *)cs.ptr(), sl);
cs[sl] = 0;
2014-02-10 02:10:30 +01:00
String path;
path.parse_utf8(cs.ptr());
uint64_t ofs = f->get_64();
uint64_t size = f->get_64();
uint8_t md5[16];
f->get_buffer(md5, 16);
PackedData::get_singleton()->add_path(p_path, path, ofs, size, md5, this);
2014-02-10 02:10:30 +01:00
};
return true;
};
FileAccess *PackedSourcePCK::get_file(const String &p_path, PackedData::PackedFile *p_file) {
2014-02-10 02:10:30 +01:00
return memnew(FileAccessPack(p_path, *p_file));
2014-02-10 02:10:30 +01:00
};
//////////////////////////////////////////////////////////////////
Error FileAccessPack::_open(const String &p_path, int p_mode_flags) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_V(ERR_UNAVAILABLE);
return ERR_UNAVAILABLE;
}
void FileAccessPack::close() {
f->close();
}
bool FileAccessPack::is_open() const {
2014-02-10 02:10:30 +01:00
return f->is_open();
}
void FileAccessPack::seek(size_t p_position) {
2014-02-10 02:10:30 +01:00
if (p_position > pf.size) {
eof = true;
2014-02-10 02:10:30 +01:00
} else {
eof = false;
2014-02-10 02:10:30 +01:00
}
f->seek(pf.offset + p_position);
pos = p_position;
2014-02-10 02:10:30 +01:00
}
void FileAccessPack::seek_end(int64_t p_position) {
2014-02-10 02:10:30 +01:00
seek(pf.size + p_position);
2014-02-10 02:10:30 +01:00
}
size_t FileAccessPack::get_position() const {
2014-02-10 02:10:30 +01:00
return pos;
}
size_t FileAccessPack::get_len() const {
2014-02-10 02:10:30 +01:00
return pf.size;
}
bool FileAccessPack::eof_reached() const {
2014-02-10 02:10:30 +01:00
return eof;
}
uint8_t FileAccessPack::get_8() const {
if (pos >= pf.size) {
eof = true;
2014-02-10 02:10:30 +01:00
return 0;
}
pos++;
return f->get_8();
}
int FileAccessPack::get_buffer(uint8_t *p_dst, int p_length) const {
2014-02-10 02:10:30 +01:00
if (eof)
return 0;
int64_t to_read = p_length;
if (to_read + pos > pf.size) {
eof = true;
to_read = int64_t(pf.size) - int64_t(pos);
2014-02-10 02:10:30 +01:00
}
pos += p_length;
2014-02-10 02:10:30 +01:00
if (to_read <= 0)
2014-02-10 02:10:30 +01:00
return 0;
f->get_buffer(p_dst, to_read);
2014-02-10 02:10:30 +01:00
return to_read;
}
void FileAccessPack::set_endian_swap(bool p_swap) {
FileAccess::set_endian_swap(p_swap);
f->set_endian_swap(p_swap);
}
Error FileAccessPack::get_error() const {
if (eof)
return ERR_FILE_EOF;
return OK;
}
void FileAccessPack::flush() {
ERR_FAIL();
}
2014-02-10 02:10:30 +01:00
void FileAccessPack::store_8(uint8_t p_dest) {
ERR_FAIL();
}
void FileAccessPack::store_buffer(const uint8_t *p_src, int p_length) {
2014-02-10 02:10:30 +01:00
ERR_FAIL();
}
bool FileAccessPack::file_exists(const String &p_name) {
2014-02-10 02:10:30 +01:00
return false;
}
FileAccessPack::FileAccessPack(const String &p_path, const PackedData::PackedFile &p_file) :
pf(p_file),
f(FileAccess::open(pf.pack, FileAccess::READ)) {
2014-02-10 02:10:30 +01:00
if (!f) {
ERR_EXPLAIN("Can't open pack-referenced file: " + String(pf.pack));
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(!f);
}
f->seek(pf.offset);
pos = 0;
eof = false;
2014-02-10 02:10:30 +01:00
}
FileAccessPack::~FileAccessPack() {
if (f)
memdelete(f);
}
//////////////////////////////////////////////////////////////////////////////////
// DIR ACCESS
//////////////////////////////////////////////////////////////////////////////////
Error DirAccessPack::list_dir_begin() {
2014-02-10 02:10:30 +01:00
list_dirs.clear();
list_files.clear();
for (Map<String, PackedData::PackedDir *>::Element *E = current->subdirs.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
list_dirs.push_back(E->key());
}
for (Set<String>::Element *E = current->files.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
list_files.push_back(E->get());
}
return OK;
2014-02-10 02:10:30 +01:00
}
String DirAccessPack::get_next() {
2014-02-10 02:10:30 +01:00
if (list_dirs.size()) {
cdir = true;
2014-02-10 02:10:30 +01:00
String d = list_dirs.front()->get();
list_dirs.pop_front();
return d;
} else if (list_files.size()) {
cdir = false;
2014-02-10 02:10:30 +01:00
String f = list_files.front()->get();
list_files.pop_front();
return f;
} else {
return String();
}
}
bool DirAccessPack::current_is_dir() const {
2014-02-10 02:10:30 +01:00
return cdir;
}
bool DirAccessPack::current_is_hidden() const {
2015-03-21 18:33:32 +01:00
return false;
}
2014-02-10 02:10:30 +01:00
void DirAccessPack::list_dir_end() {
list_dirs.clear();
list_files.clear();
}
int DirAccessPack::get_drive_count() {
return 0;
}
String DirAccessPack::get_drive(int p_drive) {
return "";
}
Error DirAccessPack::change_dir(String p_dir) {
String nd = p_dir.replace("\\", "/");
bool absolute = false;
2014-02-10 02:10:30 +01:00
if (nd.begins_with("res://")) {
nd = nd.replace_first("res://", "");
absolute = true;
2014-02-10 02:10:30 +01:00
}
nd = nd.simplify_path();
2014-02-10 02:10:30 +01:00
2016-09-04 00:35:42 +02:00
if (nd == "") nd = ".";
2014-02-10 02:10:30 +01:00
if (nd.begins_with("/")) {
nd = nd.replace_first("/", "");
absolute = true;
2014-02-10 02:10:30 +01:00
}
Vector<String> paths = nd.split("/");
PackedData::PackedDir *pd;
if (absolute)
pd = PackedData::get_singleton()->root;
else
pd = current;
for (int i = 0; i < paths.size(); i++) {
2014-02-10 02:10:30 +01:00
String p = paths[i];
if (p == ".") {
2014-02-10 02:10:30 +01:00
continue;
} else if (p == "..") {
2014-02-10 02:10:30 +01:00
if (pd->parent) {
pd = pd->parent;
2014-02-10 02:10:30 +01:00
}
} else if (pd->subdirs.has(p)) {
pd = pd->subdirs[p];
2014-02-10 02:10:30 +01:00
} else {
return ERR_INVALID_PARAMETER;
}
}
current = pd;
2014-02-10 02:10:30 +01:00
return OK;
}
String DirAccessPack::get_current_dir() {
PackedData::PackedDir *pd = current;
String p = current->name;
2014-02-10 02:10:30 +01:00
while (pd->parent) {
pd = pd->parent;
p = pd->name + "/" + p;
2014-02-10 02:10:30 +01:00
}
return "res://" + p;
2014-02-10 02:10:30 +01:00
}
bool DirAccessPack::file_exists(String p_file) {
2014-02-10 02:10:30 +01:00
return current->files.has(p_file);
}
2014-05-25 05:34:51 +02:00
bool DirAccessPack::dir_exists(String p_dir) {
return current->subdirs.has(p_dir);
}
Error DirAccessPack::make_dir(String p_dir) {
2014-02-10 02:10:30 +01:00
return ERR_UNAVAILABLE;
}
Error DirAccessPack::rename(String p_from, String p_to) {
2014-02-10 02:10:30 +01:00
return ERR_UNAVAILABLE;
}
Error DirAccessPack::remove(String p_name) {
2014-02-10 02:10:30 +01:00
return ERR_UNAVAILABLE;
}
size_t DirAccessPack::get_space_left() {
2014-02-10 02:10:30 +01:00
return 0;
}
DirAccessPack::DirAccessPack() {
current = PackedData::get_singleton()->root;
cdir = false;
2014-02-10 02:10:30 +01:00
}
DirAccessPack::~DirAccessPack() {
}