libQFcsqc (I'm not adverse to renaming it) is born. so far, only provides

Cbuf builtins.
This commit is contained in:
Bill Currie 2002-01-20 04:09:36 +00:00
parent 14ac3acc17
commit 1168f1aa86
4 changed files with 154 additions and 1 deletions

37
include/QF/csqc.h Normal file
View file

@ -0,0 +1,37 @@
/*
csqc.h
CSQC prototypes
Copyright (C) 2001 Bill Currie
Author: Bill Currie
Date: 2002/1/19
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:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
$Id$
*/
#ifndef __QF_csqc_h
#define __QF_csqc_h
void BI_Init ();
#endif//__QF_csqc_h

View file

@ -2,7 +2,10 @@ AUTOMAKE_OPTIONS= foreign
INCLUDES= -I$(top_srcdir)/include
lib_LTLIBRARIES= libQFgamecode_builtins.la
lib_LTLIBRARIES= libQFgamecode_builtins.la libQFcsqc.la
libQFgamecode_builtins_la_LDFLAGS= -version-info 1:0:0
libQFgamecode_builtins_la_SOURCES= pr_cmds.c
libQFcsqc_la_LDFLAGS= -version-info 1:0:0
libQFcsqc_la_SOURCES= bi_init.c bi_cbuf.c

View file

@ -0,0 +1,71 @@
/*
bi_cbuf.c
CSQC cbuf builtins
Copyright (C) 1996-1997 Id Software, Inc.
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:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
static const char rcsid[] =
"$Id$";
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "QF/cmd.h"
#include "QF/progs.h"
static void
bi_Cbuf_AddText (progs_t *pr)
{
const char *text = G_STRING (pr, OFS_PARM0);
Cbuf_AddText (text);
}
static void
bi_Cbuf_InsertText (progs_t *pr)
{
const char *text = G_STRING (pr, OFS_PARM0);
Cbuf_InsertText (text);
}
static void
bi_Cbuf_Execute (progs_t *pr)
{
Cbuf_Execute ();
}
static void
bi_Cbuf_Execute_Sets (progs_t *pr)
{
Cbuf_Execute_Sets ();
}
void
Cbuf_Progs_Init (progs_t *pr)
{
PR_AddBuiltin (pr, "Cbuf_AddText", bi_Cbuf_AddText, -1);
PR_AddBuiltin (pr, "Cbuf_InsertText", bi_Cbuf_InsertText, -1);
PR_AddBuiltin (pr, "Cbuf_Execute", bi_Cbuf_Execute, -1);
PR_AddBuiltin (pr, "Cbuf_Execute_Sets", bi_Cbuf_Execute_Sets, -1);
}

View file

@ -0,0 +1,42 @@
/*
bi_init.c
CSQC builtins init
Copyright (C) 1996-1997 Id Software, Inc.
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:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
static const char rcsid[] =
"$Id$";
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "QF/cmd.h"
#include "QF/progs.h"
static void (*const cbuf_progs_init)(struct progs_s *) = Cbuf_Progs_Init;
void
BI_Init ()
{
// do nothing stub for now. used to force linking
}