60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include "RNA_prototypes.h"
|
|
|
|
#include "NOD_zone_socket_items.hh"
|
|
|
|
#include "BKE_node.hh"
|
|
|
|
#include "BLO_read_write.hh"
|
|
|
|
namespace blender::nodes {
|
|
|
|
/* Defined here to avoid including the relevant headers in the header. */
|
|
|
|
StructRNA *SimulationItemsAccessor::item_srna = &RNA_SimulationStateItem;
|
|
int SimulationItemsAccessor::node_type = GEO_NODE_SIMULATION_OUTPUT;
|
|
|
|
void SimulationItemsAccessor::blend_write(BlendWriter *writer, const bNode &node)
|
|
{
|
|
const auto &storage = *static_cast<const NodeGeometrySimulationOutput *>(node.storage);
|
|
BLO_write_struct_array(writer, NodeSimulationItem, storage.items_num, storage.items);
|
|
for (const NodeSimulationItem &item : Span(storage.items, storage.items_num)) {
|
|
BLO_write_string(writer, item.name);
|
|
}
|
|
}
|
|
|
|
void SimulationItemsAccessor::blend_read_data(BlendDataReader *reader, bNode &node)
|
|
{
|
|
auto &storage = *static_cast<NodeGeometrySimulationOutput *>(node.storage);
|
|
BLO_read_data_address(reader, &storage.items);
|
|
for (const NodeSimulationItem &item : Span(storage.items, storage.items_num)) {
|
|
BLO_read_data_address(reader, &item.name);
|
|
}
|
|
}
|
|
|
|
StructRNA *RepeatItemsAccessor::item_srna = &RNA_RepeatItem;
|
|
int RepeatItemsAccessor::node_type = GEO_NODE_REPEAT_OUTPUT;
|
|
|
|
void RepeatItemsAccessor::blend_write(BlendWriter *writer, const bNode &node)
|
|
{
|
|
const auto &storage = *static_cast<const NodeGeometryRepeatOutput *>(node.storage);
|
|
BLO_write_struct_array(writer, NodeRepeatItem, storage.items_num, storage.items);
|
|
for (const NodeRepeatItem &item : Span(storage.items, storage.items_num)) {
|
|
BLO_write_string(writer, item.name);
|
|
}
|
|
}
|
|
|
|
void RepeatItemsAccessor::blend_read_data(BlendDataReader *reader, bNode &node)
|
|
{
|
|
auto &storage = *static_cast<NodeGeometryRepeatOutput *>(node.storage);
|
|
BLO_read_data_address(reader, &storage.items);
|
|
for (const NodeRepeatItem &item : Span(storage.items, storage.items_num)) {
|
|
BLO_read_data_address(reader, &item.name);
|
|
}
|
|
}
|
|
|
|
} // namespace blender::nodes
|