mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-10 06:31:40 +00:00
Update username in comments
This commit is contained in:
parent
b50603d1b6
commit
1c269181aa
17 changed files with 23 additions and 28 deletions
|
@ -609,7 +609,7 @@ void HUD_Rounds (void)
|
|||
x_offset = 0;
|
||||
savex = 0;
|
||||
|
||||
// Round and Title text - moto
|
||||
// Round and Title text - cypress
|
||||
// extra creds to scatterbox for some x/y vals
|
||||
// ------------------
|
||||
// First, fade from white to red, ~3s duration
|
||||
|
@ -676,7 +676,7 @@ void HUD_Rounds (void)
|
|||
}
|
||||
}
|
||||
// ------------------
|
||||
// End Round and Title text - moto
|
||||
// End Round and Title text - cypress
|
||||
|
||||
if (cl.stats[STAT_ROUNDCHANGE] == 1)//this is the rounds icon at the middle of the screen
|
||||
{
|
||||
|
|
|
@ -333,7 +333,7 @@ void CL_BaseMove (usercmd_t *cmd)
|
|||
|
||||
Q_memset (cmd, 0, sizeof(*cmd));
|
||||
|
||||
// Moto - we handle movespeed in QC now.
|
||||
// cypress - we handle movespeed in QC now.
|
||||
cl_backspeed = cl_forwardspeed = cl_sidespeed = sv_player->v.maxspeed;
|
||||
|
||||
// Throttle side and back speeds
|
||||
|
|
|
@ -2,4 +2,4 @@ this is a PSP VFPU accelerated math library required if the PSP_VFPU Dflag
|
|||
is set. original library by mrmrice, made standalone by tufty
|
||||
https://github.com/tufty/libpspmath
|
||||
|
||||
- motolegacy (2/3/2021)
|
||||
- cypress (2/3/2021)
|
||||
|
|
|
@ -3584,7 +3584,7 @@ void M_Credits_Draw (void)
|
|||
Draw_ColoredString(10, 75, "Biodude: Sounds", 255, 255, 255, 255, 1);
|
||||
Draw_ColoredString(10, 85, "Dr_Mabuse1981: Coding", 255, 255, 255, 255, 1);
|
||||
Draw_ColoredString(10, 95, "Naievil: Coding, NX Maintaining", 255, 255, 255, 255, 1);
|
||||
Draw_ColoredString(10, 105, "MotoLegacy: Coding, GFX, Music", 255, 255, 255, 255, 1);
|
||||
Draw_ColoredString(10, 105, "Cypress: Coding, GFX, Music", 255, 255, 255, 255, 1);
|
||||
Draw_ColoredString(10, 115, "Derped_Crusader: Models, GFX", 255, 255, 255, 255, 1);
|
||||
|
||||
Draw_ColoredString(10, 135, "Special Thanks:", 255, 255, 255, 255, 1);
|
||||
|
|
|
@ -1835,7 +1835,7 @@ Close_Waypoint
|
|||
|
||||
void Close_Waypoint (string, string, string, string, string, string, string, string)
|
||||
|
||||
moto - basically a carbon copy of open_waypoint lol
|
||||
cypress - basically a carbon copy of open_waypoint lol
|
||||
=================
|
||||
*/
|
||||
void Close_Waypoint (void)
|
||||
|
|
|
@ -158,7 +158,7 @@ static void CD_f (void)
|
|||
Con_Printf("Based On sceMp3 Lib\n");
|
||||
Con_Printf("Additional fixed by\n");
|
||||
Con_Printf("dr_mabuse1981 and Baker.\n");
|
||||
Con_Printf("string support: motolegacy.\n");
|
||||
Con_Printf("string support: cypress.\n");
|
||||
Con_Printf("\n");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -60,11 +60,6 @@ int sys_psp_model;
|
|||
|
||||
void Sys_ReadCommandLineFile (char* netpath);
|
||||
|
||||
/*
|
||||
MOTO - Can't go above heap of 10MB on PHAT models.. which is an issue, in theory
|
||||
we should be able to cap at a heap size 14MB.. oh well.
|
||||
*/
|
||||
|
||||
#define printf pspDebugScreenPrintf
|
||||
#define MIN_HEAP_MB 6
|
||||
#define MAX_HEAP_MB (PSP_HEAP_SIZE_MB-1)
|
||||
|
|
|
@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
//
|
||||
// 12/5/2020 - Use ADQuake's system.cpp and its move from std to sceIO for file I/O
|
||||
// because std::fclose() is bunked -- motolegacy
|
||||
// because std::fclose() is bunked -- cypress
|
||||
// creds to st1x51
|
||||
//
|
||||
|
||||
|
|
|
@ -299,7 +299,7 @@ extern cvar_t r_decal_sparks;
|
|||
extern cvar_t r_decal_explosions;
|
||||
extern cvar_t r_coronas;
|
||||
|
||||
// MotoLegacy - simplified cvars for decals/particles (5/27/2020)
|
||||
// cypress - simplified cvars for decals/particles (5/27/2020)
|
||||
// almost 3 years, wowza! - ivy~ (03 feb 2023)
|
||||
extern cvar_t r_runqmbparticles;
|
||||
|
||||
|
|
|
@ -2421,7 +2421,7 @@ float pap_detr(int weapon)
|
|||
return 0;
|
||||
}
|
||||
|
||||
// MotoLegacy - Raygun barrel trail
|
||||
// cypress - Raygun barrel trail
|
||||
void QMB_RayFlash(vec3_t org, float weapon)
|
||||
{
|
||||
// if we're ADS, just flat out end here to avoid useless calcs/defs
|
||||
|
|
|
@ -589,7 +589,7 @@ void Draw_Character (int x, int y, int num)
|
|||
Draw_CharacterRGBA
|
||||
|
||||
This is the same as Draw_Character, but with RGBA color codes.
|
||||
- MotoLegacy
|
||||
- cypress
|
||||
================
|
||||
*/
|
||||
extern cvar_t scr_coloredtext;
|
||||
|
@ -1458,7 +1458,7 @@ static int HexToInt(char c)
|
|||
return -1;
|
||||
}
|
||||
|
||||
// Creds to UP Team for scale code - Moto
|
||||
// Creds to UP Team for scale code - cypress
|
||||
void Draw_ColoredString(int x, int y, char *text, float r, float g, float b, float a, int scale)
|
||||
{
|
||||
int num;
|
||||
|
@ -1480,7 +1480,7 @@ void Draw_ColoredString(int x, int y, char *text, float r, float g, float b, flo
|
|||
for ( ; *text; text++)
|
||||
{
|
||||
|
||||
// MotoLegacy - Added 0-255 RGBA support (5/26/2020)
|
||||
// cypress - Added 0-255 RGBA support (5/26/2020)
|
||||
sceGuColor(GU_COLOR(r/255, g/255, b/255, a/255));
|
||||
|
||||
num = *text & 255;
|
||||
|
|
|
@ -163,7 +163,7 @@ cvar_t r_flametype = {"r_flametype", "2",qtrue};
|
|||
//Shpuld
|
||||
cvar_t r_model_brightness = { "r_model_brightness", "1", qtrue}; // Toggle high brightness model lighting
|
||||
|
||||
//MotoLegacy
|
||||
//cypress
|
||||
cvar_t r_runqmbparticles = {"r_runqmbparticles", "1", qtrue};
|
||||
|
||||
extern cvar_t cl_maxfps;
|
||||
|
@ -1262,7 +1262,7 @@ void R_SetupAliasBlendedFrame (int frame, aliashdr_t *paliashdr, entity_t* e)
|
|||
}
|
||||
|
||||
// HACK: if we're a certain distance away, don't bother blending
|
||||
// motolegacy -- Lets not care about Z (up).. chances are they're out of the frustum anyway
|
||||
// cypress -- Lets not care about Z (up).. chances are they're out of the frustum anyway
|
||||
int dist_x = (cl.viewent.origin[0] - e->origin[0]);
|
||||
int dist_y = (cl.viewent.origin[1] - e->origin[1]);
|
||||
int distance_from_client = (int)((dist_x) * (dist_x) + (dist_y) * (dist_y)); // no use sqrting, just slows us down.
|
||||
|
|
|
@ -1226,7 +1226,7 @@ void Mod_LoadFaces (lump_t *l)
|
|||
else
|
||||
out->samples = loadmodel->lightdata + (i);
|
||||
|
||||
// motolegacy -- moved from video_hardware_surface
|
||||
// cypress -- moved from video_hardware_surface
|
||||
// modified to use new TEXFLAG hacky fields and have
|
||||
// surfs use the same shabang.
|
||||
const char* tex_name = out->texinfo->texture->name;
|
||||
|
@ -1269,7 +1269,7 @@ void Mod_LoadFaces (lump_t *l)
|
|||
|
||||
continue;
|
||||
}
|
||||
// motolegacy -- end modification
|
||||
// cypress -- end modification
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2512,7 +2512,7 @@ void Mod_LoadAliasModel (model_t *mod, void *buffer)
|
|||
end = Hunk_LowMark ();
|
||||
total = end - start;
|
||||
|
||||
// motolegacy -- in rare instances the viewmodel is able to fuck this
|
||||
// cypress -- in rare instances the viewmodel is able to fuck this
|
||||
// up and try to allocate.. again.. let's tell it no and add this bound
|
||||
if (!mod->cache.data)
|
||||
Cache_Alloc (&mod->cache, total, loadname);
|
||||
|
|
|
@ -371,7 +371,7 @@ typedef struct {
|
|||
maliasframedesc_t frames[1]; // variable sized
|
||||
} aliashdr_t;
|
||||
|
||||
// MOTO - ADQuake has MAXALIASVERTS set to 5120.. why?
|
||||
// cypress - ADQuake has MAXALIASVERTS set to 5120.. why?
|
||||
#define MAXALIASVERTS 2048
|
||||
#define MAXALIASFRAMES 256
|
||||
#define MAXALIASTRIS 2048
|
||||
|
|
|
@ -969,7 +969,7 @@ char *ReturnLoadingtex (void)
|
|||
return "Also check out \"No Bugs Allowed\" for the PSP!";
|
||||
break;
|
||||
case 35:
|
||||
return "MotoLegacy, or \"Ivy\", is from the USA.";
|
||||
return "Cypress, or \"Ivy\", is from the USA.";
|
||||
break;
|
||||
case 36:
|
||||
return "Zombies don't like bullets.";
|
||||
|
|
|
@ -935,7 +935,7 @@ void R_RenderBrushPoly (msurface_t *fa)
|
|||
if (verts_count <= 0)
|
||||
return;
|
||||
|
||||
// motolegacy -- use our new texflag hack
|
||||
// cypress -- use our new texflag hack
|
||||
if (fa->flags & TEXFLAG_NODRAW)
|
||||
return;
|
||||
|
||||
|
@ -948,7 +948,7 @@ void R_RenderBrushPoly (msurface_t *fa)
|
|||
DrawGLPoly(fa->polys);
|
||||
break;
|
||||
}
|
||||
// motolegacy -- end texflags
|
||||
// cypress -- end texflags
|
||||
|
||||
// Manage lightmap chain
|
||||
if (num_lightmapped_faces < MAX_VISIBLE_LIGHTMAPPED_FACES)
|
||||
|
|
|
@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#include "quakedef.h"
|
||||
|
||||
// motolegacy -- who the fuck needs a 250kB zone block?? what?? restoring to 50kB.
|
||||
// cypress -- who the fuck needs a 250kB zone block?? what?? restoring to 50kB.
|
||||
#define DYNAMIC_SIZE 0xc000
|
||||
|
||||
#define ZONEID 0x1d4a11
|
||||
|
|
Loading…
Reference in a new issue