Jump to content

Home

Select Random Client


Cohsty243

Recommended Posts

I am trying to select a random client or rather a random client number, Like so:

//Choose a random client and set his values
int randNum;
do {
		randNum = Q_irand ( 0, level.maxclients );
} while ( !level.clients[randNum] )

However I don't know if this works or if its efficient. What I am trying to do is make Q_irand return a random client number that is 0 through the highest client number which i believe is level.maxclients, but I am unsure.

 

I am also unsure whether or not this is including connected, intermission, or playing clients. I think it is all of the above. I could probably do a check with sessions right?

 

I added the condition (!level.clients[randNum]) because I wanted to make sure that a client actually existed at the number. not sure if that method is correct though.

 

I have another question too..

Okay say there are 3 clients. client[0], client[1], and client[2].

If client[1] disconnects, will the clientnumber of client[2] decrease to client[1]?

Or, if client[1] disconnects and a new client connects, does he replace client[1]'s slot?

 

I think what I am basically trying to ask is that, will there ever be times when the client numbers are NOT consecutive? like 1,4,5,6,7?

Link to comment
Share on other sites

Hey Cohsty, I'd do it this way.

 

I'd create a list of clients that are pickable from and store them in an array such as:

 

int selectableClients[MAX_CLIENTS];

 

I'd go through the list of the entities from 0 to < MAX_CLIENTS and then check if they are:

 

ent && ent->client,

 

g_entities.client->pers.connected == CON_CONNECTED,

 

g_entities.client->sess.sessionTeam != TEAM_SPECTATOR,

 

(and if you don't want it to be a bot)

!(g_entities.r.svFlags & SVF_BOT)

 

What is intermission, is that the time between siege defense/attack mode, between maps, or between cutscenes?

 

Ok, then as I go through the g_entities list I select the ones that meet all the criteria above and select their client nums with g_entities->client.ps.clientNum and store it in selectableClients all the while incrementing the numSelectableClients counter or something.

 

Then I'd use q_irand to select a number from 0 to numSelectableClients, and select the client that's stored in that slot. Something sort of like.

 

int chosen = q_irand(0, numSelectableClients);

 

gentity_t *chosenClient = &g_entities[selectableClients[chosen]];

 

I think that might be the optimal way of doing it, not sure though. As to your other question, I don't think replacements go on. A lot of server and client code stores relations code with the ent's num:

 

ent->grappleIndex = bob's client num;

 

Meaning that Bob put ent in one of those strangle hold melee anims that the Kyle boss does or you can do with g_debugmelee. If replacements took place, these sorts of stored values would become useless. Which brings up the question, what happens if there are 32 clients connected, and someone drops and another person takes their place? I think that's how it works but I'm not sure, I'm not sure how it gets rid of relations when a client does get replaced though. So I believe you can have client numbers that are non consecutive.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...