2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2011-08-04 07:12:03 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup bke
|
2011-08-04 07:12:03 +00:00
|
|
|
*/
|
|
|
|
|
|
2020-03-19 09:33:03 +01:00
|
|
|
#include "DNA_defaults.h"
|
2011-08-04 07:12:03 +00:00
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
#include "DNA_sound_types.h"
|
|
|
|
|
#include "DNA_speaker_types.h"
|
|
|
|
|
|
|
|
|
|
#include "BLI_math.h"
|
2011-10-27 05:34:39 +00:00
|
|
|
#include "BLI_utildefines.h"
|
2011-08-04 07:12:03 +00:00
|
|
|
|
2020-03-08 20:10:07 +01:00
|
|
|
#include "BLT_translation.h"
|
|
|
|
|
|
2020-09-10 17:31:18 +02:00
|
|
|
#include "BKE_anim_data.h"
|
2020-03-08 20:10:07 +01:00
|
|
|
#include "BKE_idtype.h"
|
2020-02-10 12:58:59 +01:00
|
|
|
#include "BKE_lib_id.h"
|
2020-05-13 19:30:04 +02:00
|
|
|
#include "BKE_lib_query.h"
|
2011-08-04 07:12:03 +00:00
|
|
|
#include "BKE_main.h"
|
|
|
|
|
#include "BKE_speaker.h"
|
|
|
|
|
|
2020-09-10 17:31:18 +02:00
|
|
|
#include "BLO_read_write.h"
|
|
|
|
|
|
2020-03-08 20:10:07 +01:00
|
|
|
static void speaker_init_data(ID *id)
|
2011-08-04 07:12:03 +00:00
|
|
|
{
|
2020-03-08 20:10:07 +01:00
|
|
|
Speaker *speaker = (Speaker *)id;
|
|
|
|
|
|
|
|
|
|
BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(speaker, id));
|
2011-08-04 07:12:03 +00:00
|
|
|
|
2020-03-08 20:10:07 +01:00
|
|
|
MEMCPY_STRUCT_AFTER(speaker, DNA_struct_default_get(Speaker), id);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-13 19:30:04 +02:00
|
|
|
static void speaker_foreach_id(ID *id, LibraryForeachIDData *data)
|
|
|
|
|
{
|
|
|
|
|
Speaker *speaker = (Speaker *)id;
|
|
|
|
|
|
2021-10-26 10:40:36 +02:00
|
|
|
BKE_LIB_FOREACHID_PROCESS_IDSUPER(data, speaker->sound, IDWALK_CB_USER);
|
2020-05-13 19:30:04 +02:00
|
|
|
}
|
|
|
|
|
|
2020-09-10 17:31:18 +02:00
|
|
|
static void speaker_blend_write(BlendWriter *writer, ID *id, const void *id_address)
|
|
|
|
|
{
|
|
|
|
|
Speaker *spk = (Speaker *)id;
|
2021-08-19 11:13:55 +02:00
|
|
|
|
|
|
|
|
/* write LibData */
|
|
|
|
|
BLO_write_id_struct(writer, Speaker, id_address, &spk->id);
|
|
|
|
|
BKE_id_blend_write(writer, &spk->id);
|
|
|
|
|
|
|
|
|
|
if (spk->adt) {
|
|
|
|
|
BKE_animdata_blend_write(writer, spk->adt);
|
2020-09-10 17:31:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void speaker_blend_read_data(BlendDataReader *reader, ID *id)
|
|
|
|
|
{
|
|
|
|
|
Speaker *spk = (Speaker *)id;
|
|
|
|
|
BLO_read_data_address(reader, &spk->adt);
|
|
|
|
|
BKE_animdata_blend_read_data(reader, spk->adt);
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
spk->sound = newdataadr(fd, spk->sound);
|
|
|
|
|
direct_link_sound(fd, spk->sound);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void speaker_blend_read_lib(BlendLibReader *reader, ID *id)
|
|
|
|
|
{
|
|
|
|
|
Speaker *spk = (Speaker *)id;
|
|
|
|
|
BLO_read_id_address(reader, spk->id.lib, &spk->sound);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void speaker_blend_read_expand(BlendExpander *expander, ID *id)
|
|
|
|
|
{
|
|
|
|
|
Speaker *spk = (Speaker *)id;
|
|
|
|
|
BLO_expand(expander, spk->sound);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-08 20:10:07 +01:00
|
|
|
IDTypeInfo IDType_ID_SPK = {
|
|
|
|
|
.id_code = ID_SPK,
|
|
|
|
|
.id_filter = FILTER_ID_SPK,
|
|
|
|
|
.main_listbase_index = INDEX_ID_SPK,
|
|
|
|
|
.struct_size = sizeof(Speaker),
|
|
|
|
|
.name = "Speaker",
|
|
|
|
|
.name_plural = "speakers",
|
|
|
|
|
.translation_context = BLT_I18NCONTEXT_ID_SPEAKER,
|
2021-09-17 16:22:29 +02:00
|
|
|
.flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE,
|
2021-11-24 10:32:28 +01:00
|
|
|
.asset_type_info = NULL,
|
2020-03-08 20:10:07 +01:00
|
|
|
|
|
|
|
|
.init_data = speaker_init_data,
|
|
|
|
|
.copy_data = NULL,
|
2020-03-09 18:40:06 +01:00
|
|
|
.free_data = NULL,
|
2020-03-08 20:10:07 +01:00
|
|
|
.make_local = NULL,
|
2020-05-13 19:30:04 +02:00
|
|
|
.foreach_id = speaker_foreach_id,
|
2020-08-28 13:05:48 +02:00
|
|
|
.foreach_cache = NULL,
|
Refactor BKE_bpath module.
The main goal of this refactor is to make BPath module use `IDTypeInfo`,
and move each ID-specific part of the `foreach_path` looper into their
own IDTypeInfo struct, using a new `foreach_path` callback.
Additionally, following improvements/cleanups are included:
* Attempt to get better, more consistent namings.
** In particular, move from `path_visitor` to more standard `foreach_path`.
* Update and extend documentation.
** API doc was moved to header, according to recent discussions on this
topic.
* Remove `BKE_bpath_relocate_visitor` from API, this is specific
callback that belongs in `lib_id.c` user code.
NOTE: This commit is expected to be 100% non-behavioral-change. This
implies that several potential further changes were only noted as
comments (like using a more generic solution for
`lib_id_library_local_paths`, addressing inconsistencies like path of
packed libraries always being skipped, regardless of the
`BKE_BPATH_FOREACH_PATH_SKIP_PACKED` `eBPathForeachFlag` flag value,
etc.).
NOTE: basic unittests were added to master already in
rBdcc500e5a265093bc9cc.
Reviewed By: brecht
Differential Revision: https://developer.blender.org/D13381
2021-11-29 14:20:58 +01:00
|
|
|
.foreach_path = NULL,
|
2021-02-25 10:17:31 +01:00
|
|
|
.owner_get = NULL,
|
2020-08-28 13:05:48 +02:00
|
|
|
|
2020-09-10 17:31:18 +02:00
|
|
|
.blend_write = speaker_blend_write,
|
|
|
|
|
.blend_read_data = speaker_blend_read_data,
|
|
|
|
|
.blend_read_lib = speaker_blend_read_lib,
|
|
|
|
|
.blend_read_expand = speaker_blend_read_expand,
|
2020-11-03 11:39:36 +01:00
|
|
|
|
|
|
|
|
.blend_read_undo_preserve = NULL,
|
2021-01-22 14:52:50 +01:00
|
|
|
|
|
|
|
|
.lib_override_apply_post = NULL,
|
2020-03-08 20:10:07 +01:00
|
|
|
};
|
|
|
|
|
|
First step to handle missing libs/datablocks when reading a file.
Idea is, instead of ignoring completely missing linked datablocks, to
create void placeholders for them.
That way, you can work on your file, save it, and find again your missing data once
lib becomes available again. Or you can edit missing lib's path (in Outliner),
save and reload the file, and you are done.
Also, Outliner now shows broken libraries (and placeholders) with a 'broken lib' icon.
Future plans are also to be able to relocate missing libs and reload them at runtime.
Code notes:
- Placeholder ID is just a regular datablock of same type as expected linked one,
with 'default' data, and a LIB_MISSING bitflag set.
- To allow creation of such datablocks, creation of datablocks in BKE was split in two step:
+ Allocation of memory itself.
+ Setting of all internal data to default values.
See also the design task (T43351).
Reviewed by @campbellbarton, thanks a bunch!
Differential Revision: https://developer.blender.org/D1394
2015-10-20 14:44:57 +02:00
|
|
|
void *BKE_speaker_add(Main *bmain, const char *name)
|
|
|
|
|
{
|
|
|
|
|
Speaker *spk;
|
|
|
|
|
|
2020-10-08 12:50:04 +02:00
|
|
|
spk = BKE_id_new(bmain, ID_SPK, name);
|
2011-08-04 07:12:03 +00:00
|
|
|
|
|
|
|
|
return spk;
|
|
|
|
|
}
|