2022-03-15 13:29:32 +01:00
|
|
|
/*
|
2022-12-31 21:07:05 +01:00
|
|
|
Copyright (c) 2019-2023 Péter Magyar
|
2022-03-15 13:29:32 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "prop_2d_texture_job.h"
|
|
|
|
|
2022-10-05 10:25:48 +02:00
|
|
|
#include "modules/modules_enabled.gen.h"
|
|
|
|
|
|
|
|
#ifdef MODULE_TEXTURE_PACKER_ENABLED
|
2022-03-15 13:29:32 +01:00
|
|
|
#include "../../texture_packer/texture_packer.h"
|
|
|
|
#endif
|
|
|
|
|
2022-10-05 10:25:48 +02:00
|
|
|
#ifdef MODULE_TEXTURE_PACKER_ENABLED
|
2022-03-15 13:29:32 +01:00
|
|
|
Ref<TexturePacker> Prop2DTextureJob::get_merger() {
|
|
|
|
return _merger;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Prop2DTextureJob::set_merger(const Ref<TexturePacker> &merger) {
|
|
|
|
_merger = merger;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void Prop2DTextureJob::_execute() {
|
2022-10-05 10:25:48 +02:00
|
|
|
#ifdef MODULE_TEXTURE_PACKER_ENABLED
|
2022-03-15 13:29:32 +01:00
|
|
|
if (!_merger.is_valid()) {
|
|
|
|
set_complete(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_merger->merge();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
set_complete(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
Prop2DTextureJob::Prop2DTextureJob() {
|
|
|
|
}
|
|
|
|
|
|
|
|
Prop2DTextureJob::~Prop2DTextureJob() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Prop2DTextureJob::_bind_methods() {
|
2022-10-05 10:25:48 +02:00
|
|
|
#ifdef MODULE_TEXTURE_PACKER_ENABLED
|
2022-03-15 13:29:32 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_merger"), &Prop2DTextureJob::get_merger);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_merger", "value"), &Prop2DTextureJob::set_merger);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "merger", PROPERTY_HINT_RESOURCE_TYPE, "TexturePacker"), "set_merger", "get_merger");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("_execute"), &Prop2DTextureJob::_execute);
|
|
|
|
}
|