Well i've found a way to fire bullets but the problem is if space bar is pressed it just show long continuous image of my ' bullet '.
-----------------------------------------
#define X_COL 0
#define Y_COL 1
#define EMPTY_CELL -1.0f
RenderWindow window(VideoMode(600, 600, 32), "Test 32");
float ammo[100][2];
int CALLBACK WinMain(_In_ HINSTANCE hInstance, _In_ HINSTANCE hPrevInstance, _In_ LPSTR lpCmdLine, _In_ int nCmdShow)
{
Texture texture;
Sprite sprite;
texture.loadFromFile("bullet.png");
sprite.setTexture(texture);
sprite.setPosition(window.getSize().x / 2, window.getSize().y / 2);
sprite.setOrigin(texture.getSize().x / 2, texture.getSize().y / 2);
sprite.setRotation(360);
#pragma region Initialize 'ammo'
for (int i = 0; i < 100; i++)
{
for (int j = 0; j < 2; j++)
{
ammo[i][j] = EMPTY_CELL;
}
}
#pragma endregion
thread thr;
int crntRound = 0;
float angle;
window.setKeyRepeatEnabled(false);
while (window.isOpen())
{
Event _event;
while (window.pollEvent(_event))
{
if (_event.type == Event::Closed)
window.close();
}
window.clear(Color::Black);
if (Keyboard::isKeyPressed(Keyboard::Space))
{
if (crntRound != 100)
{
ammo[crntRound][X_COL] = 300;
ammo[crntRound][Y_COL] = 300;
crntRound++;
}
else
{
crntRound = 0;
}
}
for (int i = 0; i < 100; i++)
{
if (ammo[i][X_COL] != EMPTY_CELL && ammo[i][Y_COL] != -EMPTY_CELL)
{
if (!(ammo[i][X_COL] > 600 || ammo[i][Y_COL] > 600))
sprite.setPosition(++ammo[i][X_COL], ammo[i][Y_COL]);
else
{
ammo[i][X_COL] = EMPTY_CELL;
ammo[i][Y_COL] = EMPTY_CELL;
}
}
window.draw(sprite);
}
window.display();
}
return 0;
}
You could also fire a bullet only when the user initially presses down on the space key
if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Space) {
//Launch here
}