Pyglet is perhaps the BEST Game Engine for Python

Поделиться
HTML-код
  • Опубликовано: 9 сен 2024

Комментарии • 131

  • @knut-olaihelgesen3608
    @knut-olaihelgesen3608 Год назад +36

    Pygame might require more lines to get a window up and running - but that code is also handling other things, which means they are already partial implementations for future systems

  • @felixfourcolor
    @felixfourcolor 3 месяца назад +8

    Btw if you still want to use pygame, use pygame-ce instead. The lead maintainer of pygame went rogue and a large number of developers migrated to the fork pygame-ce.

  • @shaqalito8740
    @shaqalito8740 Год назад +21

    Very nice video man. You got yourself a new sub. Keep the good content going, it's very very qualitative.

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      That's awesome, I appreciate the feedback and sub. I will keep trying!

  • @camable10
    @camable10 10 месяцев назад +4

    I build a simulation model with simpy, as I completed it I wanted to add animation to know what's going on and end up choosing pyglet to process the event files from the simulation to draw in a window showing all elements of the simulation. I think it shows what I wanted to show, I am not sure, I will keep an eye out for better ways of building an animation. Great video.

  • @anbu7049
    @anbu7049 Год назад +11

    Awesome video! Looking forward to see your channel grow.

  • @UTIII2024
    @UTIII2024 11 месяцев назад +5

    Maybe some day a legend will rise like the sun,
    and will create the engine that all python programmers need...
    that legend that is going to create the engine will create a new
    era for all python game developers. I hope that legend comes
    soon...

  • @LifeCodeGame
    @LifeCodeGame Год назад +30

    Great video! Pyglet looks like a great game engine for Python. Thanks for sharing your experience with us!

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      Thank you! I'm really enjoying my time with it

  • @we_all_love_coding_interviews
    @we_all_love_coding_interviews Год назад +7

    I love that video, everything is on point, and it is so pleasing to watch. Thank you for sharing! (The audio seems to be a bit quiet tho)

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      Thank you. I'm still working out how to best normalize my volume for RUclips! I have it at -9db but maybe that's too low?

  • @belbaka8711
    @belbaka8711 Год назад +136

    Pygame is more of a framework, godot is an actual engine that supports python like syntax

    • @dreamsofcode
      @dreamsofcode  Год назад +28

      Godot is great! I've got a video looking at GDScript and Godot planned in the pipeline.

    • @roundabout-host
      @roundabout-host 7 месяцев назад +5

      It's not python.

    • @fabiolean
      @fabiolean 4 месяца назад +1

      @@roundabout-host He didn't say it was python. He said it supports a python-like syntax, which is true. GDScript's syntax is heavily inspired by python.

    • @roundabout-host
      @roundabout-host 4 месяца назад +1

      @@fabiolean Sure, but syntax is not important, there is no dynamic typing, no human data structures (list, dict, set, tuple), no list comprehesions and so on.

    • @baxstart9008
      @baxstart9008 2 месяца назад

      ​@@roundabout-hostthats exactly what they meant, only syntax wise not language wise, he never claimed it's python.

  • @mrdza96
    @mrdza96 Год назад +4

    Created the classic Tank 1990 game using PyQt5, thought of remaking it at some point with some normal library or framework (since PyQt5 didn't work well for my usecase, but was forced to use it by my professors) and this comes to my YT feed. Looks awesome!

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      Pyglet also has some awesome 3D support as well!

    • @mrdza96
      @mrdza96 Год назад

      Tank 1990 was my favorite game in my childhood and I had so much nostalgia hitting me while I was making it, I gotta do it again but now with something normal. Thanks for the video!

  • @StarFury2
    @StarFury2 Год назад +18

    For me Pyglet is technically just far too superior to Pygame. Built-in open GL calls, antialiasing, camera with infinite zoom, expanding viewport screen resizing, batch rendering and overall much less stuttering are some things you can do with Pyglet but not with Pygame out of the box.
    Pyglet is more difficult to learn though, with it's absence of main loop and weird way of handling events.
    But Python Arcade is a great expansion for Pyglet bringing some convenient missig features like sprite collisions and even full physics (based on pymunk).

    • @dreamsofcode
      @dreamsofcode  Год назад +2

      I agree! Arcade looks really interesting, and certainly helps out the areas you mentioned!

    • @w花b
      @w花b Год назад +1

      The only problem is the smaller community. That's one of the reasons I gave up on raylib in C because I could not find a fix for the issues I had.

    • @dreamsofcode
      @dreamsofcode  Год назад +2

      @@w花b The smaller community is certainly a drawback, however, it does look like it's getting closer to pygame, going by Github numbers.

  • @soupnoodles
    @soupnoodles 4 месяца назад +1

    Its a great video in regards to showcasing pyglet's strength, but the reason pygame handles less is so you can handle it the way you want.
    Once you really get into making larger games, building your own implementations are far less frustrating than needing to reach out to the docs everytime

  • @fuzzy-02
    @fuzzy-02 2 месяца назад +1

    Would have loved to hear more benchmark stuff like performance or how things work differently under the hood, rather than purely syntactical difference

  • @tutacat
    @tutacat 2 дня назад

    The reason you should use OGG (or even FLAC) instead of WAV is because WAV (WAVE) by "default" the audio encoding is just a label to say the format of raw audio. Raw audio takes up way more storage. OGG container is used is because it supports free-to-use encodings. MP3 uses MPEG layer 3 audio, which is patented.

  • @naturep1x3ls
    @naturep1x3ls 9 месяцев назад +4

    pygame and pyglet are NOT game engines nor frameworks. You can make your own engine/framework for them, but still, they arent. Both are graphics libraries. Ursina, for example is a game engine for python.

  • @MudZeePlayGamer
    @MudZeePlayGamer Год назад +5

    Pyglet seems similar to Lua's Love2D framework, and seeing how much easier this seems than..pygames...stupid..confusing syntax of surfaces and all that, might try this out next time i go back to python coding

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      I find Pyglet so much easier to comprehend for game development!

  • @RenderingUser
    @RenderingUser Год назад +3

    Your nvim config looks clean as Heck

    • @dreamsofcode
      @dreamsofcode  Год назад +4

      Thank you. I have my dotfiles available in GitHub:
      github.com/elliottminns/dotfiles

  • @lotusnightcore4766
    @lotusnightcore4766 Год назад +1

    Me having ton of work to do for my thesis also need to find a job.
    Also me getting excited to make a game after watching your video

  • @tonywtyt
    @tonywtyt Год назад +3

    I only heard about pyglet, and it always seems to take a back seat to pygame. I'm thinking that this might be because pygame came first. It also seems like pygame is more functional, rather than object oriented, making it easier for some new programmers. Pygame is a bit clunky, in that it your don't work with a "Sprite", but must load an image, then get its rect, and then manipulate that rect. Pygame can also get messy because you don't set events, but have to manually implement your own checks and manaully create the logic for handling the event. It looks like pyglet maybe hides the event loop and you only assign event handler methods. This is cleaner, but may be more complicate if there are side effects between the order events are called and side affects of interactions between handlers. I started or lengthy course for pygame, but you really got me look at pyglet.

    • @onddu2254
      @onddu2254 3 месяца назад

      Exactly why I like pygame. Not having that manual control over everything just doesn't feel right.

  • @shayes.x
    @shayes.x Год назад +2

    Pyglet is a breath of fresh air for someone who has mostly only used Pygame

  • @nomoremuda
    @nomoremuda Год назад +5

    i'd like to see how you would manage deploying games made from pyglet, maybe a future vid?

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      This is a great idea. I did some looking into this and there's some nice tools to help with deployment.

  • @stro3277
    @stro3277 8 месяцев назад +1

    Is it possible to full recreate pokemon firered in python?

  • @Dilithium1
    @Dilithium1 8 месяцев назад +1

    what about ursina? i think its great for anything beyond just 2 dimensions, and has an update function, great ways to handle input, spatial audio, and more

  • @craftyryte
    @craftyryte Месяц назад

    whats the theme ur using?

  • @ahmedhassannaveed5561
    @ahmedhassannaveed5561 Год назад +3

    what about arcade? it is built upon pyglet it also provides collisions and physics with pymunk + other cool stuff

    • @dreamsofcode
      @dreamsofcode  Год назад

      That sounds pretty awesome. I'll take a look at it! Thank you for the suggestion.

  • @seamuskills
    @seamuskills 9 месяцев назад +1

    pygames surface system (from its sdl origins) are why I use it mainly. I can do a lot of cool rendering things with it.

    • @h4rrym00
      @h4rrym00 5 месяцев назад

      such as?

    • @seamuskills
      @seamuskills 5 месяцев назад

      @@h4rrym00 I made a test game based on splatoon but from a top down perspective. Because of the surface system, I was able to store the ink as a surface and draw to it with the regular functions without having to worry about offscreen pixels not being saved or retrieving the data after it was overwritten by something drawing over it. This allowed the system to have pixel accurate ink without too much performance cost that looked nice. All I did was write to a surface, then draw that surface to the screen before the entities. I can also assign certain things to a surface in order to perform actions on just those drawn objects such as tinting the color of all things drawn to it or only making it visible on certain conditions.

  • @pie19988
    @pie19988 Год назад

    I am new too the whole programming thing...I am trying to make a text based game that has Background images...can pyglet do that?

  • @xoxogamewolf7585
    @xoxogamewolf7585 9 месяцев назад

    0:48 hol up, what dose semicolons doin down in that on_draw method?

  • @askmo99
    @askmo99 Год назад

    where do you write the code ? is there an IDE ? where is the software if not ?

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      I write code using vim as a personal preference, but I'm sure pycharm can work just fine as well!

    • @askmo99
      @askmo99 Год назад

      @@dreamsofcode i teach engineering and make youtube tutorials .... i've been trying to improve my stuff lately .... and by far i think this is what i need
      ❤❤❤❤

    • @dreamsofcode
      @dreamsofcode  Год назад

      Awesome! Glad I could help.

    • @TimelessGamingSoftware
      @TimelessGamingSoftware 3 месяца назад

      dont use pychar use visual studio or sublime text

  • @onddu2254
    @onddu2254 3 месяца назад

    What I like about pygamme is how "manual" it is. That's why I can't stand something like tkinter, it's so unintuitive having some automatic main loop. I like being able to see the main loop exactly as it is. I would hate to have just a "app.run()" to run the main loop. I want to see how it handles events, draws background, updates objects on screen, draws those objects, flips the screen and limits fps. If I can't see those, it feels way too unintuitive.

  • @matscalia
    @matscalia Год назад

    Totally unrelated: your titlebars look perfect. Which desktop environment do you use on Arch? And with which modifications?

    • @dreamsofcode
      @dreamsofcode  Год назад

      On that video, I was using gnome with Catppuccin theme!

    • @matscalia
      @matscalia Год назад

      Thanks!

  • @notagamer8782
    @notagamer8782 9 месяцев назад +2

    Honestly is very similar to pygame. Pygame can do all this

  • @Toothpaste_Guy
    @Toothpaste_Guy 10 месяцев назад

    can you publish a game to steam if i was to make something on this engine?

    • @ttrev007
      @ttrev007 6 месяцев назад

      i think a RUclipsr named DaFluffyPotato has published on Steam using Pygame engine so i don't see why their would be a problem with pyglet

    • @Toothpaste_Guy
      @Toothpaste_Guy 6 месяцев назад

      @@ttrev007 Thanks!

  • @minetomek
    @minetomek Год назад +1

    How did you make so pretty windows?

    • @dreamsofcode
      @dreamsofcode  Год назад

      My terminal windows? I'm glad you think they look good! I use alacritty with the Catpuccin theme!

    • @minetomek
      @minetomek Год назад

      @@dreamsofcode Thanks for quick response and help.

  • @gamingwithlucas2862
    @gamingwithlucas2862 Год назад

    what editor do you use?

    • @dreamsofcode
      @dreamsofcode  Год назад

      I use neovim, with the NVChad base configuration.

  • @revimfadli4666
    @revimfadli4666 Год назад

    Is pyglet to python like processing to Java?

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      Yes! Very similar, except more focused around game development and multimedia.

  • @boxhead-zk7sn
    @boxhead-zk7sn 10 месяцев назад

    what about pygame with GPU

  • @tunaan80
    @tunaan80 Месяц назад

    Python Arcade is sad for not having his name mentioned anywhere haha (İ use Pygame btw)

  • @TagetesAlkesta
    @TagetesAlkesta Год назад

    Kind of reminds me of the Blitz2D engine I learned in high school lol

  • @lhsebi10
    @lhsebi10 6 месяцев назад

    thx for bringing pyglet to my atention, looks much easier than pygame or cocos2d :)

  • @ML-wx5mo
    @ML-wx5mo 9 дней назад

    Nope... I understand there are lots of arguments about which library is best for game dev in python. BUT, imo, the easiest is ARCADE. And thats by a MILE. Arcade is very easy to use. My favorite part about arcade is the fact that it is very easy to implements different screens. You can code each screen in a class and then link them together which is extremely convenient for coding large games with multiple screens. Tell me how you guys feel!

  • @BRLN1
    @BRLN1 7 месяцев назад

    after consideration ... pygame is still is the "best" (i.e. beginner friendly, 2D) game engine for python.
    Pyglet adds convience where it is not needed.
    If I seek for convinience and want to avoid boilerplate code, then I better go for Unreal, Godot or Unity (ya know ... the grown ups).
    Pygame instead provides a thin layer of abstraction and interfacing to the SDL libraries.
    Hence pygame teaches you a lot about image manipulation (which pyglet automatizes away).
    Furthermore pygame provides more control over the main-game-loop which i prefer over pyglet's approach.

  • @suyashgupta1180
    @suyashgupta1180 Год назад

    Great video! Subscribed

  • @BlazeTheCatMan
    @BlazeTheCatMan 6 месяцев назад

    this looks very cool i tried to mess with pygame but its very buggy for me and its hard and confusing mess for me. plus pygame does not have 3D and ive been looking for a 3D game making module for python which i came across pyopengl but i never could get ti to work and plus i am ditching pygame for this one!

  • @xhenryx14
    @xhenryx14 Год назад

    yeah! pyglet!

  • @AnthyLoneExoria
    @AnthyLoneExoria 24 дня назад

    If you are considering Pygame, please for your sanity use Pygame CE. It's way more supported, with a lot more developers behind it. Whatever you go with, use what works for you and stick to it!!

  • @Isusia
    @Isusia Год назад

    What about multiplayer mode?

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      I've got a video planned about adding game networking. Going to use pyglet for the base of that one!

  • @noaheben555
    @noaheben555 Год назад +1

    Great video! Consider me persuaded and subscribed!

  • @gamalielgerona2391
    @gamalielgerona2391 3 месяца назад

    Bro just betrayed Pygame, my favorite game engine. But I think I should give Pyglet a try too cause it sounds very cool. +1 sub and +1 like

  • @blankRiot96
    @blankRiot96 Год назад +1

    I liked the video

  • @tutacat
    @tutacat 2 дня назад

    Not as much boilerplate as win32

  • @smanzoli
    @smanzoli Год назад

    Code at 0:40 is not fair, we also only need 5 lines to get a screen running in Pygame lol
    I like both, pretty similar in many ways.

    • @dreamsofcode
      @dreamsofcode  Год назад

      I'd love to see a shorter version! I think pygame zero is a lot better as well.

    • @smanzoli
      @smanzoli Год назад

      @@dreamsofcode sure, Pygame Zero can really do that with a WORKING window lol
      Regular Pygame can bring a window with 3 lines, but it will not answer for closing it and you'll have to close window using OS:
      import pygame
      pygame.init()
      window = pygame.display.set_mode((800, 600))
      done lol😄
      And thanks for the video btw

  • @user-co1dw3lx7t
    @user-co1dw3lx7t 10 месяцев назад

    cool video)

  • @christopherwiseman1267
    @christopherwiseman1267 2 месяца назад

    In addition pyglet has access to opengl allowed 3d game development

  • @googlebingyahoo
    @googlebingyahoo Год назад

    nice content!

  • @TrueMayo1
    @TrueMayo1 Год назад

    could you make a tutorial on pyglet plz :D

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      Absolutely! I'm planning on making a game with it in the coming weeks and will make sure I turn it into a tutorial. I also want to do some more advanced game concepts with it as well.

    • @TrueMayo1
      @TrueMayo1 Год назад

      @@dreamsofcode thank you :D

  • @SuperPuperCode
    @SuperPuperCode Год назад

    Pygame-CE best!?

  • @jimmlmao
    @jimmlmao 12 дней назад

    you cant call pygame a game engine its just a thing that allows you to draw graphics

  • @axolotron1298
    @axolotron1298 Год назад

    Every time I see a video about Python game engines I feel like I should have started my Python engine as a 2d engine instead of focusing on 3d.
    I would have gotten further into its development and perhaps it could be worth using it and developing it, instead of what it is now 😑

    • @dreamsofcode
      @dreamsofcode  Год назад

      Is your engine available anywhere? I'd love to take a look!

  • @user-rp8ov5zy4c
    @user-rp8ov5zy4c 17 дней назад

    I personally think Pygame is trash... I've only ever seen maybe 1 good game made using Pygame and it was unfinished... I'm going to try to check this out and see if it's any better but I really don't think I will ever find anything to compare to Unity other than Unreal and Unreals spec requirements for me at this moment in time is what's truly Unreal.

  • @energy-tunes
    @energy-tunes Год назад

    Does it support z layer,simple square sprite collision and sprite opacity

    • @dreamsofcode
      @dreamsofcode  Год назад

      Z layer can be done using OrderedGroups with batching. (I did a quick example with the health bar).
      Collision detection still needs to be manually built, I'm afraid. But you can use Pymunk for some more advanced collisions and physics.
      Opacity is supported!

  • @arbitervildred8999
    @arbitervildred8999 Год назад

    He is like "I want to make a game in pyglet! - oh there are no tutorials"
    *goes on youtube*: pyglet is the best engine to make games in python
    _now we wait_

    • @dreamsofcode
      @dreamsofcode  Год назад

      Haha! Theres one in the planning stages. Next video is going to be another brief intro one, but the one after will be pyglet related.

  • @ArachnidAbby
    @ArachnidAbby Год назад

    I will now pronounce pygame as "pig-aim"

  • @livingmybestlife8410
    @livingmybestlife8410 Год назад

    I'm new and I say "Piglet" LOL

    • @dreamsofcode
      @dreamsofcode  Год назад +1

      I am with you. Piglet feels more natural!

  • @Montegasppa
    @Montegasppa Год назад

    I’d programmed in both frameworks, and Pyglet has always been way superior to PyGames. PyGames is too hype.

  • @5minutemovies977
    @5minutemovies977 7 месяцев назад

    There's no interface and you do absolutely everything by code? No thanks, I'm too noob for that.

    • @Naburgondux
      @Naburgondux 7 месяцев назад

      You will eventualy need to code,but you can start without it in some some progam like scratch,even Game-Maker has support for no-code,but in this GUI progaming,you have limited options,and you will need to do a certain thing that doesnt have in the progam,but its a great way to start!

    • @5minutemovies977
      @5minutemovies977 7 месяцев назад

      @@Naburgondux I'm not afraid of coding, but I like with Godot is that you have a UI

  • @programaconscratchd2903
    @programaconscratchd2903 Год назад

    amongus😂

  • @energy-tunes
    @energy-tunes Год назад

    Three minutes into the video and I'm sold, already ten times better than pygames annoying boilerplate annoying and sprite rotation