ASMR Programming - Coding Pacman - No Talking

Поделиться
HTML-код
  • Опубликовано: 22 май 2024
  • Hello my dear coders,
    Coding pacman was difficult than I thought. I've used Dijkstra algorithm for the ghosts. I am open to any ideas to develop the game. You can fork and develop the game as you wish. We need to work on ghosts more. Because they sometimes go to a corner and wait there. Maybe we could decrease the interval time of changing random targets for the ghosts.
    I will be waiting for your pull requests on Github.
    Hope you like it!
    Twitter: / gulnaroglus
    👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻
    Source code: github.com/servetgulnaroglu/p...
    Live a star on github, if you enjoy!
    👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻👨‍💻
    📦📦📦📦📦📦📦📦📦📦📦📦📦📦📦
    ⌨️ Keyboard: YUNZII KEYNOVO IF98 Gateron Red Switches
    bit.ly/3hPGk3A
    📦📦📦📦📦📦📦📦📦📦📦📦📦📦📦
    00:00 Keyboard Check
    00:18 Creating files
    00:35 Preparing index.html and introducing assets
    02:12 Running HTML file
    02:43 Coding game.js
    04:16 Creating map[]
    13:20 drawWalls()
    19:14 drawWalls() is done
    19:52 Coding pacman.js
    21:24 pacman.moveProcess()
    22:03 directions constants
    22:45 pacman.moveForwards()
    23:40 pacman.moveBackwards()
    25:25 pacman.checkCollision()
    27:25 pacman.changeAnimation()
    27:59 createNewPacman()
    29:08 pacman.draw()
    32:00 Solving animation bug
    32:23 Creating event listener for keyboard
    33:00 Getting keyCodes of wasd and arrow keys
    35:33 pacman.changeDirectionIfPossible()
    36:42 Pacman can move now
    37:53 drawFoods()
    39:38 pacman.eat()
    41:15 Pacman can eat now
    42:15 Fix on map
    42:55 drawScore()
    44:50 Coding ghost.js
    46:36 createGhosts()
    50:16 drawGhosts()
    51:48 ghost.changeDirectionIfPossible()
    52:33 ghost.isInRangeOfPacman()
    56:36 ghost.changeRandomDirection()
    57:05 ghost.calculateNewDirection()
    59:05 ghost.addNeighbors() - Helper function for Dijkstra path finder algorithm
    01:04:39 Solving a bug on path finder function
    01:05:38 pacman.checkGhostCollision()
    01:07:32 restartGame()
    01:08:06 gameOver()
    01:08:27 drawLives()
    01:11:00 drawGameOver()
    01:14:03 drawWin()
    01:15:55 Completed
    01:16:49 Drawing range of ghosts
    01:19:25 Incredible fail :(
    01:21:13 Winner winner, chichken dinner
  • РазвлеченияРазвлечения

Комментарии • 1,1 тыс.

  • @ServetGulnaroglu
    @ServetGulnaroglu  Год назад +205

    We got a 5% discount on all the keyboards. You can check the name of the keyboard that I used in the video in description. yunzii-mechanical-keyboard.myshopify.com/discount/SERVETGULNAROGLU

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

      But how do you push the butins so fast

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

      now, i'm your follower

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

      Hocam klavyeler hakkında video gelein

    • @GeRiZ.
      @GeRiZ. Год назад +1

      Bro I need to know the shortcutkeys that you've been using

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

      which software

  • @thedeveIoper
    @thedeveIoper Год назад +2856

    Coding all day then listening to someone code to relax. What am I doing with my life

  • @ze_kangz932
    @ze_kangz932 5 месяцев назад +284

    Crazy how such a simple game can be so much complex. Thanks!

    • @nicholassalmon8054
      @nicholassalmon8054 3 месяца назад +16

      Who ever said a game can be simple 😂

    • @TejasChauhan0
      @TejasChauhan0 2 месяца назад +21

      Imagine GTA 6 now

    • @GeeGnebAb
      @GeeGnebAb 2 месяца назад +4

      crazy how if you create this game thirty years ago you'll be a millionaire.. imagine making millions in a hour or so 🤔

    • @J_Carlos05
      @J_Carlos05 2 месяца назад +1

      is not complex if u practice a lot

    • @jumbledfox2098
      @jumbledfox2098 10 дней назад

      you know you're doing it right if you break it down into small simple chunks :3

  • @MishGonzalez
    @MishGonzalez Год назад +1279

    I listen to my husband programming all day and here I am, it's never enough 😂

  • @kazukiaj8565
    @kazukiaj8565 11 месяцев назад +182

    One thing I love about programming is you learn every single day. I feel like how you created the map using nested arrays where the 1 represents a wall was mind opening. It is sooooo clever and glad I found something new today!

    • @selmarantonio
      @selmarantonio 9 месяцев назад +7

      im learning programming and that really blew my mind, such a clever way to create the map

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

      This was my exact thought!

    • @filipefera4097
      @filipefera4097 5 месяцев назад +1

      Incredible that this strategy is kinda obvious to me.

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

      This is the goto method for generating a grid map in code. Represent the map using a 2D array where the state of each element represents a cell in the grid map.

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

      Yes that's how 2d maps are made or at least it the easiest way I know of

  • @codingandthings
    @codingandthings Год назад +120

    This is an exciting project. I once implemented a Pacman as an interview project on mobile, and then re-implemented it in 3D. Also used similar level mapping technique for that. Amazing to see the live coding

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

    The perfect combination of coding and relaxation! Who knew Pacman could be so soothing? 🎮👌

  • @SuperEvilDoc
    @SuperEvilDoc Год назад +2215

    Too fast, bro chill

    • @valovanonym
      @valovanonym Год назад +228

      Coding fast like that feels really good actually

    • @abetasticx7982
      @abetasticx7982 Год назад +151

      He is actually doing a lot of mistakes with his vim shortcuts because he tries to be fast. Nevertheless still a good pace ;)

    • @nickhobert2077
      @nickhobert2077 Год назад +94

      exactly what im thinking the whole time. if you are typing so fast that you make a mistake nearly every line you spend more time correcting it than if you were to just go a little slower

    • @AlexTurbo
      @AlexTurbo Год назад +40

      You’re a better programmer when you go fast and make mistakes

    • @xlimitx0725
      @xlimitx0725 Год назад +48

      @@nickhobert2077 Then who will watch the video when he types like a turtle.. It’s just a video to entertain people.

  • @theonewiththegoldentouch
    @theonewiththegoldentouch Год назад +892

    This is absolutely beautiful and outstanding. Just makes me wonder how humanity came up with programming.

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

    Thank you for your videos. Because of you start learning html and css. I watch you maybe for half of year and i really love your content about clone of different pages, and i clone your code and it helped me to start learning web development.

  • @taokodr
    @taokodr 6 месяцев назад +13

    Currently at the 15:00 mark in this video, and I'm already eager to fiddle with the map code you've built for other projects. This will be fun both to watch and to use as a reference tool.
    Thank you for posting!

  • @studyingasyouwere
    @studyingasyouwere Год назад +458

    Always love your videos and your keyboards are always top notch! Your videos inspired me to learn CSS and HTML! It has been 2 months since I started learning and I even started posting some web dev content! Latest one was making Google search page clone. I even added the responsiveness to it. 🙂Thank you Servet for inspiring me to learn! All the love ❤

    • @ServetGulnaroglu
      @ServetGulnaroglu  Год назад +64

      Thank you! You made my day! All the love ❤

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

      @@ServetGulnaroglu Good afternoon can you tell me that how can I become the best programmer like you

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

      @@dilshodfayzullayev3767practice and devotion

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

      @@dilshodfayzullayev3767 interest, enthusiasm in coding>>other factors!!

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

      :simley_cat

  • @1Chitus
    @1Chitus Год назад +6

    Always love your videos and your keyboards are always top notch! Your videos inspired me to learn CSS and HTML! It has been 2 months since I started learning and I even started posting some web dev content! Latest one was making Google search page clone. I even added the responsiveness to it. Thank you Servet for inspiring me to learn! All the love

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

    WOW that was freaking amazing! nice work!

  • @taskmanager_1021
    @taskmanager_1021 6 месяцев назад +7

    I remember being in bed at night and hearing my dad type on the computer that we used to own, it was always nice to listen to

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

    This so cool man! Thanks for creating these.

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

    If thats how much it took to program a simple game like pacman into java script, imagine having to do this all on asm like how they did in the 80s.
    bravo as always.

  • @Lsr-bt5hb
    @Lsr-bt5hb Год назад +30

    Besides your coding skills, the sound of your typing is quite enjoyable to me. Damn Good!!!

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

      he most likely have two monitor side by side, copy pasting but in visual

  • @543Akeel
    @543Akeel Год назад +33

    One of the best videos i've EVER seen in my entire life

    • @ServetGulnaroglu
      @ServetGulnaroglu  Год назад +16

      One of the best comments i've ever seen

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

      But why? What makes it so good?

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

      @@webdevcoursestv because it is good, the keyboard sound is good, the code is free if you are doing pacman game, u can just check this video Xd

    • @4Musketeers-pj3jb
      @4Musketeers-pj3jb 10 месяцев назад +1

      @@ServetGulnarogluone of the best reply to a comment i have ever seen

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

      @@webdevcoursestv one of the best clueless or indifferent comments i have ever seen !!

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

    I love programming! Thanks to these videos, I increasingly want to return to what I was so passionate about, which was programming.

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

    Such an intersting video. I am really impressed. Good work :D

  • @fraso
    @fraso Год назад +113

    Heavy vim user here.. I noticed you started using t motion to execute commands inside HTML tags.. big up for that in comparison to your last videos..
    About vim commands, you should probably try v-block mode to edit multiple blocks of code (that would have been much faster in the map section to swap 1s and 2s)
    Keep going, love your content!

  • @ForeignMadeIt
    @ForeignMadeIt Год назад +20

    I love this content im learning way more than when the coder talks lol

  • @mercenaryghost2850
    @mercenaryghost2850 4 месяца назад

    This is probably the only asmr I enjoy

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

    Stunning work, simply amazing

  • @TruyenNetTN
    @TruyenNetTN Год назад +6

    This video is truly a great source of inspiration for me. Thank you for making it!

  • @timothyt.82
    @timothyt.82 Год назад +3

    I used to make front end designs for websites in college, which actually got me hooked on the idea of coding. I really need to make to learn Java...

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

    Congrats Servet! It's awesome!

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

    Great relaxing video - love the keyboard

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

    Incredible!

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

    It's great I was able to reduce the size of the code

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

    This is so satisfying to watch and relaxing 😎

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

    gotta love those keyboard sounds SIr, music to my ears.

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

    It's crazy how we have come so far. Programming is one of the most important things today.

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

    MOTIVATION FOR CODING ❣️❣️

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

    Keybord tapping just got me sleep, also good sound to, keep do nice job, ma G

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

    This is so fun. I can watch it all day:)

  • @bincut09
    @bincut09 9 месяцев назад +18

    The fact that you did this in an hour tells me that you are truly Talented. Happy Coding my Friend 🙂

    • @DanoSvK1
      @DanoSvK1 5 месяцев назад +1

      He coded it before and it definitely took him hours including a lot of googling and trial and errors (at least when he was coding pac-man for the first time). This is how programming works. Now he just created the project mainly out of fresh memory after figuring everything out.

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

      @@DanoSvK1 I know how programming works. I’m saying that the fact that he remembered how to do all of that is talented.

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

    One of the best asmr programming video I ever seen) Maybe next time you will add keycastr, because its iteresting to knew shortcuts you use in video and I cant understand sometimes what keys you type))

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

    Im not sure if you're a coding channel, an asmr channel, or an asmr coding channel, but either ways, I loved watching this! Loved the keyboard sounds and also seeing the coding going on (as someone who doesn't know all that much about coding besides what I've seen a decade ago in one semester of computer science haha).

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

    you are very nice coder😊😊😊😊

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

    I just want to say, thank you for this video! I didn't use it as an ASMR video, but instead I followed along and was able to learn many new things (I haven't done very much javascript before). I find it intriguing how you use VIM commands in VSCode. How did you discover that? And how long have you been learning VIM commands to have them just seamlessly integrated into your workflow?

    • @ServetGulnaroglu
      @ServetGulnaroglu  8 месяцев назад +2

      it's been a couple of years I am using VIM. still not perfect but things get better everyday :) Thank you

  • @user-ml4ln4fw6v
    @user-ml4ln4fw6v Год назад

    Beautifully! Without words.

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

    Nice to see some different logics on how to make pacman

  • @joysen.developer
    @joysen.developer Год назад +7

    It's Insane

  • @MyNguyen-nj1jx
    @MyNguyen-nj1jx Год назад +4

    i wish i could understand all your shotcuts 😢 looks so cool

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

      It is easy you can practice this in 15 days. Vim shortcuts are really usefull

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

      just read the vim user manual

  • @WhiteBear-dy8jn
    @WhiteBear-dy8jn Месяц назад

    Thank you for rekindling my interest in programming

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

    I have never been programming or even near learning it but I started being curious as I dont really have any hobby and Im bored to the death how programming works and wanted to chill. Saw this video and I must say it was really satisfying watching you programming. I never new you can create map with just pure numbers, If I understood correctly you used 1 for creating wall 2 for creating empty space and 0 for deleting objects. I might actually start learning programming just for fun . Keep up with videos !

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

    You are a real coder.

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

      ​@@guambejr racist

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

    Visual studio code is indeed a really good coding software

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

      not better than vim

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

    your video is great!!! Your videos always i get a motivation

  • @SunnySpitts
    @SunnySpitts 4 месяца назад

    This is great, Love to see the code its inspiring but man IS SLAMING those keys xd especially when he's testing the game

  • @yuratripwire1001
    @yuratripwire1001 Год назад +12

    I wish I started learning at an early younger age

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

      I am learning at 13

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

      Age is not important. Programming can be learned at any age. How old are you?

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

      I started as an adult, took me 5 years of coding as a hobby before I could code "on my own". You could probably do it even faster if you watch courses. It's not too late 🙂

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

      While you can learn it as an adult you will never be as good as you would be if you started as a teen,.. just like your first language

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

    My sympathy to anyone sharing walls/floors/ceilings with this guy

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

    I really love your keyboard!

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

    I just started my journey to learn how to code and im super confused lol but i expect it because thats how i was when I studied hvac, so hopefully in half a year i can be close to your skill level

  • @rydermccall3590
    @rydermccall3590 11 месяцев назад +28

    Anyone else find the sound of typing on a keyboard soothing?
    😌

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

      Psychic style.

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

      Isn't that why they're here

  • @smokehouse2544
    @smokehouse2544 9 месяцев назад +10

    How you're typing that fast is beyond me, just now starting to learn Python. Wonder if I'll ever get that fast lol.

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

      you'll get there

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

      hows going man never give up keep goin!

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

      It'll happen by itself overtime. The more you type the more you subconsciously memorize the keys locations and increase your own key stroke speed

    • @kemelyn656
      @kemelyn656 8 месяцев назад

      Never Give Up!! You Never What? :)

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

    Awesome content. Thank you

  • @hhh-qg5nr
    @hhh-qg5nr 3 месяца назад

    One of the best videos i have seen :)))

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

    Hello, I see that you can move the cursor text between statements without using Arrow keys (you just use Alphabet keys). Can you show me how to do that ?

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

      This is because he is using an extension for vscode called Vim. Vim is a veeery old text editor that was invented before mouses existed, so everything was done via the keyboard. You can lookup a tutorial on how to use it. It can be hard to learn but once you do it's great

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

    These are some Godlike super sayan JavaScript programming ninja skills. Incredible to watch

  • @user-zb3tp2yo8d
    @user-zb3tp2yo8d 7 месяцев назад +1

    your coding is very skillfull. good video❤

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

    OMG dude, your kboard is awesome.

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

    i really want to know all these shortcuts, it's awesome to an amateur coder like me

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

      he is using VIM first you'll need to learn VIM

  • @wangdomAvg2900
    @wangdomAvg2900 8 месяцев назад +6

    Can you make a tutorial on all the shortcuts you use to navigate the code without the mouse: like selecting text and replacing it, going left and right and to the end of the line.

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

    Appreciate your work ❤️

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

    abi çok sağol neredeyse tüm videolarını izlemeye çalışıyorum ve senin sayende çok şey öğrendim çok ama çook teşekkür ederim.

  • @glitchy9171
    @glitchy9171 Год назад +9

    Servet abi, udemy kursu yapsana bir şeyler öğrenelim

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

    Servet bey ben de yeni yeni html css bitirdim senden rica etsem senin html-css sonrası öğrendiğin şeyler veya izlediğin yol nedir bilgi verebilir misin bu yorumun altına

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

      Html ve Css sonrasi Javascript ögrenmen mantikli olur. Bu sayede olusturdugun butonlari, textleri, genel olarak web siteni interaktif hale getirebilirsin.

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

      Css ogrendikten sonra bootstrap ogrenebilirsin cunku bazi css komut kumelerini tekrar tekrar projelerinde yazmak yerine bootstrap denen css kutuphanesiyle daha rahatca projelerinde kullanabilirsin. Ayrica tailwind css de ogrenebilirsin. Sonrasinda Javascript ogrenmen gerekecektir cunku front end developer olarak bir yol haritasi cikaracagini dusunursek React , Angular , Vue.JS gibi Javascript kutuphanelerinde kod yazabilmen icin Javascript bilginin olmasi gerekecektir. Cogu insan Javascript'i tam anlaminda ogrenemeden bu gibi Javascript kutuphanelerini ogrenmeye calistiklari icin zorlanirlar ve ogrenme cehennemine girerler. Ileriki zamanlarda sirketlerde calisirken cogu ilanda Typescript de istendigini goreceksiniz. Typescript , Javascript'e gore strongly typed dedigimiz degisken turlerinin oldugun , OOP dedigimiz prensibin yer aldigi kurallarin yer aldigi bir programlama dilidir. Kullanilmasinin sebebi , projede surdurulebilirligi saglayabilme , kodun daha okunabilir olmasidir. Ben mesela bir yazilimci aldim sonra cikti diyelim , gelen yazilimci projede kodu okurken oradaki degiskenin ne ise yaradigini turunu bildigi icin daha hizli adapte olacaktir. Dahasi da oldugunu dusunuyorum fakat benim aklima gelenler bu kadar. Internet uzerinde Front-End Developer Roadmap olarak arastirdiginiz zaman Ingilizce yazilar ve dokumantasyonlardan yorumlayarak bir yol haritasi cizebilirsiniz.

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

      @@GameFreasher teşekkürler

  • @nebursp5
    @nebursp5 8 месяцев назад

    You can use the dot command to repeat the last command. It could be usefull replacing the values in the matrix.

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

    This was amazing!

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

    what software do you use?

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

    Bro is on next level. I'm excited and jealous

  • @Ilikefood201
    @Ilikefood201 16 дней назад

    Good coding, wish I could code like this.

  • @ServetGulnaroglu
    @ServetGulnaroglu  Год назад +6

    A useful link for dijsktra visualization: clementmihailescu.github.io/Pathfinding-Visualizer/#

  • @gazehound
    @gazehound Год назад +6

    I think vim mode is slowing you down. I highly recommend learning VS Code's built-in key combos, they really are very very good. Line duplication is just alt+shift+down. Inserting a new line after the current one is ctrl+enter. You seem to be trying very hard to do clever/speedy vim keybinds and end up wasting time recovering when you mess them up

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

      Vim is a journey and I am a passenger. I always learn new things about vim. And it's never gonna stop. I will be faster tomorrow than today for sure.
      Also, almost every IDE has vim extension. However, you can only use VSCode shortcuts in VSCode.
      Thank you for the advice though ✌

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

      @@ServetGulnaroglu Whatever works for you, my friend

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

    I have a suggestion for the sound of the keyboard. If you use a towel or t-shirt or something similar underneath it it makes it sound much thockier and less echoy and less woody.

  • @romievthedon
    @romievthedon 11 месяцев назад

    I watched this in less than 10 minutes, and I have to say I'm impressed lmfaoooooo

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

    After completing you are serious into the game 😂😂

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

    How is your keyboard so loud

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

    Excellent,and beautiful!

  • @user-yu1hn6wf2p
    @user-yu1hn6wf2p Месяц назад +2

    Судя по звукам грохота 5:28 , 5:45 Pacman уже бродит между этажей и ищет автора ролика

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

    arent the ghosts supposed to move the whole time?

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

      Yes, it can be fixed by changing the interval in the constructor of ghost class from 10000 to ~4000

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

    I was thinking in create a multiplayer mode where other players can control the ghosts

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

    amazing so great 😁👍 merci for den Host.

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

    Now, make them communicate to each other your location. Any ghost in range of another knows your location with a tier system for information. Only tier one information can be transfered which comes from the nearest ghost. The information will then go down a tier to be non-transferable.

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

    omg so beatiful :D nice video bro

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

    hocam ahaha gerçekten müthiş bir fikre imza atmışsınız hiç daha önce bu tarz bi videoyla karşılaşmamıştım

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

    I tried coding pacman a few years back. I knew very little about programming but I stil tried it. It was a very simple, incompleted version but I had fun though!

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

    at the beginning he was warming to keyboard up so it didn't pull a muscle.. good job sir.

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

    love that keyboard 🔥

  • @3RDEYELOVE
    @3RDEYELOVE Год назад

    WHOA pretty cool ideal💪🏽 thanks

  • @Kain.007
    @Kain.007 4 месяца назад

    The new Pac-Man coding speedrun is looking fire 🔥

  • @MENTAL1223
    @MENTAL1223 10 месяцев назад +1

    Halaldı qaqaş,adıvı oxuyanda sevindim Azerbaycandada öz üzerinde işleyen gencler var.

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

    goog job as fast and clear code

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

    The man who generated these codes 🤖👽🧠

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

    Awesome vim skills... May I ask how much time did you spend training it?

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

    Awesome work. You are virtuosic. I subscribe.

  • @TuanNguyen-qr6ks
    @TuanNguyen-qr6ks 10 месяцев назад

    keyboard typing sound is so good