Search found 4373 matches

by albinopapa
February 22nd, 2014, 6:54 am
Forum: Everything
Topic: visual studio c++ 2010 express intellisense ??
Replies: 27
Views: 10706

Re: visual studio c++ 2010 express intellisense ??

With windows 7, you have to format if you have winxp, but there is an in place upgrade from vista to 7. In other words you don't have to format if you have Vista already installed. Last time I tried to install win7 over XP it made a Windows.000 folder, can't remember now if that was the old xp file ...
by albinopapa
February 22nd, 2014, 6:35 am
Forum: Everything
Topic: Visual Studio 2013 Express
Replies: 21
Views: 10870

Re: Visual Studio 2013 Express

It's seems hit or miss with the autocomplete. Using std::vector functions I can type .si then () and it will finish, but with user data types, even if it is highlighted, it won't finish for me. The auto tabbing is pretty sweet. The way it pairs the brackets and parentheses is king of cool, but diffi...
by albinopapa
February 20th, 2014, 10:00 pm
Forum: Everything
Topic: Bonus Question Intermediate 21
Replies: 37
Views: 12478

Re: Bonus Question Intermediate 21

Could create multiple viewports and have one for the game, one for items(inventory) and one for dialogue.
by albinopapa
February 20th, 2014, 9:50 pm
Forum: Everything
Topic: directx 11 loadin .obj files
Replies: 2
Views: 1627

Re: directx 11 loadin .obj files

How are you implementing the alpha, by value or by u,v value (alpha map)
by albinopapa
February 20th, 2014, 5:39 pm
Forum: Everything
Topic: Will this series make me a pro?
Replies: 16
Views: 6351

Re: Will this series make me a pro?

Yeah, I think I made it to lesson 20 before I started practicing on different things. I feel I have learned a lot, but not nearly enough. I use cplusplus.com a lot for referencing. I have spent hours learning how different functions work. Sucks the older I get the longer it takes for something to si...
by albinopapa
February 20th, 2014, 5:30 pm
Forum: Everything
Topic: Collaboration
Replies: 3
Views: 1645

Re: Collaboration

The details are in the first post of the thread. If you want to help with the project, you can join the irc that Luis is always in. Luis is also hosting a Git server on his laptop that stores the project. Join the irc channel, speak with Luis on how to setup a Git client, we use tortoiseGit for the ...
by albinopapa
February 20th, 2014, 5:08 pm
Forum: Everything
Topic: Who's up for a group challenge?
Replies: 165
Views: 74071

Re: Who's up for a group challenge?

Currently, there hasn't been a whole lot of progress, because I'm still working out a few issues with code structure. Once I get it figured out we can proceed with finishing the game. If the game actually worked the way it's suppose to, we would have some menus, 8 levels, a controllable player ship,...
by albinopapa
February 20th, 2014, 4:03 pm
Forum: Everything
Topic: Getting wrong mouse coordinates
Replies: 7
Views: 2776

Re: Getting wrong mouse coordinates

The problem is here: D3DPRESENT_PARAMETERS d3dpp; ZeroMemory( &d3dpp, sizeof( d3dpp ) ); d3dpp.Windowed = TRUE; d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD; d3dpp.BackBufferFormat = D3DFMT_UNKNOWN; d3dpp.PresentationInterval = D3DPRESENT_INTERVAL_ONE; d3dpp.Flags = D3DPRESENTFLAG_LOCKABLE_BACKBUFFER; d...
by albinopapa
February 20th, 2014, 4:00 am
Forum: Everything
Topic: Post your real Pic here!
Replies: 9
Views: 2823

Re: Post your real Pic here!

chili wrote:
albinopapa wrote:Have you seen the lesson one beginner video, that's him
This.

lol
by albinopapa
February 19th, 2014, 10:07 pm
Forum: Everything
Topic: Very poor performance with dudes..
Replies: 5
Views: 2297

Re: Very poor performance with dudes..

The locking and unlocking of the back buffer will always be a slow process, the cpu has to wait until all memory access to that block of memory is done before it can use it for drawing. If you are in the beginner series, wait until later lessons and he will show you how to speed up the drawing proce...