r5937 - in trunk/data: . models/domination qcsrc/server textures textures/domination

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Feb 23 17:05:24 EST 2009


Author: m0rfar
Date: 2009-02-23 17:05:22 -0500 (Mon, 23 Feb 2009)
New Revision: 5937

Added:
   trunk/data/textures/domination/
   trunk/data/textures/domination/dom_base.jpg
   trunk/data/textures/domination/dom_base_gloss.jpg
   trunk/data/textures/domination/dom_base_glow.jpg
   trunk/data/textures/domination/dom_base_norm.jpg
   trunk/data/textures/domination/dom_blue.tga
   trunk/data/textures/domination/dom_pink.tga
   trunk/data/textures/domination/dom_red.tga
   trunk/data/textures/domination/dom_unclaimed.tga
   trunk/data/textures/domination/dom_yellow.tga
Removed:
   trunk/data/models/domination/dom_axe.tga
   trunk/data/models/domination/dom_axe_luma.tga
   trunk/data/models/domination/dom_bolt.tga
   trunk/data/models/domination/dom_bomb.tga
   trunk/data/models/domination/dom_neutral.tga
   trunk/data/models/domination/dom_symbol.tga
   trunk/data/models/domination/dom_symbol2.tga
   trunk/data/models/domination/dom_target.tga
Modified:
   trunk/data/defaultNexuiz.cfg
   trunk/data/models/domination/dom_blue.md3
   trunk/data/models/domination/dom_pink.md3
   trunk/data/models/domination/dom_red.md3
   trunk/data/models/domination/dom_unclaimed.md3
   trunk/data/models/domination/dom_yellow.md3
   trunk/data/qcsrc/server/constants.qh
   trunk/data/qcsrc/server/domination.qc
Log:
New dom points by ai
new cvar g_domination_point_fullbright default 0

Modified: trunk/data/defaultNexuiz.cfg
===================================================================
--- trunk/data/defaultNexuiz.cfg	2009-02-23 16:00:40 UTC (rev 5936)
+++ trunk/data/defaultNexuiz.cfg	2009-02-23 22:05:22 UTC (rev 5937)
@@ -27,7 +27,7 @@
 seta g_configversion 0
 
 // default.cfg versioning (update using update-cvarcount.sh, run that every time after adding a new cvar)
-set cvar_check_default b0a00a4f304f7d8fad16a6146442f62d
+set cvar_check_default b47ac645ad97cf25d5d95b2b8be26e15
 
 // Nexuiz version (formatted for machines)
 // used to determine if a client version is compatible
@@ -598,6 +598,7 @@
 set g_domination_default_teams		2 "default number of teams for maps that aren't domination-specific"
 set g_domination_disable_frags		0 "players can't get frags normally, only get points from kills"
 set g_domination_point_amt		0 "override: how many points to get per ping"
+set g_domination_point_fullbright	0 "domination point fullbright"
 set g_domination_point_rate		0 "override: how often to give those points"
 set g_domination_point_capturetime	0.1 "how long it takes to capture a point (given no interference)"
 set g_domination_point_glow		0 "domination point glow (warning, slow)"

Deleted: trunk/data/models/domination/dom_axe.tga
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_axe_luma.tga
===================================================================
(Binary files differ)

Modified: trunk/data/models/domination/dom_blue.md3
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_bolt.tga
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_bomb.tga
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_neutral.tga
===================================================================
(Binary files differ)

Modified: trunk/data/models/domination/dom_pink.md3
===================================================================
(Binary files differ)

Modified: trunk/data/models/domination/dom_red.md3
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_symbol.tga
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_symbol2.tga
===================================================================
(Binary files differ)

Deleted: trunk/data/models/domination/dom_target.tga
===================================================================
(Binary files differ)

Modified: trunk/data/models/domination/dom_unclaimed.md3
===================================================================
(Binary files differ)

Modified: trunk/data/models/domination/dom_yellow.md3
===================================================================
(Binary files differ)

Modified: trunk/data/qcsrc/server/constants.qh
===================================================================
--- trunk/data/qcsrc/server/constants.qh	2009-02-23 16:00:40 UTC (rev 5936)
+++ trunk/data/qcsrc/server/constants.qh	2009-02-23 22:05:22 UTC (rev 5937)
@@ -1,4 +1,4 @@
-string CVAR_CHECK_DEFAULT = "b0a00a4f304f7d8fad16a6146442f62d";
+string CVAR_CHECK_DEFAULT = "b47ac645ad97cf25d5d95b2b8be26e15";
 string CVAR_CHECK_WEAPONS = "32e7dc7d745187473f0040d14892e2bb";
 
 float	FALSE					= 0;

Modified: trunk/data/qcsrc/server/domination.qc
===================================================================
--- trunk/data/qcsrc/server/domination.qc	2009-02-23 16:00:40 UTC (rev 5936)
+++ trunk/data/qcsrc/server/domination.qc	2009-02-23 22:05:22 UTC (rev 5937)
@@ -270,9 +270,9 @@
 		self.wait = 5;
 
 	if(!self.t_width)
-		self.t_width = 0.1; // frame animation rate
+		self.t_width = 0.02; // frame animation rate
 	if(!self.t_length)
-		self.t_length = 119; // maximum frame
+		self.t_length = 239; // maximum frame
 
 	self.think = dompointthink;
 	self.nextthink = time;
@@ -497,7 +497,9 @@
 
 	//if(!self.glow_size)
 	//	self.glow_size = cvar("g_domination_point_glow");
-	self.effects = self.effects | EF_FULLBRIGHT | EF_LOWPRECISION;
+	self.effects = self.effects | EF_LOWPRECISION;
+	if (cvar("g_domination_point_fullbright"))
+		self.effects |= EF_FULLBRIGHT;
 };
 
 // code from here on is just to support maps that don't have control point and team entities

Added: trunk/data/textures/domination/dom_base.jpg
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_base.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_base_gloss.jpg
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_base_gloss.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_base_glow.jpg
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_base_glow.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_base_norm.jpg
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_base_norm.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_blue.tga
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_blue.tga
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_pink.tga
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_pink.tga
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_red.tga
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_red.tga
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_unclaimed.tga
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_unclaimed.tga
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/data/textures/domination/dom_yellow.tga
===================================================================
(Binary files differ)


Property changes on: trunk/data/textures/domination/dom_yellow.tga
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




More information about the nexuiz-commits mailing list