Can we get randomness in linked lists?. I'm implementing space shooter game in which enemies should shoot bullets randomly. I'm storing enemies in linked lists, I want to select some enemies randomly and shoot from them. How can I do this with linked lists?
|
migrated from gamedev.stackexchange.com Nov 19 '12 at 6:54
|
If you know precisely how many items are in your list, and how many you want to have shooting every frame, there's actually a relatively straightforward way of doing this: for each item, if there are k things left out of a list of N, and p items left to shoot out of a total of Q, then the current item should shoot with probability p/k - and then the values of k and p should be updated. The pseudocode for this looks like:
Note that I'm assuming that random(N) returns a number between 0 and N-1 inclusive; i.e., one of N things. While this algorithm seems like it should choose different items with different probabilities (after all, the check of a random number is changing for each item!), it can be shown mathematically that this not only chooses each individual shooter with the right probability, each set of shooters is actually equally likely. |
|||||
|
|
Randomizing a number N and then making ship N shoot is not the right way to go about this in my humble opinion. First, it means one ship will shoot every frame or every turn which is not necessarily what you are going for. The problem with that being that no matter how many enemies are on the screen, the amount of shots fired will be the same. Weather you have 1 enemy or 100, the rate of fire coming from all enemies put together will be exactly one shot per turn/frame which makes no sense game design wise. It also means a ship may not fire for 2xN turns sometimes(this is kind of like the old martial art movies where the bad guys wait in line to fight with the 'hero' and never attack simultaneously). The good way in my opinion would be to iterated over the ships and make each one fire with a certain probability, preferably based on the last time it fired.
There is hardly any point iterating over N elements if you don't use that opportunity. If you use a list it means you are planning to iterate over all the enemies and update each of them. No point in iterating again over N of them, just to pick one to fire. |
||||
|
|
|
You could just start from the first node and call n amount of " next ". pseudo code:
Perhaps you can add a second container like an array/arraylist/vector and manage it from there...You could always ask your professor if that's ok with him/her. |
|||
|
|