2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup creator
|
2016-02-28 05:10:00 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WITH_PYTHON_MODULE
|
|
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
# include <cerrno>
|
|
|
|
|
# include <cstdlib>
|
|
|
|
|
# include <cstring>
|
2016-02-28 05:10:00 +11:00
|
|
|
|
|
|
|
|
# include "MEM_guardedalloc.h"
|
|
|
|
|
|
2018-03-29 20:38:32 +02:00
|
|
|
# include "CLG_log.h"
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
# ifdef WIN32
|
|
|
|
|
# include "BLI_winstuff.h"
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# include "BLI_args.h"
|
2023-05-27 16:33:46 +10:00
|
|
|
# include "BLI_dynstr.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
# include "BLI_fileops.h"
|
2016-02-28 05:10:00 +11:00
|
|
|
# include "BLI_listbase.h"
|
2024-09-26 21:13:39 +10:00
|
|
|
# include "BLI_path_utils.hh"
|
2016-02-28 05:10:00 +11:00
|
|
|
# include "BLI_string.h"
|
|
|
|
|
# include "BLI_string_utf8.h"
|
2018-05-18 13:43:30 +02:00
|
|
|
# include "BLI_system.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
# include "BLI_threads.h"
|
|
|
|
|
# include "BLI_utildefines.h"
|
2024-02-13 19:14:48 +11:00
|
|
|
# ifndef NDEBUG
|
|
|
|
|
# include "BLI_mempool.h"
|
|
|
|
|
# endif
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2024-01-21 19:42:13 +01:00
|
|
|
# include "BKE_appdir.hh"
|
2025-06-11 09:22:29 +00:00
|
|
|
# include "BKE_blender.hh"
|
2024-04-05 11:24:07 +11:00
|
|
|
# include "BKE_blender_cli_command.hh"
|
2016-04-24 22:42:41 +10:00
|
|
|
# include "BKE_blender_version.h"
|
2023-12-13 12:36:45 +01:00
|
|
|
# include "BKE_blendfile.hh"
|
2023-11-16 11:41:55 +01:00
|
|
|
# include "BKE_context.hh"
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2024-02-10 18:25:14 +01:00
|
|
|
# include "BKE_global.hh"
|
2024-11-12 15:21:59 +01:00
|
|
|
# include "BKE_image_format.hh"
|
2024-01-15 12:44:04 -05:00
|
|
|
# include "BKE_lib_id.hh"
|
2023-12-01 19:43:16 +01:00
|
|
|
# include "BKE_main.hh"
|
2024-02-10 18:34:29 +01:00
|
|
|
# include "BKE_report.hh"
|
2024-02-10 19:16:25 +01:00
|
|
|
# include "BKE_scene.hh"
|
2016-02-28 05:10:00 +11:00
|
|
|
# include "BKE_sound.h"
|
|
|
|
|
|
2024-03-23 01:24:18 +01:00
|
|
|
# include "GPU_context.hh"
|
2025-01-26 20:08:09 +01:00
|
|
|
# ifdef WITH_OPENGL_BACKEND
|
|
|
|
|
# include "GPU_capabilities.hh"
|
|
|
|
|
# include "GPU_compilation_subprocess.hh"
|
|
|
|
|
# endif
|
2022-10-19 15:13:15 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
# ifdef WITH_PYTHON
|
2024-09-24 17:07:49 +02:00
|
|
|
# include "BPY_extern_python.hh"
|
|
|
|
|
# include "BPY_extern_run.hh"
|
2016-02-28 05:10:00 +11:00
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# include "RE_engine.h"
|
|
|
|
|
# include "RE_pipeline.h"
|
|
|
|
|
|
2023-08-04 23:11:22 +02:00
|
|
|
# include "WM_api.hh"
|
2016-02-28 05:10:00 +11:00
|
|
|
|
|
|
|
|
# ifdef WITH_LIBMV
|
|
|
|
|
# include "libmv-capi.h"
|
|
|
|
|
# endif
|
|
|
|
|
|
2023-09-22 03:18:17 +02:00
|
|
|
# include "DEG_depsgraph.hh"
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2023-08-04 23:11:22 +02:00
|
|
|
# include "WM_types.hh"
|
2021-03-01 14:36:52 +01:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
# include "creator_intern.h" /* Own include. */
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
|
/** \name Build Defines
|
|
|
|
|
* \{ */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Support extracting arguments for all platforms (for documentation purposes).
|
|
|
|
|
* These names match the upper case defines.
|
|
|
|
|
*/
|
|
|
|
|
struct BuildDefs {
|
|
|
|
|
bool win32;
|
|
|
|
|
bool with_cycles;
|
|
|
|
|
bool with_ffmpeg;
|
|
|
|
|
bool with_freestyle;
|
|
|
|
|
bool with_libmv;
|
Refactor: OpenColorIO integration
Briefly about this change:
- OpenColorIO C-API is removed.
- The information about color spaces in ImBuf module is removed.
It was stored in global ListBase in colormanagement.cc.
- Both OpenColorIO and fallback implementation supports GPU drawing.
- Fallback implementation supports white point, RGB curves, etc.
- Removed check for support of GPU drawing in IMB.
Historically it was implemented in a separate library with C-API, this
is because way back C++ code needed to stay in intern. This causes all
sort of overheads, and even calls that are strictly considered bad
level.
This change moves OpenColorIO integration into a module within imbuf,
next to movie, and next to IMB_colormanagement which is the main user
of it. This allows to avoid copy of color spaces, displays, views etc
in the ImBuf: they were used to help quickly querying information to
be shown on the interface. With this change it can be stored in the
same data structures as what is used by the OpenColorIO integration.
While it might not be fully avoiding duplication it is now less, and
there is no need in the user code to maintain the copies.
In a lot of cases this change also avoids allocations done per access
to the OpenColorIO. For example, it is not needed anymore to allocate
image descriptor in a heap.
The bigger user-visible change is that the fallback implementation now
supports GLSL drawing, with the whole list of supported features, such
as curve mapping and white point. This should help simplifying code
which relies on color space conversion on GPU: there is no need to
figure out fallback solution in such cases. The only case when drawing
will not work is when there is some actual bug, or driver issue, and
shader has failed to compile.
The change avoids having an opaque type for color space, and instead
uses forward declaration. It is a bit verbose on declaration, but helps
avoiding unsafe type-casts. There are ways to solve this in the future,
like having a header for forward declaration, or to flatten the name
space a bit.
There should be no user-level changes under normal operation.
When building without OpenColorIO or the configuration has a typo or
is missing a fuller set of color management tools is applies (such as the
white point correction).
Pull Request: https://projects.blender.org/blender/blender/pulls/138433
2025-05-09 14:01:43 +02:00
|
|
|
bool with_opencolorio;
|
2023-05-27 17:23:19 +10:00
|
|
|
bool with_renderdoc;
|
|
|
|
|
bool with_xr_openxr;
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
static void build_defs_init(BuildDefs *build_defs, bool force_all)
|
2023-05-27 17:23:19 +10:00
|
|
|
{
|
|
|
|
|
if (force_all) {
|
|
|
|
|
bool *var_end = (bool *)(build_defs + 1);
|
|
|
|
|
for (bool *var = (bool *)build_defs; var < var_end; var++) {
|
|
|
|
|
*var = true;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memset(build_defs, 0x0, sizeof(*build_defs));
|
|
|
|
|
|
|
|
|
|
# ifdef WIN32
|
|
|
|
|
build_defs->win32 = true;
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_CYCLES
|
|
|
|
|
build_defs->with_cycles = true;
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_FFMPEG
|
|
|
|
|
build_defs->with_ffmpeg = true;
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_FREESTYLE
|
|
|
|
|
build_defs->with_freestyle = true;
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_LIBMV
|
|
|
|
|
build_defs->with_libmv = true;
|
|
|
|
|
# endif
|
Refactor: OpenColorIO integration
Briefly about this change:
- OpenColorIO C-API is removed.
- The information about color spaces in ImBuf module is removed.
It was stored in global ListBase in colormanagement.cc.
- Both OpenColorIO and fallback implementation supports GPU drawing.
- Fallback implementation supports white point, RGB curves, etc.
- Removed check for support of GPU drawing in IMB.
Historically it was implemented in a separate library with C-API, this
is because way back C++ code needed to stay in intern. This causes all
sort of overheads, and even calls that are strictly considered bad
level.
This change moves OpenColorIO integration into a module within imbuf,
next to movie, and next to IMB_colormanagement which is the main user
of it. This allows to avoid copy of color spaces, displays, views etc
in the ImBuf: they were used to help quickly querying information to
be shown on the interface. With this change it can be stored in the
same data structures as what is used by the OpenColorIO integration.
While it might not be fully avoiding duplication it is now less, and
there is no need in the user code to maintain the copies.
In a lot of cases this change also avoids allocations done per access
to the OpenColorIO. For example, it is not needed anymore to allocate
image descriptor in a heap.
The bigger user-visible change is that the fallback implementation now
supports GLSL drawing, with the whole list of supported features, such
as curve mapping and white point. This should help simplifying code
which relies on color space conversion on GPU: there is no need to
figure out fallback solution in such cases. The only case when drawing
will not work is when there is some actual bug, or driver issue, and
shader has failed to compile.
The change avoids having an opaque type for color space, and instead
uses forward declaration. It is a bit verbose on declaration, but helps
avoiding unsafe type-casts. There are ways to solve this in the future,
like having a header for forward declaration, or to flatten the name
space a bit.
There should be no user-level changes under normal operation.
When building without OpenColorIO or the configuration has a typo or
is missing a fuller set of color management tools is applies (such as the
white point correction).
Pull Request: https://projects.blender.org/blender/blender/pulls/138433
2025-05-09 14:01:43 +02:00
|
|
|
# ifdef WITH_OPENCOLORIO
|
|
|
|
|
build_defs->with_opencolorio = true;
|
2023-05-27 17:23:19 +10:00
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_RENDERDOC
|
|
|
|
|
build_defs->with_renderdoc = true;
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_XR_OPENXR
|
|
|
|
|
build_defs->with_xr_openxr = true;
|
|
|
|
|
# endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \} */
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
|
/** \name Utility String Parsing
|
|
|
|
|
* \{ */
|
|
|
|
|
|
|
|
|
|
static bool parse_int_relative(const char *str,
|
2016-04-06 07:34:20 +10:00
|
|
|
const char *str_end_test,
|
|
|
|
|
int pos,
|
|
|
|
|
int neg,
|
2016-02-28 05:10:00 +11:00
|
|
|
int *r_value,
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
char *str_end = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
long value;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
errno = 0;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
switch (*str) {
|
|
|
|
|
case '+':
|
|
|
|
|
value = pos + strtol(str + 1, &str_end, 10);
|
|
|
|
|
break;
|
|
|
|
|
case '-':
|
|
|
|
|
value = (neg - strtol(str + 1, &str_end, 10)) + 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
value = strtol(str, &str_end, 10);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
if (*str_end != '\0' && (str_end != str_end_test)) {
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char *msg = "not a number";
|
|
|
|
|
*r_err_msg = msg;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-08-05 16:48:29 +10:00
|
|
|
if ((errno == ERANGE) || ((value < INT_MIN) || (value > INT_MAX))) {
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char *msg = "exceeds range";
|
|
|
|
|
*r_err_msg = msg;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-08-03 08:57:59 +10:00
|
|
|
*r_value = int(value);
|
2020-11-07 21:21:02 +05:30
|
|
|
return true;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
static const char *parse_int_range_sep_search(const char *str, const char *str_end_test)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *str_end_range = nullptr;
|
2016-04-06 07:34:20 +10:00
|
|
|
if (str_end_test) {
|
2023-08-02 15:34:45 +02:00
|
|
|
str_end_range = static_cast<const char *>(memchr(str, '.', (str_end_test - str) - 1));
|
2016-04-06 07:34:20 +10:00
|
|
|
if (str_end_range && (str_end_range[1] != '.')) {
|
2023-08-02 15:34:45 +02:00
|
|
|
str_end_range = nullptr;
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
str_end_range = strstr(str, "..");
|
|
|
|
|
if (str_end_range && (str_end_range[2] == '\0')) {
|
2023-08-02 15:34:45 +02:00
|
|
|
str_end_range = nullptr;
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return str_end_range;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse a number as a range, eg: `1..4`.
|
|
|
|
|
*
|
|
|
|
|
* The \a str_end_range argument is a result of #parse_int_range_sep_search.
|
|
|
|
|
*/
|
|
|
|
|
static bool parse_int_range_relative(const char *str,
|
|
|
|
|
const char *str_end_range,
|
|
|
|
|
const char *str_end_test,
|
|
|
|
|
int pos,
|
|
|
|
|
int neg,
|
|
|
|
|
int r_value_range[2],
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
|
|
|
|
if (parse_int_relative(str, str_end_range, pos, neg, &r_value_range[0], r_err_msg) &&
|
|
|
|
|
parse_int_relative(str_end_range + 2, str_end_test, pos, neg, &r_value_range[1], r_err_msg))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-11-07 18:24:56 +05:30
|
|
|
return false;
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static bool parse_int_relative_clamp(const char *str,
|
2016-04-06 07:34:20 +10:00
|
|
|
const char *str_end_test,
|
|
|
|
|
int pos,
|
|
|
|
|
int neg,
|
|
|
|
|
int min,
|
|
|
|
|
int max,
|
2016-02-28 05:10:00 +11:00
|
|
|
int *r_value,
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
2016-04-06 07:34:20 +10:00
|
|
|
if (parse_int_relative(str, str_end_test, pos, neg, r_value, r_err_msg)) {
|
2016-02-28 05:10:00 +11:00
|
|
|
CLAMP(*r_value, min, max);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-11-07 18:24:56 +05:30
|
|
|
return false;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
static bool parse_int_range_relative_clamp(const char *str,
|
|
|
|
|
const char *str_end_range,
|
|
|
|
|
const char *str_end_test,
|
|
|
|
|
int pos,
|
|
|
|
|
int neg,
|
|
|
|
|
int min,
|
|
|
|
|
int max,
|
|
|
|
|
int r_value_range[2],
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
|
|
|
|
if (parse_int_range_relative(
|
2024-01-02 18:12:54 +01:00
|
|
|
str, str_end_range, str_end_test, pos, neg, r_value_range, r_err_msg))
|
|
|
|
|
{
|
2016-04-06 07:34:20 +10:00
|
|
|
CLAMP(r_value_range[0], min, max);
|
|
|
|
|
CLAMP(r_value_range[1], min, max);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-11-07 18:24:56 +05:30
|
|
|
return false;
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
/**
|
|
|
|
|
* No clamping, fails with any number outside the range.
|
|
|
|
|
*/
|
|
|
|
|
static bool parse_int_strict_range(const char *str,
|
2016-04-06 07:34:20 +10:00
|
|
|
const char *str_end_test,
|
|
|
|
|
const int min,
|
|
|
|
|
const int max,
|
2016-02-28 05:10:00 +11:00
|
|
|
int *r_value,
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
char *str_end = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
long value;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
errno = 0;
|
|
|
|
|
value = strtol(str, &str_end, 10);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
if (*str_end != '\0' && (str_end != str_end_test)) {
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char *msg = "not a number";
|
|
|
|
|
*r_err_msg = msg;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-08-05 16:48:29 +10:00
|
|
|
if ((errno == ERANGE) || ((value < min) || (value > max))) {
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char *msg = "exceeds range";
|
|
|
|
|
*r_err_msg = msg;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-08-03 08:57:59 +10:00
|
|
|
*r_value = int(value);
|
2020-11-07 21:21:02 +05:30
|
|
|
return true;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static bool parse_int(const char *str,
|
2016-04-06 07:34:20 +10:00
|
|
|
const char *str_end_test,
|
2016-02-28 05:10:00 +11:00
|
|
|
int *r_value,
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
2016-04-06 07:34:20 +10:00
|
|
|
return parse_int_strict_range(str, str_end_test, INT_MIN, INT_MAX, r_value, r_err_msg);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static bool parse_int_clamp(const char *str,
|
2016-04-06 07:34:20 +10:00
|
|
|
const char *str_end_test,
|
|
|
|
|
int min,
|
|
|
|
|
int max,
|
2016-02-28 05:10:00 +11:00
|
|
|
int *r_value,
|
|
|
|
|
const char **r_err_msg)
|
|
|
|
|
{
|
2016-04-06 07:34:20 +10:00
|
|
|
if (parse_int(str, str_end_test, r_value, r_err_msg)) {
|
2016-02-28 05:10:00 +11:00
|
|
|
CLAMP(*r_value, min, max);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-11-07 18:24:56 +05:30
|
|
|
return false;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
# if 0
|
|
|
|
|
/**
|
|
|
|
|
* Version of #parse_int_relative_clamp
|
|
|
|
|
* that parses a comma separated list of numbers.
|
|
|
|
|
*/
|
|
|
|
|
static int *parse_int_relative_clamp_n(
|
2019-04-17 08:50:46 +02:00
|
|
|
const char *str, int pos, int neg, int min, int max, int *r_value_len, const char **r_err_msg)
|
2016-04-06 07:34:20 +10:00
|
|
|
{
|
|
|
|
|
const char sep = ',';
|
|
|
|
|
int len = 1;
|
|
|
|
|
for (int i = 0; str[i]; i++) {
|
|
|
|
|
if (str[i] == sep) {
|
|
|
|
|
len++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2025-03-07 11:52:12 +01:00
|
|
|
int *values = MEM_malloc_arrayN<int>(size_t(len), __func__);
|
2016-04-06 07:34:20 +10:00
|
|
|
int i = 0;
|
|
|
|
|
while (true) {
|
|
|
|
|
const char *str_end = strchr(str, sep);
|
2022-03-09 09:35:37 +11:00
|
|
|
if (ELEM(*str, sep, '\0')) {
|
2016-04-06 07:34:20 +10:00
|
|
|
static const char *msg = "incorrect comma use";
|
|
|
|
|
*r_err_msg = msg;
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
else if (parse_int_relative_clamp(str, str_end, pos, neg, min, max, &values[i], r_err_msg)) {
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2024-03-19 13:57:00 +11:00
|
|
|
goto fail; /* Error message already set. */
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
if (str_end) { /* Next. */
|
2016-04-06 07:34:20 +10:00
|
|
|
str = str_end + 1;
|
|
|
|
|
}
|
2024-03-19 13:57:00 +11:00
|
|
|
else { /* Finished. */
|
2016-04-06 07:34:20 +10:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
*r_value_len = i;
|
|
|
|
|
return values;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
MEM_freeN(values);
|
2023-08-02 15:34:45 +02:00
|
|
|
return nullptr;
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Version of #parse_int_relative_clamp & #parse_int_range_relative_clamp
|
|
|
|
|
* that parses a comma separated list of numbers.
|
|
|
|
|
*
|
|
|
|
|
* \note single values are evaluated as a range with matching start/end.
|
|
|
|
|
*/
|
|
|
|
|
static int (*parse_int_range_relative_clamp_n(const char *str,
|
|
|
|
|
int pos,
|
|
|
|
|
int neg,
|
|
|
|
|
int min,
|
|
|
|
|
int max,
|
|
|
|
|
int *r_value_len,
|
|
|
|
|
const char **r_err_msg))[2]
|
|
|
|
|
{
|
|
|
|
|
const char sep = ',';
|
|
|
|
|
int len = 1;
|
|
|
|
|
for (int i = 0; str[i]; i++) {
|
|
|
|
|
if (str[i] == sep) {
|
|
|
|
|
len++;
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
2025-03-07 11:52:12 +01:00
|
|
|
int(*values)[2] = MEM_malloc_arrayN<int[2]>(size_t(len), __func__);
|
2016-04-06 07:34:20 +10:00
|
|
|
int i = 0;
|
|
|
|
|
while (true) {
|
|
|
|
|
const char *str_end_range;
|
|
|
|
|
const char *str_end = strchr(str, sep);
|
2020-11-06 12:30:59 +11:00
|
|
|
if (ELEM(*str, sep, '\0')) {
|
2016-04-06 07:34:20 +10:00
|
|
|
static const char *msg = "incorrect comma use";
|
|
|
|
|
*r_err_msg = msg;
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
else if ((str_end_range = parse_int_range_sep_search(str, str_end)) ?
|
|
|
|
|
parse_int_range_relative_clamp(
|
|
|
|
|
str, str_end_range, str_end, pos, neg, min, max, values[i], r_err_msg) :
|
|
|
|
|
parse_int_relative_clamp(
|
|
|
|
|
str, str_end, pos, neg, min, max, &values[i][0], r_err_msg))
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
if (str_end_range == nullptr) {
|
2016-04-06 07:34:20 +10:00
|
|
|
values[i][1] = values[i][0];
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2024-03-19 13:57:00 +11:00
|
|
|
goto fail; /* Error message already set. */
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
if (str_end) { /* Next. */
|
2016-04-06 07:34:20 +10:00
|
|
|
str = str_end + 1;
|
|
|
|
|
}
|
2024-03-19 13:57:00 +11:00
|
|
|
else { /* Finished. */
|
2016-04-06 07:34:20 +10:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
*r_value_len = i;
|
|
|
|
|
return values;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
MEM_freeN(values);
|
2023-08-02 15:34:45 +02:00
|
|
|
return nullptr;
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
/** \} */
|
|
|
|
|
|
2024-04-05 11:24:07 +11:00
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
|
/** \name Deferred Argument Handling
|
|
|
|
|
*
|
|
|
|
|
* Support executing an argument running instead of #WM_main which is deferred.
|
|
|
|
|
* Needed for arguments which are handled early but require sub-systems
|
|
|
|
|
* (Python in particular) * to be initialized.
|
|
|
|
|
* \{ */
|
|
|
|
|
|
2024-04-10 11:49:08 +10:00
|
|
|
/* When the deferred argument is handled on Windows the `argv` will have been freed,
|
|
|
|
|
* see `USE_WIN32_UNICODE_ARGS` in `creator.cc`. */
|
|
|
|
|
|
|
|
|
|
# ifdef WIN32
|
|
|
|
|
static char **argv_duplicate(const char **argv, int argc)
|
|
|
|
|
{
|
2025-03-07 11:52:12 +01:00
|
|
|
char **argv_copy = MEM_malloc_arrayN<char *>(size_t(argc), __func__);
|
2024-04-10 11:49:08 +10:00
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
|
argv_copy[i] = BLI_strdup(argv[i]);
|
|
|
|
|
}
|
|
|
|
|
return argv_copy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void argv_free(char **argv, int argc)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
|
MEM_freeN(argv[i]);
|
|
|
|
|
}
|
|
|
|
|
MEM_freeN(argv);
|
|
|
|
|
}
|
|
|
|
|
# endif /* !WIN32 */
|
|
|
|
|
|
2024-04-05 11:24:07 +11:00
|
|
|
struct BA_ArgCallback_Deferred {
|
|
|
|
|
BA_ArgCallback func;
|
|
|
|
|
int argc;
|
|
|
|
|
const char **argv;
|
|
|
|
|
void *data;
|
|
|
|
|
/** Return-code. */
|
|
|
|
|
int exit_code;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static bool main_arg_deferred_is_set()
|
|
|
|
|
{
|
|
|
|
|
return app_state.main_arg_deferred != nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void main_arg_deferred_setup(BA_ArgCallback func, int argc, const char **argv, void *data)
|
|
|
|
|
{
|
|
|
|
|
BLI_assert(app_state.main_arg_deferred == nullptr);
|
2025-03-07 11:52:12 +01:00
|
|
|
BA_ArgCallback_Deferred *d = MEM_callocN<BA_ArgCallback_Deferred>(__func__);
|
2024-04-05 11:24:07 +11:00
|
|
|
d->func = func;
|
|
|
|
|
d->argc = argc;
|
|
|
|
|
d->argv = argv;
|
|
|
|
|
d->data = data;
|
|
|
|
|
d->exit_code = 0;
|
2024-04-10 11:49:08 +10:00
|
|
|
# ifdef WIN32
|
|
|
|
|
d->argv = const_cast<const char **>(argv_duplicate(d->argv, d->argc));
|
|
|
|
|
# endif
|
2024-04-05 11:24:07 +11:00
|
|
|
app_state.main_arg_deferred = d;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 11:49:08 +10:00
|
|
|
void main_arg_deferred_free()
|
|
|
|
|
{
|
|
|
|
|
BA_ArgCallback_Deferred *d = app_state.main_arg_deferred;
|
|
|
|
|
app_state.main_arg_deferred = nullptr;
|
|
|
|
|
# ifdef WIN32
|
|
|
|
|
argv_free(const_cast<char **>(d->argv), d->argc);
|
|
|
|
|
# endif
|
|
|
|
|
MEM_freeN(d);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-05 11:24:07 +11:00
|
|
|
static void main_arg_deferred_exit_code_set(int exit_code)
|
|
|
|
|
{
|
|
|
|
|
BA_ArgCallback_Deferred *d = app_state.main_arg_deferred;
|
|
|
|
|
BLI_assert(d != nullptr);
|
|
|
|
|
d->exit_code = exit_code;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 11:49:08 +10:00
|
|
|
int main_arg_deferred_handle()
|
2024-04-05 11:24:07 +11:00
|
|
|
{
|
|
|
|
|
BA_ArgCallback_Deferred *d = app_state.main_arg_deferred;
|
|
|
|
|
d->func(d->argc, d->argv, d->data);
|
|
|
|
|
return d->exit_code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \} */
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
/* -------------------------------------------------------------------- */
|
2019-08-02 12:25:39 +10:00
|
|
|
/** \name Utilities Python Context Macro (#BPY_CTX_SETUP)
|
|
|
|
|
* \{ */
|
2016-02-28 05:10:00 +11:00
|
|
|
|
|
|
|
|
# ifdef WITH_PYTHON
|
|
|
|
|
|
|
|
|
|
struct BlendePyContextStore {
|
|
|
|
|
wmWindowManager *wm;
|
|
|
|
|
Scene *scene;
|
|
|
|
|
wmWindow *win;
|
|
|
|
|
bool has_win;
|
|
|
|
|
};
|
|
|
|
|
|
2024-04-26 13:55:40 +10:00
|
|
|
static void arg_py_context_backup(bContext *C, BlendePyContextStore *c_py)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
c_py->wm = CTX_wm_manager(C);
|
|
|
|
|
c_py->scene = CTX_data_scene(C);
|
2024-04-05 11:43:00 +11:00
|
|
|
c_py->has_win = c_py->wm && !BLI_listbase_is_empty(&c_py->wm->windows);
|
2016-02-28 05:10:00 +11:00
|
|
|
if (c_py->has_win) {
|
|
|
|
|
c_py->win = CTX_wm_window(C);
|
2023-08-02 15:34:45 +02:00
|
|
|
CTX_wm_window_set(C, static_cast<wmWindow *>(c_py->wm->windows.first));
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2024-04-26 13:55:40 +10:00
|
|
|
/* NOTE: this should never happen, although it may be possible when loading
|
|
|
|
|
* `.blend` files without windowing data. Whatever the case, it shouldn't crash,
|
|
|
|
|
* although typical scripts that accesses the context is not expected to work usefully. */
|
2023-08-02 15:34:45 +02:00
|
|
|
c_py->win = nullptr;
|
2024-04-26 13:55:40 +10:00
|
|
|
fprintf(stderr, "Python script running with missing context data.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
static void arg_py_context_restore(bContext *C, BlendePyContextStore *c_py)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Script may load a file, check old data is valid before using. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (c_py->has_win) {
|
2023-08-02 15:34:45 +02:00
|
|
|
if ((c_py->win == nullptr) || ((BLI_findindex(&G_MAIN->wm, c_py->wm) != -1) &&
|
|
|
|
|
(BLI_findindex(&c_py->wm->windows, c_py->win) != -1)))
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
CTX_wm_window_set(C, c_py->win);
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
if ((c_py->scene == nullptr) || BLI_findindex(&G_MAIN->scenes, c_py->scene) != -1) {
|
2016-02-28 05:10:00 +11:00
|
|
|
CTX_data_scene_set(C, c_py->scene);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Macro for context setup/reset. */
|
2016-02-28 05:10:00 +11:00
|
|
|
# define BPY_CTX_SETUP(_cmd) \
|
|
|
|
|
{ \
|
2023-08-03 08:57:59 +10:00
|
|
|
BlendePyContextStore py_c; \
|
2024-04-26 13:55:40 +10:00
|
|
|
arg_py_context_backup(C, &py_c); \
|
2016-02-28 05:10:00 +11:00
|
|
|
{ \
|
|
|
|
|
_cmd; \
|
|
|
|
|
} \
|
|
|
|
|
arg_py_context_restore(C, &py_c); \
|
|
|
|
|
} \
|
|
|
|
|
((void)0)
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
# endif /* WITH_PYTHON */
|
|
|
|
|
|
|
|
|
|
/** \} */
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
|
/** \name Handle Argument Callbacks
|
2016-03-03 12:35:33 +11:00
|
|
|
*
|
|
|
|
|
* \note Doc strings here are used in differently:
|
|
|
|
|
*
|
|
|
|
|
* - The `--help` message.
|
|
|
|
|
* - The man page (for Unix systems),
|
|
|
|
|
* see: `doc/manpage/blender.1.py`
|
|
|
|
|
* - Parsed and extracted for the manual,
|
|
|
|
|
* which converts our ad-hoc formatting to reStructuredText.
|
2017-01-23 19:09:45 -05:00
|
|
|
* see: https://docs.blender.org/manual/en/dev/advanced/command_line.html
|
2016-03-03 12:35:33 +11:00
|
|
|
*
|
2016-02-28 05:10:00 +11:00
|
|
|
* \{ */
|
|
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
static void print_version_full()
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
Blender: change bugfix release versioning from a/b/c to .1/.2/.3
The file subversion is no longer used in the Python API or user interface,
and is now internal to Blender.
User interface, Python API and file I/O metadata now use more consistent
formatting for version numbers. Official releases use "2.83.0", "2.83.1",
and releases under development use "2.90.0 Alpha", "2.90.0 Beta".
Some Python add-ons may need to lower the Blender version in bl_info to
(2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0.
https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility
This change is in preparation of LTS releases, and also brings us more
in line with semantic versioning.
Fixes T76058.
Differential Revision: https://developer.blender.org/D7748
2020-05-25 10:49:04 +02:00
|
|
|
printf("Blender %s\n", BKE_blender_version_string());
|
2016-02-28 05:10:00 +11:00
|
|
|
# ifdef BUILD_DATE
|
|
|
|
|
printf("\tbuild date: %s\n", build_date);
|
|
|
|
|
printf("\tbuild time: %s\n", build_time);
|
|
|
|
|
printf("\tbuild commit date: %s\n", build_commit_date);
|
|
|
|
|
printf("\tbuild commit time: %s\n", build_commit_time);
|
|
|
|
|
printf("\tbuild hash: %s\n", build_hash);
|
2024-05-14 16:08:14 +12:00
|
|
|
printf("\tbuild branch: %s\n", build_branch);
|
2016-02-28 05:10:00 +11:00
|
|
|
printf("\tbuild platform: %s\n", build_platform);
|
|
|
|
|
printf("\tbuild type: %s\n", build_type);
|
|
|
|
|
printf("\tbuild c flags: %s\n", build_cflags);
|
|
|
|
|
printf("\tbuild c++ flags: %s\n", build_cxxflags);
|
|
|
|
|
printf("\tbuild link flags: %s\n", build_linkflags);
|
|
|
|
|
printf("\tbuild system: %s\n", build_system);
|
|
|
|
|
# endif
|
2019-02-22 15:47:54 +01:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
static void print_version_short()
|
2019-02-22 15:47:54 +01:00
|
|
|
{
|
|
|
|
|
# ifdef BUILD_DATE
|
|
|
|
|
/* NOTE: We include built time since sometimes we need to tell broken from
|
|
|
|
|
* working built of the same hash. */
|
Blender: change bugfix release versioning from a/b/c to .1/.2/.3
The file subversion is no longer used in the Python API or user interface,
and is now internal to Blender.
User interface, Python API and file I/O metadata now use more consistent
formatting for version numbers. Official releases use "2.83.0", "2.83.1",
and releases under development use "2.90.0 Alpha", "2.90.0 Beta".
Some Python add-ons may need to lower the Blender version in bl_info to
(2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0.
https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility
This change is in preparation of LTS releases, and also brings us more
in line with semantic versioning.
Fixes T76058.
Differential Revision: https://developer.blender.org/D7748
2020-05-25 10:49:04 +02:00
|
|
|
printf("Blender %s (hash %s built %s %s)\n",
|
|
|
|
|
BKE_blender_version_string(),
|
2019-02-22 15:47:54 +01:00
|
|
|
build_hash,
|
|
|
|
|
build_date,
|
|
|
|
|
build_time);
|
|
|
|
|
# else
|
Blender: change bugfix release versioning from a/b/c to .1/.2/.3
The file subversion is no longer used in the Python API or user interface,
and is now internal to Blender.
User interface, Python API and file I/O metadata now use more consistent
formatting for version numbers. Official releases use "2.83.0", "2.83.1",
and releases under development use "2.90.0 Alpha", "2.90.0 Beta".
Some Python add-ons may need to lower the Blender version in bl_info to
(2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0.
https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility
This change is in preparation of LTS releases, and also brings us more
in line with semantic versioning.
Fixes T76058.
Differential Revision: https://developer.blender.org/D7748
2020-05-25 10:49:04 +02:00
|
|
|
printf("Blender %s\n", BKE_blender_version_string());
|
2019-02-22 15:47:54 +01:00
|
|
|
# endif
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_print_version_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Print Blender version and exit.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_print_version(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2019-02-22 15:47:54 +01:00
|
|
|
{
|
|
|
|
|
print_version_full();
|
2025-06-11 09:22:29 +00:00
|
|
|
|
|
|
|
|
/* Handles cleanup before exit. */
|
|
|
|
|
BKE_blender_atexit();
|
|
|
|
|
|
2023-05-31 15:30:19 +10:00
|
|
|
exit(EXIT_SUCCESS);
|
2023-02-10 11:10:31 +11:00
|
|
|
BLI_assert_unreachable();
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
static void print_help(bArgs *ba, bool all)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-03 08:57:59 +10:00
|
|
|
BuildDefs defs;
|
2023-05-27 17:23:19 +10:00
|
|
|
build_defs_init(&defs, all);
|
|
|
|
|
|
2023-06-02 10:16:16 +10:00
|
|
|
/* All printing must go via `PRINT` macro. */
|
2023-05-27 16:33:46 +10:00
|
|
|
# define printf __ERROR__
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
# define PRINT(...) BLI_args_printf(ba, __VA_ARGS__)
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("Blender %s\n", BKE_blender_version_string());
|
|
|
|
|
PRINT("Usage: blender [args ...] [file] [args ...]\n");
|
|
|
|
|
PRINT("\n");
|
|
|
|
|
|
|
|
|
|
PRINT("Render Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--background");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--render-anim");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--scene");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--render-frame");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--frame-start");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--frame-end");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--frame-jump");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--render-output");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--engine");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--threads");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_cycles) {
|
|
|
|
|
PRINT("Cycles Render Options:\n");
|
|
|
|
|
PRINT("\tCycles add-on options must be specified following a double dash.\n");
|
|
|
|
|
PRINT("\n");
|
2023-05-28 14:54:14 +10:00
|
|
|
PRINT("--cycles-device <device>\n");
|
|
|
|
|
PRINT("\tSet the device used for rendering.\n");
|
|
|
|
|
PRINT("\tValid options are: 'CPU' 'CUDA' 'OPTIX' 'HIP' 'ONEAPI' 'METAL'.\n");
|
2023-05-27 17:23:19 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("\tAppend +CPU to a GPU device to render on both CPU and GPU.\n");
|
|
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("\tExample:\n");
|
|
|
|
|
PRINT("\t# blender -b file.blend -f 20 -- --cycles-device OPTIX\n");
|
|
|
|
|
PRINT("--cycles-print-stats\n");
|
|
|
|
|
PRINT("\tLog statistics about render memory and time usage.\n");
|
|
|
|
|
}
|
2023-05-27 14:19:57 +10:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Format Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--render-format");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--use-extension");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Animation Playback Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "-a");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Window Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--window-border");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--window-fullscreen");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--window-geometry");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--window-maximized");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--start-console");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--no-native-pixels");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--no-window-focus");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Python Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--enable-autoexec");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--disable-autoexec");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--python");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--python-text");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--python-expr");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--python-console");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--python-exit-code");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--python-use-system-env");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--addons");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-05-20 10:32:39 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Network Options:\n");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--online-mode");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--offline-mode");
|
|
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Logging Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--log");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--log-level");
|
2025-06-12 02:19:59 +02:00
|
|
|
BLI_args_print_arg_doc(ba, "--log-show-memory");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--log-show-source");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--log-show-backtrace");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--log-file");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Debug Options:\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-value");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-events");
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_ffmpeg) {
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-ffmpeg");
|
|
|
|
|
}
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-handlers");
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_libmv) {
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-libmv");
|
|
|
|
|
}
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-memory");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-jobs");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-python");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-eval");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-build");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-tag");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-no-threads");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-time");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-pretty");
|
2024-01-22 13:47:13 +01:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-depsgraph-uid");
|
2021-02-02 19:30:37 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-ghost");
|
2021-06-22 17:30:10 -07:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-wintab");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-gpu");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-gpu-force-workarounds");
|
2024-02-15 08:13:44 +01:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-gpu-compile-shaders");
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_renderdoc) {
|
2024-08-30 15:14:58 +02:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-gpu-scope-capture");
|
2023-05-27 17:23:19 +10:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-gpu-renderdoc");
|
|
|
|
|
}
|
2025-06-26 21:57:49 +10:00
|
|
|
# ifdef WITH_VULKAN_BACKEND
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-gpu-vulkan-local-read");
|
|
|
|
|
# endif
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-wm");
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_xr_openxr) {
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-xr");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-xr-time");
|
|
|
|
|
}
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-all");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-io");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-fpe");
|
2021-02-02 19:30:37 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--debug-exit-on-error");
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_freestyle) {
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--debug-freestyle");
|
|
|
|
|
}
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--disable-crash-handler");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--disable-abort-handler");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2021-02-02 19:30:37 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--verbose");
|
2024-09-13 23:00:17 +10:00
|
|
|
BLI_args_print_arg_doc(ba, "--quiet");
|
2021-02-02 19:30:37 +11:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("GPU Options:\n");
|
2023-01-25 11:56:04 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--gpu-backend");
|
2024-07-01 16:36:01 +02:00
|
|
|
# ifdef WITH_OPENGL_BACKEND
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--gpu-compilation-subprocesses");
|
|
|
|
|
# endif
|
2025-05-28 21:08:38 +02:00
|
|
|
BLI_args_print_arg_doc(ba, "--profile-gpu");
|
2023-01-25 11:56:04 +11:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Misc Options:\n");
|
2021-03-04 17:43:11 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--open-last");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--app-template");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--factory-startup");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--enable-event-simulate");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--env-system-datafiles");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--env-system-scripts");
|
2024-06-07 12:14:45 +10:00
|
|
|
BLI_args_print_arg_doc(ba, "--env-system-extensions");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--env-system-python");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "-noaudio");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "-setaudio");
|
2024-03-08 11:07:41 +11:00
|
|
|
PRINT("\n");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--command");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--help");
|
2021-02-02 19:30:37 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "/?");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* WIN32 only (ignored for non-WIN32). */
|
2023-05-24 21:19:56 +02:00
|
|
|
BLI_args_print_arg_doc(ba, "--register");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--register-allusers");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--unregister");
|
|
|
|
|
BLI_args_print_arg_doc(ba, "--unregister-allusers");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--version");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_print_arg_doc(ba, "--");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
// PRINT("\n");
|
|
|
|
|
// PRINT("Experimental Features:\n");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2021-02-02 19:30:37 +11:00
|
|
|
/* Other options _must_ be last (anything not handled will show here).
|
|
|
|
|
*
|
|
|
|
|
* Note that it's good practice for this to remain empty,
|
|
|
|
|
* nevertheless print if any exist. */
|
|
|
|
|
if (BLI_args_has_other_doc(ba)) {
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Other Options:\n");
|
2021-02-02 19:30:37 +11:00
|
|
|
BLI_args_print_other_doc(ba);
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\n");
|
|
|
|
|
PRINT("Argument Parsing:\n");
|
|
|
|
|
PRINT("\tArguments must be separated by white space, eg:\n");
|
|
|
|
|
PRINT("\t# blender -ba test.blend\n");
|
|
|
|
|
PRINT("\t...will exit since '-ba' is an unknown argument.\n");
|
2023-05-28 14:54:14 +10:00
|
|
|
PRINT("\n");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("Argument Order:\n");
|
|
|
|
|
PRINT("\tArguments are executed in the order they are given. eg:\n");
|
2023-05-28 14:54:14 +10:00
|
|
|
PRINT("\t# blender --background test.blend --render-frame 1 --render-output \"/tmp\"\n");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT(
|
2017-10-08 18:46:26 +11:00
|
|
|
"\t...will not render to '/tmp' because '--render-frame 1' renders before the output path "
|
|
|
|
|
"is set.\n");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\t# blender --background --render-output /tmp test.blend --render-frame 1\n");
|
|
|
|
|
PRINT(
|
2017-10-08 18:46:26 +11:00
|
|
|
"\t...will not render to '/tmp' because loading the blend-file overwrites the render output "
|
|
|
|
|
"that was set.\n");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT("\t# blender --background test.blend --render-output /tmp --render-frame 1\n");
|
|
|
|
|
PRINT("\t...works as expected.\n");
|
|
|
|
|
PRINT("\n");
|
|
|
|
|
|
|
|
|
|
PRINT("Environment Variables:\n");
|
2024-06-06 15:28:44 +02:00
|
|
|
PRINT(" $BLENDER_USER_RESOURCES Replace default directory of all user files.\n");
|
|
|
|
|
PRINT(" Other 'BLENDER_USER_*' variables override when set.\n");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT(" $BLENDER_USER_CONFIG Directory for user configuration files.\n");
|
|
|
|
|
PRINT(" $BLENDER_USER_SCRIPTS Directory for user scripts.\n");
|
2024-03-22 16:00:33 +11:00
|
|
|
PRINT(" $BLENDER_USER_EXTENSIONS Directory for user extensions.\n");
|
2023-05-27 16:33:46 +10:00
|
|
|
PRINT(" $BLENDER_USER_DATAFILES Directory for user data files (icons, translations, ..).\n");
|
|
|
|
|
PRINT("\n");
|
2024-06-06 15:28:44 +02:00
|
|
|
PRINT(" $BLENDER_SYSTEM_RESOURCES Replace default directory of all bundled resource files.\n");
|
2025-01-14 20:54:22 +01:00
|
|
|
PRINT(" $BLENDER_SYSTEM_SCRIPTS Directories to add extra scripts.\n");
|
2024-06-07 11:36:20 +10:00
|
|
|
PRINT(" $BLENDER_SYSTEM_EXTENSIONS Directory for system extensions repository.\n");
|
2024-06-06 15:28:44 +02:00
|
|
|
PRINT(" $BLENDER_SYSTEM_DATAFILES Directory to replace bundled datafiles.\n");
|
|
|
|
|
PRINT(" $BLENDER_SYSTEM_PYTHON Directory to replace bundled Python libraries.\n");
|
2025-01-14 20:54:22 +01:00
|
|
|
PRINT(" $BLENDER_CUSTOM_SPLASH Full path to an image that replaces the splash screen.\n");
|
|
|
|
|
PRINT(
|
|
|
|
|
" $BLENDER_CUSTOM_SPLASH_BANNER Full path to an image to overlay on the splash screen.\n");
|
2022-10-04 13:54:09 +11:00
|
|
|
|
Refactor: OpenColorIO integration
Briefly about this change:
- OpenColorIO C-API is removed.
- The information about color spaces in ImBuf module is removed.
It was stored in global ListBase in colormanagement.cc.
- Both OpenColorIO and fallback implementation supports GPU drawing.
- Fallback implementation supports white point, RGB curves, etc.
- Removed check for support of GPU drawing in IMB.
Historically it was implemented in a separate library with C-API, this
is because way back C++ code needed to stay in intern. This causes all
sort of overheads, and even calls that are strictly considered bad
level.
This change moves OpenColorIO integration into a module within imbuf,
next to movie, and next to IMB_colormanagement which is the main user
of it. This allows to avoid copy of color spaces, displays, views etc
in the ImBuf: they were used to help quickly querying information to
be shown on the interface. With this change it can be stored in the
same data structures as what is used by the OpenColorIO integration.
While it might not be fully avoiding duplication it is now less, and
there is no need in the user code to maintain the copies.
In a lot of cases this change also avoids allocations done per access
to the OpenColorIO. For example, it is not needed anymore to allocate
image descriptor in a heap.
The bigger user-visible change is that the fallback implementation now
supports GLSL drawing, with the whole list of supported features, such
as curve mapping and white point. This should help simplifying code
which relies on color space conversion on GPU: there is no need to
figure out fallback solution in such cases. The only case when drawing
will not work is when there is some actual bug, or driver issue, and
shader has failed to compile.
The change avoids having an opaque type for color space, and instead
uses forward declaration. It is a bit verbose on declaration, but helps
avoiding unsafe type-casts. There are ways to solve this in the future,
like having a header for forward declaration, or to flatten the name
space a bit.
There should be no user-level changes under normal operation.
When building without OpenColorIO or the configuration has a typo or
is missing a fuller set of color management tools is applies (such as the
white point correction).
Pull Request: https://projects.blender.org/blender/blender/pulls/138433
2025-05-09 14:01:43 +02:00
|
|
|
if (defs.with_opencolorio) {
|
2024-03-08 20:55:45 +11:00
|
|
|
PRINT(" $OCIO Path to override the OpenColorIO configuration file.\n");
|
2023-05-27 17:23:19 +10:00
|
|
|
}
|
2024-03-05 10:16:18 +11:00
|
|
|
if (defs.win32 || all) {
|
|
|
|
|
PRINT(" $TEMP Store temporary files here (MS-Windows).\n");
|
2023-05-27 17:23:19 +10:00
|
|
|
}
|
|
|
|
|
if (!defs.win32 || all) {
|
2024-03-05 10:16:18 +11:00
|
|
|
/* NOTE: while `TMP` checked, don't include here as it's non-standard & may be removed. */
|
|
|
|
|
PRINT(" $TMPDIR Store temporary files here (UNIX Systems).\n");
|
2023-05-27 17:23:19 +10:00
|
|
|
}
|
2024-03-05 10:16:18 +11:00
|
|
|
PRINT(
|
|
|
|
|
" The path must reference an existing directory "
|
|
|
|
|
"or it will be ignored.\n");
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 16:33:46 +10:00
|
|
|
# undef printf
|
|
|
|
|
# undef PRINT
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ATTR_PRINTF_FORMAT(2, 0)
|
|
|
|
|
static void help_print_ds_fn(void *ds_v, const char *format, va_list args)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
DynStr *ds = static_cast<DynStr *>(ds_v);
|
2023-05-27 16:33:46 +10:00
|
|
|
BLI_dynstr_vappendf(ds, format, args);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
static char *main_args_help_as_string(bool all)
|
2023-05-27 16:33:46 +10:00
|
|
|
{
|
|
|
|
|
DynStr *ds = BLI_dynstr_new();
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bArgs *ba = BLI_args_create(0, nullptr);
|
|
|
|
|
main_args_setup(nullptr, ba, all);
|
2023-05-27 16:33:46 +10:00
|
|
|
BLI_args_print_fn_set(ba, help_print_ds_fn, ds);
|
2023-05-27 17:23:19 +10:00
|
|
|
print_help(ba, all);
|
2023-05-27 16:33:46 +10:00
|
|
|
BLI_args_destroy(ba);
|
|
|
|
|
}
|
|
|
|
|
char *buf = BLI_dynstr_get_cstring(ds);
|
|
|
|
|
BLI_dynstr_free(ds);
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_print_help_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Print this help text and exit.";
|
|
|
|
|
static const char arg_handle_print_help_doc_win32[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Print this help text and exit (Windows only).";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_print_help(int /*argc*/, const char ** /*argv*/, void *data)
|
2023-05-27 16:33:46 +10:00
|
|
|
{
|
|
|
|
|
bArgs *ba = (bArgs *)data;
|
|
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
print_help(ba, false);
|
2023-05-27 16:33:46 +10:00
|
|
|
|
2025-06-11 09:22:29 +00:00
|
|
|
/* Handles cleanup before exit. */
|
|
|
|
|
BKE_blender_atexit();
|
|
|
|
|
|
2023-05-31 15:30:19 +10:00
|
|
|
exit(EXIT_SUCCESS);
|
2023-02-10 11:10:31 +11:00
|
|
|
BLI_assert_unreachable();
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_arguments_end_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"End option processing, following arguments passed unchanged. Access via Python's "
|
2017-10-08 18:46:26 +11:00
|
|
|
"'sys.argv'.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_arguments_end(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Only to give help message. */
|
|
|
|
|
# ifdef WITH_PYTHON_SECURITY /* Default. */
|
2016-02-28 05:10:00 +11:00
|
|
|
# define PY_ENABLE_AUTO ""
|
2023-05-28 14:57:32 +10:00
|
|
|
# define PY_DISABLE_AUTO ", (default)"
|
|
|
|
|
# else
|
|
|
|
|
# define PY_ENABLE_AUTO ", (default, non-standard compilation option)"
|
|
|
|
|
# define PY_DISABLE_AUTO ""
|
2016-02-28 05:10:00 +11:00
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_python_set_doc_enable[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable automatic Python script execution" PY_ENABLE_AUTO ".";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_python_set_doc_disable[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2024-03-08 20:55:45 +11:00
|
|
|
"Disable automatic Python script execution "
|
|
|
|
|
"(Python-drivers & startup scripts)" PY_DISABLE_AUTO ".";
|
2016-02-28 05:10:00 +11:00
|
|
|
# undef PY_ENABLE_AUTO
|
|
|
|
|
# undef PY_DISABLE_AUTO
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_python_set(int /*argc*/, const char ** /*argv*/, void *data)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-03 08:57:59 +10:00
|
|
|
if (bool(data)) {
|
2019-02-02 13:39:51 +11:00
|
|
|
G.f |= G_FLAG_SCRIPT_AUTOEXEC;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2019-02-02 13:39:51 +11:00
|
|
|
G.f &= ~G_FLAG_SCRIPT_AUTOEXEC;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-02-02 13:39:51 +11:00
|
|
|
G.f |= G_FLAG_SCRIPT_OVERRIDE_PREF;
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-20 10:32:39 +10:00
|
|
|
static const char arg_handle_internet_allow_set_doc_online[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Allow internet access, overriding the preference.";
|
|
|
|
|
static const char arg_handle_internet_allow_set_doc_offline[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Disallow internet access, overriding the preference.";
|
|
|
|
|
|
|
|
|
|
static int arg_handle_internet_allow_set(int /*argc*/, const char ** /*argv*/, void *data)
|
|
|
|
|
{
|
|
|
|
|
G.f &= ~G_FLAG_INTERNET_OVERRIDE_PREF_ANY;
|
|
|
|
|
if (bool(data)) {
|
|
|
|
|
G.f |= G_FLAG_INTERNET_ALLOW;
|
|
|
|
|
G.f |= G_FLAG_INTERNET_OVERRIDE_PREF_ONLINE;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
G.f &= ~G_FLAG_INTERNET_ALLOW;
|
|
|
|
|
G.f |= G_FLAG_INTERNET_OVERRIDE_PREF_OFFLINE;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_crash_handler_disable_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Disable the crash handler.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_crash_handler_disable(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
app_state.signal.use_crash_handler = false;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_abort_handler_disable_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Disable the abort handler.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_abort_handler_disable(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
app_state.signal.use_abort_handler = false;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-26 22:02:02 +02:00
|
|
|
static void clog_abort_on_error_callback(void *fp)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_system_backtrace(static_cast<FILE *>(fp));
|
|
|
|
|
fflush(static_cast<FILE *>(fp));
|
2020-08-26 22:02:02 +02:00
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_debug_exit_on_error_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Immediately exit when internal errors are detected.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_exit_on_error(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2020-08-26 22:02:02 +02:00
|
|
|
{
|
|
|
|
|
MEM_enable_fail_on_memleak();
|
|
|
|
|
CLG_error_fn_set(clog_abort_on_error_callback);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-13 22:44:34 +10:00
|
|
|
static const char arg_handle_quiet_set_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Suppress status printing (warnings & errors are still printed).";
|
|
|
|
|
static int arg_handle_quiet_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
|
|
|
|
{
|
2025-07-28 13:36:13 +02:00
|
|
|
CLG_quiet_set(true);
|
2024-09-13 22:44:34 +10:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-08 12:21:53 +11:00
|
|
|
/** Shared by `--background` & `--command`. */
|
|
|
|
|
static void background_mode_set()
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-03 08:57:59 +10:00
|
|
|
G.background = true;
|
2024-02-14 00:13:37 +11:00
|
|
|
|
|
|
|
|
/* Background Mode Defaults:
|
|
|
|
|
*
|
|
|
|
|
* In general background mode should strive to match the behavior of running
|
|
|
|
|
* Blender inside a graphical session, any exception to this should have a well
|
|
|
|
|
* justified reason and be noted in the doc-string. */
|
|
|
|
|
|
|
|
|
|
/* NOTE(@ideasman42): While there is no requirement for sound to be disabled in background-mode,
|
|
|
|
|
* the use case for playing audio in background mode is enough of a special-case
|
|
|
|
|
* that users who wish to do this can explicitly enable audio in background mode.
|
|
|
|
|
* While the down sides for connecting to an audio device aren't terrible they include:
|
|
|
|
|
* - Listing Blender as an active application which may output audio.
|
|
|
|
|
* - Unnecessary overhead running an operation in background mode or ...
|
|
|
|
|
* - Having to remember to include `-noaudio` with batch operations.
|
|
|
|
|
* - A quiet but audible click when Blender starts & configures its audio device.
|
|
|
|
|
*/
|
|
|
|
|
BKE_sound_force_device("None");
|
2024-03-08 12:21:53 +11:00
|
|
|
}
|
2024-02-14 00:13:37 +11:00
|
|
|
|
2024-03-08 12:21:53 +11:00
|
|
|
static const char arg_handle_background_mode_set_doc[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tRun in background (often used for UI-less rendering).\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"\tThe audio device is disabled in background-mode by default\n"
|
2024-12-06 17:50:31 +01:00
|
|
|
"\tand can be re-enabled by passing in '-setaudio Default' afterwards.";
|
2024-03-08 12:21:53 +11:00
|
|
|
static int arg_handle_background_mode_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
|
|
|
|
{
|
2025-07-28 13:36:13 +02:00
|
|
|
if (!CLG_quiet_get()) {
|
2024-09-13 22:44:34 +10:00
|
|
|
print_version_short();
|
|
|
|
|
}
|
2024-03-08 12:21:53 +11:00
|
|
|
background_mode_set();
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-08 11:07:41 +11:00
|
|
|
static const char arg_handle_command_set_doc[] =
|
|
|
|
|
"<command>\n"
|
|
|
|
|
"\tRun a command which consumes all remaining arguments.\n"
|
|
|
|
|
"\tUse '-c help' to list all other commands.\n"
|
|
|
|
|
"\tPass '--help' after the command to see its help text.\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"\tThis implies '--background' mode.";
|
2024-04-05 11:24:07 +11:00
|
|
|
static int arg_handle_command_set(int argc, const char **argv, void *data)
|
2024-03-08 11:07:41 +11:00
|
|
|
{
|
2024-04-05 11:24:07 +11:00
|
|
|
if (!main_arg_deferred_is_set()) {
|
|
|
|
|
if (argc < 2) {
|
|
|
|
|
fprintf(stderr, "%s requires at least one argument\n", argv[0]);
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
BLI_assert_unreachable();
|
|
|
|
|
}
|
|
|
|
|
/* Application "info" messages get in the way of command line output, suppress them. */
|
2025-07-28 13:36:13 +02:00
|
|
|
CLG_quiet_set(true);
|
2024-03-08 13:27:29 +11:00
|
|
|
|
2024-04-05 11:24:07 +11:00
|
|
|
background_mode_set();
|
2024-03-08 11:07:41 +11:00
|
|
|
|
2024-04-05 11:24:07 +11:00
|
|
|
main_arg_deferred_setup(arg_handle_command_set, argc, argv, data);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
bContext *C = static_cast<bContext *>(data);
|
|
|
|
|
const char *id = argv[1];
|
|
|
|
|
int exit_code;
|
|
|
|
|
if (STREQ(id, "help")) {
|
|
|
|
|
BKE_blender_cli_command_print_help();
|
|
|
|
|
exit_code = EXIT_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
exit_code = BKE_blender_cli_command_exec(C, id, argc - 2, argv + 2);
|
|
|
|
|
}
|
|
|
|
|
main_arg_deferred_exit_code_set(exit_code);
|
|
|
|
|
}
|
2024-03-08 11:07:41 +11:00
|
|
|
|
|
|
|
|
/* Consume remaining arguments. */
|
|
|
|
|
return argc - 1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-16 19:05:29 +01:00
|
|
|
static const char arg_handle_disable_depsgraph_on_file_load_doc[] =
|
|
|
|
|
"\n"
|
2025-05-30 10:59:58 +10:00
|
|
|
"\tBackground mode: Do not systematically build and evaluate ViewLayers' dependency graphs\n"
|
2025-06-05 17:32:42 +10:00
|
|
|
"\twhen loading a blend-file in background mode ('-b' or '-c' options).\n"
|
2024-12-16 19:05:29 +01:00
|
|
|
"\n"
|
2025-01-03 22:33:33 -05:00
|
|
|
"\tScripts requiring evaluated data then need to explicitly ensure that\n"
|
2024-12-16 19:05:29 +01:00
|
|
|
"\tan evaluated depsgraph is available\n"
|
2025-06-05 17:32:42 +10:00
|
|
|
"\t(e.g. by calling 'depsgraph = context.evaluated_depsgraph_get()').\n"
|
2024-12-16 19:05:29 +01:00
|
|
|
"\n"
|
|
|
|
|
"\tNOTE: this is a temporary option, in the future depsgraph will never be\n"
|
|
|
|
|
"\tautomatically generated on file load in background mode.";
|
|
|
|
|
static int arg_handle_disable_depsgraph_on_file_load(int /*argc*/,
|
|
|
|
|
const char ** /*argv*/,
|
|
|
|
|
void * /*data*/)
|
|
|
|
|
{
|
|
|
|
|
G.fileflags |= G_BACKGROUND_NO_DEPSGRAPH;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-17 18:59:49 +01:00
|
|
|
static const char arg_handle_disable_liboverride_auto_resync_doc[] =
|
|
|
|
|
"\n"
|
2025-05-30 10:59:58 +10:00
|
|
|
"\tDo not perform library override automatic resync when loading a new blend-file.\n"
|
2024-12-17 18:59:49 +01:00
|
|
|
"\n"
|
|
|
|
|
"\tNOTE: this is an alternative way to get the same effect as when setting the\n"
|
2025-06-05 17:32:42 +10:00
|
|
|
"\t'No Override Auto Resync' User Preferences Debug option.";
|
2024-12-17 18:59:49 +01:00
|
|
|
static int arg_handle_disable_liboverride_auto_resync(int /*argc*/,
|
|
|
|
|
const char ** /*argv*/,
|
|
|
|
|
void * /*data*/)
|
|
|
|
|
{
|
|
|
|
|
G.fileflags |= G_LIBOVERRIDE_NO_AUTO_RESYNC;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-29 20:38:32 +02:00
|
|
|
static const char arg_handle_log_level_set_doc[] =
|
2018-03-31 14:53:15 +02:00
|
|
|
"<level>\n"
|
2025-06-12 02:19:59 +02:00
|
|
|
"\tSet the logging verbosity level.\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"\tfatal: Fatal errors only\n"
|
|
|
|
|
"\terror: Errors only\n"
|
2025-06-12 02:20:03 +02:00
|
|
|
"\twarning: Warnings\n"
|
|
|
|
|
"\tinfo: Information about devices, files, configuration, operations\n"
|
|
|
|
|
"\tdebug: Verbose messages for developers\n"
|
|
|
|
|
"\ttrace: Very verbose code execution tracing";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_log_level_set(int argc, const char **argv, void * /*data*/)
|
2018-03-29 20:38:32 +02:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "--log-level";
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2025-06-12 02:19:59 +02:00
|
|
|
|
|
|
|
|
if (STRCASEEQ(argv[1], "fatal")) {
|
2025-06-12 02:20:03 +02:00
|
|
|
G.log.level = CLG_LEVEL_FATAL;
|
2018-03-29 20:38:32 +02:00
|
|
|
}
|
2025-06-12 02:19:59 +02:00
|
|
|
else if (STRCASEEQ(argv[1], "error")) {
|
2025-06-12 02:20:03 +02:00
|
|
|
G.log.level = CLG_LEVEL_ERROR;
|
2025-06-12 02:19:59 +02:00
|
|
|
}
|
|
|
|
|
else if (STRCASEEQ(argv[1], "warning")) {
|
2025-06-12 02:20:03 +02:00
|
|
|
G.log.level = CLG_LEVEL_WARN;
|
2025-06-12 02:19:59 +02:00
|
|
|
}
|
|
|
|
|
else if (STRCASEEQ(argv[1], "info")) {
|
2025-06-12 02:20:03 +02:00
|
|
|
G.log.level = CLG_LEVEL_INFO;
|
2025-06-12 02:19:59 +02:00
|
|
|
}
|
|
|
|
|
else if (STRCASEEQ(argv[1], "debug")) {
|
2025-06-12 02:20:03 +02:00
|
|
|
G.log.level = CLG_LEVEL_DEBUG;
|
|
|
|
|
}
|
|
|
|
|
else if (STRCASEEQ(argv[1], "trace")) {
|
|
|
|
|
G.log.level = CLG_LEVEL_TRACE;
|
2025-06-12 02:19:59 +02:00
|
|
|
}
|
|
|
|
|
else if (parse_int_clamp(argv[1], nullptr, -1, INT_MAX, &G.log.level, &err_msg)) {
|
2025-06-12 02:20:03 +02:00
|
|
|
/* Numeric level for backwards compatibility. */
|
|
|
|
|
if (G.log.level < 0) {
|
2025-07-31 22:23:16 +02:00
|
|
|
G.log.level = CLG_LEVEL_LEN - 1;
|
2018-05-04 08:00:22 +02:00
|
|
|
}
|
2025-06-12 02:20:03 +02:00
|
|
|
else {
|
|
|
|
|
G.log.level = std::min(CLG_LEVEL_INFO + G.log.level, CLG_LEVEL_LEN - 1);
|
|
|
|
|
}
|
2018-04-05 13:55:04 +02:00
|
|
|
}
|
2025-06-12 02:19:59 +02:00
|
|
|
else {
|
2025-06-12 02:20:03 +02:00
|
|
|
fprintf(stderr, "\nError: Invalid log level '%s %s'.\n", arg_id, argv[1]);
|
2025-06-12 02:19:59 +02:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-12 02:20:03 +02:00
|
|
|
CLG_level_set(CLG_Level(G.log.level));
|
2018-03-29 20:38:32 +02:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: '%s' no args given.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2018-03-29 20:38:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-12 02:19:59 +02:00
|
|
|
static const char arg_handle_log_show_source_set_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2025-06-12 02:19:59 +02:00
|
|
|
"Show source file and function name in output.";
|
|
|
|
|
static int arg_handle_log_show_source_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2018-03-31 15:27:06 +02:00
|
|
|
{
|
2025-06-12 02:19:59 +02:00
|
|
|
CLG_output_use_source_set(true);
|
2018-03-31 15:27:06 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-18 11:00:47 +02:00
|
|
|
static const char arg_handle_log_show_backtrace_set_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Show a back trace for each log message (debug builds only).";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_log_show_backtrace_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2018-05-18 11:00:47 +02:00
|
|
|
{
|
|
|
|
|
/* Ensure types don't become incompatible. */
|
2024-01-02 18:12:54 +01:00
|
|
|
void (*fn)(FILE *fp) = BLI_system_backtrace;
|
2018-05-18 11:00:47 +02:00
|
|
|
CLG_backtrace_fn_set((void (*)(void *))fn);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-12 02:19:59 +02:00
|
|
|
static const char arg_handle_log_show_memory_set_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2025-06-12 02:19:59 +02:00
|
|
|
"Show memory usage for each log message.";
|
|
|
|
|
static int arg_handle_log_show_memory_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2019-01-16 16:29:40 +11:00
|
|
|
{
|
2025-06-12 02:19:59 +02:00
|
|
|
CLG_output_use_memory_set(true);
|
2019-01-16 16:29:40 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-29 20:38:32 +02:00
|
|
|
static const char arg_handle_log_file_set_doc[] =
|
2022-03-24 16:33:32 +11:00
|
|
|
"<filepath>\n"
|
2018-03-31 14:53:15 +02:00
|
|
|
"\tSet a file to output the log to.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_log_file_set(int argc, const char **argv, void * /*data*/)
|
2018-03-29 20:38:32 +02:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "--log-file";
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
errno = 0;
|
|
|
|
|
FILE *fp = BLI_fopen(argv[1], "w");
|
2023-08-02 15:34:45 +02:00
|
|
|
if (fp == nullptr) {
|
2018-03-29 20:38:32 +02:00
|
|
|
const char *err_msg = errno ? strerror(errno) : "unknown";
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2018-03-29 20:38:32 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2023-08-02 15:34:45 +02:00
|
|
|
if (UNLIKELY(G.log.file != nullptr)) {
|
|
|
|
|
fclose(static_cast<FILE *>(G.log.file));
|
2018-03-29 20:38:32 +02:00
|
|
|
}
|
|
|
|
|
G.log.file = fp;
|
|
|
|
|
CLG_output_set(G.log.file);
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: '%s' no args given.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2018-03-29 20:38:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_log_set_doc[] =
|
2018-03-31 14:53:15 +02:00
|
|
|
"<match>\n"
|
|
|
|
|
"\tEnable logging categories, taking a single comma separated argument.\n"
|
2025-06-12 02:19:59 +02:00
|
|
|
"\n"
|
|
|
|
|
"\t--log \"*\": log everything\n"
|
|
|
|
|
"\t--log \"event\": logs every category starting with \"event\"\n"
|
|
|
|
|
"\t--log \"render,cycles\": log both render and cycles messages\n"
|
2025-07-10 00:38:09 +00:00
|
|
|
"\t--log \"*mesh*\": log every category containing \"mesh\" sub-string\n"
|
2025-06-12 02:19:59 +02:00
|
|
|
"\t--log \"*,^operator\": log everything except operators, with ^prefix to exclude";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_log_set(int argc, const char **argv, void * /*data*/)
|
2018-03-29 20:38:32 +02:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "--log";
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
const char *str_step = argv[1];
|
|
|
|
|
while (*str_step) {
|
|
|
|
|
const char *str_step_end = strchr(str_step, ',');
|
|
|
|
|
int str_step_len = str_step_end ? (str_step_end - str_step) : strlen(str_step);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2018-03-31 12:52:47 +02:00
|
|
|
if (str_step[0] == '^') {
|
|
|
|
|
CLG_type_filter_exclude(str_step + 1, str_step_len - 1);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
CLG_type_filter_include(str_step, str_step_len);
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2018-03-29 20:38:32 +02:00
|
|
|
if (str_step_end) {
|
2019-09-19 13:18:52 +10:00
|
|
|
/* Typically only be one, but don't fail on multiple. */
|
2018-03-29 20:38:32 +02:00
|
|
|
while (*str_step_end == ',') {
|
|
|
|
|
str_step_end++;
|
|
|
|
|
}
|
|
|
|
|
str_step = str_step_end;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: '%s' no args given.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2018-03-29 20:38:32 +02:00
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_set_doc[] =
|
2016-04-06 09:28:22 +10:00
|
|
|
"\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tTurn debugging on.\n"
|
2016-04-06 09:28:22 +10:00
|
|
|
"\n"
|
|
|
|
|
"\t* Enables memory error detection\n"
|
|
|
|
|
"\t* Disables mouse grab (to interact with a debugger in some cases)\n"
|
|
|
|
|
"\t* Keeps Python's 'sys.stdin' rather than setting it to None";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_set(int /*argc*/, const char ** /*argv*/, void *data)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2024-03-19 13:57:00 +11:00
|
|
|
G.debug |= G_DEBUG;
|
Blender: change bugfix release versioning from a/b/c to .1/.2/.3
The file subversion is no longer used in the Python API or user interface,
and is now internal to Blender.
User interface, Python API and file I/O metadata now use more consistent
formatting for version numbers. Official releases use "2.83.0", "2.83.1",
and releases under development use "2.90.0 Alpha", "2.90.0 Beta".
Some Python add-ons may need to lower the Blender version in bl_info to
(2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0.
https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility
This change is in preparation of LTS releases, and also brings us more
in line with semantic versioning.
Fixes T76058.
Differential Revision: https://developer.blender.org/D7748
2020-05-25 10:49:04 +02:00
|
|
|
printf("Blender %s\n", BKE_blender_version_string());
|
2016-02-28 05:10:00 +11:00
|
|
|
MEM_set_memory_debug();
|
|
|
|
|
# ifndef NDEBUG
|
|
|
|
|
BLI_mempool_set_memory_debug();
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef WITH_BUILDINFO
|
|
|
|
|
printf("Build: %s %s %s %s\n", build_date, build_time, build_platform, build_type);
|
|
|
|
|
# endif
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_print(static_cast<bArgs *>(data));
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_ffmpeg[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from FFmpeg library.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_freestyle[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2019-07-14 15:19:50 -04:00
|
|
|
"Enable debug messages for Freestyle.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_python[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for Python.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_events[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for the event system.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_handlers[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for event handling.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_wm[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for the window manager, shows all operators in search, shows "
|
2018-04-25 12:30:11 +02:00
|
|
|
"keymap errors.";
|
2021-06-22 17:30:10 -07:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_ghost[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for Ghost (Linux only).";
|
|
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_wintab[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for Wintab.";
|
VR: Initial Virtual Reality support - Milestone 1, Scene Inspection
NOTE: While most of the milestone 1 goals are there, a few smaller features and
improvements are still to be done.
Big picture of this milestone: Initial, OpenXR-based virtual reality support
for users and foundation for advanced use cases.
Maniphest Task: https://developer.blender.org/T71347
The tasks contains more information about this milestone.
To be clear: This is not a feature rich VR implementation, it's focused on the
initial scene inspection use case. We intentionally focused on that, further
features like controller support are part of the next milestone.
- How to use?
Instructions on how to use this are here:
https://wiki.blender.org/wiki/User:Severin/GSoC-2019/How_to_Test
These will be updated and moved to a more official place (likely the manual) soon.
Currently Windows Mixed Reality and Oculus devices are usable. Valve/HTC
headsets don't support the OpenXR standard yet and hence, do not work with this
implementation.
---------------
This is the C-side implementation of the features added for initial VR
support as per milestone 1. A "VR Scene Inspection" Add-on will be
committed separately, to expose the VR functionality in the UI. It also
adds some further features for milestone 1, namely a landmarking system
(stored view locations in the VR space)
Main additions/features:
* Support for rendering viewports to an HMD, with good performance.
* Option to sync the VR view perspective with a fully interactive,
regular 3D View (VR-Mirror).
* Option to disable positional tracking. Keeps the current position (calculated
based on the VR eye center pose) when enabled while a VR session is running.
* Some regular viewport settings for the VR view
* RNA/Python-API to query and set VR session state information.
* WM-XR: Layer tying Ghost-XR to the Blender specific APIs/data
* wmSurface API: drawable, non-window container (manages Ghost-OpenGL and GPU
context)
* DNA/RNA for management of VR session settings
* `--debug-xr` and `--debug-xr-time` commandline options
* Utility batch & config file for using the Oculus runtime on Windows.
* Most VR data is runtime only. The exception is user settings which are saved
to files (`XrSessionSettings`).
* VR support can be disabled through the `WITH_XR_OPENXR` compiler flag.
For architecture and code documentation, see
https://wiki.blender.org/wiki/Source/Interface/XR.
---------------
A few thank you's:
* A huge shoutout to Ray Molenkamp for his help during the project - it would
have not been that successful without him!
* Sebastian Koenig and Simeon Conzendorf for testing and feedback!
* The reviewers, especially Brecht Van Lommel!
* Dalai Felinto for pushing and managing me to get this done ;)
* The OpenXR working group for providing an open standard. I think we're the
first bigger application to adopt OpenXR. Congratulations to them and
ourselves :)
This project started as a Google Summer of Code 2019 project - "Core Support of
Virtual Reality Headsets through OpenXR" (see
https://wiki.blender.org/wiki/User:Severin/GSoC-2019/).
Some further information, including ideas for further improvements can be found
in the final GSoC report:
https://wiki.blender.org/wiki/User:Severin/GSoC-2019/Final_Report
Differential Revisions: D6193, D7098
Reviewed by: Brecht Van Lommel, Jeroen Bakker
2020-03-17 20:20:55 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_xr[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for virtual reality contexts.\n"
|
|
|
|
|
"\tEnables the OpenXR API validation layer, (OpenXR) debug messages and general information "
|
|
|
|
|
"prints.";
|
|
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_xr_time[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages for virtual reality frame rendering times.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_jobs[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable time profiling for background jobs.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable all debug messages from dependency graph.";
|
2018-02-21 10:44:36 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_build[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from dependency graph related on graph construction.";
|
2018-02-21 10:44:36 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_tag[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from dependency graph related on tagging.";
|
2018-03-12 17:01:02 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_time[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from dependency graph related on timing.";
|
2018-02-21 10:44:36 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_eval[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from dependency graph related on evaluation.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_no_threads[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Switch dependency graph to a single threaded evaluation.";
|
2018-03-16 12:24:08 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_pretty[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable colors for dependency graph debug messages.";
|
2024-01-22 13:47:13 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_depsgraph_uid[] =
|
2021-08-09 12:05:11 +02:00
|
|
|
"\n\t"
|
2024-03-08 20:55:45 +11:00
|
|
|
"Verify validness of session-wide identifiers assigned to ID data-blocks.";
|
2021-01-29 14:13:30 +01:00
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_gpu_force_workarounds[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable workarounds for typical GPU issues and disable all GPU extensions.";
|
2025-01-13 09:29:16 +01:00
|
|
|
# ifdef WITH_VULKAN_BACKEND
|
|
|
|
|
static const char arg_handle_debug_mode_generic_set_doc_gpu_force_vulkan_local_read[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Force Vulkan dynamic rendering local read when supported by device.";
|
|
|
|
|
# endif
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_generic_set(int /*argc*/, const char ** /*argv*/, void *data)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2018-09-19 12:05:58 +10:00
|
|
|
G.debug |= POINTER_AS_INT(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-09 17:19:59 +01:00
|
|
|
static const char arg_handle_debug_mode_io_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2025-06-06 08:38:57 +02:00
|
|
|
"Enable debug messages for I/O.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_io(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-12-09 17:19:59 +01:00
|
|
|
{
|
|
|
|
|
G.debug |= G_DEBUG_IO;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_debug_mode_all_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable all debug messages.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_all(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-07-14 12:14:55 +02:00
|
|
|
{
|
|
|
|
|
G.debug |= G_DEBUG_ALL;
|
|
|
|
|
# ifdef WITH_LIBMV
|
|
|
|
|
libmv_startDebugLogging();
|
|
|
|
|
# endif
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_debug_mode_libmv_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from libmv library.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_libmv(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-05-27 17:23:19 +10:00
|
|
|
# ifdef WITH_LIBMV
|
2016-02-28 05:10:00 +11:00
|
|
|
libmv_startDebugLogging();
|
2023-05-27 17:23:19 +10:00
|
|
|
# endif
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_debug_mode_cycles_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Enable debug messages from Cycles.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_cycles(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2025-06-12 02:19:57 +02:00
|
|
|
const char *cycles_filter = "cycles.*";
|
|
|
|
|
CLG_type_filter_include(cycles_filter, strlen(cycles_filter));
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_debug_mode_memory_set_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable fully guarded memory allocation and debugging.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_mode_memory_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
MEM_set_memory_debug();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_debug_value_set_doc[] =
|
2016-04-06 09:28:22 +10:00
|
|
|
"<value>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tSet debug value of <value> on startup.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_value_set(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "--debug-value";
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
int value;
|
2023-08-02 15:34:45 +02:00
|
|
|
if (!parse_int(argv[1], nullptr, &value, &err_msg)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
G.debug_value = value;
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify debug value to set.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
2022-02-05 19:25:35 +01:00
|
|
|
static const char arg_handle_debug_gpu_set_doc[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tEnable GPU debug context and information for OpenGL 4.3+.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_gpu_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2022-02-05 19:25:35 +01:00
|
|
|
{
|
|
|
|
|
/* Also enable logging because that how gl errors are reported. */
|
|
|
|
|
const char *gpu_filter = "gpu.*";
|
|
|
|
|
CLG_type_filter_include(gpu_filter, strlen(gpu_filter));
|
|
|
|
|
G.debug |= G_DEBUG_GPU;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 08:13:44 +01:00
|
|
|
static const char arg_handle_debug_gpu_compile_shaders_set_doc[] =
|
|
|
|
|
"\n"
|
2024-02-16 14:26:46 +11:00
|
|
|
"\tCompile all statically defined shaders to test platform compatibility.";
|
2024-02-15 08:13:44 +01:00
|
|
|
static int arg_handle_debug_gpu_compile_shaders_set(int /*argc*/,
|
|
|
|
|
const char ** /*argv*/,
|
|
|
|
|
void * /*data*/)
|
|
|
|
|
{
|
|
|
|
|
G.debug |= G_DEBUG_GPU_COMPILE_SHADERS;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-30 15:14:58 +02:00
|
|
|
static const char arg_handle_debug_gpu_scope_capture_set_doc[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tCapture the GPU commands issued inside the give scope name.";
|
|
|
|
|
static int arg_handle_debug_gpu_scope_capture_set(int argc, const char **argv, void * /*data*/)
|
|
|
|
|
{
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
STRNCPY(G.gpu_debug_scope_name, argv[1]);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
fprintf(stderr, "\nError: you must specify a scope name to capture.\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-04 12:46:47 +02:00
|
|
|
static const char arg_handle_debug_gpu_renderdoc_set_doc[] =
|
|
|
|
|
"\n"
|
2024-11-02 15:43:27 +11:00
|
|
|
"\tEnable RenderDoc integration for GPU frame grabbing and debugging.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_gpu_renderdoc_set(int /*argc*/,
|
|
|
|
|
const char ** /*argv*/,
|
|
|
|
|
void * /*data*/)
|
2023-04-04 12:46:47 +02:00
|
|
|
{
|
2023-05-27 17:23:19 +10:00
|
|
|
# ifdef WITH_RENDERDOC
|
2023-04-04 12:46:47 +02:00
|
|
|
G.debug |= G_DEBUG_GPU_RENDERDOC | G_DEBUG_GPU;
|
2023-05-27 17:23:19 +10:00
|
|
|
# endif
|
2023-04-04 12:46:47 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-28 14:54:14 +10:00
|
|
|
static const char arg_handle_gpu_backend_set_doc_all[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tForce to use a specific GPU backend. Valid options: "
|
2025-04-28 14:51:32 +02:00
|
|
|
"'vulkan', "
|
2023-05-28 14:54:14 +10:00
|
|
|
"'metal', "
|
|
|
|
|
"'opengl'.";
|
2022-10-19 15:13:15 +02:00
|
|
|
static const char arg_handle_gpu_backend_set_doc[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tForce to use a specific GPU backend. Valid options: "
|
2023-10-06 15:24:21 +02:00
|
|
|
# ifdef WITH_OPENGL_BACKEND
|
|
|
|
|
"'opengl'"
|
|
|
|
|
# endif
|
2022-10-19 15:13:15 +02:00
|
|
|
# ifdef WITH_METAL_BACKEND
|
2023-07-11 09:17:31 +02:00
|
|
|
"'metal'"
|
2024-04-11 11:04:43 +02:00
|
|
|
# endif
|
|
|
|
|
# ifdef WITH_VULKAN_BACKEND
|
|
|
|
|
# if defined(WITH_OPENGL_BACKEND) || defined(WITH_METAL_BACKEND)
|
|
|
|
|
" or "
|
|
|
|
|
# endif
|
2025-04-28 14:51:32 +02:00
|
|
|
"'vulkan'"
|
2023-07-11 09:17:31 +02:00
|
|
|
# endif
|
|
|
|
|
".";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_gpu_backend_set(int argc, const char **argv, void * /*data*/)
|
2022-10-19 15:13:15 +02:00
|
|
|
{
|
2025-07-10 22:27:04 +10:00
|
|
|
if (argc < 2) {
|
2023-01-25 11:56:04 +11:00
|
|
|
fprintf(stderr, "\nError: GPU backend must follow '--gpu-backend'.\n");
|
2022-10-19 15:13:15 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *backends_supported[3] = {nullptr};
|
2023-01-25 11:56:04 +11:00
|
|
|
int backends_supported_num = 0;
|
2022-10-19 15:13:15 +02:00
|
|
|
|
|
|
|
|
eGPUBackendType gpu_backend = GPU_BACKEND_NONE;
|
|
|
|
|
|
2023-01-25 11:56:04 +11:00
|
|
|
/* NOLINTBEGIN: bugprone-assignment-in-if-condition */
|
2023-07-11 09:17:31 +02:00
|
|
|
if (false) {
|
|
|
|
|
/* Just a dummy if to make the following ifdef blocks work. */
|
|
|
|
|
}
|
|
|
|
|
# ifdef WITH_OPENGL_BACKEND
|
|
|
|
|
else if (STREQ(argv[1], (backends_supported[backends_supported_num++] = "opengl"))) {
|
2022-10-19 15:13:15 +02:00
|
|
|
gpu_backend = GPU_BACKEND_OPENGL;
|
|
|
|
|
}
|
2023-07-11 09:17:31 +02:00
|
|
|
# endif
|
2022-10-31 16:01:02 +01:00
|
|
|
# ifdef WITH_VULKAN_BACKEND
|
2023-01-25 11:56:04 +11:00
|
|
|
else if (STREQ(argv[1], (backends_supported[backends_supported_num++] = "vulkan"))) {
|
2022-10-31 16:01:02 +01:00
|
|
|
gpu_backend = GPU_BACKEND_VULKAN;
|
|
|
|
|
}
|
|
|
|
|
# endif
|
2022-10-19 15:13:15 +02:00
|
|
|
# ifdef WITH_METAL_BACKEND
|
2023-01-25 11:56:04 +11:00
|
|
|
else if (STREQ(argv[1], (backends_supported[backends_supported_num++] = "metal"))) {
|
2022-10-19 15:13:15 +02:00
|
|
|
gpu_backend = GPU_BACKEND_METAL;
|
|
|
|
|
}
|
|
|
|
|
# endif
|
|
|
|
|
else {
|
2023-01-25 11:56:04 +11:00
|
|
|
fprintf(stderr, "\nError: Unrecognized GPU backend for '--gpu-backend', expected one of [");
|
|
|
|
|
for (int i = 0; i < backends_supported_num; i++) {
|
|
|
|
|
fprintf(stderr, (i + 1 != backends_supported_num) ? "%s, " : "%s", backends_supported[i]);
|
|
|
|
|
}
|
|
|
|
|
fprintf(stderr, "].\n");
|
2025-06-06 12:24:50 +10:00
|
|
|
return 1;
|
2022-10-19 15:13:15 +02:00
|
|
|
}
|
2023-01-25 11:56:04 +11:00
|
|
|
/* NOLINTEND: bugprone-assignment-in-if-condition */
|
2022-10-19 15:13:15 +02:00
|
|
|
|
2022-12-21 20:54:36 +01:00
|
|
|
GPU_backend_type_selection_set_override(gpu_backend);
|
2022-10-19 15:13:15 +02:00
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-01 16:36:01 +02:00
|
|
|
# ifdef WITH_OPENGL_BACKEND
|
|
|
|
|
static const char arg_handle_gpu_compilation_subprocesses_set_doc[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tOverride the Max Compilation Subprocesses setting (OpenGL only).";
|
|
|
|
|
static int arg_handle_gpu_compilation_subprocesses_set(int argc,
|
|
|
|
|
const char **argv,
|
|
|
|
|
void * /*data*/)
|
|
|
|
|
{
|
|
|
|
|
const char *arg_id = "--gpu-compilation-subprocesses";
|
|
|
|
|
const int min = 0, max = BLI_system_thread_count();
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
const char *err_msg = nullptr;
|
|
|
|
|
int subprocesses;
|
|
|
|
|
if (!parse_int_strict_range(argv[1], nullptr, min, max, &subprocesses, &err_msg)) {
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: %s '%s %s', expected number in [%d..%d].\n",
|
|
|
|
|
err_msg,
|
|
|
|
|
arg_id,
|
|
|
|
|
argv[1],
|
|
|
|
|
min,
|
|
|
|
|
max);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GPU_compilation_subprocess_override_set(subprocesses);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: you must specify a number of subprocesses in [%d..%d] '%s'.\n",
|
|
|
|
|
min,
|
|
|
|
|
max,
|
|
|
|
|
arg_id);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
# endif
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_debug_fpe_set_doc[] =
|
|
|
|
|
"\n\t"
|
2020-12-24 13:11:22 -06:00
|
|
|
"Enable floating-point exceptions.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_debug_fpe_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
main_signal_setup_fpe();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-17 16:34:51 +10:00
|
|
|
static const char arg_handle_app_template_doc[] =
|
2019-06-14 12:59:14 +10:00
|
|
|
"<template>\n"
|
|
|
|
|
"\tSet the application template (matching the directory name), use 'default' for none.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_app_template(int argc, const char **argv, void * /*data*/)
|
2018-08-17 16:34:51 +10:00
|
|
|
{
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
const char *app_template = STREQ(argv[1], "default") ? "" : argv[1];
|
|
|
|
|
WM_init_state_app_template_set(app_template);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: App template must follow '--app-template'.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2018-08-17 16:34:51 +10:00
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_factory_startup_set_doc[] =
|
|
|
|
|
"\n\t"
|
2023-05-28 14:54:14 +10:00
|
|
|
"Skip reading the '" BLENDER_STARTUP_FILE "' in the users home directory.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_factory_startup_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-03 08:57:59 +10:00
|
|
|
G.factory_startup = true;
|
2019-05-16 20:13:35 +02:00
|
|
|
G.f |= G_FLAG_USERPREF_NO_SAVE_ON_EXIT;
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-02 15:14:51 +11:00
|
|
|
static const char arg_handle_enable_event_simulate_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Enable event simulation testing feature 'bpy.types.Window.event_simulate'.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_enable_event_simulate(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2019-02-02 15:14:51 +11:00
|
|
|
{
|
|
|
|
|
G.f |= G_FLAG_EVENT_SIMULATE;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_env_system_set_doc_datafiles[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Set the " STRINGIFY_ARG(BLENDER_SYSTEM_DATAFILES) " environment variable.";
|
|
|
|
|
static const char arg_handle_env_system_set_doc_scripts[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Set the " STRINGIFY_ARG(BLENDER_SYSTEM_SCRIPTS) " environment variable.";
|
|
|
|
|
static const char arg_handle_env_system_set_doc_python[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Set the " STRINGIFY_ARG(BLENDER_SYSTEM_PYTHON) " environment variable.";
|
2024-06-07 11:36:20 +10:00
|
|
|
static const char arg_handle_env_system_set_doc_extensions[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Set the " STRINGIFY_ARG(BLENDER_SYSTEM_EXTENSIONS) " environment variable.";
|
2016-02-28 05:10:00 +11:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_env_system_set(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2021-03-06 13:03:30 +11:00
|
|
|
/* `--env-system-scripts` -> `BLENDER_SYSTEM_SCRIPTS` */
|
2016-02-28 05:10:00 +11:00
|
|
|
|
|
|
|
|
char env[64] = "BLENDER";
|
2024-03-19 13:57:00 +11:00
|
|
|
char *ch_dst = env + 7; /* Skip `BLENDER`. */
|
|
|
|
|
const char *ch_src = argv[0] + 5; /* Skip `--env`. */
|
2016-02-28 05:10:00 +11:00
|
|
|
|
|
|
|
|
if (argc < 2) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "%s requires one argument\n", argv[0]);
|
2023-05-31 15:30:19 +10:00
|
|
|
exit(EXIT_FAILURE);
|
2023-02-10 11:10:31 +11:00
|
|
|
BLI_assert_unreachable();
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (; *ch_src; ch_src++, ch_dst++) {
|
2024-03-19 13:57:00 +11:00
|
|
|
*ch_dst = (*ch_src == '-') ? '_' : (*ch_src) - 32; /* Inline #toupper(). */
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*ch_dst = '\0';
|
|
|
|
|
BLI_setenv(env, argv[1]);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_playback_mode_doc[] =
|
|
|
|
|
"<options> <file(s)>\n"
|
2019-06-14 09:50:13 +10:00
|
|
|
"\tInstead of showing Blender's user interface, this runs Blender as an animation player,\n"
|
|
|
|
|
"\tto view movies and image sequences rendered in Blender (ignored if '-b' is set).\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"\tPlayback Arguments:\n"
|
|
|
|
|
"\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\t-p <sx> <sy>\n"
|
|
|
|
|
"\t\tOpen with lower left corner at <sx>, <sy>.\n"
|
|
|
|
|
"\t-m\n"
|
|
|
|
|
"\t\tRead from disk (Do not buffer).\n"
|
2023-05-28 14:54:14 +10:00
|
|
|
"\t-f <fps> <fps_base>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\t\tSpecify FPS to start with.\n"
|
|
|
|
|
"\t-j <frame>\n"
|
|
|
|
|
"\t\tSet frame step to <frame>.\n"
|
|
|
|
|
"\t-s <frame>\n"
|
|
|
|
|
"\t\tPlay from <frame>.\n"
|
|
|
|
|
"\t-e <frame>\n"
|
2021-05-06 11:22:54 +10:00
|
|
|
"\t\tPlay until <frame>.\n"
|
|
|
|
|
"\t-c <cache_memory>\n"
|
|
|
|
|
"\t\tAmount of memory in megabytes to allow for caching images during playback.\n"
|
|
|
|
|
"\t\tZero disables (clamping to a fixed number of frames instead).";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_playback_mode(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2021-05-10 15:30:20 +10:00
|
|
|
/* Ignore the animation player if `-b` was given first. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (G.background == 0) {
|
2023-10-14 16:00:54 +11:00
|
|
|
/* Skip this argument (`-a`). */
|
2025-06-10 13:42:02 +10:00
|
|
|
const int exit_code = WM_main_playanim(argc - 1, argv + 1);
|
2021-05-10 15:30:20 +10:00
|
|
|
|
2025-06-10 13:42:02 +10:00
|
|
|
exit(exit_code);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_window_geometry_doc[] =
|
|
|
|
|
"<sx> <sy> <w> <h>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tOpen with lower left corner at <sx>, <sy> and width and height as <w>, <h>.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_window_geometry(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "-p / --window-geometry";
|
|
|
|
|
int params[4], i;
|
|
|
|
|
|
|
|
|
|
if (argc < 5) {
|
|
|
|
|
fprintf(stderr, "Error: requires four arguments '%s'\n", arg_id);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
|
|
|
|
if (!parse_int(argv[i + 1], nullptr, ¶ms[i], &err_msg)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WM_init_state_size_set(UNPACK4(params));
|
|
|
|
|
|
|
|
|
|
return 4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_native_pixels_set_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Do not use native pixel size, for high resolution displays (MacBook 'Retina').";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_native_pixels_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
WM_init_native_pixels(false);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_with_borders_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Force opening with borders.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_with_borders(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
WM_init_state_normal_set();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_without_borders_doc[] =
|
|
|
|
|
"\n\t"
|
2024-03-08 20:55:45 +11:00
|
|
|
"Force opening in full-screen mode.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_without_borders(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
WM_init_state_fullscreen_set();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_window_maximized_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Force opening maximized.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_window_maximized(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2019-02-11 14:46:25 +11:00
|
|
|
{
|
|
|
|
|
WM_init_state_maximized_set();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-10 10:32:56 +02:00
|
|
|
static const char arg_handle_no_window_focus_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Open behind other windows and without taking focus.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_no_window_focus(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2018-04-10 10:32:56 +02:00
|
|
|
{
|
|
|
|
|
WM_init_window_focus_set(false);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_start_with_console_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2019-06-14 09:50:13 +10:00
|
|
|
"Start with the console window open (ignored if '-b' is set), (Windows only).";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_start_with_console(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2019-02-23 17:23:03 +11:00
|
|
|
WM_init_state_start_with_console_set(true);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-05 11:38:21 +11:00
|
|
|
static bool arg_handle_extension_registration(const bool do_register, const bool all_users)
|
|
|
|
|
{
|
|
|
|
|
/* Logic runs in #main_args_handle_registration. */
|
2024-06-03 19:59:31 +02:00
|
|
|
# ifdef WIN32
|
|
|
|
|
/* This process has been launched with the permissions needed
|
|
|
|
|
* to register or unregister, so just do it now and then exit. */
|
|
|
|
|
if (do_register) {
|
|
|
|
|
BLI_windows_register_blend_extension(all_users);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
BLI_windows_unregister_blend_extension(all_users);
|
|
|
|
|
}
|
|
|
|
|
TerminateProcess(GetCurrentProcess(), 0);
|
|
|
|
|
return true;
|
|
|
|
|
# else
|
2024-04-05 11:38:21 +11:00
|
|
|
char *error_msg = nullptr;
|
2024-05-29 12:35:09 +10:00
|
|
|
bool result = WM_platform_associate_set(do_register, all_users, &error_msg);
|
2024-04-05 11:38:21 +11:00
|
|
|
if (error_msg) {
|
|
|
|
|
fprintf(stderr, "Error: %s\n", error_msg);
|
|
|
|
|
MEM_freeN(error_msg);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2024-06-03 19:59:31 +02:00
|
|
|
# endif
|
2024-04-05 11:38:21 +11:00
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_register_extension_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2024-04-05 11:38:21 +11:00
|
|
|
"Register blend-file extension for current user, then exit (Windows & Linux only).";
|
|
|
|
|
static int arg_handle_register_extension(int argc, const char **argv, void *data)
|
2023-05-24 21:19:56 +02:00
|
|
|
{
|
2025-07-28 13:36:13 +02:00
|
|
|
CLG_quiet_set(true);
|
2024-04-05 11:38:21 +11:00
|
|
|
background_mode_set();
|
|
|
|
|
|
|
|
|
|
# if !(defined(WIN32) && defined(__APPLE__))
|
|
|
|
|
if (!main_arg_deferred_is_set()) {
|
|
|
|
|
main_arg_deferred_setup(arg_handle_register_extension, argc, argv, data);
|
|
|
|
|
return argc - 1;
|
|
|
|
|
}
|
2023-05-24 21:19:56 +02:00
|
|
|
# endif
|
2024-04-05 11:38:21 +11:00
|
|
|
arg_handle_extension_registration(true, false);
|
|
|
|
|
return argc - 1;
|
2023-05-24 21:19:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_register_extension_all_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2024-04-05 11:38:21 +11:00
|
|
|
"Register blend-file extension for all users, then exit (Windows & Linux only).";
|
|
|
|
|
static int arg_handle_register_extension_all(int argc, const char **argv, void *data)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2025-07-28 13:36:13 +02:00
|
|
|
CLG_quiet_set(true);
|
2024-04-05 11:38:21 +11:00
|
|
|
background_mode_set();
|
|
|
|
|
|
|
|
|
|
# if !(defined(WIN32) && defined(__APPLE__))
|
|
|
|
|
if (!main_arg_deferred_is_set()) {
|
|
|
|
|
main_arg_deferred_setup(arg_handle_register_extension_all, argc, argv, data);
|
|
|
|
|
return argc - 1;
|
|
|
|
|
}
|
2023-05-24 21:19:56 +02:00
|
|
|
# endif
|
2024-04-05 11:38:21 +11:00
|
|
|
arg_handle_extension_registration(true, true);
|
|
|
|
|
return argc - 1;
|
2023-05-24 21:19:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_unregister_extension_doc[] =
|
|
|
|
|
"\n\t"
|
2024-04-05 11:38:21 +11:00
|
|
|
"Unregister blend-file extension for current user, then exit (Windows & Linux only).";
|
|
|
|
|
static int arg_handle_unregister_extension(int argc, const char **argv, void *data)
|
2023-05-24 21:19:56 +02:00
|
|
|
{
|
2025-07-28 13:36:13 +02:00
|
|
|
CLG_quiet_set(true);
|
2024-04-05 11:38:21 +11:00
|
|
|
background_mode_set();
|
|
|
|
|
|
|
|
|
|
# if !(defined(WIN32) && defined(__APPLE__))
|
|
|
|
|
if (!main_arg_deferred_is_set()) {
|
|
|
|
|
main_arg_deferred_setup(arg_handle_unregister_extension, argc, argv, data);
|
|
|
|
|
return argc - 1;
|
|
|
|
|
}
|
2023-05-24 21:19:56 +02:00
|
|
|
# endif
|
2024-04-05 11:38:21 +11:00
|
|
|
arg_handle_extension_registration(false, false);
|
2023-05-24 21:19:56 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_unregister_extension_all_doc[] =
|
|
|
|
|
"\n\t"
|
2024-04-05 11:38:21 +11:00
|
|
|
"Unregister blend-file extension for all users, then exit (Windows & Linux only).";
|
|
|
|
|
static int arg_handle_unregister_extension_all(int argc, const char **argv, void *data)
|
2023-05-24 21:19:56 +02:00
|
|
|
{
|
2025-07-28 13:36:13 +02:00
|
|
|
CLG_quiet_set(true);
|
2024-04-05 11:38:21 +11:00
|
|
|
background_mode_set();
|
|
|
|
|
|
|
|
|
|
# if !(defined(WIN32) && defined(__APPLE__))
|
|
|
|
|
if (!main_arg_deferred_is_set()) {
|
|
|
|
|
main_arg_deferred_setup(arg_handle_unregister_extension_all, argc, argv, data);
|
|
|
|
|
return argc - 1;
|
|
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
# endif
|
2024-04-05 11:38:21 +11:00
|
|
|
arg_handle_extension_registration(false, true);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 16:59:03 +10:00
|
|
|
static const char arg_handle_audio_disable_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Force sound system to None.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_audio_disable(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2021-03-16 23:45:49 +01:00
|
|
|
BKE_sound_force_device("None");
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_audio_set_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
2024-02-14 00:13:37 +11:00
|
|
|
"Force sound system to a specific device.\n"
|
|
|
|
|
"\t'None' 'Default' 'SDL' 'OpenAL' 'CoreAudio' 'JACK' 'PulseAudio' 'WASAPI'.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_audio_set(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
if (argc < 1) {
|
2024-02-05 17:08:17 +01:00
|
|
|
fprintf(stderr, "-setaudio requires one argument\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 00:13:37 +11:00
|
|
|
const char *device = argv[1];
|
|
|
|
|
if (STREQ(device, "Default")) {
|
|
|
|
|
/* Unset any forced device. */
|
|
|
|
|
device = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BKE_sound_force_device(device);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_output_set_doc[] =
|
|
|
|
|
"<path>\n"
|
|
|
|
|
"\tSet the render path and file name.\n"
|
2016-03-02 17:01:38 +11:00
|
|
|
"\tUse '//' at the start of the path to render relative to the blend-file.\n"
|
2016-02-28 05:10:00 +11:00
|
|
|
"\n"
|
Templates for render output paths
This adds basic templating support to render output paths. By putting
"{variable_name}" in the path string, it will be replaced by the named
variable's value when generating the actual output path. This is similar
to how "//" is already substituted with the path to the blend file's
current directory.
This templating system is implemented for both the primary render output
path as well as the File Output node in the compositing nodes. Support
for using templates in other places can be implemented in future PRs.
In addition to the "{variable_name}" syntax, some additional syntax is
also supported:
- Since "{" and "}" now have special meaning, "{{" and "}}" are now
escape sequences for literal "{" and "}".
- "{variable_name:format_specifier}", where "format_specifier" is a
special syntax using "#", which allows the user to specify how numeric
variables should be formatted:
- "{variable_name:###}" will format the number as an integer with at
least 3 characters (padding with zeros as needed).
- "{variable_name:.##}" will format the number as a float with
precisely 2 fractional digits.
- "{variable_name:###.##}" will format the number as a float with at
least 3 characters for the integer part and precisely 2 for the
fractional part.
For the primary render output path: if there is a template syntax error,
a variable doesn't exist, or a format specifier isn't valid (e.g. trying
to format a string with "##"), the render that needs to write to the
output path fails with a descriptive error message.
For both the primary and File Output node paths: if there are template
syntax errors the field is highlighted in red in the UI, and a tooltip
describes the offending syntax errors. Note that these do *not* yet
reflect errors due to missing variables. That will be for a follow-up
PR.
In addition to the general system, this PR also implements a limited set
of variables for use in templates, but more can be implemented in future
PRs. The variables added in this PR are:
- `blend_name`: the name of the current blend file without the file
extension.
- `fps`: the frames per second of the current scene.
- `resolution_x` and `resolution_y`: the render output resolution.
Pull Request: https://projects.blender.org/blender/blender/pulls/134860
2025-05-08 15:37:28 +02:00
|
|
|
"\tYou can use path templating features such as '{blend_name}' in the path.\n"
|
|
|
|
|
"\tSee Blender's documentation on path templates for more details.\n"
|
|
|
|
|
"\n"
|
2016-02-28 05:10:00 +11:00
|
|
|
"\tThe '#' characters are replaced by the frame number, and used to define zero padding.\n"
|
2016-04-06 09:28:22 +10:00
|
|
|
"\n"
|
2019-06-14 09:50:13 +10:00
|
|
|
"\t* 'animation_##_test.png' becomes 'animation_01_test.png'\n"
|
2016-02-28 05:10:00 +11:00
|
|
|
"\t* 'test-######.png' becomes 'test-000001.png'\n"
|
|
|
|
|
"\n"
|
2024-04-04 11:18:56 +11:00
|
|
|
"\tWhen the filename does not contain '#', the suffix '####' is added to the filename.\n"
|
2016-02-28 05:10:00 +11:00
|
|
|
"\n"
|
|
|
|
|
"\tThe frame number will be added at the end of the filename, eg:\n"
|
2019-06-14 09:50:13 +10:00
|
|
|
"\t# blender -b animation.blend -o //render_ -F PNG -x 1 -a\n"
|
2016-02-28 05:10:00 +11:00
|
|
|
"\t'//render_' becomes '//render_####', writing frames as '//render_0001.png'";
|
|
|
|
|
static int arg_handle_output_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
|
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
2023-05-09 12:50:37 +10:00
|
|
|
STRNCPY(scene->r.pic, argv[1]);
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: no blend loaded. cannot use '-o / --render-output'.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a path after '-o / --render-output'.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_engine_set_doc[] =
|
|
|
|
|
"<engine>\n"
|
2019-06-12 16:59:03 +10:00
|
|
|
"\tSpecify the render engine.\n"
|
2020-09-03 20:41:25 -04:00
|
|
|
"\tUse '-E help' to list available engines.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_engine_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc >= 2) {
|
2025-06-13 12:36:14 +02:00
|
|
|
const char *engine_name = argv[1];
|
|
|
|
|
|
|
|
|
|
if (STREQ(engine_name, "help")) {
|
2016-02-28 05:10:00 +11:00
|
|
|
printf("Blender Engine Listing:\n");
|
2023-08-04 08:51:13 +10:00
|
|
|
LISTBASE_FOREACH (RenderEngineType *, type, &R_engines) {
|
2016-02-28 05:10:00 +11:00
|
|
|
printf("\t%s\n", type->idname);
|
|
|
|
|
}
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
2025-06-14 08:59:46 +10:00
|
|
|
/* Backwards compatibility. */
|
2025-06-13 12:36:14 +02:00
|
|
|
if (STREQ(engine_name, "BLENDER_EEVEE_NEXT")) {
|
|
|
|
|
engine_name = "BLENDER_EEVEE";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (BLI_findstring(&R_engines, engine_name, offsetof(RenderEngineType, idname))) {
|
|
|
|
|
STRNCPY_UTF8(scene->r.engine, engine_name);
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2025-06-13 12:36:14 +02:00
|
|
|
fprintf(stderr, "\nError: engine not found '%s'\n", engine_name);
|
2016-02-28 05:10:00 +11:00
|
|
|
exit(1);
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: no blend loaded. "
|
|
|
|
|
"order the arguments so '-E / --engine' is after a blend is loaded.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nEngine not specified, give 'help' for a list of available engines.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_image_type_set_doc[] =
|
|
|
|
|
"<format>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tSet the render format.\n"
|
2019-06-14 09:50:13 +10:00
|
|
|
"\tValid options are:\n"
|
2024-01-09 01:49:16 +01:00
|
|
|
"\t'TGA' 'RAWTGA' 'JPEG' 'IRIS' 'AVIRAW' 'AVIJPEG' 'PNG' 'BMP' 'HDR' 'TIFF'.\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\n"
|
2019-06-14 09:50:13 +10:00
|
|
|
"\tFormats that can be compiled into Blender, not available on all systems:\n"
|
2024-01-09 01:49:16 +01:00
|
|
|
"\t'OPEN_EXR' 'OPEN_EXR_MULTILAYER' 'FFMPEG' 'CINEON' 'DPX' 'JP2' 'WEBP'.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_image_type_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
|
|
|
|
const char *imtype = argv[1];
|
|
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
|
|
|
|
const char imtype_new = BKE_imtype_from_arg(imtype);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
if (imtype_new == R_IMF_IMTYPE_INVALID) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: Format from '-F / --render-format' not known or not compiled in this "
|
|
|
|
|
"release.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2025-01-23 19:15:17 +01:00
|
|
|
BKE_image_format_set(&scene->r.im_format, &scene->id, imtype_new);
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: no blend loaded. "
|
|
|
|
|
"order the arguments so '-F / --render-format' is after the blend is loaded.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a format after '-F / --render-format'.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_threads_set_doc[] =
|
|
|
|
|
"<threads>\n"
|
|
|
|
|
"\tUse amount of <threads> for rendering and other operations\n"
|
2024-04-04 11:18:56 +11:00
|
|
|
"\t[1-" STRINGIFY(BLENDER_MAX_THREADS) "], 0 to use the systems processor count.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_threads_set(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "-t / --threads";
|
|
|
|
|
const int min = 0, max = BLENDER_MAX_THREADS;
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
int threads;
|
2023-08-02 15:34:45 +02:00
|
|
|
if (!parse_int_strict_range(argv[1], nullptr, min, max, &threads, &err_msg)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: %s '%s %s', expected number in [%d..%d].\n",
|
|
|
|
|
err_msg,
|
|
|
|
|
arg_id,
|
|
|
|
|
argv[1],
|
|
|
|
|
min,
|
|
|
|
|
max);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
BLI_system_num_threads_override_set(threads);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: you must specify a number of threads in [%d..%d] '%s'.\n",
|
|
|
|
|
min,
|
|
|
|
|
max,
|
|
|
|
|
arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_verbosity_set_doc[] =
|
2016-04-06 09:28:22 +10:00
|
|
|
"<verbose>\n"
|
2020-05-19 00:54:37 -04:00
|
|
|
"\tSet the logging verbosity level for debug messages that support it.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_verbosity_set(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "--verbose";
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
int level;
|
2023-08-02 15:34:45 +02:00
|
|
|
if (!parse_int(argv[1], nullptr, &level, &err_msg)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
# ifdef WITH_LIBMV
|
|
|
|
|
libmv_setLoggingVerbosity(level);
|
|
|
|
|
# endif
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a verbosity level.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_extension_set_doc[] =
|
|
|
|
|
"<bool>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tSet option to add the file extension to the end of the file.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_extension_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
|
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
|
|
|
|
if (argv[1][0] == '0') {
|
|
|
|
|
scene->r.scemode &= ~R_EXTENSION;
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else if (argv[1][0] == '1') {
|
|
|
|
|
scene->r.scemode |= R_EXTENSION;
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: Use '-x 1 / -x 0' To set the extension option or '--use-extension'\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: no blend loaded. "
|
|
|
|
|
"order the arguments so '-o ' is after '-x '.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a path after '- '.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
2025-06-12 02:20:00 +02:00
|
|
|
static void add_log_render_filter()
|
|
|
|
|
{
|
|
|
|
|
const char *render_filter = "render.*";
|
|
|
|
|
CLG_type_filter_include(render_filter, strlen(render_filter));
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_render_frame_doc[] =
|
2016-04-06 07:34:20 +10:00
|
|
|
"<frame>\n"
|
|
|
|
|
"\tRender frame <frame> and save it.\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"\t* +<frame> start frame relative, -<frame> end frame relative.\n"
|
|
|
|
|
"\t* A comma separated list of frames can also be used (no spaces).\n"
|
2018-01-30 21:02:27 +11:00
|
|
|
"\t* A range of frames can be expressed using '..' separator between the first and last "
|
|
|
|
|
"frames (inclusive).\n";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_render_frame(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
|
|
|
|
const char *arg_id = "-f / --render-frame";
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
2025-06-12 02:20:00 +02:00
|
|
|
add_log_render_filter();
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
Main *bmain = CTX_data_main(C);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
Render *re;
|
|
|
|
|
ReportList reports;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
int(*frame_range_arr)[2], frames_range_len;
|
|
|
|
|
if ((frame_range_arr = parse_int_range_relative_clamp_n(argv[1],
|
|
|
|
|
scene->r.sfra,
|
|
|
|
|
scene->r.efra,
|
|
|
|
|
MINAFRAME,
|
|
|
|
|
MAXFRAME,
|
|
|
|
|
&frames_range_len,
|
2023-08-02 15:34:45 +02:00
|
|
|
&err_msg)) == nullptr)
|
2016-04-06 07:34:20 +10:00
|
|
|
{
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2017-09-12 11:27:22 +05:00
|
|
|
re = RE_NewSceneRender(scene);
|
2017-02-22 13:06:24 +01:00
|
|
|
BKE_reports_init(&reports, RPT_STORE);
|
2016-02-28 05:10:00 +11:00
|
|
|
RE_SetReports(re, &reports);
|
2016-04-06 07:34:20 +10:00
|
|
|
for (int i = 0; i < frames_range_len; i++) {
|
|
|
|
|
/* We could pass in frame ranges,
|
2024-03-19 13:57:00 +11:00
|
|
|
* but prefer having exact behavior as passing in multiple frames. */
|
2016-04-06 09:41:30 +10:00
|
|
|
if ((frame_range_arr[i][0] <= frame_range_arr[i][1]) == 0) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nWarning: negative range ignored '%s %s'.\n", arg_id, argv[1]);
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-04-06 07:34:20 +10:00
|
|
|
for (int frame = frame_range_arr[i][0]; frame <= frame_range_arr[i][1]; frame++) {
|
2023-08-02 15:34:45 +02:00
|
|
|
RE_RenderAnim(re, bmain, scene, nullptr, nullptr, frame, frame, scene->r.frame_step);
|
2016-04-06 07:34:20 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2023-08-02 15:34:45 +02:00
|
|
|
RE_SetReports(re, nullptr);
|
2023-10-13 11:29:59 +02:00
|
|
|
BKE_reports_free(&reports);
|
2016-04-06 07:34:20 +10:00
|
|
|
MEM_freeN(frame_range_arr);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: frame number must follow '%s'.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: no blend loaded. cannot use '%s'.\n", arg_id);
|
2020-11-07 21:21:02 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_render_animation_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Render frames from start to end (inclusive).";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_render_animation(int /*argc*/, const char ** /*argv*/, void *data)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
2025-06-12 02:20:00 +02:00
|
|
|
add_log_render_filter();
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
Main *bmain = CTX_data_main(C);
|
2017-09-12 11:27:22 +05:00
|
|
|
Render *re = RE_NewSceneRender(scene);
|
2016-02-28 05:10:00 +11:00
|
|
|
ReportList reports;
|
2017-02-24 14:25:11 +01:00
|
|
|
BKE_reports_init(&reports, RPT_STORE);
|
2016-02-28 05:10:00 +11:00
|
|
|
RE_SetReports(re, &reports);
|
2023-08-02 15:34:45 +02:00
|
|
|
RE_RenderAnim(
|
|
|
|
|
re, bmain, scene, nullptr, nullptr, scene->r.sfra, scene->r.efra, scene->r.frame_step);
|
|
|
|
|
RE_SetReports(re, nullptr);
|
2023-10-13 11:29:59 +02:00
|
|
|
BKE_reports_free(&reports);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: no blend loaded. cannot use '-a'.\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_scene_set_doc[] =
|
|
|
|
|
"<name>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tSet the active scene <name> for rendering.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_scene_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
Scene *scene = BKE_scene_set_name(CTX_data_main(C), argv[1]);
|
|
|
|
|
if (scene) {
|
|
|
|
|
CTX_data_scene_set(C, scene);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-02-12 14:37:16 +11:00
|
|
|
/* Set the scene of the first window, see: #55991,
|
2022-04-05 22:21:13 +02:00
|
|
|
* otherwise scripts that run later won't get this scene back from the context. */
|
2018-07-27 16:49:41 +10:00
|
|
|
wmWindow *win = CTX_wm_window(C);
|
2023-08-02 15:34:45 +02:00
|
|
|
if (win == nullptr) {
|
|
|
|
|
win = static_cast<wmWindow *>(CTX_wm_manager(C)->windows.first);
|
2018-07-27 16:49:41 +10:00
|
|
|
}
|
2023-08-02 15:34:45 +02:00
|
|
|
if (win != nullptr) {
|
2018-07-27 17:09:38 +10:00
|
|
|
WM_window_set_active_scene(CTX_data_main(C), C, win, scene);
|
2018-07-27 16:49:41 +10:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: Scene name must follow '-S / --scene'.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_frame_start_set_doc[] =
|
2016-04-06 09:28:22 +10:00
|
|
|
"<frame>\n"
|
|
|
|
|
"\tSet start to frame <frame>, supports +/- for relative frames too.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_frame_start_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
|
|
|
|
const char *arg_id = "-s / --frame-start";
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
if (!parse_int_relative_clamp(argv[1],
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2016-04-06 07:34:20 +10:00
|
|
|
scene->r.sfra,
|
|
|
|
|
scene->r.sfra - 1,
|
|
|
|
|
MINAFRAME,
|
|
|
|
|
MAXFRAME,
|
2016-02-28 05:10:00 +11:00
|
|
|
&scene->r.sfra,
|
|
|
|
|
&err_msg))
|
|
|
|
|
{
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2020-05-14 03:08:08 +02:00
|
|
|
else {
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2020-05-14 03:08:08 +02:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: frame number must follow '%s'.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: no blend loaded. cannot use '%s'.\n", arg_id);
|
2020-11-07 21:21:02 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_frame_end_set_doc[] =
|
|
|
|
|
"<frame>\n"
|
|
|
|
|
"\tSet end to frame <frame>, supports +/- for relative frames too.";
|
|
|
|
|
static int arg_handle_frame_end_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
|
|
|
|
const char *arg_id = "-e / --frame-end";
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
if (!parse_int_relative_clamp(argv[1],
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2016-04-06 07:34:20 +10:00
|
|
|
scene->r.efra,
|
|
|
|
|
scene->r.efra - 1,
|
|
|
|
|
MINAFRAME,
|
|
|
|
|
MAXFRAME,
|
2016-02-28 05:10:00 +11:00
|
|
|
&scene->r.efra,
|
|
|
|
|
&err_msg))
|
|
|
|
|
{
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2020-05-14 03:08:08 +02:00
|
|
|
else {
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2020-05-14 03:08:08 +02:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: frame number must follow '%s'.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: no blend loaded. cannot use '%s'.\n", arg_id);
|
2020-11-07 21:21:02 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_frame_skip_set_doc[] =
|
2016-04-06 09:28:22 +10:00
|
|
|
"<frames>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tSet number of frames to step forward after each rendered frame.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_frame_skip_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
|
|
|
|
const char *arg_id = "-j / --frame-jump";
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
Scene *scene = CTX_data_scene(C);
|
|
|
|
|
if (scene) {
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
|
|
|
|
if (!parse_int_clamp(argv[1], nullptr, 1, MAXFRAME, &scene->r.frame_step, &err_msg)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: %s '%s %s'.\n", err_msg, arg_id, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2020-05-14 03:08:08 +02:00
|
|
|
else {
|
2024-02-19 15:54:08 +01:00
|
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SYNC_TO_EVAL);
|
2020-05-14 03:08:08 +02:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: number of frames to step must follow '%s'.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: no blend loaded. cannot use '%s'.\n", arg_id);
|
2020-11-07 21:21:02 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_python_file_run_doc[] =
|
2022-03-24 16:33:32 +11:00
|
|
|
"<filepath>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tRun the given Python script file.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_python_file_run(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Workaround for scripts not getting a `bpy.context.scene`, causes internal errors elsewhere. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
2025-02-02 14:39:34 +11:00
|
|
|
# ifdef WITH_PYTHON
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Make the path absolute because its needed for relative linked blends to be found. */
|
2022-03-24 16:33:32 +11:00
|
|
|
char filepath[FILE_MAX];
|
2023-05-09 12:50:37 +10:00
|
|
|
STRNCPY(filepath, argv[1]);
|
2023-05-17 13:07:45 +10:00
|
|
|
BLI_path_canonicalize_native(filepath, sizeof(filepath));
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
bool ok;
|
2023-08-02 15:34:45 +02:00
|
|
|
BPY_CTX_SETUP(ok = BPY_run_filepath(C, filepath, nullptr));
|
2016-02-28 05:10:00 +11:00
|
|
|
if (!ok && app_state.exit_code_on_error.python) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: script failed, file: '%s', exiting.\n", argv[1]);
|
2023-05-31 10:17:41 +10:00
|
|
|
WM_exit(C, app_state.exit_code_on_error.python);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2025-02-02 14:39:34 +11:00
|
|
|
# else
|
|
|
|
|
UNUSED_VARS(C);
|
|
|
|
|
fprintf(stderr, "This Blender was built without Python support\n");
|
|
|
|
|
# endif /* WITH_PYTHON */
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a filepath after '%s'.\n", argv[0]);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_python_text_run_doc[] =
|
|
|
|
|
"<name>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tRun the given Python script text block.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_python_text_run(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Workaround for scripts not getting a `bpy.context.scene`, causes internal errors elsewhere. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
2025-02-02 14:39:34 +11:00
|
|
|
# ifdef WITH_PYTHON
|
2018-05-31 16:04:04 +02:00
|
|
|
Main *bmain = CTX_data_main(C);
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Make the path absolute because its needed for relative linked blends to be found. */
|
2023-08-03 08:57:59 +10:00
|
|
|
Text *text = (Text *)BKE_libblock_find_name(bmain, ID_TXT, argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
bool ok;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
if (text) {
|
2023-08-02 15:34:45 +02:00
|
|
|
BPY_CTX_SETUP(ok = BPY_run_text(C, text, nullptr, false));
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: text block not found %s.\n", argv[1]);
|
2016-02-28 05:10:00 +11:00
|
|
|
ok = false;
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
if (!ok && app_state.exit_code_on_error.python) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: script failed, text: '%s', exiting.\n", argv[1]);
|
2023-05-31 10:17:41 +10:00
|
|
|
WM_exit(C, app_state.exit_code_on_error.python);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2025-02-02 14:39:34 +11:00
|
|
|
# else
|
|
|
|
|
UNUSED_VARS(C);
|
|
|
|
|
fprintf(stderr, "This Blender was built without Python support\n");
|
|
|
|
|
# endif /* WITH_PYTHON */
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2020-11-07 18:24:56 +05:30
|
|
|
|
2025-02-02 14:39:34 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a text block after '%s'.\n", argv[0]);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_python_expr_run_doc[] =
|
|
|
|
|
"<expression>\n"
|
2017-10-08 18:46:26 +11:00
|
|
|
"\tRun the given expression as a Python script.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_python_expr_run(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Workaround for scripts not getting a `bpy.context.scene`, causes internal errors elsewhere. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
2025-02-02 14:39:34 +11:00
|
|
|
# ifdef WITH_PYTHON
|
2016-02-28 05:10:00 +11:00
|
|
|
bool ok;
|
2023-08-02 15:34:45 +02:00
|
|
|
BPY_CTX_SETUP(ok = BPY_run_string_exec(C, nullptr, argv[1]));
|
2016-02-28 05:10:00 +11:00
|
|
|
if (!ok && app_state.exit_code_on_error.python) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: script failed, expr: '%s', exiting.\n", argv[1]);
|
2023-05-31 10:17:41 +10:00
|
|
|
WM_exit(C, app_state.exit_code_on_error.python);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2025-02-02 14:39:34 +11:00
|
|
|
# else
|
|
|
|
|
UNUSED_VARS(C);
|
|
|
|
|
fprintf(stderr, "This Blender was built without Python support\n");
|
|
|
|
|
# endif /* WITH_PYTHON */
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a Python expression after '%s'.\n", argv[0]);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_python_console_run_doc[] =
|
2019-06-12 16:59:03 +10:00
|
|
|
"\n\t"
|
|
|
|
|
"Run Blender with an interactive console.";
|
2024-04-26 13:55:40 +10:00
|
|
|
static int arg_handle_python_console_run(int /*argc*/, const char ** /*argv*/, void *data)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2025-02-02 14:39:34 +11:00
|
|
|
# ifdef WITH_PYTHON
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *imports[] = {"code", nullptr};
|
|
|
|
|
BPY_CTX_SETUP(BPY_run_string_eval(C, imports, "code.interact()"));
|
2016-02-28 05:10:00 +11:00
|
|
|
# else
|
2025-02-02 14:39:34 +11:00
|
|
|
UNUSED_VARS(C);
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "This Blender was built without python support\n");
|
2016-02-28 05:10:00 +11:00
|
|
|
# endif /* WITH_PYTHON */
|
2025-02-02 14:39:34 +11:00
|
|
|
|
|
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char arg_handle_python_exit_code_set_doc[] =
|
2018-03-31 14:53:15 +02:00
|
|
|
"<code>\n"
|
2016-04-06 09:28:22 +10:00
|
|
|
"\tSet the exit-code in [0..255] to exit if a Python exception is raised\n"
|
2016-02-28 05:10:00 +11:00
|
|
|
"\t(only for scripts executed from the command line), zero disables.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_python_exit_code_set(int argc, const char **argv, void * /*data*/)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
|
|
|
|
const char *arg_id = "--python-exit-code";
|
|
|
|
|
if (argc > 1) {
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *err_msg = nullptr;
|
2016-02-28 05:10:00 +11:00
|
|
|
const int min = 0, max = 255;
|
|
|
|
|
int exit_code;
|
2023-08-02 15:34:45 +02:00
|
|
|
if (!parse_int_strict_range(argv[1], nullptr, min, max, &exit_code, &err_msg)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr,
|
|
|
|
|
"\nError: %s '%s %s', expected number in [%d..%d].\n",
|
|
|
|
|
err_msg,
|
|
|
|
|
arg_id,
|
|
|
|
|
argv[1],
|
|
|
|
|
min,
|
|
|
|
|
max);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
app_state.exit_code_on_error.python = uchar(exit_code);
|
2016-02-28 05:10:00 +11:00
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify an exit code number '%s'.\n", arg_id);
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
2020-01-16 21:11:05 +11:00
|
|
|
static const char arg_handle_python_use_system_env_set_doc[] =
|
|
|
|
|
"\n\t"
|
2020-04-16 15:54:34 +02:00
|
|
|
"Allow Python to use system environment variables such as 'PYTHONPATH' and the user "
|
|
|
|
|
"site-packages directory.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_python_use_system_env_set(int /*argc*/,
|
|
|
|
|
const char ** /*argv*/,
|
|
|
|
|
void * /*data*/)
|
2020-01-16 21:11:05 +11:00
|
|
|
{
|
2020-04-02 07:08:51 -06:00
|
|
|
# ifdef WITH_PYTHON
|
2020-01-16 21:11:05 +11:00
|
|
|
BPY_python_use_system_env();
|
2020-04-02 07:08:51 -06:00
|
|
|
# endif
|
2020-01-16 21:11:05 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
static const char arg_handle_addons_set_doc[] =
|
2018-03-31 14:53:15 +02:00
|
|
|
"<addon(s)>\n"
|
2021-09-10 14:34:29 +10:00
|
|
|
"\tComma separated list (no spaces) of add-ons to enable in addition to any default add-ons.";
|
2016-02-28 05:10:00 +11:00
|
|
|
static int arg_handle_addons_set(int argc, const char **argv, void *data)
|
|
|
|
|
{
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Workaround for scripts not getting a `bpy.context.scene`, causes internal errors elsewhere. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (argc > 1) {
|
|
|
|
|
# ifdef WITH_PYTHON
|
|
|
|
|
const char script_str[] =
|
2024-07-01 15:08:14 +10:00
|
|
|
"from _bpy_internal.addons.cli import set_from_cli\n"
|
|
|
|
|
"set_from_cli('%s')";
|
2016-02-28 05:10:00 +11:00
|
|
|
const int slen = strlen(argv[1]) + (sizeof(script_str) - 2);
|
2023-08-02 15:34:45 +02:00
|
|
|
char *str = static_cast<char *>(malloc(slen));
|
|
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2016-02-28 05:10:00 +11:00
|
|
|
BLI_snprintf(str, slen, script_str, argv[1]);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
BLI_assert(strlen(str) + 1 == slen);
|
2023-08-02 15:34:45 +02:00
|
|
|
BPY_CTX_SETUP(BPY_run_string_exec(C, nullptr, str));
|
2016-02-28 05:10:00 +11:00
|
|
|
free(str);
|
|
|
|
|
# else
|
|
|
|
|
UNUSED_VARS(argv, data);
|
|
|
|
|
# endif /* WITH_PYTHON */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "\nError: you must specify a comma separated list after '--addons'.\n");
|
2020-11-07 18:24:56 +05:30
|
|
|
return 0;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
2025-02-18 15:36:50 +01:00
|
|
|
static const char arg_handle_profile_gpu_set_doc[] =
|
|
|
|
|
"\n"
|
|
|
|
|
"\tEnable CPU & GPU performance profiling for GPU debug groups\n"
|
|
|
|
|
"\t(Outputs a profile.json file in the Trace Event Format to the current directory)";
|
|
|
|
|
static int arg_handle_profile_gpu_set(int /*argc*/, const char ** /*argv*/, void * /*data*/)
|
|
|
|
|
{
|
|
|
|
|
G.profile_gpu = true;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-29 12:44:38 +10:00
|
|
|
/**
|
|
|
|
|
* Implementation for #arg_handle_load_last_file, also used by `--open-last`.
|
|
|
|
|
* \return true on success.
|
|
|
|
|
*/
|
2023-05-29 12:51:40 +10:00
|
|
|
static bool handle_load_file(bContext *C, const char *filepath_arg, const bool load_empty_file)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Make the path absolute because its needed for relative linked blends to be found. */
|
2022-03-24 16:33:32 +11:00
|
|
|
char filepath[FILE_MAX];
|
2023-05-29 12:44:38 +10:00
|
|
|
STRNCPY(filepath, filepath_arg);
|
2023-05-17 13:07:45 +10:00
|
|
|
BLI_path_canonicalize_native(filepath, sizeof(filepath));
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Load the file. */
|
2023-05-29 12:44:38 +10:00
|
|
|
ReportList reports;
|
2016-02-28 05:10:00 +11:00
|
|
|
BKE_reports_init(&reports, RPT_PRINT);
|
2025-04-13 12:25:44 +00:00
|
|
|
/* When activating from the command line there isn't an exact equivalent to operator properties.
|
|
|
|
|
* Instead, enabling auto-execution via `--enable-autoexec` causes the auto-execution
|
|
|
|
|
* check to be skipped (if it's set), so it's fine to always enable the check here. */
|
|
|
|
|
const bool use_scripts_autoexec_check = true;
|
|
|
|
|
const bool success = WM_file_read(C, filepath, use_scripts_autoexec_check, &reports);
|
2023-10-13 11:29:59 +02:00
|
|
|
BKE_reports_free(&reports);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
if (success) {
|
|
|
|
|
if (G.background) {
|
2021-02-05 16:23:34 +11:00
|
|
|
/* Ensure we use 'C->data.scene' for background render. */
|
2023-08-02 15:34:45 +02:00
|
|
|
CTX_wm_window_set(C, nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
else {
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Failed to load file, stop processing arguments if running in background mode. */
|
2016-02-28 05:10:00 +11:00
|
|
|
if (G.background) {
|
2024-03-19 13:57:00 +11:00
|
|
|
/* Set `is_break` if running in the background mode so
|
2016-02-28 05:10:00 +11:00
|
|
|
* blender will return non-zero exit code which then
|
|
|
|
|
* could be used in automated script to control how
|
2024-03-19 13:57:00 +11:00
|
|
|
* good or bad things are. */
|
2016-02-28 05:10:00 +11:00
|
|
|
G.is_break = true;
|
2023-05-29 12:44:38 +10:00
|
|
|
return false;
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-29 12:51:40 +10:00
|
|
|
const char *error_msg_generic = "file could not be loaded";
|
2023-08-02 15:34:45 +02:00
|
|
|
const char *error_msg = nullptr;
|
2023-05-29 12:51:40 +10:00
|
|
|
|
|
|
|
|
if (load_empty_file == false) {
|
|
|
|
|
error_msg = error_msg_generic;
|
|
|
|
|
}
|
|
|
|
|
else if (BLI_exists(filepath)) {
|
2023-05-29 11:38:11 +10:00
|
|
|
/* When a file is found but can't be loaded, handling it as a new file
|
|
|
|
|
* could cause it to be unintentionally overwritten (data loss).
|
|
|
|
|
* Further this is almost certainly not that a user would expect or want.
|
|
|
|
|
* If they do, they can delete the file beforehand. */
|
2023-05-29 12:51:40 +10:00
|
|
|
error_msg = error_msg_generic;
|
2017-10-19 23:57:03 +11:00
|
|
|
}
|
2023-05-29 11:38:11 +10:00
|
|
|
else if (!BKE_blendfile_extension_check(filepath)) {
|
|
|
|
|
/* Unrelated arguments should not be treated as new blend files. */
|
|
|
|
|
error_msg = "argument has no '.blend' file extension, not using as new file";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (error_msg) {
|
|
|
|
|
fprintf(stderr, "Error: %s, exiting! %s\n", error_msg, filepath);
|
2023-05-30 12:44:31 +10:00
|
|
|
WM_exit(C, EXIT_FAILURE);
|
2023-05-29 11:38:11 +10:00
|
|
|
/* Unreachable, return for clarity. */
|
2023-05-29 12:44:38 +10:00
|
|
|
return false;
|
2017-10-19 23:57:03 +11:00
|
|
|
}
|
2023-05-29 11:38:11 +10:00
|
|
|
|
|
|
|
|
/* Behave as if a file was loaded, calling "Save" will write to the `filepath` from the CLI.
|
|
|
|
|
*
|
|
|
|
|
* WARNING: The path referenced may be incorrect, no attempt is made to validate the path
|
|
|
|
|
* here or check that writing to it will work. If the users enters the path of a directory
|
2025-05-29 21:21:18 +02:00
|
|
|
* that doesn't exist (for example) saving will fail.
|
2023-05-29 11:38:11 +10:00
|
|
|
* Attempting to create the file at this point is possible but likely to cause more
|
|
|
|
|
* trouble than it's worth (what with network drives), removable devices ... etc. */
|
|
|
|
|
|
|
|
|
|
STRNCPY(G_MAIN->filepath, filepath);
|
|
|
|
|
printf("... opened default scene instead; saving will write to: %s\n", filepath);
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-29 12:44:38 +10:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
int main_args_handle_load_file(int /*argc*/, const char **argv, void *data)
|
2023-05-29 12:44:38 +10:00
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
2023-05-29 12:44:38 +10:00
|
|
|
const char *filepath = argv[0];
|
|
|
|
|
|
|
|
|
|
/* NOTE: we could skip these, but so far we always tried to load these files. */
|
|
|
|
|
if (argv[0][0] == '-') {
|
|
|
|
|
fprintf(stderr, "unknown argument, loading as file: %s\n", filepath);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-29 12:51:40 +10:00
|
|
|
if (!handle_load_file(C, filepath, true)) {
|
2023-05-29 12:44:38 +10:00
|
|
|
return -1;
|
|
|
|
|
}
|
2016-02-28 05:10:00 +11:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-01 14:36:52 +01:00
|
|
|
static const char arg_handle_load_last_file_doc[] =
|
|
|
|
|
"\n\t"
|
|
|
|
|
"Open the most recently opened blend file, instead of the default startup file.";
|
2023-08-02 15:34:45 +02:00
|
|
|
static int arg_handle_load_last_file(int /*argc*/, const char ** /*argv*/, void *data)
|
2021-03-01 14:36:52 +01:00
|
|
|
{
|
|
|
|
|
if (BLI_listbase_is_empty(&G.recent_files)) {
|
2023-01-25 12:20:48 +11:00
|
|
|
fprintf(stderr, "Warning: no recent files known, opening default startup file instead.\n");
|
2021-03-01 14:36:52 +01:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
bContext *C = static_cast<bContext *>(data);
|
|
|
|
|
const RecentFile *recent_file = static_cast<const RecentFile *>(G.recent_files.first);
|
2023-05-29 12:51:40 +10:00
|
|
|
if (!handle_load_file(C, recent_file->filepath, false)) {
|
2023-05-29 12:44:38 +10:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
2021-03-01 14:36:52 +01:00
|
|
|
}
|
|
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
void main_args_setup(bContext *C, bArgs *ba, bool all)
|
2016-02-28 05:10:00 +11:00
|
|
|
{
|
2023-08-02 15:34:45 +02:00
|
|
|
/** Expand the doc-string from the function. */
|
2016-02-28 05:10:00 +11:00
|
|
|
# define CB(a) a##_doc, a
|
2023-08-02 15:34:45 +02:00
|
|
|
/** A version of `CB` that expands an additional suffix. */
|
2016-02-28 05:10:00 +11:00
|
|
|
# define CB_EX(a, b) a##_doc_##b, a
|
2023-08-02 15:34:45 +02:00
|
|
|
/** A version of `CB` that uses `all`, needed when the doc-string depends on build options. */
|
2023-05-28 14:54:14 +10:00
|
|
|
# define CB_ALL(a) (all ? a##_doc_all : a##_doc), a
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-08-03 08:57:59 +10:00
|
|
|
BuildDefs defs;
|
2023-05-27 17:23:19 +10:00
|
|
|
build_defs_init(&defs, all);
|
|
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
/* end argument processing after -- */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_pass_set(ba, -1);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "--", nullptr, CB(arg_handle_arguments_end), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-10-28 12:58:27 +11:00
|
|
|
/* Pass: Environment Setup
|
2020-10-27 18:21:16 +11:00
|
|
|
*
|
|
|
|
|
* It's important these run before any initialization is done, since they set up
|
|
|
|
|
* the environment used to access data-files, which are be used when initializing
|
|
|
|
|
* sub-systems such as color management. */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_pass_set(ba, ARG_PASS_ENVIRONMENT);
|
|
|
|
|
BLI_args_add(
|
2023-08-02 15:34:45 +02:00
|
|
|
ba, nullptr, "--python-use-system-env", CB(arg_handle_python_use_system_env_set), nullptr);
|
2020-10-27 18:21:16 +11:00
|
|
|
|
|
|
|
|
/* Note that we could add used environment variables too. */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(
|
2023-08-02 15:34:45 +02:00
|
|
|
ba, nullptr, "--env-system-datafiles", CB_EX(arg_handle_env_system_set, datafiles), nullptr);
|
|
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--env-system-scripts", CB_EX(arg_handle_env_system_set, scripts), nullptr);
|
|
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--env-system-python", CB_EX(arg_handle_env_system_set, python), nullptr);
|
2024-06-07 11:36:20 +10:00
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--env-system-extensions",
|
|
|
|
|
CB_EX(arg_handle_env_system_set, extensions),
|
|
|
|
|
nullptr);
|
2020-10-27 18:21:16 +11:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "-t", "--threads", CB(arg_handle_threads_set), nullptr);
|
2020-10-30 13:11:35 +11:00
|
|
|
|
2021-04-21 13:44:23 +10:00
|
|
|
/* Include in the environment pass so it's possible display errors initializing subsystems,
|
|
|
|
|
* especially `bpy.appdir` since it's useful to show errors finding paths on startup. */
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--log", CB(arg_handle_log_set), ba);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--log-level", CB(arg_handle_log_level_set), ba);
|
2025-06-12 02:19:59 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--log-show-source", CB(arg_handle_log_show_source_set), ba);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--log-show-backtrace", CB(arg_handle_log_show_backtrace_set), ba);
|
2025-06-12 02:19:59 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--log-show-memory", CB(arg_handle_log_show_memory_set), ba);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--log-file", CB(arg_handle_log_file_set), ba);
|
2021-04-21 13:44:23 +10:00
|
|
|
|
2023-04-04 17:19:54 +10:00
|
|
|
/* GPU backend selection should be part of #ARG_PASS_ENVIRONMENT for correct GPU context
|
|
|
|
|
* selection for animation player. */
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--gpu-backend", CB_ALL(arg_handle_gpu_backend_set), nullptr);
|
2024-07-01 16:36:01 +02:00
|
|
|
# ifdef WITH_OPENGL_BACKEND
|
|
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--gpu-compilation-subprocesses",
|
|
|
|
|
CB(arg_handle_gpu_compilation_subprocesses_set),
|
|
|
|
|
nullptr);
|
|
|
|
|
# endif
|
2025-05-28 21:08:38 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--profile-gpu", CB(arg_handle_profile_gpu_set), nullptr);
|
2022-10-19 15:13:15 +02:00
|
|
|
|
2020-10-28 12:58:27 +11:00
|
|
|
/* Pass: Background Mode & Settings
|
2020-10-27 18:21:16 +11:00
|
|
|
*
|
|
|
|
|
* Also and commands that exit after usage. */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_pass_set(ba, ARG_PASS_SETTINGS);
|
|
|
|
|
BLI_args_add(ba, "-h", "--help", CB(arg_handle_print_help), ba);
|
2024-03-19 13:57:00 +11:00
|
|
|
/* MS-Windows only. */
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "/?", nullptr, CB_EX(arg_handle_print_help, win32), ba);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "-v", "--version", CB(arg_handle_print_version), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba, "-y", "--enable-autoexec", CB_EX(arg_handle_python_set, enable), (void *)true);
|
|
|
|
|
BLI_args_add(
|
2020-10-28 12:34:33 +11:00
|
|
|
ba, "-Y", "--disable-autoexec", CB_EX(arg_handle_python_set, disable), (void *)false);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-05-20 10:32:39 +10:00
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--offline-mode", CB_EX(arg_handle_internet_allow_set, offline), (void *)false);
|
|
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--online-mode", CB_EX(arg_handle_internet_allow_set, online), (void *)true);
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--disable-crash-handler", CB(arg_handle_crash_handler_disable), nullptr);
|
|
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--disable-abort-handler", CB(arg_handle_abort_handler_disable), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-09-13 22:44:34 +10:00
|
|
|
BLI_args_add(ba, "-q", "--quiet", CB(arg_handle_quiet_set), nullptr);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "-b", "--background", CB(arg_handle_background_mode_set), nullptr);
|
2024-04-05 11:24:07 +11:00
|
|
|
/* Command implies background mode (defers execution). */
|
|
|
|
|
BLI_args_add(ba, "-c", "--command", CB(arg_handle_command_set), C);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2024-12-16 19:05:29 +01:00
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--disable-depsgraph-on-file-load",
|
|
|
|
|
CB(arg_handle_disable_depsgraph_on_file_load),
|
|
|
|
|
nullptr);
|
|
|
|
|
|
2024-12-17 18:59:49 +01:00
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--disable-liboverride-auto-resync",
|
|
|
|
|
CB(arg_handle_disable_liboverride_auto_resync),
|
|
|
|
|
nullptr);
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "-a", nullptr, CB(arg_handle_playback_mode), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba, "-d", "--debug", CB(arg_handle_debug_mode_set), ba);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_ffmpeg) {
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2023-05-27 17:23:19 +10:00
|
|
|
"--debug-ffmpeg",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, ffmpeg),
|
|
|
|
|
(void *)G_DEBUG_FFMPEG);
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_freestyle) {
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2023-05-27 17:23:19 +10:00
|
|
|
"--debug-freestyle",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, freestyle),
|
|
|
|
|
(void *)G_DEBUG_FREESTYLE);
|
|
|
|
|
}
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-python",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, python),
|
|
|
|
|
(void *)G_DEBUG_PYTHON);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-events",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, events),
|
|
|
|
|
(void *)G_DEBUG_EVENTS);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-handlers",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, handlers),
|
|
|
|
|
(void *)G_DEBUG_HANDLERS);
|
|
|
|
|
BLI_args_add(
|
2023-08-02 15:34:45 +02:00
|
|
|
ba, nullptr, "--debug-wm", CB_EX(arg_handle_debug_mode_generic_set, wm), (void *)G_DEBUG_WM);
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_xr_openxr) {
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
|
|
|
|
"--debug-xr",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, xr),
|
|
|
|
|
(void *)G_DEBUG_XR);
|
|
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
2023-05-27 17:23:19 +10:00
|
|
|
"--debug-xr-time",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, xr_time),
|
|
|
|
|
(void *)G_DEBUG_XR_TIME);
|
|
|
|
|
}
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-ghost",
|
2021-06-22 17:30:10 -07:00
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, ghost),
|
2020-11-06 10:29:06 +11:00
|
|
|
(void *)G_DEBUG_GHOST);
|
2021-06-22 17:30:10 -07:00
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2021-06-22 17:30:10 -07:00
|
|
|
"--debug-wintab",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, wintab),
|
|
|
|
|
(void *)G_DEBUG_WINTAB);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-all", CB(arg_handle_debug_mode_all), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-io", CB(arg_handle_debug_mode_io), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-fpe", CB(arg_handle_debug_fpe_set), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_libmv) {
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-libmv", CB(arg_handle_debug_mode_libmv), nullptr);
|
2023-05-27 17:23:19 +10:00
|
|
|
}
|
2025-06-12 02:19:57 +02:00
|
|
|
if (defs.with_cycles) {
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-cycles", CB(arg_handle_debug_mode_cycles), nullptr);
|
2023-05-27 17:23:19 +10:00
|
|
|
}
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-memory", CB(arg_handle_debug_mode_memory_set), nullptr);
|
2020-11-06 10:29:06 +11:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-value", CB(arg_handle_debug_value_set), nullptr);
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-jobs",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, jobs),
|
|
|
|
|
(void *)G_DEBUG_JOBS);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-gpu", CB(arg_handle_debug_gpu_set), nullptr);
|
2024-02-15 08:13:44 +01:00
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--debug-gpu-compile-shaders",
|
|
|
|
|
CB(arg_handle_debug_gpu_compile_shaders_set),
|
|
|
|
|
nullptr);
|
2023-05-27 17:23:19 +10:00
|
|
|
if (defs.with_renderdoc) {
|
2024-08-30 15:14:58 +02:00
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--debug-gpu-scope-capture",
|
|
|
|
|
CB(arg_handle_debug_gpu_scope_capture_set),
|
|
|
|
|
nullptr);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--debug-gpu-renderdoc", CB(arg_handle_debug_gpu_renderdoc_set), nullptr);
|
2023-05-27 17:23:19 +10:00
|
|
|
}
|
2022-02-05 19:25:35 +01:00
|
|
|
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph-build",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_build),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_BUILD);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph-eval",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_eval),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_EVAL);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph-tag",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_tag),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_TAG);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph-time",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_time),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_TIME);
|
|
|
|
|
BLI_args_add(ba,
|
|
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph-no-threads",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_no_threads),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_NO_THREADS);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-depsgraph-pretty",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_pretty),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_PRETTY);
|
|
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2024-01-22 13:47:13 +01:00
|
|
|
"--debug-depsgraph-uid",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, depsgraph_uid),
|
|
|
|
|
(void *)G_DEBUG_DEPSGRAPH_UID);
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_add(ba,
|
2023-08-02 15:34:45 +02:00
|
|
|
nullptr,
|
2020-11-06 10:29:06 +11:00
|
|
|
"--debug-gpu-force-workarounds",
|
2021-01-29 14:13:30 +01:00
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, gpu_force_workarounds),
|
2020-11-06 10:29:06 +11:00
|
|
|
(void *)G_DEBUG_GPU_FORCE_WORKAROUNDS);
|
2025-01-13 09:29:16 +01:00
|
|
|
# ifdef WITH_VULKAN_BACKEND
|
|
|
|
|
BLI_args_add(ba,
|
|
|
|
|
nullptr,
|
|
|
|
|
"--debug-gpu-vulkan-local-read",
|
|
|
|
|
CB_EX(arg_handle_debug_mode_generic_set, gpu_force_vulkan_local_read),
|
|
|
|
|
(void *)G_DEBUG_GPU_FORCE_VULKAN_LOCAL_READ);
|
|
|
|
|
# endif
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--debug-exit-on-error", CB(arg_handle_debug_exit_on_error), nullptr);
|
2020-11-06 10:29:06 +11:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--verbose", CB(arg_handle_verbosity_set), nullptr);
|
2020-11-06 10:29:06 +11:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--app-template", CB(arg_handle_app_template), nullptr);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--factory-startup", CB(arg_handle_factory_startup_set), nullptr);
|
|
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--enable-event-simulate", CB(arg_handle_enable_event_simulate), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-10-28 12:58:27 +11:00
|
|
|
/* Pass: Custom Window Stuff. */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_pass_set(ba, ARG_PASS_SETTINGS_GUI);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, "-p", "--window-geometry", CB(arg_handle_window_geometry), nullptr);
|
|
|
|
|
BLI_args_add(ba, "-w", "--window-border", CB(arg_handle_with_borders), nullptr);
|
|
|
|
|
BLI_args_add(ba, "-W", "--window-fullscreen", CB(arg_handle_without_borders), nullptr);
|
|
|
|
|
BLI_args_add(ba, "-M", "--window-maximized", CB(arg_handle_window_maximized), nullptr);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--no-window-focus", CB(arg_handle_no_window_focus), nullptr);
|
|
|
|
|
BLI_args_add(ba, "-con", "--start-console", CB(arg_handle_start_with_console), nullptr);
|
|
|
|
|
BLI_args_add(ba, "-r", "--register", CB(arg_handle_register_extension), nullptr);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--register-allusers", CB(arg_handle_register_extension_all), nullptr);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--unregister", CB(arg_handle_unregister_extension), nullptr);
|
|
|
|
|
BLI_args_add(
|
|
|
|
|
ba, nullptr, "--unregister-allusers", CB(arg_handle_unregister_extension_all), nullptr);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--no-native-pixels", CB(arg_handle_native_pixels_set), ba);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-10-28 12:58:27 +11:00
|
|
|
/* Pass: Disabling Things & Forcing Settings. */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_pass_set(ba, ARG_PASS_SETTINGS_FORCE);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add_case(ba, "-noaudio", 1, nullptr, 0, CB(arg_handle_audio_disable), nullptr);
|
|
|
|
|
BLI_args_add_case(ba, "-setaudio", 1, nullptr, 0, CB(arg_handle_audio_set), nullptr);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-10-28 12:58:27 +11:00
|
|
|
/* Pass: Processing Arguments. */
|
2023-05-31 10:17:41 +10:00
|
|
|
/* NOTE: Use #WM_exit for these callbacks, not `exit()`
|
|
|
|
|
* so temporary files are properly cleaned up. */
|
2020-11-06 10:29:06 +11:00
|
|
|
BLI_args_pass_set(ba, ARG_PASS_FINAL);
|
|
|
|
|
BLI_args_add(ba, "-f", "--render-frame", CB(arg_handle_render_frame), C);
|
|
|
|
|
BLI_args_add(ba, "-a", "--render-anim", CB(arg_handle_render_animation), C);
|
|
|
|
|
BLI_args_add(ba, "-S", "--scene", CB(arg_handle_scene_set), C);
|
|
|
|
|
BLI_args_add(ba, "-s", "--frame-start", CB(arg_handle_frame_start_set), C);
|
|
|
|
|
BLI_args_add(ba, "-e", "--frame-end", CB(arg_handle_frame_end_set), C);
|
|
|
|
|
BLI_args_add(ba, "-j", "--frame-jump", CB(arg_handle_frame_skip_set), C);
|
|
|
|
|
BLI_args_add(ba, "-P", "--python", CB(arg_handle_python_file_run), C);
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--python-text", CB(arg_handle_python_text_run), C);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--python-expr", CB(arg_handle_python_expr_run), C);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--python-console", CB(arg_handle_python_console_run), C);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--python-exit-code", CB(arg_handle_python_exit_code_set), nullptr);
|
|
|
|
|
BLI_args_add(ba, nullptr, "--addons", CB(arg_handle_addons_set), C);
|
2020-11-06 10:29:06 +11:00
|
|
|
|
|
|
|
|
BLI_args_add(ba, "-o", "--render-output", CB(arg_handle_output_set), C);
|
|
|
|
|
BLI_args_add(ba, "-E", "--engine", CB(arg_handle_engine_set), C);
|
|
|
|
|
|
|
|
|
|
BLI_args_add(ba, "-F", "--render-format", CB(arg_handle_image_type_set), C);
|
|
|
|
|
BLI_args_add(ba, "-x", "--use-extension", CB(arg_handle_extension_set), C);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2023-08-02 15:34:45 +02:00
|
|
|
BLI_args_add(ba, nullptr, "--open-last", CB(arg_handle_load_last_file), C);
|
2021-03-01 14:36:52 +01:00
|
|
|
|
2016-02-28 05:10:00 +11:00
|
|
|
# undef CB
|
|
|
|
|
# undef CB_EX
|
2023-05-28 14:54:14 +10:00
|
|
|
# undef CB_ALL
|
2023-05-27 16:33:46 +10:00
|
|
|
|
2023-05-27 21:21:22 +10:00
|
|
|
# ifdef WITH_PYTHON
|
2023-05-27 16:33:46 +10:00
|
|
|
/* Use for Python to extract help text (Python can't call directly - bad-level call). */
|
|
|
|
|
BPY_python_app_help_text_fn = main_args_help_as_string;
|
2023-10-05 12:57:29 +11:00
|
|
|
# else
|
|
|
|
|
/* Quiet unused function warning. */
|
|
|
|
|
(void)main_args_help_as_string;
|
2023-05-27 21:21:22 +10:00
|
|
|
# endif
|
2016-02-28 05:10:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \} */
|
|
|
|
|
|
2023-12-07 10:35:23 +11:00
|
|
|
#endif /* !WITH_PYTHON_MODULE */
|