Truly random items.
This commit is contained in:
parent
4293f09b10
commit
c3365d2766
|
@ -78,17 +78,29 @@ Entity *spawnItem(char *name)
|
||||||
|
|
||||||
void addRandomItem(int x, int y)
|
void addRandomItem(int x, int y)
|
||||||
{
|
{
|
||||||
Entity *e;
|
Entity *e, *def, *item;
|
||||||
|
|
||||||
e = spawnItem("smallCrate");
|
|
||||||
e->x = x;
|
|
||||||
e->y = y;
|
|
||||||
|
|
||||||
e->speed = 1;
|
def = item = e = NULL;
|
||||||
e->dx = rand() % 200 - rand() % 200;
|
|
||||||
e->dy = rand() % 200 - rand() % 200;
|
for (e = defHead.next ; e != NULL ; e = e->next)
|
||||||
e->dx *= 0.01;
|
{
|
||||||
e->dy *= 0.01;
|
if (!def || rand() % 2)
|
||||||
|
{
|
||||||
|
def = e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
item = spawnEntity();
|
||||||
|
memcpy(item, def, sizeof(Entity));
|
||||||
|
|
||||||
|
item->x = x;
|
||||||
|
item->y = y;
|
||||||
|
item->speed = 1;
|
||||||
|
item->dx = rand() % 200 - rand() % 200;
|
||||||
|
item->dy = rand() % 200 - rand() % 200;
|
||||||
|
item->dx *= 0.01;
|
||||||
|
item->dy *= 0.01;
|
||||||
|
item->action = action;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Entity *getItemDef(char *defName)
|
static Entity *getItemDef(char *defName)
|
||||||
|
|
Loading…
Reference in New Issue