Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 93bcc3b3a6936d401afdb294e61943e0 > files > 133

drqueue-debug-0.64.1-3mdv2008.1.i586.rpm

//
// Copyright (C) 2001,2002,2003,2004 Jorge Daza Garcia-Blanes
//
// 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
//
// $Id: /drqueue/remote/trunk/turtlesg.h 2283 2005-05-10T14:56:00.331140Z oliverhotz $
//

#ifndef _TURTLESG_H_
#define _TURTLESG_H_

#include "constants.h"

#ifdef __CPLUSPLUS
extern "C" {
#endif

  struct turtlesgi {  /* Maya Script Generator Info */
    char renderdir[BUFFERLEN]; // -imageOutputPath
    char projectdir[BUFFERLEN]; // -projectPath
    char scene[BUFFERLEN]; // -gemoetry
    char image[BUFFERLEN]; // -imageName
    char scriptdir[BUFFERLEN];
    char file_owner[BUFFERLEN];
    char camera[BUFFERLEN]; // -camera
    //int  resx, resy; // -resolution x y
    char resx[BUFFERLEN];
    char resy[BUFFERLEN];
    char format[BUFFERLEN];
    char usemaya70; // 1 if we should render with Maya 7.0, 0 for Maya 6.5
    // char precommand[BUFFERLEN]; // allows a prerender command (mel script) to be executed before the render
    // char postcommand[BUFFERLEN]; // allows a postrender command (mel script to be executed after the render
  };

  char *turtlesg_create (struct turtlesgi *info);

  char *turtlesg_default_script_path (void);

#ifdef __CPLUSPLUS
}
#endif

#endif /* _MAYASG_H_ */