Bug 3591 - function for toggling cvars between list of values
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: GIT MASTER
Hardware: All All
: P3 enhancement
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2008-04-05 07:28 EDT by /dev/humancontroller
Modified: 2009-09-15 01:44:56 EDT
1 user (show)

See Also:


Attachments
togglelist command (1.38 KB, patch)
2008-04-05 07:29 EDT, /dev/humancontroller
my alternative implementation (1.31 KB, patch)
2008-08-16 07:59 EDT, Ben Millwood

Description /dev/humancontroller 2008-04-05 07:28:44 EDT
syntax: togglelist <varname> <value> ...
This function will toggle a given cvar's value between the specified strings.

For example: togglelist cl_shownet -2 -1 0 1 2 3 4
That will change the printed net info verbosity. If the cvar was set to 0, then the next value it will be set to is 1.

Not sure if it should be called "togglelist" though.
Comment 1 /dev/humancontroller 2008-04-05 07:29:56 EDT
Created attachment 1721 [details]
togglelist command
Comment 2 Ben Millwood 2008-08-16 07:59:37 EDT
Created attachment 1821 [details]
my alternative implementation

This seems like a good idea, but in my opinion it's redundant to add a new command: it's always possible to tell which syntax we want by the number of arguments we have.

Here's my take on it then: an addition to the existing Cvar_Toggle_f
I also think my way of doing it is a little simpler than yours.
Comment 3 Ryan C. Gordon 2009-09-15 01:44:56 EDT
I decided to go with Ben's implementation. If this proves to break existing things, we can move it to a separate command name and function, though, so it won't anymore.

Fixed in svn revision #1617.

--ryan.