#Bondrusiek Simple SFML Games

1 messages · Page 1 of 1 (latest)

lucid stump
#

Simple Tetris-like game for 1,2,3,4,5-blocks.
Gameplay: https://youtu.be/QdhNQLQd8Cs
Source code: https://github.com/Przemekkkth/PolyominoSFML

GitHub

Simple Tetris-like game for 1,2,3,4,5-blocks. Contribute to Przemekkkth/PolyominoSFML development by creating an account on GitHub.

lucid stump
#

Bondrusiek Simple SFML Games

#

I changed post name to send new games here and I want to avoid to create too many post. Next one is Twini Golf:
Gameplay: https://youtu.be/yet749PrGvQ
Source code: https://github.com/Przemekkkth/TwiniGolfSFML

You are welcome!

GitHub

This is clone of TwiniGolf which is created in SFML. - GitHub - Przemekkkth/TwiniGolfSFML: This is clone of TwiniGolf which is created in SFML.

past grotto
#

This looks cool! Gotta give it a try 🙂

past grotto
#

Hehe, you have the sounds as *.ogg in the source, but then checked in mp3 files 😄

#

Oh, oh. Something is broken with the state machine. It keeps rendering the menu and the game on top of each other

#

Had to comment out the clear&display call in World::draw()

lucid stump
#

@past grotto Thank You for comment and info. I saw that You attach my projects in SFML News Post. That's nice for me 👍 . Something is broken with state machine in Twini-Golf, I just copied that code from Polyomino where everythink was good. For example I try to implement Pause State for Twini-Golf and when Pause(transparent image) starts , screen is flickering so I remove that. Maybe later I find solution. BTW. I see that you starred many SFML projects on github. Do You think the best option is use CMakeLists.txt(for cmake). This is the most popular, independent way to release SFML project? That's what developers experience? I dont know so asking. 🙂 Greetings

past grotto
#

There are definitely different opinions, but since CMake supports basically all platforms and compilers, it's the best overall option and has in recent years become a sort of defacto standard

lucid stump
#

New game :). Now, It is Worms
See gameplay: https://youtu.be/zZDiSESyBeg
Source code: https://github.com/Przemekkkth/WormsSFML

Worms is a classic game where several teams of worms use a variety of weaponry to elimiate each other from a randomly generated terrain. It based on video: https://www.youtube.com/watch?v=EHlaJvQpW3U&ab_channel=javidx9 (see this).

▶ Play video
GitHub

Worms is a classic game where several teams of worms use a variety of weaponry to elimiate each other from a randomly generated terrain. - GitHub - Przemekkkth/WormsSFML: Worms is a classic game wh...

lucid stump
#

Hi, I have questions. Do you know some tuts which help convert SFML projects to CMake. I use QtCreator to create project and I want to set my projects as generic as possible? I heard the best option is CMake.(May be others are better). Secondly I want to know how can distribute my apps. For example: Linux, Windows, MacOs, WebAssembly(this is probably not possible). Do you know some articles, tuts about that? I want to host this projects to people can download and play their.

past grotto
copper saffronBOT
lucid stump
#

Hi, It works but I am not sure that correct way. I use cmake to build Polyomino. This project uses subdirectories with source/header code. Part of CMakeLists.txt

include_directories(src/GUI)
include_directories(src/SFX)
...
include_directories(src/utils)

add_executable(PolyominoSFML 
    src/GUI/button.h 
    src/GUI/component.h 
    ...
    src/states/state_stack.cpp 
    src/states/title_state.cpp 
    src/world.cpp 

I include directories and next i use absolute path to them i.e src/GUI/button.h not only button.h. Without include_directories it doesn't work. Is it correct way ?

lucid stump
scarlet sinew
#

spooky

lucid stump
lucid stump
#

New game "Star Pusher". Star Pusher is a Sokoban or “Box Pusher” clone. StartPusherSFML is "Star Pusher" clone written in SFML.
Source code: https://github.com/Przemekkkth/StarPusherSFML
Gameplay: https://youtu.be/eQbRVo_hXUQ

GitHub

Star Pusher is a Sokoban or “Box Pusher” clone. StartPusherSFML is "Star Pusher" clone written in SFML ;) - GitHub - Przemekkkth/StarPusherSFML: Star Pusher is a Sokoban or “Box P...

Star Pusher is a Sokoban or “Box Pusher” clone. StartPusherSFML is "Star Pusher" clone written in SFML/C++ ;)
Source code: https://github.com/Przemekkkth/StarPusherSFML

▶ Play video
lucid stump
#

Top Down Shooter is an engaging and fast-paced 2D shooting game developed using the SFML framework. In this game, players navigate a character from a top-down perspective, aiming to defeat waves of enemies and achieve high scores. The game features smooth controls, dynamic gameplay, and visually appealing graphics.

Source code: https://github.com/Przemekkkth/top-down-game-sfml
Gameplay: https://youtu.be/iBdX2wcM8ag

GitHub

Simple top down shooter game written in SFML. Contribute to Przemekkkth/top-down-game-sfml development by creating an account on GitHub.

#cpp #c++ #sfml #topdownshooter #game
Top Down Shooter is an engaging and fast-paced 2D shooting game developed using the SFML framework. In this game, players navigate a character from a top-down perspective, aiming to defeat waves of enemies and achieve high scores. The game features smooth controls, dynamic gameplay, and visually appealing g...

▶ Play video
lucid stump
lucid stump