dxx-rebirth/editor/func.c
2006-03-20 16:43:15 +00:00

133 lines
2.6 KiB
C
Executable file

/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
* $Source: /cvsroot/dxx-rebirth/d1x-rebirth/editor/func.c,v $
* $Revision: 1.1.1.1 $
* $Author: zicodxx $
* $Date: 2006/03/17 19:45:28 $
*
* .
*
* $Log: func.c,v $
* Revision 1.1.1.1 2006/03/17 19:45:28 zicodxx
* initial import
*
* Revision 1.1.1.1 1999/06/14 22:03:05 donut
* Import of d1x 1.37 source.
*
* Revision 1.1 1994/11/21 14:13:17 matt
* Initial revision
*
* Revision 1.1 1993/11/15 12:28:17 john
* Initial revision
*
*
*/
#ifdef RCS
static char rcsid[] = "$Id: func.c,v 1.1.1.1 2006/03/17 19:45:28 zicodxx Exp $";
#endif
#include <stdlib.h>
#include <string.h>
#include "func.h"
#include "strutil.h"
#define MAX_PARAMS 10
static FUNCTION * func_table = NULL;
static int func_size = 0;
static int initialized = 0;
static int func_params[MAX_PARAMS];
int func_howmany()
{
return func_size;
}
void func_init( FUNCTION * funtable, int size )
{
if (!initialized)
{
initialized = 1;
func_table = funtable;
func_size = size;
atexit( func_close );
}
}
void func_close()
{
if (initialized)
{
initialized = 0;
func_table = NULL;
func_size = 0;
}
}
int (*func_get( char * name, int * numparams ))(void)
{
int i;
for (i=0; i<func_size; i++ )
if (!stricmp( name, func_table[i].name ))
{
*numparams = func_table[i].nparams;
return func_table[i].cfunction;
}
return NULL;
}
int func_get_index( char * name )
{
int i;
for (i=0; i<func_size; i++ )
if (!stricmp( name, func_table[i].name ))
{
return i;
}
return -1;
}
int (*func_nget( int func_number, int * numparams, char **name ))(void)
{
if (func_number < func_size )
{
*name = func_table[func_number].name;
*numparams = func_table[func_number].nparams;
return func_table[func_number].cfunction;
}
return NULL;
}
void func_set_param( int n, int value )
{
func_params[n] = value;
}
int func_get_param( int n )
{
return func_params[n];
}