Files
goo-engine/source/blender/io/gpencil_legacy/gpencil_io.h
T
Lukas Tönne 400c738db9 GPv3: Import and export for SVG and PDF
Implements the SVG import/export and PDF export operators for GPv3.

Pull Request: https://projects.blender.org/blender/blender/pulls/123996
2024-08-20 11:41:37 +02:00

87 lines
1.9 KiB
C

/* SPDX-FileCopyrightText: 2020 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
/** \file
* \ingroup bgpencil
*/
#ifdef __cplusplus
extern "C" {
#endif
struct ARegion;
struct Object;
struct View3D;
struct bContext;
typedef struct GpencilIOParams {
bContext *C;
ARegion *region;
View3D *v3d;
/** Grease pencil object. */
Object *ob;
/** Mode (see eGpencilIO_Modes). */
uint16_t mode;
int32_t frame_start;
int32_t frame_end;
int32_t frame_cur;
uint32_t flag;
float scale;
/** Select mode (see eGpencilExportSelect). */
uint16_t select_mode;
/** Frame mode (see eGpencilExportFrame). */
uint16_t frame_mode;
/** Stroke sampling factor. */
float stroke_sample;
int32_t resolution;
/** Filename to be used in new objects. */
char filename[128];
} GpencilIOParams;
/* GpencilIOParams->flag. */
typedef enum eGpencilIOParams_Flag {
/* Export Filled strokes. */
GP_EXPORT_FILL = (1 << 0),
/* Export normalized thickness. */
GP_EXPORT_NORM_THICKNESS = (1 << 1),
/* Clip camera area. */
GP_EXPORT_CLIP_CAMERA = (1 << 2),
} eGpencilIOParams_Flag;
typedef enum eGpencilIO_Modes {
GP_EXPORT_TO_SVG = 0,
GP_EXPORT_TO_PDF = 1,
GP_IMPORT_FROM_SVG = 2,
/* Add new formats here. */
} eGpencilIO_Modes;
/* Object to be exported. */
typedef enum eGpencilExportSelect {
GP_EXPORT_ACTIVE = 0,
GP_EXPORT_SELECTED = 1,
GP_EXPORT_VISIBLE = 2,
} eGpencilExportSelect;
/** Frame-range to be exported. */
typedef enum eGpencilExportFrame {
GP_EXPORT_FRAME_ACTIVE = 0,
GP_EXPORT_FRAME_SELECTED = 1,
GP_EXPORT_FRAME_SCENE = 2,
} eGpencilExportFrame;
/**
* Main export entry point function.
*/
bool gpencil_io_export(const char *filepath, struct GpencilIOParams *iparams);
/**
* Main import entry point function.
*/
bool gpencil_io_import(const char *filepath, struct GpencilIOParams *iparams);
#ifdef __cplusplus
}
#endif