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.
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.
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.
Created attachment 1721 [details] togglelist command
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.