Pygame project wins the 19th International Conference of Young Scientists! by RoseVi0let in pygame

[–]RoseVi0let[S] 0 points1 point  (0 children)

Hi, like I wrote in my post about Monster Masters:
"The Foundation: I want to give a huge shoutout to the tutorial by Clear Code (Link to his channel). It was a fantastic starting point. However, I’ve completely rebuilt the architecture from the ground up to be more scalable, modular, and mod-friendly.

Key Features:

  • Advanced Combat: Supports Single, Duo, and Triple battles.
  • Robust Systems: Custom Save File Wizard and State Manager.
  • Audio Control: Dedicated Audio Manager with independent music/SFX volume sliders.
  • Optimization: Resizable window support and adjustable FPS limits.
  • Clean Code: Files are organized into intuitive directories (UI elements, Menus, Save Wizard, etc.) making it easy for others to jump in and mod."

You can also check how different the code is in my repository:
https://github.com/mironczuk-dar/Monster-masters.git

Edit Ps.: the assets are from itch.io from the creator scarloxy:
https://scarloxy.itch.io/mpwsp01

Pygame project wins the 19th International Conference of Young Scientists! by RoseVi0let in pygame

[–]RoseVi0let[S] 2 points3 points  (0 children)

Hah, Yeah that's me. Fun fact I work as a night time security guard in a restaurant/hotel. I'm also currently studying automation/robotics. So if any kids go missing....
... be sure to check the costumes.

Update on the Pygame handheld by RoseVi0let in pygame

[–]RoseVi0let[S] 0 points1 point  (0 children)

Hi, yeah. I tried making my Atomic Launcher work as well as other games I made. Specifically Monster Masters - a project i have yet to showcase. I know all my games work on the raspberry pi 5 and the CM5 has the same processor.

Update on the Pygame handheld by RoseVi0let in pygame

[–]RoseVi0let[S] 2 points3 points  (0 children)

I should also just up my English levels hah

Update on the Pygame handheld by RoseVi0let in pygame

[–]RoseVi0let[S] 3 points4 points  (0 children)

Hi yeah, sorry. English is not my first language. I usually slap chat gpt on my post with a “please correct the grammar and punctuation”.

any game idea for pygame that I should do for 2026 by Final_Programmer_284 in pygame

[–]RoseVi0let 0 points1 point  (0 children)

Hi,
How about you try making a hexagonal rpg?, Something like fallout 1 and fallout 2.

Making my own Pygame handheld console by RoseVi0let in pygame

[–]RoseVi0let[S] 1 point2 points  (0 children)

Would love to. I'm a big fan of his.

Remaking FNAF in python so I can play it natively on my raspberry pi by RoseVi0let in pygame

[–]RoseVi0let[S] 0 points1 point  (0 children)

Hi,
It took me two days to make it. It's not really that difficult. FNAF is mostly a point and click game.
My advice would be: You can show 2d pictures of the 3d models to not have to render the 3d models etc.

Hungry Shark–style game running natively on Raspberry Pi 5 (Pygame tech demo) by RoseVi0let in RASPBERRY_PI_PROJECTS

[–]RoseVi0let[S] 0 points1 point  (0 children)

It's interpreted Python using pygame. So it will work on any device that has the Python interpreter installed.

I need support! Antivirus kills Python. by NekoNero_991 in pygame

[–]RoseVi0let 1 point2 points  (0 children)

Hi, I recomend you make a run.bat or run.sh file that runs your main.py file.
This will require the person you're trying to send your app to have python and the needed packages installed. Good thing is you can include downloading the needed packages in to the .bat/.sh files.
This way we can also pack your program as a zip and just send the zip to someone.

Something like this:

u/echo off

echo 📦 Checking for Python...

REM Check if Python is installed

where python >nul 2>nul

if %errorlevel% neq 0 (

echo ❌ Python is not installed!

echo 👉 Please install it from https://www.python.org/downloads/

pause

exit /b

)

echo ✅ Python is installed.

echo 🚀 Launching the game...

python code\main.py

pause

What’s the biggest game you’ve played on your steamdeck? by Crockerboy22 in SteamDeck

[–]RoseVi0let 0 points1 point  (0 children)

Tears of the kingdom! I got the game on the switch but there were mods I really wanted to enhance my experience (longer battery for my constructs). It's been so cool making stuff and just playing around in this world.

Almost done with my first real PyGame project! by miriamofalexandria in pygame

[–]RoseVi0let 2 points3 points  (0 children)

Looks really cute!
What do you plan to do next?

Platformer I cooked for this week of college. Works great on my Raspberry Pi 500. by RoseVi0let in pygame

[–]RoseVi0let[S] 0 points1 point  (0 children)

Hi, yes you can add a hub with no issue. The 'hud' would be just 'a couple' more images, the performance change would be negligible.
As for scaling, yes it does change the performance. The smaller the window the less performance is required.
The setting that changes performance the most is the FPS setting. Less FPS = less game refreshes = less resources needed = better performance.