const char *target = ValueForKey(e, "target");
bool bIsSpotLight = !!target[0];
//!\todo Write an API for modules to register preference settings, and make this preference module-specific.
- int nPasses = pref == 1 ? 3 : 2;
+ // int nPasses = pref == 1 ? 3 : 2;
g_QglTable.m_pfn_qglPushAttrib(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
g_QglTable.m_pfn_qglDepthMask(GL_FALSE);
void DrawLight(entity_t* e, int nGLState, int pref, int nViewType)
{
- int i;
+// int i;
// top, bottom, tleft, tright, bright, bleft
vec3_t points[6];
vec3_t vMid, vMin, vMax;
g_QglTable.m_pfn_qglLineStipple(8, 0xAAAA);
g_QglTable.m_pfn_qglEnable(GL_LINE_STIPPLE);
- float* envelope = (pref == 1) ? e->fLightEnvelope1 : e->fLightEnvelope2;
+ float* envelope = (pref == 1) ? e->fLightEnvelope1 : e->fLightEnvelope2;
for (int iPass = 0; iPass < nPasses; iPass++)
{
float fRadius = envelope[iPass];
void LoadM32(const char *name, unsigned char **pic, int *width, int *height)
{
- FILE *f;
+// FILE *f;
m32_header_t *m32_header;
//rgb_t *palette;
int i, num_pixels, size;
- char text_buf[255];
+// char text_buf[255];
unsigned int length;
unsigned char *palette_ent, *buf_temp;
unsigned char *buffer, *m32_file_buffer;
// open file
- if ( length = vfsLoadFile ((char *) name, (void **) &m32_file_buffer, 0) == (unsigned int) -1)
+ if ( (length = vfsLoadFile ((char *) name, (void **) &m32_file_buffer, 0)) == (unsigned int) -1)
{
Sys_Printf("Unable to open file %s\n",name);
return;
void LoadM8(const char *name, unsigned char **pic, int *width, int *height)
{
- FILE *f;
+// FILE *f;
m8_header_t *m8_header;
rgb_t *palette;
int i, num_pixels, size;
strcat(text_buf, ".pcx.m8");
// open file
- if ( length = vfsLoadFile ((char *) text_buf, (void **) &m8_file_buffer, 0) == (unsigned int) -1)
+ if ( (length = vfsLoadFile ((char *) text_buf, (void **) &m8_file_buffer, 0)) == (unsigned int) -1)
{
strcpy(text_buf, name);
for(i=(strlen(text_buf)-1); i>0; i--)
return;
}
}
-
+
m8_header = (m8_header_t *)m8_file_buffer;
// make sure we have a valid M8 file
void LoadWAL(const char *name, unsigned char **pic, int *width, int *height)
{
- FILE *f;
+// FILE *f;
miptex_t *wal_header;
- rgb_t *palette;
+// rgb_t *palette;
int i, num_pixels, size;
- char text_buf[255];
+// char text_buf[255];
unsigned int length;
unsigned char *palette_ent, *buf_temp;
unsigned char *buffer, *wal_file_buffer;
// open file
- if ( length = vfsLoadFile ((char *) name, (void **) &wal_file_buffer, 0) == (unsigned int) -1)
+ if ( (length = vfsLoadFile ((char *) name, (void **) &wal_file_buffer, 0)) == (unsigned int) -1)
{
Sys_Printf("Unable to open file %s\n",name);
return;
void Entity_Parse(entity_t *pEntity)
{
brush_t *pBrush;
- CPtrArray *brushes = NULL;
+// CPtrArray *brushes = NULL;
char temptoken[1024];
char *token = Token();
if(!strncmp(str, "textures/", 9)) str+=9;
out->printf("patchDef2\n{\n%s\n( %i %i 0 0 0 )\n",
str, pPatch->width, pPatch->height);
-
+
// write matrix
out->printf("(\n");
for(i=0; i<pPatch->width; i++)
if (g_MapVersion == MAPVERSION_HL)
{
char *pos;
- while ( pos = (char*)strchr( str, '/' ) ) {
+ while ( (pos = (char*)strchr( str, '/' )) != NULL ) {
str = pos+1; // to speed optimize, change the "while" to an "if"
}
}
Copyright (c) 2001, Loki software, inc.
All rights reserved.
-Redistribution and use in source and binary forms, with or without modification,
+Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
-Redistributions of source code must retain the above copyright notice, this list
+Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
-Neither the name of Loki software nor the names of its contributors may be used
-to endorse or promote products derived from this software without specific prior
-written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
-DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+Neither the name of Loki software nor the names of its contributors may be used
+to endorse or promote products derived from this software without specific prior
+written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
+DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
//
_QERScripLibTable g_ScripLibTable;
_QERBrushTable g_BrushTable;
-static bool g_bInterfaceInitDone = false;
+// static bool g_bInterfaceInitDone = false;
// =============================================================================
// SYNAPSE
CSynapseServer* g_pSynapseServer = NULL;
CSynapseClientShaders g_SynapseClient;
-static const XMLConfigEntry_t entries[] =
- {
+static const XMLConfigEntry_t entries[] =
+ {
{ SHADERS_MAJOR, SYN_PROVIDE, sizeof(_QERShadersTable), NULL },
{ VFS_MAJOR, SYN_REQUIRE, sizeof(g_VFSTable), &g_VFSTable },
{ NULL, SYN_UNKNOWN, 0, NULL } };
g_pSynapseServer = pServer;
g_pSynapseServer->IncRef();
Set_Syn_Printf(g_pSynapseServer->Get_Syn_Printf());
-
+
if ( !g_SynapseClient.ConfigXML( pServer, NULL, entries ) ) {
return NULL;
}
-
+
g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);
g_SynapseClient.AddAPI(DATA_MAJOR, NULL, sizeof(_QERAppDataTable), SYN_REQUIRE, &g_DataTable);
g_SynapseClient.AddAPI(QGL_MAJOR, NULL, sizeof(_QERQglTable), SYN_REQUIRE, &g_QglTable);
{
texdef_t* tmp_texdef;
texdef_to_face_t* temp_texdef_face_list;
- char buf[12];
+// char buf[12];
char texture_name[128];
if (texdef_face_list_empty())
{
temp_texdef_face_list = get_texdef_face_list()->next;
- for (temp_texdef_face_list; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
+ for (; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
{
tmp_texdef = &temp_texdef_face_list->texdef;
if ( texdef_SI_values.shift[0] != tmp_texdef->shift[0] )
texdef_to_face_t* temp_texdef_face_list;
char blank[1];
GList *items = NULL;
- GList *tmp_item;
+// GList *tmp_item;
int num_of_list_items = 0;
blank[0] = 0;
if (!texdef_face_list_empty())
{
- texdef_to_face_t* p = get_texdef_face_list();
+// texdef_to_face_t* p = get_texdef_face_list();
GetSelFacesTexdef( get_texdef_face_list() );
}
static void on_axial_button_clicked (GtkButton *button, gpointer user_data)
{
texdef_t* tmp_texdef;
- texdef_t* tmp_orig_texdef;
+// texdef_t* tmp_orig_texdef;
texdef_to_face_t* temp_texdef_face_list;
if (!texdef_face_list_empty() && g_bListenChanged)
{
temp_texdef_face_list = get_texdef_face_list()->next;
- for (temp_texdef_face_list; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
+ for (; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
{
tmp_texdef = &temp_texdef_face_list->texdef;
if ( texdef_SI_values.shift[0] != tmp_texdef->shift[0] )
{
texdef_t* tmp_texdef;
texdef_to_face_t* temp_texdef_face_list;
- char buf[12];
+// char buf[12];
char texture_name[128];
if (texdef_face_list_empty())
{
temp_texdef_face_list = get_texdef_face_list()->next;
- for (temp_texdef_face_list; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
+ for (; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
{
tmp_texdef = &temp_texdef_face_list->texdef;
if ( texdef_SI_values.shift[0] != tmp_texdef->shift[0] )
texdef_to_face_t* temp_texdef_face_list;
char blank[1];
GList *items = NULL;
- GList *tmp_item;
+// GList *tmp_item;
int num_of_list_items = 0;
blank[0] = 0;
if (!texdef_face_list_empty())
{
- texdef_to_face_t* p = get_texdef_face_list();
+// texdef_to_face_t* p = get_texdef_face_list();
GetSelFacesTexdef( get_texdef_face_list() );
}
static void on_axial_button_clicked (GtkButton *button, gpointer user_data)
{
texdef_t* tmp_texdef;
- texdef_t* tmp_orig_texdef;
+// texdef_t* tmp_orig_texdef;
texdef_to_face_t* temp_texdef_face_list;
if (!texdef_face_list_empty() && g_bListenChanged)
{
temp_texdef_face_list = get_texdef_face_list()->next;
- for (temp_texdef_face_list; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
+ for (; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
{
tmp_texdef = &temp_texdef_face_list->texdef;
if ( texdef_SI_values.shift[0] != tmp_texdef->shift[0] )
iMode = -1;
texturing = false;
break;
+ default:
+ return;
}
g_qeglobals.d_savedinfo.iTexMenu = iMenu;