2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* test_io.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "test_io.h"
|
|
|
|
|
|
|
|
#ifdef MINIZIP_ENABLED
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/resource_loader.h"
|
|
|
|
#include "core/io/resource_saver.h"
|
|
|
|
#include "core/os/dir_access.h"
|
|
|
|
#include "core/os/main_loop.h"
|
|
|
|
#include "core/os/os.h"
|
|
|
|
#include "core/print_string.h"
|
2017-07-19 22:00:46 +02:00
|
|
|
#include "core/project_settings.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/resources/texture.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/file_access_memory.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
namespace TestIO {
|
|
|
|
|
|
|
|
class TestMainLoop : public MainLoop {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
bool quit;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
2018-10-02 12:07:44 +02:00
|
|
|
virtual void input_event(const Ref<InputEvent> &p_event) {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
virtual bool idle(float p_time) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void request_quit() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
quit = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
virtual void init() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
quit = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
virtual bool iteration(float p_time) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return quit;
|
|
|
|
}
|
|
|
|
virtual void finish() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
MainLoop *test() {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
print_line("this is test io");
|
2017-03-05 16:44:50 +01:00
|
|
|
DirAccess *da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
|
2014-02-10 02:10:30 +01:00
|
|
|
da->change_dir(".");
|
2017-03-05 16:44:50 +01:00
|
|
|
print_line("Opening current dir " + da->get_current_dir());
|
2014-02-10 02:10:30 +01:00
|
|
|
String entry;
|
|
|
|
da->list_dir_begin();
|
2017-03-05 16:44:50 +01:00
|
|
|
while ((entry = da->get_next()) != "") {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
print_line("entry " + entry + " is dir: " + Variant(da->current_is_dir()));
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
da->list_dir_end();
|
|
|
|
|
|
|
|
RES texture = ResourceLoader::load("test_data/rock.png");
|
|
|
|
ERR_FAIL_COND_V(texture.is_null(), NULL);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceSaver::save("test_data/rock.xml", texture);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
print_line("localize paths");
|
2017-07-19 22:00:46 +02:00
|
|
|
print_line(ProjectSettings::get_singleton()->localize_path("algo.xml"));
|
|
|
|
print_line(ProjectSettings::get_singleton()->localize_path("c:\\windows\\algo.xml"));
|
|
|
|
print_line(ProjectSettings::get_singleton()->localize_path(ProjectSettings::get_singleton()->get_resource_path() + "/something/something.xml"));
|
|
|
|
print_line(ProjectSettings::get_singleton()->localize_path("somedir/algo.xml"));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
FileAccess *z = FileAccess::open("test_data/archive.zip", FileAccess::READ);
|
2014-02-10 02:10:30 +01:00
|
|
|
int len = z->get_len();
|
|
|
|
Vector<uint8_t> zip;
|
|
|
|
zip.resize(len);
|
2018-07-25 03:11:03 +02:00
|
|
|
z->get_buffer(zip.ptrw(), len);
|
2014-02-10 02:10:30 +01:00
|
|
|
z->close();
|
|
|
|
memdelete(z);
|
|
|
|
|
|
|
|
FileAccessMemory::register_file("a_package", zip);
|
|
|
|
FileAccess::make_default<FileAccessMemory>(FileAccess::ACCESS_RESOURCES);
|
|
|
|
FileAccess::make_default<FileAccessMemory>(FileAccess::ACCESS_FILESYSTEM);
|
|
|
|
FileAccess::make_default<FileAccessMemory>(FileAccess::ACCESS_USERDATA);
|
|
|
|
|
|
|
|
print_line("archive test");
|
|
|
|
};
|
|
|
|
|
|
|
|
print_line("test done");
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return memnew(TestMainLoop);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2017-12-06 21:36:34 +01:00
|
|
|
} // namespace TestIO
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
namespace TestIO {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
MainLoop *test() {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-12-06 21:36:34 +01:00
|
|
|
} // namespace TestIO
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|