Creating Space Invaders in Pygame/Python

A tutorial on how to create Space invaders in python with Pygame. This is a more advanced tutorial so I assume that you already know the basics of Pygame.
If you don't, check out this tutorial by me that explains Pygame in detail: • The ultimate introduct...
If you want to code along, you can find all the files and the code here:
github.com/clear-code-project...
Timestamps:
0:00:00 - Intro
0:00:46 - Basic setup
0:04:22 - Creating the player
0:19:21 - Creating the laser for the player
0:27:48 - Creating the obstacles
0:48:43 - Creating the aliens
1:20:27 - Collisions
1:27:48 - Adding the health system
1:34:19 - Adding the score system
1:42:50 - Adding the CRT styling
1:48:55 - Adding the music and sounds
1:52:03 - Adding the victory screen

Пікірлер: 140

  • @ClearCode
    @ClearCode2 жыл бұрын

    check out my twitter for more videos on the platformer twitter.com/clear_coder

  • @user-lx4xe5nm8v

    @user-lx4xe5nm8v

    2 жыл бұрын

    Could you please make some cute game which is friendly for girls? Thank you 🙏

  • @charg1nmalaz0r51

    @charg1nmalaz0r51

    Жыл бұрын

    What i would like to see is a nice little rts game, or a simulation type game or something like settlers. Be interesting to watch if you ever need ideas

  • @axermaster_yt

    @axermaster_yt

    Жыл бұрын

    keep doing your pygame games tutorials, they are awsome!

  • @janu3d
    @janu3d2 жыл бұрын

    This is the best programming channel on youtube.

  • @somebody6837
    @somebody68372 жыл бұрын

    I'm already hyped for the platformer tutorial, loving the tutorials as well. Keep it up Clear Code and to those who are just learning like me :)

  • @juniorMr
    @juniorMr2 жыл бұрын

    Man ,you don't have a clue how much you have been helped me with your videos tutorial. I am watching you from Mozambique and am super grateful for your work.

  • @vasarolnik
    @vasarolnik2 жыл бұрын

    Thank you VERY much for this quality content! I learned a lot! Looking forward for the platformer and everything that comes next! Thank you!!

  • @sniper_hd
    @sniper_hd2 жыл бұрын

    Bro you're amazing. I made flappy bird game from you and I learned so much. You have the best tutorials on this platform. Also I can't believe these are free too. Amazing job mate, keep up the good work.

  • @chalkypj
    @chalkypj2 жыл бұрын

    Awesome as usual. I learn so much from your tutorials. Thank you

  • @klausbrier6307
    @klausbrier63072 жыл бұрын

    I like this Clear-Code-Videos. Such a good explanation, a good structure

  • @stephencain5448
    @stephencain54482 жыл бұрын

    Thank you for a great set of tutorials that you are putting out most useful.

  • @hyp3rb3ast41
    @hyp3rb3ast412 жыл бұрын

    thank you so much you helped me a lot, and because of you I learned so much and from the pygame module, it was a blast keep up your great work!!!

  • @mesquitesmoked7274
    @mesquitesmoked7274 Жыл бұрын

    This was a great tutorial. Thank you so much for the upload.

  • @CodeWithMilk
    @CodeWithMilk Жыл бұрын

    Dude, I am studying Python and I found your channel... it's amazing!!! I'm in love with your videos and with the way you teach. I am from Brazil and I wish we could have videos like yours. So I decided to start a channel about python and pygame! Maybe I'm gonna do it tomorrow haha but I am very excited to share it with people (in English, sharing your videos for my friends and in Brazilian Portuguese making my own videos). Thank you so much and keep doing a great job!

  • @Errlyriser

    @Errlyriser

    6 ай бұрын

    Dude - You do have videos like this. It's called KZread and you watched this lol

  • @fcobermudez3655
    @fcobermudez36552 жыл бұрын

    Thank you very much for your work, so that we can learn. I'm testing PyScripter and it seems to me a very good ide.

  • @deathshot9310
    @deathshot93102 жыл бұрын

    Great tutorial! Thankfully I didn't get jump scared this time :)

  • @random_guy_on_youtube
    @random_guy_on_youtube2 жыл бұрын

    Nice! I love your vids. They are so quality

  • @ShaizeOn1
    @ShaizeOn12 жыл бұрын

    cant wait to try it myself, thx a lot!

  • @javiervill2496
    @javiervill24962 жыл бұрын

    Fantastic video!! Thank you very much for this content.

  • @OvenSeIls
    @OvenSeIls3 ай бұрын

    I love this channel! I added on to this game with dafluffypotatos particles from his tutorials!

  • @EMRAN994
    @EMRAN99411 ай бұрын

    bro this is amazing, i learn so much from you, thank you

  • @eternl_sunshine22
    @eternl_sunshine22 Жыл бұрын

    wow this is very different from the basics to pygame that we built, but really good

  • @xtopy9145
    @xtopy91452 жыл бұрын

    I never knew I needed this, thanks!

  • @Hyvexx
    @Hyvexx2 жыл бұрын

    This looks so good!

  • @calitts4708
    @calitts47082 жыл бұрын

    New logo! I think it will take a while for me to get used to this one. I loved the C logo!

  • @ClearCode

    @ClearCode

    2 жыл бұрын

    I had too many people being confused and expecting videos about C/C+/C# and it was getting annoying :)

  • @mixlaproduction

    @mixlaproduction

    2 жыл бұрын

    Agree. This one could look better as the bottom part of the C shape being white to be distinctive from the background.

  • @A_choosen0ne
    @A_choosen0ne Жыл бұрын

    WOW!!!!! this is impressive really good job.

  • @Seio0987
    @Seio0987 Жыл бұрын

    Great guide, as always. I changed a small thing that bugged me about the live-system. First, I created a new Function for self.live_x_start_pos: def update_lives(self): self.live_x_start_pos = screen_width - (self.live_surf.get_size()[0] * (self.lives - 1) + (10 * self.lives)) For this function, I changed the 2 for (self.lives - 1) and the 20 for (10 * self.lives). Now I called this function in the place of the original line as well as in the player collision, right after reducing the lives per one. Reason being that 1st: now the positioning looks way better with more then two Extra-lives and 2nd: if you lose a live, you'll now lose the left-most icon instead of the right-most icon.

  • @cliffordwilliam3714
    @cliffordwilliam37142 жыл бұрын

    Subbed! I can't wait for the platformed tutorial. Would also love it if you cover on using state machine to control character movements! I've been having a hard time trying to accomplish that..

  • @ClearCode

    @ClearCode

    2 жыл бұрын

    that's gonna come this weekend!

  • @cliffordwilliam3714

    @cliffordwilliam3714

    2 жыл бұрын

    @@ClearCode Oh yesss!

  • @jgarale
    @jgarale2 жыл бұрын

    Wow!!!! Súper cool!!!, the sound is awesome!!!

  • @angadsingh6478
    @angadsingh64782 жыл бұрын

    I am eagerly waiting for your Mario style game💖

  • @Ashok-qx4kr
    @Ashok-qx4kr2 жыл бұрын

    Hey man, I really like your videos and your explanation is to the point. Thank you for doing this. Can you talk about moving objects in a sequence with some gap like vehicles in traffic in your next videos or can you suggest any sources for that?

  • @CodePhiles
    @CodePhiles2 жыл бұрын

    that was really brilliant, I enjoyed watching the tutorial till the end, hope to work on levels and adding more laser shoots at once for the player...and what are the challenges that we could face if we wanted to user higher resolutions graphic??

  • @paren7274
    @paren7274 Жыл бұрын

    Thank you vary much! Your video so good!

  • @tonytian7994
    @tonytian79942 жыл бұрын

    Thank you so much David, followed through a few videos, very educational, wish you could create a tower defense game from the scratch, that would be my dream come true :-)

  • @maxrg8912
    @maxrg89122 жыл бұрын

    Man we love your toturials please try to teach us how to make shooter or platform game with pygame

  • @ClearCode

    @ClearCode

    2 жыл бұрын

    those are literally the next 2 planned ones :P

  • @maxrg8912

    @maxrg8912

    2 жыл бұрын

    @@ClearCode I am so excited !

  • @johnwall6585
    @johnwall65852 жыл бұрын

    Some great techniques here, I always get confused with game programming - but find other programming ok

  • @paren7274
    @paren7274 Жыл бұрын

    Thank You For your videos!!!

  • @arnoldshavings7326
    @arnoldshavings7326 Жыл бұрын

    works, great tutorial

  • @Skz1337
    @Skz133711 ай бұрын

    Amazing tutorial

  • @gametimewitharyan6665
    @gametimewitharyan66652 жыл бұрын

    It will be very helpful if you can offer a multiplayer version of any game that you made with server and client because the multiplayer side of it is pretty hard for beginners to grasp these hard topics, and if you will teach them I am 100% Sure that everything will be crystal clear

  • @JustinLiftz
    @JustinLiftz2 жыл бұрын

    The goat has returned

  • @fnxbcn369
    @fnxbcn3692 жыл бұрын

    Big thanks!

  • @philtoa334
    @philtoa3342 жыл бұрын

    So good.

  • @sohamtaparia5691
    @sohamtaparia56912 жыл бұрын

    Well it helped me .. Thanku

  • @mike_jay
    @mike_jay Жыл бұрын

    I love yr channel, keep it up please. A suggestion for a game that I think would be suitable…..civilisation one, or six if yr brave. Civ1 would be a great demo.

  • @HappyLicker
    @HappyLicker2 жыл бұрын

    Love this channel :D

  • @Derpy999
    @Derpy9992 жыл бұрын

    Damn bro you’re crazy!

  • @pagalump3529
    @pagalump35292 жыл бұрын

    Thanks bro

  • @guntbert9709
    @guntbert97092 жыл бұрын

    Thx for the educating video - I am just wondering why you don't use f-strings for constructing file_path (at about 50:30)?

  • @potatocat6855
    @potatocat68552 жыл бұрын

    The best , keep it up

  • @thesilverpen
    @thesilverpen2 жыл бұрын

    excellent instruction, lots of cool references materials. I cannot get my code to correctly acknowledge the image file for the player. I even cut/pasted the reference code to test it..still same. Checking my pygame install for errors and also will try to rewrite using another source for the image. With this great tutorial, I am confident it will get fixed as I go through it.

  • @leonidas14775
    @leonidas14775Ай бұрын

    Nice tutorial! It is better practice to use import os file_path = os.path.join('graphics',color+'png') since slashes in file paths aren't the same on all operating systems.

  • @jamesbondisamonkey
    @jamesbondisamonkey Жыл бұрын

    I think you can get the right x offset for the obstacle creation, each of those blocks has a string of size 10, maximum of 60 because you set each one to 6... So then you can offset it by 30 and I think that it puts it then directly in the middle

  • @charg1nmalaz0r51

    @charg1nmalaz0r51

    Жыл бұрын

    yeah what i did was take the position of the last obstacle and and added its width which i got from its (row count * size) then took this from the screen width to get the space on the right then divided that by two to get the start x obstacle_x_offsets = [num * (self.SCREEN_WIDTH/amount) for num in range(amount)] end_x = obstacle_x_offsets[len(obstacle_x_offsets)-1] start_x = (self.SCREEN_WIDTH - (end_x + (Obstacle.width * size))) / 2

  • @Erdbeerbowle
    @Erdbeerbowle2 жыл бұрын

    Hello, I'm following along, and I'm having some trouble with the self.image.fill('white') code at the 21:21 mark. When I run the code, I get a "TypeError: invalid color argument" statement, and the program crashes. When I delete the self.image.fill('white') code however, it runs fine, with the exception that I now have a "black" laser. Do you know what I'm doing wrong? Thanks!!

  • @bujacoding
    @bujacoding2 жыл бұрын

    best of the best

  • @sjacobson42
    @sjacobson422 жыл бұрын

    My kingdom for a portable Python with pygame and editor IDE!!! Just all ready to go, like GODOT 😔

  • @kulagintimofei7689
    @kulagintimofei76892 жыл бұрын

    Thaaaaank you

  • @Pogomeister
    @Pogomeister Жыл бұрын

    I have a question about the alien_position_checker(). I want to point out that I do not expect you as the creator of the video to answer my question. If you do, very cool, but no expectations here. You do such great work and I am very grateful for it, thanks. 🙂 Maybe someone else is also able to answer it. at 1:02:00 why do you create a new list named all_aliens in which you put the sprites with the sprites() method. I just looped through self.aliens itself like this: def alien_position_checker(self): for alien in self.aliens: if alien.rect.right >= screen_width: self.alien_direction = -abs(self.alien_direction) elif alien.rect.left

  • @jamesbondisamonkey
    @jamesbondisamonkey Жыл бұрын

    same thing with the alien offset. You can do (width of the screen - (alien size + space_in_betweeen_each_alien) * number of columns of aliens))/2... and that should number can be the buffer you use to start positioning the x coordinates of the aliens, which will even out the space on the left and right of screen, if you care...

  • @charg1nmalaz0r51

    @charg1nmalaz0r51

    Жыл бұрын

    dont suppose you have a better solution for moving the aliens and switching directions. I found his code breaks if you slow the aliens down because more than one hits the wall and if you arent fast enough to swap directions it goes haywire. I found it out by replicating the clastic alien movement and realised how lucky his stats were to switch direction before it breaks lol. in my head a better solution is to have each alien know its position relative to the edge and switch when it reaches that offset and have the aliens move themselves. but my maths skills are shite

  • @spaidory874
    @spaidory8742 жыл бұрын

    Thank you but you forgot to include when you added the player laser sound (I ended up doing this by myself no problem though)

  • @bcgamer2
    @bcgamer29 ай бұрын

    You use the word "and" an awful lot and do not hide your accent. Also, you use words native speakers would not use in a presentation (e.g., center vs. middle). But thanks a lot for an easy-to-follow tutorial. I have learned a lot and will start developing a game for my son based on it. Greetings from a Canadian

  • @DeltaNrOne
    @DeltaNrOne2 жыл бұрын

    There is 1 thing very small nitpicky thing in the very last part of the video and i am not even sure if it is better or not. When adding the sound for the laser for the player instead of loading the sound in again. would it not be better to pass the sound along to the player? I know that disk operations can be quite slow and passing it along is as fast as your game can run. for sure it wont have any performance issues with just one file in simple game like this but if you do this over and over again it might get heavy? great video learned a lot. and gonna give it some of my own features!

  • @mattiasbrodendal9763
    @mattiasbrodendal9763 Жыл бұрын

    Thank you for this video. Would it be possible to make a add on to this video where there is a loose-massage and a where the game restarts by pressing a key? Same with at the victory-message, press a key to restart? Thank you!

  • @cccornel5965
    @cccornel5965 Жыл бұрын

    too bad i can't give you more likes for the way you explained how to get the index in create_obstacle functions, but i can leave a comment and thank you for the clear explanation

  • @lalitkumarsingh7225
    @lalitkumarsingh72252 жыл бұрын

    Hey Man! This Was Awesome After watching this I feel very comfortable with pygame but I do have one Question and then I will be ready for future projects. How Do I manage states in this game like I wanna Maintain a game_over variable which can be influenced by Our Game Class So that I can stop game.run() Function In my while Loop ?? Other than that I got everything Thanks Again For Such an Awesome Video For Free !

  • @ClearCode

    @ClearCode

    2 жыл бұрын

    Hey, I will talk about this more in detail next week (probably) in a tutorial about an overworld. Essentially, here is what you want to do: You keep the game class as it is (maybe rename it) and put it inside of another class, and that class will manage the state. That way you can switch them fairly easily.

  • @lalitkumarsingh7225

    @lalitkumarsingh7225

    2 жыл бұрын

    @@ClearCode Lookin Forward For Your Tutorial. It's Kinda Hard For me to understand it in words. Thanks For Your Time Though ! But I came up with an Idea :-) It was to return True/False From my game.run() method ,whenever there is collision (collision method will itself return True/False in game.run() method). Is this method Acceptable ?

  • @testechnews
    @testechnews2 жыл бұрын

    Your video are awesome for python lovers and coding, can you clear one thing ,how to clear sprites for again restart the game. Please answer or share some ideas so I clear how clear sprites clean and restart game.

  • @cromebuk2958
    @cromebuk29582 жыл бұрын

    ❤👍

  • @gabizehE
    @gabizehE2 жыл бұрын

    I couldn't done the code of this game, because everytime I import Player and set his position, as player_sprite = Player((300,300)), pygame tells me that I've used 2 posicional arguments instead of 1 , considering that a error. What should I do? Oh! I almost forgot that I have a Windows 7 computer and my python version is Python 3.7.0. This information must be important somehow.

  • @RATANAGARWALITINFORMER
    @RATANAGARWALITINFORMER2 жыл бұрын

    wow

  • @dennys.1880
    @dennys.18802 жыл бұрын

    Where can i add a starting screen in the code ? And how should i do it?

  • @RiyadIsgandarov
    @RiyadIsgandarov Жыл бұрын

    hey, sorry for dumb question but how u clossing thar function and then opening them by pressing yellow bottom ? \

  • @honeyd5550
    @honeyd5550 Жыл бұрын

    Can you please do a video on how to make dots and boxes ???

  • @JaedonHelbig
    @JaedonHelbig2 ай бұрын

    gooooooooooooooooooooooooooooooood viddddddddddddddddddddddddd

  • @Pogomeister
    @Pogomeister Жыл бұрын

    I am still at the beginning of the tutorial. The exercise about constraining the player to the window at 11:30 I solved differently. I did not create a constrain function. Instead I modified get_input like this: if keys[pygame.K_RIGHT] and self.rect.right self.rect.x += self.speed elif keys[pygame.K_LEFT] and self.rect.left > 0: self.rect.x -= self.speed This also worked at that stage of the game. Is it also a good solution to stick with? Or will there be some issues later on which makes it better to use the constrain function? If the constraint function is not used for anything else later on, the version above should be better just because it is less code, right? I hopefully will get an answer to my question by just continuing the tutorial. But for the case that it will not get answered automically during the video I wanted to post the question already. :-)

  • @charg1nmalaz0r51

    @charg1nmalaz0r51

    Жыл бұрын

    Theres always multiple ways to do something, just do what you feel is best for your sanity and if problems crop up later modify it, otherwise you are good to go

  • @robbo4542
    @robbo45425 ай бұрын

    at 24:33 my lasers.draw command under def run(self) isnt defined and i dont see him do it in the video

  • @priyamittal444
    @priyamittal444 Жыл бұрын

    Can u make a video on how to add levels in this game

  • @charg1nmalaz0r51
    @charg1nmalaz0r51 Жыл бұрын

    Love the game but i just wanted to point out your aliens do not move right, in the original they slowly jerked to the left and right, there was a little delay between each move and the less aliens the more they sped up edit - follow up, when you play about with speeds the direction switch and drop amount breaks because the if statements trigger for more than 1 alien

  • @DoomsdayDatabase
    @DoomsdayDatabase2 жыл бұрын

    This is the error I am getting FileNotFoundError: No file '../graphics/player.png' found in working directory

  • @spaidory874

    @spaidory874

    2 жыл бұрын

    try to just have 'graphics/player.png' ,since you prolly didn't make a file for the code (which is what clear code did)

  • @venugopalbedar4550
    @venugopalbedar45502 жыл бұрын

    First view First like First comment

  • @johnstarfire
    @johnstarfire2 жыл бұрын

    I think there are some missing files in the repository, or am I wrong?

  • @ClearCode

    @ClearCode

    2 жыл бұрын

    do you get an error message? I think there are all there but I am a bit cursed on github :)

  • @johnstarfire

    @johnstarfire

    2 жыл бұрын

    @@ClearCode sorry, it is my fault, I thought the main.py file should be in the root, instead it’s in the code folder, it works, great job

  • @for3v3rbuzzstudios448
    @for3v3rbuzzstudios4482 жыл бұрын

    Hello, i am have a bit of a problem in my code when i run it in 22:52 of the video , here's the error- File "/Users/user/Documents/Programming/Python/space/laser.py", line 8, in __init__ self.image.fill('white') TypeError: invalid color argument pleas help me

  • @for3v3rbuzzstudios448

    @for3v3rbuzzstudios448

    2 жыл бұрын

    please reply as soon as possible so that I can go on with my Code

  • @charg1nmalaz0r51

    @charg1nmalaz0r51

    Жыл бұрын

    @@for3v3rbuzzstudios448 i know its a year later but that code should be fine, its probably something else.

  • @lemagenoob0001
    @lemagenoob00012 жыл бұрын

    hello sir

  • @quangdungtran3741
    @quangdungtran3741 Жыл бұрын

    ❤❤❤❤❤❤👍👍👍👍👍👍 but I don't know how to reset all the enemies when you want to play again??? 🤔🤔🤔🤔

  • @johnniegilkerson4724
    @johnniegilkerson47249 ай бұрын

    @8:23 in video my code is the same as yours, In get an error Traceback (most recent call last): File "C:\Users\johnn\PycharmProject\Invader\main.py", line 30, in game.run() File "C:\Users\johnn\PycharmProject\Invader\main.py", line 12, in run self.player.draw(screen) AttributeError: 'Game' object has no attribute 'player'

  • @user-tj5jg4kh5q
    @user-tj5jg4kh5q7 ай бұрын

    how to implement this to play with phone? is it possible?

  • @axetogrind
    @axetogrind2 жыл бұрын

    I keep getting file not found error I can't check my entering code

  • @ceya_96
    @ceya_96 Жыл бұрын

    One question: why pygame.display.flip and not display.update () To actualize the display

  • @asadqureshi126

    @asadqureshi126

    Жыл бұрын

    I think they have same effect. Both will work.

  • @spaidory874
    @spaidory8742 жыл бұрын

    48:50 for me :)

  • @ddeadlockedd3862
    @ddeadlockedd38622 жыл бұрын

    38:57 is where I am

  • @detree
    @detree3 ай бұрын

    anyone elses player not continuously moving when your holding down the left or right arrow keys. like i only move space if that makes sense

  • @axetogrind
    @axetogrind2 жыл бұрын

    problem I am having is with you switch between files, Your youtube screen the file folders are tiny names. You do not clearly announce when you are moving to another file. Solve this just make your file tab readable on VS

  • @salouhimohammed1030
    @salouhimohammed10302 жыл бұрын

    i added and played the laser sound directly in the laser __init__()

  • @spaidory874
    @spaidory8742 жыл бұрын

    1:31:22 fo rme

  • @Vad1mah
    @Vad1mah10 ай бұрын

    Why don't we do groupcollide instead of spritecollide?

  • @smajin28
    @smajin285 ай бұрын

    It's not drawing the obstacle in the top left corner for me. The code is the exact same. I don't know what's wrong.

  • @goldenmonkey515
    @goldenmonkey515 Жыл бұрын

    how to change background

  • @Hi-jg3cu
    @Hi-jg3cu2 жыл бұрын

    Me using Visual Studio Code and this error reportMissingImports

  • @TTTTTT-wn8kl
    @TTTTTT-wn8kl Жыл бұрын

    1:03:48

  • @kshawn2579
    @kshawn25798 ай бұрын

    Bro what is the code editor name?

  • @ClearCode

    @ClearCode

    8 ай бұрын

    sublime text

  • @kshawn2579

    @kshawn2579

    8 ай бұрын

    @@ClearCode thanks

  • @eternl_sunshine22
    @eternl_sunshine22 Жыл бұрын

    im reallly struggling with understanding the create obstacle loops....

  • @VeLoc1ty_
    @VeLoc1ty_2 жыл бұрын

    48:20 its 42

  • @spaidory874
    @spaidory8742 жыл бұрын

    1:35:19 (for me)