gimp/plug-ins/gap/gap_frontends_main.c

351 lines
9.3 KiB
C
Raw Normal View History

/* gap_frontends_main.c
* 1999.11.20 hof (Wolfgang Hofer)
*
* GAP ... Gimp Animation Package
*
* This Module contains:
* - MAIN of GAP_Plugins that are frontends to external programs
* those external programs are not available for all
* operating systems.
*
* - query registration of GAP Procedures (Video Menu) in the PDB
* - run invoke the selected GAP procedure by its PDB name
*
*
* GAP provides Animation Functions for the gimp,
* working on a series of Images stored on disk in gimps .xcf Format.
*
* Frames are Images with naming convention like this:
* Imagename_<number>.<ext>
* Example: snoopy_0001.xcf, snoopy_0002.xcf, snoopy_0003.xcf
*
* if gzip is installed on your system you may optional
* use gziped xcf frames with extensions ".xcfgz"
*
*/
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
static char *gap_main_version = "1.1.11b; 1999/11/20";
/* revision history:
* gimp 1.1.11b; 1999/11/20 hof: added gap_decode_xanim, fixed typo in mpeg encoder menu path
* based on parts that were found in gap_main.c before.
*/
/* SYTEM (UNIX) includes */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
/* GIMP includes */
#include "gtk/gtk.h"
#include "config.h"
#include "libgimp/stdplugins-intl.h"
#include "libgimp/gimp.h"
/* GAP includes */
#include "gap_lib.h"
#include "gap_mpege.h"
#include "gap_decode_xanim.h"
#include "gap_arr_dialog.h"
/* ------------------------
* global gap DEBUG switch
* ------------------------
*/
/* int gap_debug = 1; */ /* print debug infos */
/* int gap_debug = 0; */ /* 0: dont print debug infos */
int gap_debug = 0;
static void query(void);
static void run(char *name, int nparam, GParam *param,
int *nretvals, GParam **retvals);
GPlugInInfo PLUG_IN_INFO =
{
NULL, /* init_proc */
NULL, /* quit_proc */
query, /* query_proc */
run, /* run_proc */
};
MAIN ()
static void
query ()
{
static GParamDef args_xanim[] =
{
{PARAM_INT32, "run_mode", "Interactive"},
{PARAM_IMAGE, "image", "(unused)"},
{PARAM_DRAWABLE, "drawable", "(unused)"},
};
static int nargs_xanim = sizeof(args_xanim) / sizeof(args_xanim[0]);
static GParamDef args_xanim_ext[] =
{
{PARAM_INT32, "run_mode", "Interactive"},
};
static int nargs_xanim_ext = sizeof(args_xanim_ext) / sizeof(args_xanim_ext[0]);
static GParamDef args_mpege[] =
{
{PARAM_INT32, "run_mode", "Interactive, non-interactive"},
{PARAM_IMAGE, "image", "Input image (one of the Anim Frames)"},
{PARAM_DRAWABLE, "drawable", "Input drawable (unused)"},
};
static int nargs_mpege = sizeof(args_mpege) / sizeof(args_mpege[0]);
static GParamDef *return_vals = NULL;
static int nreturn_vals = 0;
gimp_install_procedure("plug_in_gap_xanim_decode",
_("This plugin calls xanim to split any video to anim frames. (xanim exporting edition must be installed on your system)"),
"",
"Wolfgang Hofer (hof@hotbot.com)",
"Wolfgang Hofer",
gap_main_version,
1999-12-14 22:10:34 +08:00
N_("<Image>/Video/Split Video to Frames/Any XANIM readable..."),
"RGB*, INDEXED*, GRAY*",
PROC_PLUG_IN,
nargs_xanim, nreturn_vals,
args_xanim, return_vals);
gimp_install_procedure("extension_gap_xanim_decode",
_("This plugin calls xanim to split any video to anim frames. (xanim exporting edition must be installed on your system)"),
"",
"Wolfgang Hofer (hof@hotbot.com)",
"Wolfgang Hofer",
gap_main_version,
1999-12-14 22:10:34 +08:00
N_("<Toolbox>/Xtns/Split Video to Frames/Any XANIM readable..."),
"RGB*, INDEXED*, GRAY*",
PROC_EXTENSION,
nargs_xanim_ext, nreturn_vals,
args_xanim_ext, return_vals);
gimp_install_procedure("plug_in_gap_mpeg_encode",
_("This plugin calls mpeg_encode to convert anim frames to MPEG1, or just generates a param file for mpeg_encode. (mpeg_encode must be installed on your system)"),
"",
"Wolfgang Hofer (hof@hotbot.com)",
"Wolfgang Hofer",
gap_main_version,
N_("<Image>/Video/Encode/MPEG1..."),
"RGB*, INDEXED*, GRAY*",
PROC_PLUG_IN,
nargs_mpege, nreturn_vals,
args_mpege, return_vals);
gimp_install_procedure("plug_in_gap_mpeg2encode",
_("This plugin calls mpeg2encode to convert anim frames to MPEG1 or MPEG2, or just generates a param file for mpeg2encode. (mpeg2encode must be installed on your system)"),
"",
"Wolfgang Hofer (hof@hotbot.com)",
"Wolfgang Hofer",
gap_main_version,
1999-12-14 22:10:34 +08:00
N_("<Image>/Video/Encode/MPEG2..."),
"RGB*, INDEXED*, GRAY*",
PROC_PLUG_IN,
nargs_mpege, nreturn_vals,
args_mpege, return_vals);
} /* end query */
static void
run (char *name,
int n_params,
GParam *param,
int *nreturn_vals,
GParam **return_vals)
{
typedef struct
{
long lock; /* 0 ... NOT Locked, 1 ... locked */
gint32 image_id;
long timestamp; /* locktime not used for now */
} t_lockdata;
t_lockdata l_lock;
static char l_lockname[50];
char *l_env;
char l_extension[32];
char *l_basename_ptr;
char *l_palette_ptr;
static GParam values[2];
GRunModeType run_mode;
GStatusType status = STATUS_SUCCESS;
gint32 image_id;
gint32 nr;
long range_from, range_to;
gint32 inverse_order;
gint32 no_alpha;
long framerate;
#define FRAME_BASENAME_LEN 256
char frame_basename[FRAME_BASENAME_LEN];
gint32 l_rc;
*nreturn_vals = 1;
*return_vals = values;
nr = 0;
l_rc = 0;
l_env = g_getenv("GAP_DEBUG");
if(l_env != NULL)
{
if((*l_env != 'n') && (*l_env != 'N')) gap_debug = 1;
}
run_mode = param[0].data.d_int32;
image_id = -1;
if(gap_debug) fprintf(stderr, "\n\ngap_main: debug name = %s\n", name);
if (strcmp (name, "extension_gap_xanim_decode") != 0)
{
image_id = param[1].data.d_image;
/* check for locks */
l_lock.lock = 0;
sprintf(l_lockname, "plug_in_gap_plugins_LOCK_%d", (int)image_id);
gimp_get_data (l_lockname, &l_lock);
if((l_lock.lock != 0) && (l_lock.image_id == image_id))
{
fprintf(stderr, "gap_plugin is LOCKED for Image ID=%s\n", l_lockname);
status = STATUS_EXECUTION_ERROR;
values[0].type = PARAM_STATUS;
values[0].data.d_status = status;
return ;
}
/* set LOCK on current image (for all gap_plugins) */
l_lock.lock = 1;
l_lock.image_id = image_id;
gimp_set_data (l_lockname, &l_lock, sizeof(l_lock));
}
if (run_mode == RUN_NONINTERACTIVE) {
INIT_I18N();
} else {
INIT_I18N_UI();
}
if ((strcmp (name, "plug_in_gap_xanim_decode") == 0)
|| (strcmp (name, "extension_gap_xanim_decode") == 0))
{
if (run_mode == RUN_NONINTERACTIVE)
{
status = STATUS_CALLING_ERROR;
/* planed: define non interactive PARAMS */
}
if (status == STATUS_SUCCESS)
{
/* planed: define non interactive PARAMS */
l_rc = gap_xanim_decode(run_mode /* more PARAMS */);
}
}
else if (strcmp (name, "plug_in_gap_mpeg_encode") == 0)
{
if (run_mode == RUN_NONINTERACTIVE)
{
if (n_params != 3)
{
status = STATUS_CALLING_ERROR;
}
else
{
/* planed: define non interactive PARAMS */
l_extension[sizeof(l_extension) -1] = '\0';
}
}
if (status == STATUS_SUCCESS)
{
image_id = param[1].data.d_image;
/* planed: define non interactive PARAMS */
l_rc = gap_mpeg_encode(run_mode, image_id, MPEG_ENCODE /* more PARAMS */);
}
}
else if (strcmp (name, "plug_in_gap_mpeg2encode") == 0)
{
if (run_mode == RUN_NONINTERACTIVE)
{
if (n_params != 3)
{
status = STATUS_CALLING_ERROR;
}
else
{
/* planed: define non interactive PARAMS */
l_extension[sizeof(l_extension) -1] = '\0';
}
}
if (status == STATUS_SUCCESS)
{
image_id = param[1].data.d_image;
/* planed: define non interactive PARAMS */
l_rc = gap_mpeg_encode(run_mode, image_id, MPEG2ENCODE /* more PARAMS */);
}
}
/* ---------- return handling --------- */
if(l_rc < 0)
{
status = STATUS_EXECUTION_ERROR;
}
if (run_mode != RUN_NONINTERACTIVE)
gimp_displays_flush();
values[0].type = PARAM_STATUS;
values[0].data.d_status = status;
if (strcmp (name, "extension_gap_xanim_decode") != 0)
{
/* remove LOCK on this image for all gap_plugins */
l_lock.lock = 0;
l_lock.image_id = -1;
gimp_set_data (l_lockname, &l_lock, sizeof(l_lock));
}
}