The Altera Centauri collection has been brought up to date by Darsnan. It comprises every decent scenario he's been able to find anywhere on the web, going back over 20 years.
25 themes/skins/styles are now available to members. Check the select drop-down at the bottom-left of each page.
Call To Power 2 Cradle 3+ mod in progress: https://apolyton.net/forum/other-games/call-to-power-2/ctp2-creation/9437883-making-cradle-3-fully-compatible-with-the-apolyton-edition
Originally posted by KrazyHorse
Okay. This was my first time doing anything in C++ (did **** in C before, along with FORTRAN and IDL)
C++ is the ****ing ****.
If you think C++ is awesome, C# is Godly.
"The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
Ben Kenobi: "That means I'm doing something right. "
Are you doing C-style C++ or going all-out with object oriented, polymorphic goodness?
"The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
Ben Kenobi: "That means I'm doing something right. "
I googled for how to do a couple of things that were annoying to do in C (i.e. I knew how to do them in C, but searched for how to do them in C++) and it seems much easier in C++ (less monkeying around with the innards when all I need is something simple)
Originally posted by KrazyHorse
I googled for how to do a couple of things that were annoying to do in C (i.e. I knew how to do them in C, but searched for how to do them in C++) and it seems much easier in C++ (less monkeying around with the innards when all I need is something simple)
So you advanced from 1970s era languages to a 1980s era one. I can't wait til you discover Java (90s) and then C# (2000s).
"The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
Ben Kenobi: "That means I'm doing something right. "
"The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
Ben Kenobi: "That means I'm doing something right. "
Jon Miller- I AM.CANADIAN
GENERATION 35: The first time you see this, copy it into your sig on any forum and add 1 to the generation. Social experiment.
Originally posted by Richelieu
I still have nightmare about pointers
Oddly enough, this is one of the times pointers come in handy.
I am having such a time with WorldPainter because I can't resize and repaint the bitmap as fast as I want to (I want a red square to highlight the plot you are pointing at, is that so hard?).
In C++ I'd just get the pointer to the screen data and the offset and jump to the appropriate byte, color it, replace the old value, and put the whole thing back.
Without pointers I'm stuck wandering through the entire structure and BOY, is it costly.
So I try to use DirectX... it doesn't support 2D anymore!
The other problem I have is - to everyone that knows how to do this stuff, it's easy. So they say "Declare a surface and use it." ... WHAT?!? And if you ask them to explain themselves they get mad.
However, for 90% of the stuff programmers use it for, C# is IT!
Now to get someone to pay me for doing C# and I'll be all set.
Comment