2021-04-20 17:08:31 +02:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* \ingroup blenloader
|
|
|
|
*/
|
|
|
|
/* allow readfile to use deprecated functionality */
|
|
|
|
#define DNA_DEPRECATED_ALLOW
|
|
|
|
|
2021-04-22 16:33:37 +10:00
|
|
|
#include "BLI_listbase.h"
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
2021-05-04 16:38:52 +02:00
|
|
|
#include "DNA_brush_types.h"
|
2021-04-22 16:33:37 +10:00
|
|
|
#include "DNA_genfile.h"
|
|
|
|
#include "DNA_modifier_types.h"
|
2021-05-04 14:46:32 +02:00
|
|
|
#include "DNA_text_types.h"
|
2021-04-22 16:33:37 +10:00
|
|
|
|
2021-05-04 14:46:32 +02:00
|
|
|
#include "BKE_lib_id.h"
|
2021-04-20 17:08:31 +02:00
|
|
|
#include "BKE_main.h"
|
|
|
|
|
|
|
|
#include "BLO_readfile.h"
|
|
|
|
#include "readfile.h"
|
|
|
|
|
2021-05-04 14:46:32 +02:00
|
|
|
void do_versions_after_linking_300(Main *bmain, ReportList *UNUSED(reports))
|
2021-04-20 17:08:31 +02:00
|
|
|
{
|
2021-05-04 14:46:32 +02:00
|
|
|
if (MAIN_VERSION_ATLEAST(bmain, 300, 0) && !MAIN_VERSION_ATLEAST(bmain, 300, 1)) {
|
|
|
|
/* Set zero user text objects to have a fake user. */
|
|
|
|
LISTBASE_FOREACH (Text *, text, &bmain->texts) {
|
|
|
|
if (text->id.us == 0) {
|
|
|
|
id_fake_user_set(&text->id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-20 17:08:31 +02:00
|
|
|
/**
|
|
|
|
* Versioning code until next subversion bump goes here.
|
|
|
|
*
|
|
|
|
* \note Be sure to check when bumping the version:
|
|
|
|
* - #blo_do_versions_300 in this file.
|
|
|
|
* - "versioning_userdef.c", #blo_do_versions_userdef
|
|
|
|
* - "versioning_userdef.c", #do_versions_theme
|
|
|
|
*
|
|
|
|
* \note Keep this message at the bottom of the function.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
/* Keep this block, even when empty. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOLINTNEXTLINE: readability-function-size */
|
2021-04-22 16:33:37 +10:00
|
|
|
void blo_do_versions_300(FileData *fd, Library *UNUSED(lib), Main *bmain)
|
2021-04-20 17:08:31 +02:00
|
|
|
{
|
2021-05-04 14:46:32 +02:00
|
|
|
if (!MAIN_VERSION_ATLEAST(bmain, 300, 1)) {
|
2021-04-22 16:33:37 +10:00
|
|
|
/* Set default value for the new bisect_threshold parameter in the mirror modifier. */
|
|
|
|
if (!DNA_struct_elem_find(fd->filesdna, "MirrorModifierData", "float", "bisect_threshold")) {
|
|
|
|
LISTBASE_FOREACH (Object *, ob, &bmain->objects) {
|
|
|
|
LISTBASE_FOREACH (ModifierData *, md, &ob->modifiers) {
|
|
|
|
if (md->type == eModifierType_Mirror) {
|
|
|
|
MirrorModifierData *mmd = (MirrorModifierData *)md;
|
|
|
|
/* This was the previous hard-coded value. */
|
|
|
|
mmd->bisect_threshold = 0.001f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-04 16:38:52 +02:00
|
|
|
/* Grease Pencil: Set default value for dilate pixels. */
|
|
|
|
if (!DNA_struct_elem_find(fd->filesdna, "BrushGpencilSettings", "int", "dilate_pixels")) {
|
|
|
|
LISTBASE_FOREACH (Brush *, brush, &bmain->brushes) {
|
|
|
|
if (brush->gpencil_settings) {
|
|
|
|
brush->gpencil_settings->dilate_pixels = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-20 17:08:31 +02:00
|
|
|
}
|
2021-05-04 14:46:32 +02:00
|
|
|
/**
|
|
|
|
* Versioning code until next subversion bump goes here.
|
|
|
|
*
|
|
|
|
* \note Be sure to check when bumping the version:
|
|
|
|
* - "versioning_userdef.c", #blo_do_versions_userdef
|
|
|
|
* - "versioning_userdef.c", #do_versions_theme
|
|
|
|
*
|
|
|
|
* \note Keep this message at the bottom of the function.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
/* Keep this block, even when empty. */
|
|
|
|
}
|
2021-04-20 17:08:31 +02:00
|
|
|
}
|