Skip to main content

This is the really cool game engine!

Project description

Blaze Sudio Banner

A game engine for Python lovers! ❤️

Docs Website PyPi version Build collisions status Publish to PyPI status Python versions: 3.10, 3.11, 3.12 OSs: Linux & Windows v3.0.0 released on Sept 19, 2024

Fox icon CURRENT VERSION: v3.0.1 (🌿 Kindle)

🗂️ Table of contents

🔝 Top
🚀 About
💡 Things to note
🛠️ Installation
📚 Library usage (Demos)
💻️ The terminal script
🗨️ Contributing
🔜 Next versions
⭐️ Star History

The docs are in progress. If you are working offline, you can look in https://tsunami014.gitbook.io/blaze-sudios

🚀 About

Blaze Sudio is an open source graphical game creation software.

Thanks to the one and only @Imzafish for the name! (Yes, it was originally a typo I decided to incorperate into the idea.)

Also known as:

  • The putgamecreatorsoutofbusinessanator (Thanks to @Faunder.real for that one)
  • One piece of code to rule them all!

💡 Things to note

I've done a crap ton of commits I've also done a ton of releases too Open Issues Contributers

Worked on since Aug 19, 2023 (But back then it was called AIHub, now that's a different thing; if you want to compare to something compare to when v3.0.0 was released)

v3.0.0

This is a very early version, and there are many things that are not yet implemented. Please be patient, and if you want to help, please do! PRs are welcome!

This project comes with 3 python libraries built into it; pyguix (I don't know whether I still need this or not...), Pyldtk and textboxify. For pyLDtk, this is because I have edited it so much it barely resembles the original library (slight exaggeration, but still). And for the others, it was for similar reasons (and also installation problems and other things too)

📔 How to use

🛠️ Installation

Are you ready? This is the most complicated installation process of any python library that exists ever, even Tensorflow (yes, I know!) But, follow the instructions and you'll probably be ok. Remember to join the discord server if you need any help.

  1. Run pip install Blaze-Sudio
  2. Rejoice in happiness as your library gets installed, pain-free

Disclaimer: may not actually be pain-free.
Disclaimer of the disclaimer: I'll help you if you run into any issues via github issues or Discord, so it will be mostly pain-free (for you) as a satisfaction guarantee

⛏️ Installing from source

git clone https://github.com/Tsunami014/Blaze-Sudio.git
cd Blaze-Sudio
pip install .

📚 Library usage (Demos)

A simple demo is kinda hard because you need an ldtk file to make the levels with, but in this repo you can find some demo games, and //TODO: one day I'll make a repo with a whole bunch of JUST sample games and link it here. But, the docs for making a game would be helpful, and are here: Online 🌐

And if you want full, in-depth explanation of each thing Blaze Sudio has to offer and how to use it all, visit the docs!

But if you want to see the kind of code that is created, well, here is an example:

Click to see the code
from BlazeSudio.Game import Game
from BlazeSudio.collisions import collisions
import BlazeSudio.Game.statics as Ss
import pygame

G = Game()
G.load_map("./world.ldtk")

class BaseEntity(Ss.BaseEntity):
    def __init__(self, Game, e):
        super().__init__(Game, e)
        self.accel_amnt = [[0.2, 0.2], [0.05, 0.05]]
        self.gravity = [0, 0.1]
    
    def __call__(self, evs):
        self.handle_keys()
        self.handle_accel()
        colls = self.Game.currentLvl.layers[1].intgrid.getRects(1)
        self.pos = [self.pos[0]-0.45, self.pos[1]-0.45]
        outRect, self.accel = collisions.Rect(self.scaled_pos[0], self.scaled_pos[1], self.entity.gridSze*0.9, self.entity.gridSze*0.9).handleCollisionsAccel(self.accel, colls, False)
        outUnscaled = self.entity.unscale_pos((outRect.x, outRect.y))
        outUnscaled = [outUnscaled[0]+0.45, outUnscaled[1]+0.45]
        self.pos = outUnscaled
    
    @property
    def scaled_pos(self):
        return self.entity.scale_pos(self.pos)

@G.DefaultSceneLoader
class MainGameScene(Ss.BaseScene):
    DefaultEntity = []
    def __init__(self, Game, **settings):
        self.lvl = settings.get('lvl', 0) # This before because it loads the bounds in the super() and it needs the level
        super().__init__(Game, **settings)
        self.sur = None
        self.CamDist = 8
        for e in self.currentLvl.entities:
            if e.defUid == 107:
                self.entities.append(BaseEntity(self, e)) # The Player
                self.DefaultEntity.append(e)
                self.entities[0].pos = [e.UnscaledPos[0]+0.5, e.UnscaledPos[1]+0.5]
                break
        else:
            raise Ss.IncorrectLevelError(
                'Need a player start!'
            )
    
    @property
    def CamPos(self):
        return self.entities[0].scaled_pos

    def render(self):
        if self.sur is not None:
            return self.sur
        self.sur = self.Game.world.get_pygame(self.lvl)
        return self.sur
    
    def renderUI(self, win, offset, midp, scale):
        playersze = scale*self.entities[0].entity.gridSze
        pos = self.entities[0].scaled_pos
        r = (pos[0]*scale+offset[0]-(playersze//2), pos[1]*scale+offset[1]-(playersze//2), playersze, playersze)
        pygame.draw.rect(win, (0, 0, 0), r, border_radius=2)
        pygame.draw.rect(win, (255, 255, 255), r, width=5, border_radius=2)

G.load_scene()

G.play(debug=False)

This code is a modified version of Basic-1, which is playable and is contained inside this repo. It was modified to remove the changing level script (an extra 2 functions) for simplicity and also to remove other things it didn't need (like the debug functions) but still does virtually the exact same thing.

BUT DON'T WORRY as making a game is super easy with the help of the documentation, no matter how hard you think this may look. It is all explained there.

💻️ The terminal script

If you have installed BlazeSudio into your global pip, you should be able to run the BlazeSudio command in your terminal. This is a script to really quickly make a new project or open the docs. you can run with BlazeSudio --help to see all the options.

🗨️ Contributing

If you would like to report a bug, security vulnerability, request a feature, etc. then make a new issue about it. If you know how to code, you can fork this repo and make a PR!

Please join our Discord server here (I need friends): Discord server link for any information, queries, bugs, conversations, etc. that you may have! Alternatively (as said before), you can post bug reports/ideas in the Github issues.

Just modifying whitespace or anything else that doesn't actually do anything won't be accepted (but if it's a spelling miss-steak or a broken link or something then you can tell me about it on Discord.)

And if you want more version compatability, please ask on Discord as that requires changing the 'auto' build script, and I don't want to do that unless I have to (I feel bad enough taking 6 different computers up every time I want to build the collisions module).

And no, building it yourself and PR'ing that is not going to work. If I change the module it will be painful attempting to recompile the module into a version I don't have myself.

But if you're confused please ask on Discord, and thanks for any help making Blaze Sudios even better!!

🔜 Next versions

  • v4.0.0 - ♨️Smolder - Pretty cool so far and have ability to make an OK game that one could submit for a competition or something. (WINGS OF FIRE REFERENCE)
  • v5.0.0 - 🌋Fire - cos by then it'll be on fire :grin: many cool things and stuff to make good looking games that are super cool and would totally win a competition!
  • v6.0.0 - ❤️‍🔥Bonfire - Who knows 🤷
  • v7.0.0 - ☄️Inferno - 🤷
  • v8.0.0 - 🍂Firestorm- What happens at this stage is a question for tommorow.

⭐️ Star History

(This is Going to be the funnyest thing to look at until I actually get this going really well)

Star History Chart

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Blaze-Sudio-3.0.1.tar.gz (8.8 MB view details)

Uploaded Source

Built Distribution

Blaze_Sudio-3.0.1-py3-none-any.whl (8.9 MB view details)

Uploaded Python 3

File details

Details for the file Blaze-Sudio-3.0.1.tar.gz.

File metadata

  • Download URL: Blaze-Sudio-3.0.1.tar.gz
  • Upload date:
  • Size: 8.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for Blaze-Sudio-3.0.1.tar.gz
Algorithm Hash digest
SHA256 98c87877c2feb198d63ec5caaa1a0163806d655628cf0d6dc8bb84e5d0d3fe8a
MD5 930e19f371fd324645a1145cc185f2db
BLAKE2b-256 dad0b8d561c3f1f605d945e7a5b77a4ab385e3a001cf9fbfaf1d1d75830c524d

See more details on using hashes here.

File details

Details for the file Blaze_Sudio-3.0.1-py3-none-any.whl.

File metadata

  • Download URL: Blaze_Sudio-3.0.1-py3-none-any.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for Blaze_Sudio-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b9f394f0bc50509211359f72e21cd181896106c1d6115f0f0eb36257ba20b1b3
MD5 c3f7f66eaedf5415eb1d031efdd9bb0b
BLAKE2b-256 7cda5a75dff56700165c4706c3b2134153d50c110262b8efa1fd439318b65a28

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page