Apolyton Archive  |  Preserved copy of the Apolyton Civilization Site and its forums as they stood in September 2005. Read-only; nothing here can be posted to or replied to.  |  Forum index |  About this archive |  The 1998–2001 UBB forums
Today on Apolyton WARDELL INTERVIEW PROMO A.C.S. HISTORY CHAPTER 4 GET CIV4 /w FREE PLUS! A.C.S. PHOTO GALLERY GET A.O.M. V1.1
Apolyton Civilization Forums
main| civ2| civ3| civ4| smac| ctp2| ron| moo3| galciv| galciv2| alt| about|
ApolytonPLUS | register | search | faq | new posts | pm (-/-) | upload | members
hall of fame new! | civgroups | civgroups news | interviews | the column | radio | chat | directory | news | store | PLUS
Apolyton Civilization Forums : Powered by vBulletin version 2.0.3 Apolyton Civilization Forums > Call To Power II > CtP2-Source Code Project > GENERAL: CTP2 Source Code Cafe
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
CivGroups
CTP2 Source Code Project (59): Not a Member - Join

bottom of page
  
Author
Thread   
Pages (17): [ <<   10   11   12   13   14   15   16     >> ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 17-04-2004 22:52
Edit/Delete Message Reply w/Quote
#361 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

quote:
Originally posted by Solver
Oh true, the days when 512 kb (not 500 ) was a limit were either beatiful, or a major pain, depends on how you look at it. At least, well, you couldn't have problems with 3000 source lines because you wouldn't fit that much code anyway . I will though admit that I haven't written programs with those limits, although I did run some shameless experiements on compiling 16-bit COM exeuctables just recently.


OK, I admit I rounded a bit, didn't want to scare people to much.......
3000 source lines nope I think the limit was something like 2000 lines, just because of memory for the editor............

As I said: sweet old times.........

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 17-04-2004 22:54
Edit/Delete Message Reply w/Quote
#362 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

quote:
Originally posted by Locutus
It seems Gilg is one of those technical gurus who couldn't explain something in terms mortal beings can understand if he wanted to I see a lot of those people around me so I can always spot them right away

Solver is not quite that far gone yet


I tried to say it as easy as possible ............. Is it my problem that such things are a bit complex??????????

But by the way: such things are most of the time easier to explain face to face..........or via chats......

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:32
  Old Post 17-04-2004 23:03 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#363 Report this post to a moderator
Support Apolyton or Terrorists Win

quote:
Originally posted by Locutus
It seems Gilg is one of those technical gurus who couldn't explain something in terms mortal beings can understand if he wanted to I see a lot of those people around me so I can always spot them right away

Solver is not quite that far gone yet



No, I am *no more* like that. I unfortunately have to deal very often with people who have a hard time understanding even the simplest computer concepts, so I had to learn to explain things very plainly for them, but I sure prefer complex explanations . Heck, I should get a prize for my explanation of various file types, file associations and such, that was really good of me .

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:32
  Old Post 17-04-2004 23:04 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#364 Report this post to a moderator
Avatar Enlargement: We've got the solution

quote:
But by the way: such things are most of the time easier to explain face to face..........or via chats......


Nah, a simple what does a compiler mean can be explained quite well this way - as for details of how a compiler works, why it's needed in the first place, and how is an object file different from an executable... agreed, I'd also find those easier to explain face to face .

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:32
  Old Post 18-04-2004 02:04 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#365 Report this post to a moderator
Browse Apolyton AD-FREE

Didn't we have a MULE fan in this community? CoT or Gilg or someone? Can't quite remember who but I know there's someone. Anyway, this person (or persons, if he's not alone), might want to check out this thread.

Keygen is offline Keygen
Emperor
Athens, Hellas
Jan 2000
time: 07:32
  Old Post 19-04-2004 06:15 Visit Keygen's homepage!
Edit/Delete Message Reply w/Quote
#366 Report this post to a moderator
Browse Apolyton AD-FREE

I think OnePresent will get a bit confused with all these posts
An explanation how programming works:

A computer program (that is what CtP2 is and all computer games) is written in a programming language. There are several programming languages, each one with specific orientation.

Visual Basic for example is mainly used for RAD (Rapid Application Development) which mean it is fast and simple but lucks the power of other languages. It is used for developing programs exclusively for the Windows operating system (I am not current with VB so I might be wrong in this last one). HTML, the language most webpages are written in is a language created specifically for the World Wide Web and used to instruct a web browser how to render a webpage and how it will look in the screen. C++, wich is the language CtP2 is written in, is a generic one but powerful enough to be used in a wide range of applications. It is the favorite language of the gaming industry. It offers more control than Visual Basic does.

These programming languages are written in a text form, quite similar to a spoken language but with a small vocabulary compared to spoken languages and a strict syntax. This text can be written in a simple text editor like the notepad of the Windows but it is used to be written in specialized programs, like Microsoft Visual C++ 6.0 (the editor used to originally write CtP2), that have the necessary tools to aid you to write and edit this text more efficiently. This text is what is called the "code" or more accurately "source code".

The compiler is another tool, found in most fore mentioned speciallized programs or as stand-alone. In C++, it checks the syntax of your code and if it finds it correct it produces an object file wich contains machine code (binary form, combinations of bits of 1 and 0 that computers can understand), linker directions and other useful information. In this stage the result is not an executable program. Here's where the linker is involved. It links the object(s) file(s) with any libraries ("ready" code of common tasks like the output of a word in the screen) that had been included in the code (they are used a lot in C++ so that you don't have to re-write code for common tasks from the beginning).

That is how a program is made as long as I can remember but since it has been some time since I last coded I might have forgotten something

OnePresent is offline OnePresent
Chieftain
NC USA
Jan 2001
time: 00:32
  Old Post 19-04-2004 06:54
Edit/Delete Message Reply w/Quote
#367 Report this post to a moderator
Put an end to popups!

Wonderful! I think I might have learned something.

Thanks to everyone for their replies.

child of Thor is offline child of Thor
Emperor
UK
Jan 2002
time: 05:32
  Old Post 19-04-2004 16:29
Edit/Delete Message Reply w/Quote
#368 Report this post to a moderator
Support Apolyton

quote:
Originally posted by Locutus
Didn't we have a MULE fan in this community? CoT or Gilg or someone? Can't quite remember who but I know there's someone. Anyway, this person (or persons, if he's not alone), might want to check out this thread.




Yeah im a MULE fan - but the same problems i have with playing CTP2 MP over the net apply; the only times you see me at poly is when im at work, so i cant commit time to playing

And Gilg - i think any confusion over people's tech speak here at poly is understandable, after all we mostly post in English, which is not most peoples native language - heck its mine but i cant even spell properly!

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 19-04-2004 17:09
Edit/Delete Message Reply w/Quote
#369 Report this post to a moderator
Tired of ads?

quote:
Originally posted by child of Thor




Yeah im a MULE fan - but the same problems i have with playing CTP2 MP over the net apply; the only times you see me at poly is when im at work, so i cant commit time to playing

And Gilg - i think any confusion over people's tech speak here at poly is understandable, after all we mostly post in English, which is not most peoples native language - heck its mine but i cant even spell properly!


I am a MULE fan as well, but long time ago, I played......

And not sure it will work from here........

The discussion Solver and me had, was just about some minor details of evolvement with compilers, nothing serious

And by the way, for your native language, you are not doing bad Could be better though, but .........

Top of my head: As our worst native 'speaker', I would announce BigMC as the winner. (no offense meant) And acutally myself as the worst german native speaker

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:32
  Old Post 19-04-2004 17:26 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#370 Report this post to a moderator
Get a bigger avatar today!

quote:
Top of my head: As our worst native 'speaker', I would announce BigMC as the winner. (no offense meant) And acutally myself as the worst german native speaker


Thank you for the award I would like to thank my psychiatrist, teachers and Magret Thatcher for coking up the educational system.

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 19-04-2004 17:33
Edit/Delete Message Reply w/Quote
#371 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

quote:
Originally posted by The Big Mc
Thank you for the award I would like to thank my psychiatrist, teachers and Magret Thatcher for coking up the educational system.


Your psychiatrist??????????????? For what enabled your multiple personality?

We think we here something But it ain't english..........

child of Thor is offline child of Thor
Emperor
UK
Jan 2002
time: 05:32
  Old Post 19-04-2004 18:38
Edit/Delete Message Reply w/Quote
#372 Report this post to a moderator
Support Apolyton

quote:
Originally posted by The Big Mc
......... and Magret Thatcher for coking up the educational system.




Now i know my she had some supporters - they were all drug addicts!!

And please - could you both promise never to debate(between the two of you) life or death subjects online(just in case you ever do), that way nothing unfortunate will happen

Last edited by child of Thor on 19-04-2004 at 18:57

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:32
  Old Post 19-04-2004 18:43 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#373 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

quote:
Originally posted by child of Thor

Now i know my she had some supporters - they were all drug addicts!!



You struggle with English too.

child of Thor is offline child of Thor
Emperor
UK
Jan 2002
time: 05:32
  Old Post 19-04-2004 18:57
Edit/Delete Message Reply w/Quote
#374 Report this post to a moderator
Avatar Enlargement: We've got the solution

you were too fast for my correction - thats what happens when you rush......

Its the things like the 'ing'+'ness' endings that get me, and if really has 2 l's or 1 like realy? 2 l's looks better?

But i always was a bad speller at school - so i wasn't making fun

your typo on coking in schools was just too funny to not pass comment on

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:32
  Old Post 19-04-2004 18:58 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#375 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

quote:
... in specialized programs, like Microsoft Visual C++ 6.0 (the editor used to originally write CtP2)


I'm not sure, but hasn't it been said that CtP2 was built under version 5.0?

child of Thor is offline child of Thor
Emperor
UK
Jan 2002
time: 05:32
  Old Post 19-04-2004 19:14
Edit/Delete Message Reply w/Quote
#376 Report this post to a moderator
Full PM-box? Change here!

I thought it was 6.0?

One thing i notice is with 6.0 on my system, when i get a game crash - MS Visual C++ 6.0 often springs into debug mode all by itself. I just dont know enough about it to actualy attempt to fix the suspected bug.
When i'm brave enough to download the source code, any advice for bug fixing? I've used the pull down menu to select 'run debug' but it doesn't appear to fix or run anything?
I'm waiting untill i upgrade my p166 - the thought of debugging on this machine doesnt fill with confidence

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 19-04-2004 19:22
Edit/Delete Message Reply w/Quote
#377 Report this post to a moderator
Avatar Enlargement: We've got the solution

quote:
Originally posted by child of Thor
you were too fast for my correction - thats what happens when you rush......

Its the things like the 'ing'+'ness' endings that get me, and if really has 2 l's or 1 like realy? 2 l's looks better?

But i always was a bad speller at school - so i wasn't making fun

your typo on coking in schools was just too funny to not pass comment on


I was thinking of making a comment myself, but I decided to be

quote:

And please - could you both promise never to debate(between the two of you) life or death subjects online(just in case you ever do), that way nothing unfortunate will happen


Which two of us do you mean

For CTP2: IIRC version 6 and Martin made it working under 7.

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:32
  Old Post 19-04-2004 19:28 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#378 Report this post to a moderator
Support Apolyton, buy Call to Power 2

Well then CoT, leave the code alone till you upgrade your archaic machine. Debugging a big application in Visual Studio on that machine.... heck it would take you two hours to compile the game.

child of Thor is offline child of Thor
Emperor
UK
Jan 2002
time: 05:32
  Old Post 19-04-2004 19:54
Edit/Delete Message Reply w/Quote
#379 Report this post to a moderator
Support Apolyton or Terrorists Win

two hours....thats not so bad - i used to have to wait 2 days for my amiga to render some of the things i used to do

Still i think its more likely i would just hurt my poor pc trying heavy duty stuff, at the momment its happy running old games and i dont want to upset it

A few more months and i'll be over the 10,000mhz mark for the first time(unless i can find something slower?)

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:32
  Old Post 19-04-2004 19:58 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#380 Report this post to a moderator
Tired of ads?

I know I get annoyed whenever Visual C doesn't want to build CtP2 incrementally, even though even a full, debug build from scratch is relatively fast here.

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:32
Post  Old Post 19-04-2004 22:48 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#381 Report this post to a moderator
Suffering from ads?

quote:
Originally posted by Solver
I'm not sure, but hasn't it been said that CtP2 was built under version 5.0?


CTP2 was built under VC 6, even if a peexplorer claims that the playtest I built are built by VC 5. CTP1 was built under VC 5.

quote:
Originally posted by child of Thor
One thing i notice is with 6.0 on my system, when i get a game crash - MS Visual C++ 6.0 often springs into debug mode all by itself. I just dont know enough about it to actualy attempt to fix the suspected bug.
When i'm brave enough to download the source code, any advice for bug fixing? I've used the pull down menu to select 'run debug' but it doesn't appear to fix or run anything?


You shouldn't press this retry/repeat buttonn or however it is called in the English version, that starts the debugger, if you get an Assert just press continue, given it wasn't a fatal error.

quote:
Originally posted by Gilgamensch
For CTP2: IIRC version 6 and Martin made it working under 7


Not yet and it is still in question if at all, but we already had successfull attempts, the only question is if these efforts done there are really needed.

-Martin

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 21-04-2004 19:55
Edit/Delete Message Reply w/Quote
#382 Report this post to a moderator
Lose 30 kilos (of popups)

Important history, which you might not want to miss

http://apolyton.net/forums/showthre...threadid=113413

Maquiladora is offline Maquiladora
Emperor

Jun 2001
time: 05:32
  Old Post 21-04-2004 20:09 Visit Maquiladora's homepage!
Edit/Delete Message Reply w/Quote
#383 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

Any excuse for a +1

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:32
  Old Post 21-04-2004 20:49 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#384 Report this post to a moderator
Help yourself to an AD-FREE life

Remember we aren't demo gamers, and therefore aren't spammers. Not in this forum at least .

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 22-04-2004 12:23
Edit/Delete Message Reply w/Quote
#385 Report this post to a moderator
Support Apolyton buy from Amazon

quote:
Originally posted by Maquiladora
Any excuse for a +1



Maq, what was your post then

And I know that couple of our people might be interrested and don't go to the community forum.

Maquiladora is offline Maquiladora
Emperor

Jun 2001
time: 05:32
  Old Post 22-04-2004 13:37 Visit Maquiladora's homepage!
Edit/Delete Message Reply w/Quote
#386 Report this post to a moderator
Enter the AD-FREE zone

quote:
Maq, what was your post then


Well spotted

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 22-04-2004 13:44
Edit/Delete Message Reply w/Quote
#387 Report this post to a moderator
Increase Your PM Length

quote:
Originally posted by Maquiladora


Well spotted


Always worse a try

But talking about this: You ever seen the XXX-lists threads in the community area This is pure ing for me.........

Maquiladora is offline Maquiladora
Emperor

Jun 2001
time: 05:32
  Old Post 22-04-2004 14:07 Visit Maquiladora's homepage!
Edit/Delete Message Reply w/Quote
#388 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

Of course, this is extreme spamming, i shy away when i can.

To get us on some sort of topic, lets have an exciting new feature, what would you most like to see in a new CtP2? Fixed MP PW bug!

Gilgamensch is offline Gilgamensch
King
France
Jun 2002
time: 06:32
  Old Post 22-04-2004 14:12
Edit/Delete Message Reply w/Quote
#389 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

quote:
Originally posted by Maquiladora
Of course, this is extreme spamming, i shy away when i can.

To get us on some sort of topic, lets have an exciting new feature, what would you most like to see in a new CtP2? Fixed MP PW bug!


Actually one 'problem' I see with all our wishes, as a lot of people want to have them optional it will be a heck to implement. As some of them will interact with others and to enable/disable certain parts only.........ouch.......

And the MP PW bug, that is just normal burocracy in it's best form

Maquiladora is offline Maquiladora
Emperor

Jun 2001
time: 05:32
  Old Post 22-04-2004 14:35 Visit Maquiladora's homepage!
Edit/Delete Message Reply w/Quote
#390 Report this post to a moderator
Get a bigger avatar today!

Yea we have different wishes. Right now we seem to be concentrating on making it look good on top, when it isnt all working right underneath. But as has been said, you cant tell people to do something, and expect them to enjoy doing it for free

 
Pages (17): [ <<   10   11   12   13   14   15   16     >> ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:32.
Apolyton Time is 00:32.
    top of page
Rate This Thread:
Forum Jump:
Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is ON
vB code is ON
Smilies are ON
[IMG] code is ON
 




Contact Us - Apolyton Civilization Site - Support Us!

Building a better Apolyton through better information. Click here and take our poll!
Non-US visitors, click here!

Powered by: vBulletin Version 2.0.3
Copyright ©2000, 2001, Jelsoft Enterprises Limited.

Page generated in 0.0685 seconds (89.54% PHP - 10.46% MySQL) with 36 queries
Page Loading Time:

Support Apolyton: Amazon USA | Amazon UK | Amazon DE | Amazon FR |
Support Apolyton and get FREE PLUS, Buy from Chips&Bits: Galactic Civilizations | Galactic Civilizations: Deluxe Edition | Call to Power 2 | Civilization: The Boardgame | GURPS/ Alpha Centauri | Alpha Centauri | Civilization IV | Civilization III: Complete |


Front Page | Civilization IV | Civilization III | Civilization II | Call to Power II | Alpha Centauri | Master of Orion III
Rise of Nations | Galactic Civilizations | Galactic Civilizations II | Misc
Alt.Civs | Civ I | C:CtP I | About | News | Directory | Apolyton Store | Forums | Chat | Columns | Interviews | Newsletter
Scenario League | CSC | Clash of Civs | Spanish Site | CtP Maps | Cradle of Civ | WesW's Ctp1/2 Site | Civ3 Haven

apolyton.net | apolyton.com | civilization2.net | civilization3.net | civilization4.net | civilizationiv.info | calltopower.net | galciv.net | galciv2.net | moo3.net