Search found 9 matches

by Peregrin_Tuk
October 30th, 2016, 5:30 pm
Forum: Everything
Topic: Home Made Tetris
Replies: 8
Views: 3036

Re: Home Made Tetris

Thanks Warnakey. First I was about to create some classic shooting game, but I leave the project and a couple of months later I was in the mood to make a simple game and it came to me the idea of tetris... I just used that old folder and didn't find a way to change the name of the containing folder ...
by Peregrin_Tuk
October 23rd, 2016, 8:39 pm
Forum: Everything
Topic: First Encounter with Computer Programming?Your Origin Story!
Replies: 8
Views: 3164

Re: First Encounter with Computer Programming?Your Origin St

I started in my 20's when a someone gave to me a QBasic & MS-DOS 5 manual... learn some practical stuff but dropped.. many years latter I started with C++... learn the basics (mostly C)... because Uni (I was in Engineering career by then) quit studying programming many years... one day (when I was 2...
by Peregrin_Tuk
October 23rd, 2016, 3:30 pm
Forum: Everything
Topic: Home Made Tetris
Replies: 8
Views: 3036

Re: Home Made Tetris

That's because "travel_ list" is initialized inside a switch statement. Was my mistake to not initialize it as null_ptr when declare it. The error is thrown because in case none of the conditions inside the switch were true you will be accessing undefined places in memory.
by Peregrin_Tuk
October 23rd, 2016, 3:33 am
Forum: Everything
Topic: Home Made Tetris
Replies: 8
Views: 3036

Home Made Tetris

Hi Everyone, I'm practicing programming and this time, I made a Tetris using Chilli's Framework... It took me some time to finish it, but I think it works in a pretty decent way... I just wanna to share it with you...Bye!
by Peregrin_Tuk
September 6th, 2016, 4:08 am
Forum: Everything
Topic: Bots_In_Maze
Replies: 5
Views: 1859

Bots_In_Maze

Hi everybody!... this is my first post in this forum hope you like it. What I've done is a little "Bots played game" based on a challenge that i take from the web, It's not a mindfuck challenge, it's simple but I think it's a good exercise to work with... The problem goes like this: (you can find it...
by Peregrin_Tuk
September 1st, 2016, 2:54 pm
Forum: Everything
Topic: Delete Putpixel lines from a txt file based on pixel color
Replies: 13
Views: 4182

Re: Help with For Loop

I think the problem is that you are passing the argument by value (I think that is the correct word), then you are creating an array of n elements "in run time"... you need to pass arguments by reference or the memory adress (pointers): try this: const string file = "putpixel.txt"; const string rez ...
by Peregrin_Tuk
August 1st, 2016, 12:26 am
Forum: Everything
Topic: [UPDATED 8-1-16] Question to the more experienced members
Replies: 12
Views: 4180

Re: Question to the more experienced members - To link list

I read the same in his book... and I think it's not all about the speed, It's about the features that 'vector' offer compared to others STL containers... you can take a look in c++ reference or any other page and check it... When you decide to use Linked List, I think, is when you need make changes,...
by Peregrin_Tuk
July 10th, 2016, 3:30 pm
Forum: Everything
Topic: reboot???
Replies: 7
Views: 2849

Re: reboot???

You should check his YouTube's channel... and read the forum...
by Peregrin_Tuk
June 23rd, 2016, 7:47 pm
Forum: Everything
Topic: Tutorial Reboot Framework Suggestions
Replies: 18
Views: 6860

Re: Tutorial Reboot Framework Suggestions

Thanks for the tutorials Chili... This might be a dumb suggestion but... -> I suggest you to change your IDE background to a dark one... The white background when you code a game for two hours fried my brain... I learned a lot of things of C++ with your videos... the only thing that maybe was diffic...