I'm now in the process of developing my own game because if these tutorials.thank you so much for making them
@TheDrumergod9 жыл бұрын
please dont stop this videos
@skirankumar0008 жыл бұрын
Hi, I request you to please make a video on operator overloading with all of its examples..
@prince59226 жыл бұрын
it's the toughest concept in programming
@hussain43733 жыл бұрын
At 4:58 I'm getting an error saying" cPaddle was not declared in this scope", can anyone explain please?
@Shad0ow1238 жыл бұрын
your videos helped me pass my exams, thank you so much !
@visaqueries2023 Жыл бұрын
can you please say why did you delete the main function of the ball? then what was the reason to show ball position before if you gonna delete it later and use paddle instead?
@Swanseaguy19799 жыл бұрын
Thanks for taking the time to post these videos, how many lessons will there be in the series?
@ninodecaro90993 жыл бұрын
I'm getting "No operator "
@sd37764 жыл бұрын
is GameManger supposed to be GameManager?
@skykingjason9 жыл бұрын
Hi, I appreciate your tutorials, as I am learning a lot. However, just like in the Snake tutorial, you have included the conio.h library. As a Mac user using Xcode, everything works perfectly until there, as the conio.h library is exclusively for Windows. I would really appreciate it if you used more universal solutions that everyone can use!
@NVitanovic9 жыл бұрын
+GalaxyMods I'm not sure if it is a valid replacement, but you can try this library sourceforge.net/projects/linux-conioh/
@funnifurrytechgirl4 жыл бұрын
if you want a programming language that can be used on all OS's, look elsewhere
@Nguyenthao-oj9ku2 жыл бұрын
hello man, can you please explain why do you need to use inline from 85 to 89? I think inline is good when we use multi files.
@abdelrhmanahmed13784 жыл бұрын
why you use pointer instead of regular player object ?
@narahs228 жыл бұрын
Dude why are up and down always opposite when you say it? Paddle 1 went from (0,0) to (0,-1) isn't that moving down or am I missing something???
@narahs228 жыл бұрын
I was confused when you say moving up is y- -, but it actually moves downward from (0,0) to (0,-1) so do you just have up and down mixed up or am I not understanding something.
@dbredred18 жыл бұрын
It is, Because he put the y after the X in the cout, and the coordinates start at the top left. Meaning that 0 would be the top, and we need to take away to get closer to 0.
@omegazyph7 жыл бұрын
Pong game\main.cpp|80|error: type `class cPaddle' is not a direct base of `cPaddle' i don't know why i have this
@omegazyph7 жыл бұрын
i found out i had to take the : cPaddle() out now it works fine
@potatoingots18064 жыл бұрын
i cant use conio.h command what shall i do instead???
@funnifurrytechgirl4 жыл бұрын
it doesnt seem to work, even when i copy-paste i get syntax errors
@ganxe8 жыл бұрын
Hi, please why "inline" for Reset() in cPaddle class and not for cBall class (just: void Reset()) ? Thank you.
@pouriakalantari65375 жыл бұрын
it s because inline functin will be proceed so much faster than others but is depends on whole codes and the amount of line of the incline function.. here its very useful why maybe during the game we need many times to reset and in a case of incline func, it will be done much more easier and faster
@adanolivares67738 жыл бұрын
I'm in between part 2 and part 3. after successfully compiling the code after part 2, I get a warning message about delegating constructors only available in c++11. will this be a problem after im done with the whole thing?
@adanolivares67738 жыл бұрын
thanks for the vids by the way. I successfully recreated the snake game thanks to you
@laughAFrame7 жыл бұрын
how to use the class "cmanager" using inheritance?
@jjeon98507 жыл бұрын
How do I see the source code? It keeps freezing at a tab saying "checking your browser... please wait"
@papasluck18985 жыл бұрын
hi im unsure if you are still active on this channel but when I input cout
@starelite63324 жыл бұрын
Did u include conio. H and friend function in each class?
@blighmorgan55513 жыл бұрын
@@starelite6332 where would I put coino.h
@starelite63323 жыл бұрын
@@blighmorgan5551 #include #include Using namespace std; Add these three lines at the start and then try
@bdgboa75477 жыл бұрын
do i save this as a .bat file???
@Nick-jb4xi6 жыл бұрын
it's still a .cpp file
@judewoolls34328 жыл бұрын
Thanks successfully made snake game
@nofelnofa81216 жыл бұрын
cPaddle( int x,int y) :cPaddle{ } what mean :cPaddle() thank you so much
@Cr0ftyTV5 жыл бұрын
he's creating an object called cPaddle using the cPaddle constructor. So it uses the x and y from the original cPaddle class.
@sitimariam33129 жыл бұрын
this pong game use 2D array??
@NVitanovic9 жыл бұрын
+siti mariam No arrays.
@adindarizkyfebiyanto62906 жыл бұрын
thanks bro
@usama579266 жыл бұрын
great
@LuRybz8 жыл бұрын
Code: pastebin.com/EVsxyZbi
@unamattina60234 жыл бұрын
I don't know that will anyone see this but WHY DID HE SAY INCREASE Y BUT HE DECREASE Y??? WHY HE DIDN'T Y++ FOR UP MOVEMENTS?????????????
@uovo4 жыл бұрын
because its using the same way pixel on your screen appear, coordinate [0,0] is equal to the first pixel of the screen which is in the top left, so y[0] is the top and if you add you're actually going down, i dont know if i explained good enough.