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 > Alternative Civs > Clash of Civilizations > Population and Demographics
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
04.Sep: `FC` 2.0.5 COMPLETED AND RELEASED
27.Jul: `FC` 2.0.4 COMPLETED AND RELEASED
16.Jul: `FC` 2.0.3 COMPLETED AND RELEASED

bottom of page
  
Author
Thread   
Pages (4): [ 1   2   3   4   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 12-04-2001 03:28
Edit/Delete Message Reply w/Quote
#91 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

are there files/models already done that i can study? if not i will extract all demands from people from this pretty huge thread and make up something. I still think it has to be simple, cause it should run every turn and speed is often a concern when using java. Maybe later it would be nice to make that kingdom micromanagement model.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 12-04-2001 05:27 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#92 Report this post to a moderator
Support Apolyton, buy GURPS/ Alpha Centauri

quote:

Originally posted by 4VAlien on 04-11-2001 06:28 PMare there files/models already done that i can study?

There is virtually no code yet for the population model if that's what you mean. Right now there is only trivial code relating to it in MapSquarePopulationTurnHandler in the controller package of the code I sent you.

Right now all it does is use a very simple algorithm that relates population growth to just food per capita. So the food the people save to eat during the econ phase is saved and consumed during the population phase. Population growth or decline is a direct result. Obviously all the stuff about true nutrition, health care etc. is not done yet.

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 12-04-2001 23:52
Edit/Delete Message Reply w/Quote
#93 Report this post to a moderator
Remove this text

PAIN.. i've tried to compile this thread into THE answer but that ain't easy :-(. I think we should at least have 3 cohorts, namely young, working and old. This is only for the reproduction races. I think manufacturing races should have to build certain industrial structures to build themselves, this will cost a some economic power, but then again every produced "person" is directly capable of doing work/military service so if we balance carefully it would be a nice addition to the gameplay. The most difficult is the derived creation. Their growth should be related to others races death. And i have still no idea about the transition from cohort to cohort, what kind of formula shoud be used there?

I think that the population model should be run at province level, but i still don't know how large a province is.

things i certainly want to use are:

-growth is somehow related to food production
-of course there's the disease model {duhh}


4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 13-04-2001 00:01
Edit/Delete Message Reply w/Quote
#94 Report this post to a moderator
Support Apolyton

i accidentally posted before i was finished..

-i think we should run the model at province level but i don't know how complicated the other models are so i will have a look at that. i don't want the population model to be extremely light or heavy in comparison to the other models. (hey.. i'm repeating myself, sorry)
-the derived/production races don't need an % workforce cause i think they'll only create usable persons.
-the reproduction race would have a varieting % workforce, but i think we can relate that directly to the social model.
-to save memory/speed i think we can work out the classes only for provinces, cause generally in a certain area the differences between the squares will be pretty small.

questions remaining:
-what other elements affect growth? i think there are lots of variables but i don't know all the clash options so i think you will come up with some.

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 13-04-2001 00:12
Edit/Delete Message Reply w/Quote
#95 Report this post to a moderator
Support Apolyton buy from Amazon

additions:

-i think it's not fair to implement gender, cause the reproduction race would then become extremly vulnerable compared to the other races
-recruiting military troops should be taken into account. The people recruited should be removed from the population, and be added again when the unit disbands.
-Because the military provides their own supply's there would be no relation to the land the came from.
-This influences growth but i think we can calculate without using gender. The population part of the province could contain a value that is made higher when man/women are not equally removed and would slowly stabilize back.
-This value could also be used to recalculate the %-age of workforce. (if only this world had always been 100% emancipated this model would've been a lot easier)

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 13-04-2001 00:14
Edit/Delete Message Reply w/Quote
#96 Report this post to a moderator
Inflate your Upload Space

last reply in this series:

please give me feedback suggestions, i tried to make something not too simple, and not too complex at the same time.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Thumbs up  Old Post 13-04-2001 00:51 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#97 Report this post to a moderator
Help yourself to an AD-FREE life

Hi 4VAlien:

Thanks for getting this area going again!

I think you should do the architecture on a map square level. I think F_Smith's comments long ago that we should push data storage down to the lowest possible level is correct here. For now, to make life easier, I think you should do the entire pop model calculations at the map square level also. The economic model is at the square level for now, and it uses at least 20x as much processing power as pop is likely to. So you might as well do it the easy way. If we need to agregate up later it should not be difficult with good design. For now we are following the rule: "Don't optimize prematurely". You can see further ideas about the extreme programming (XP) philosophy we're following in the coding discussion thread if you're interested.

I won't say anything about non-human population because there are so many things I need to spend time on before considering that... So I won't comment, but reserve the right to criticize later . Hopefully Richard, who put them in, can discuss that with you.

"-to save memory/speed i think we can work out the classes only for provinces, cause generally in a certain area the differences between the squares will be pretty small."

Probably correct, but why don't you try it at the square level first for simplicity as I outlined above.

"-recruiting military troops should be taken into account. The people recruited should be removed from the population, and be added again when the unit disbands. "

Agree!

I agree with much of what you say. I will wait for Richard to give you some of the further details you're looking for, because he's much more familiar with the model. If there are any big problems you need info on fast, just let me know, and I'll do my best to come up with something.

Thanks again for taking this on!

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 13-04-2001 03:19
Edit/Delete Message Reply w/Quote
#98 Report this post to a moderator
Browse Apolyton AD-FREE

ok i will go for square based calculation and humans only, but i would like to have some assitance in modeling the classes , cause i also have to deal with the ethnic groups etc.. which i don't completely understand yet

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 13-04-2001 05:01 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#99 Report this post to a moderator
Browse Apolyton AD-FREE

Personally I'd say just hold off on the classes and ethnic groups for now. If you want, you could put placeholders in. The reason I'm suggesting you not do those yet is that Gary is going to hook up the govt/social code this weekend (I hope! ) and so he will then know about the architecture of that stuff. Gary is a pro java coder, and can help in figuring out the right archtiecture to use with the population model. I could make guesses, but they wouldn't be well-informed guesses.

LDiCesare is offline LDiCesare
King
La Ferté sous Jouarre France
Jan 2001
time: 05:13
Post  Old Post 13-04-2001 10:51
Edit/Delete Message Reply w/Quote
#100 Report this post to a moderator
Suffering from ads?

One comment about age: If you cut down into young/old/working, how do you consider the lengthening of life? People currently work till they are around 60 year old, but they used to be old much earlier in the Middle Ages, because of disease, eating, crippling... Will it be simple to change the working/old proportion based on social/tech progress? Another question about young: If they study more, they start working later, so the same question goes: how do you map this to the social/tech?

Gary Thomas is offline Gary Thomas
Prince
New Zealand
Mar 2001
time: 17:13
Post  Old Post 13-04-2001 13:28
Edit/Delete Message Reply w/Quote
#101 Report this post to a moderator
Inflate your Upload Space

quote:


Personally I'd say just hold off on the classes and ethnic groups for now. If you want, you could put placeholders in. The reason I'm suggesting you not do those yet is that Gary is going to hook up the govt/social code this weekend (I hope! ) and so he will then know about the architecture of that stuff. Gary is a pro java coder, and can help in figuring out the right archtiecture to use with the population model. I could make guesses, but they wouldn't be well-informed guesses.


Um, yeah.

I am a pro Java programmer. Architect even.

Unfortunately, one of the things I always do (otherwise I would lose my job) is to provide comprehensive test routines for EVERY class I write. For the tech model, I will provide:

1. The tech model
2. The GUI for it
3. The underlying classes
4. Test classes for all of this

This will almost certainly be available over the Easter weekend.

The govt/social model, if I am to do it, will be to the same standard. I do not expect either to have any bugs or require any patches. Hey! that's the way I survive. I also code very fast, around 200 lines of tested code per day. I do have a lot of trouble lowering my standards. Actually I don't lower my standards at all! People who use my classes (which do a lot of nice things in the GUI area) never have to worry that they do not work.
From my inspection of the govt/social model they are well defined, and the tech infrastructure will exactly fit. I REALLY hope to start on them tomorrow. But life ain't always kindly.

Right now (8pm Easter Friday) I am finishing the test methods for a class called NamedObjectList which, with its associate classes NamedObject, NamedObjectIterator and NamedObjectRenderer, allow the JList methods to immediately implement any reference to things like the list of Technologies, Applications, Activities, Religions, EthnicGroups, GovernmentIdeologies, or anything else that can be read from an XML file. The XML file stuff is all written and working with test routines.

Anything I write is delivered with the test routines. If anyone makes additions or modifications, they can run the test routines and immediately see that the modifications work (or don't, as the case may be). In my view this is a critically important part of XProgramming (see the XP website).

Sorry for the rant, but this is where I am coming from, and it is better in the long run. So far I have spent around 300 hours on the tech stuff, mostly on providing a good infrastructure.

Mark: what I am doing now is designed to fit the govt/social system into the same paradigm as the tech model. I still expect to send you the tech stuff, complete, this weekend. The govt/social I will try for this weekend, but can't guarantee. I am also negotiating with my ISP to provide a CVS repository for all the code. This will mean that any coder can check out the most up to date code at any time, or check in their latest version. Keep your fingers crossed.

As far as the population model is concerned, one of the odd things I have done in my life is to publish a paper on population projections (Thomas, 1970) using "characteristic functions". This has always been one of my interests. So maybe, when I get finished with the coding for the tech and govt/social model, I can help with the model. Around Thursday, with luck.

Cheers

[This message has been edited by Gary Thomas (edited April 13, 2001).]

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 13-04-2001 16:55 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#102 Report this post to a moderator
Support Apolyton buy from Amazon

Laurent:

I think the age for the cohort boundaries should just slide as the society changes. On educating the young, I think that will work out ok with the present econ system. Education costs work (services) both for the educators and the educated. So if your young are being highly educated, they are of necessity not doing any other type of labor.

Gary:

My point was that soon you'd have probably enough experience with the architecture surrounding classes and ethnic groups that you could be able to help as an advisor in specing the population model architecture. You'll undoubtedly be there long before you completly wrap up the social model.

Thanks for the overview. A lot of your post could IMO be usefully crossposted to the coding discussion. Your approach description is valuable as it is, and of course the list facilitators you mention should be known to the other programmers, who don't check all the threads.

We could even start a soapbox thread for you to tell us non-pros how it should be done when you see something that doesn't work.


[This message has been edited by Mark_Everson (edited April 13, 2001).]

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 13-04-2001 17:22 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#103 Report this post to a moderator
Support Apolyton, buy Civilization 2

quote:

I think we should at least have 3 cohorts, namely young, working and old.

I of course would prefer a cohort for every five years, but if that is not possible this seems like a good compromise.

quote:

The most difficult is the derived creation. Their growth should be related to others races death. And i have still no idea about the transition from cohort to cohort, what kind of formula shoud be used there?

Have you ever read the Conqueror's Trilogy by Timothy Zahn? The Elders in those books are an example of a derived race. One was created every time a member of the Zhirrzh race died. A more typical example would be cyborgs. Depending on the technology, some percent of people who die can be turned into this race. We'd simply assume one cohort for this race, since presumably they wouldn't age. The Birth() method simply takes the number of Human deaths and multiplies that by some fraction that depends on the tech level. But Mark is right, we don't have to wory about that yet. It certainly isn't a vital feature.

quote:

-the derived/production races don't need an % workforce cause i think they'll only create usable persons.


Not necessarily. Some cyborgs might be rich people who pay for teh procedure to stay alive but don't or can't do work. I don't think we should limit functionality. The code would presumably exist already for the normal races.

The only real difference between the types of races is the Birth() method. I think they should have the same functionality otherwise.

quote:

-i think it's not fair to implement gender, cause the reproduction race would then become extremly vulnerable compared to the other races


The other races won't be a problem in the normal game, they are only for sci-fi extensions. I don't think we should reduce normal game functionality just for the possible expansions. The proper functioning of normal races (Humans) is more imporant for the game than the other extra races.

Besides, that vulnerability would be probably make a good, challenging scenario.

quote:

The population part of the province could contain a value that is made higher when man/women are not equally removed and would slowly stabilize back.


I think it would make more sense to simply track the genders seperately. That would probably create less bugs and be more flexible in the long run.

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 13-04-2001 17:35
Edit/Delete Message Reply w/Quote
#104 Report this post to a moderator
Support Apolyton, buy Call to Power 2

after reading the info at the following link
http://www.krellinst.org/~winther/A...tion/index.html

i made up some code that gives a nice model of population. I tried to make my model match the graphs of population in america as much as possible. It currently matches for about 350 years !!! (1650-2000)I tested scalability and at 15x the calculation was 12% off the original. I'm afraid the difference will be larger over a longer period, and will have a look at that. I'm still thinking about the cohorts...

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 13-04-2001 17:53 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#105 Report this post to a moderator
Get a bigger avatar today!

Alien4V:

I'm glad to hear you're making progress! But we can't say much until we know what exactly Is the model you coded? There are several different things on that page. US population growth was and is heavily influenced by immigration. Is that included?
[This message has been edited by Mark_Everson (edited April 13, 2001).]

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 13-04-2001 18:59
Edit/Delete Message Reply w/Quote
#106 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

i put my current progress on the following page including my code (not really much yet). I'm very happy that you mentioned the immigration thingy cause i did'nt realize that myself!! But with some tweaking in birth/death rate that could surely be taken care of. So that is not included yet, but have a look anyways:
http://www.geocities.com/alien_4v/P...Population.html

Lord God Jinnai is offline Lord God Jinnai
Prince
St. Louis
Sep 1999
time: 23:13
Post  Old Post 13-04-2001 23:59 Visit Lord God Jinnai's homepage!
Edit/Delete Message Reply w/Quote
#107 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

Mark:

quote:


I think the age for the cohort boundaries should just slide as the society changes. On educating the young, I think that will work out ok with the present econ system. Education costs work (services) both for the educators and the educated. So if your young are being highly educated, they are of necessity not doing any other type of labor.


While I agree with this, we also need to remember standard of living and basic technological level as well as a offset for lag in implementing changes do to education and technolgical and medical breathrus. This represents the fact that in many developing countries children after certain age are considered workers as well as children and older generation can still work, although usually not as much nor at the same jobs.

Rich:
On cyborgs, I know this isn't relavent right now, but the person doesn't haveto be dead to become a cyborg and can still age (putting in cybernetic parts when the person is young and replacing them as they age or using nanotech to have them adapt).

4VAlien is offline 4VAlien
Settler
Enschede , OV, Holland
Apr 2001
time: 05:13
Post  Old Post 18-04-2001 23:21
Edit/Delete Message Reply w/Quote
#108 Report this post to a moderator
Support Apolyton or Terrorists Win

forgot to tell ya, but i'm at my parents home this week so there's no developing cause i'm having a vacation and catching up with my courses at the same time (

Simon Loverix is offline Simon Loverix
Warlord
Tongeren, Belgium
Apr 2001
time: 05:13
Post  Old Post 20-04-2001 09:04
Edit/Delete Message Reply w/Quote
#109 Report this post to a moderator
Support Apolyton, buy Call to Power 2

Is there any population when the games starts, apart from Civilizations? If there's not, this is a possibility (which I already posted in the ecology tread).

Tribes and ecological provinces

When farming started, the human population was 6,000,000 and appr. 90% of the land mass was inhabited by humans. 6,000,000 people / 0.9*0.3*510,066,000 km˛ = a population of 435 people/10,000 km˛.
In The Beginning each inhabited eco-province would have its own tribe, accustomed to the climate, food and with appropriate customs to sustain themselves in that province. For example, a tribe in a hilly forest might be hunter-gatherers, while a tribe on the low-covered plains might be herders, driving around their herd; a tribe in a river ecological province might already be settled and farm minimally. Such a tribe has at most one center that is more densely populated then the average and is centre of the authority in the tribe. Those tribes might develop into civilizations at any time; they can also remain tribal, which is what most will do (until they are forced to modernize in some imperialist's empire).

On an earth-sized planet there will be appr. 13,771 squares inhabited. I suggest ecological provinces AS BIG AS POSSIBLE to keep them to a reasonable number to start with. An average size of 200 squares would give appr. 75 provinces on land mass, 25 provinces in oceans, seas, etc.

If civilizations grow beyond tribal structures, they will divide their territory into provinces. If such a province doesn't match an existing ecological province, the ecological province is simply divided into two parts: one outside and one inside the human province. They then form two separate provinces, that are checked separately for changes, since one suffers (most likely) from human influence, and the others doesn't.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 19-04-2001 22:47 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#110 Report this post to a moderator
Avatar Enlargement: We've got the solution

quote:

Originally posted by Simon Loverix on 04-19-2001 12:04 PM
Is there any population when the games starts, apart from Civilizations?


The current plan is to have widely spread people, but they will all be part of one civilization or another.

But civilizations won't be limited to the major players - so the number of civs could easily be of order 100 if the player desires. Some however will have no centralized control, and be merely groups with similar culture with at most local-level govt. If the tech level were also low these would be analagous to your tribes. (Which I take to mean a Chiefdom or other form of organization lower than a state).

The problem I see with your approach is it could give literally thousands of little tribes, which is certainly more realistic, but is probably not of significant benefit to the player.

Other than the limitations I've noted above I think your proposal is pretty good. Are you interested in refining it in light of the new info I've provided?

-Mark

Simon Loverix is offline Simon Loverix
Warlord
Tongeren, Belgium
Apr 2001
time: 05:13
Post  Old Post 20-04-2001 12:23
Edit/Delete Message Reply w/Quote
#111 Report this post to a moderator
Full PM-box? Change here!

That's about what I had in mind (about hundred tribes/infant civ's).

The main goal of the ecology-linked tribes was to simulate the normal spread of the human species before civilization. Making them evolve sometimes could 1) make the step from non-civilized to civilized smaller and thus more realistic and 2) provide a starting point for civ's that start later in the game. This would lessen the feel of having a civ placed at a random location on a bare map.

Those tribes could also be used for generating barbarian hordes, so they don't appear out of the void.

Real Life is becoming rather pressing next week, so I probably will be out for so long.

 
Pages (4): [ 1   2   3   4   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:13.
Apolyton Time is 00:13.
    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.0594 seconds (91.86% PHP - 8.14% MySQL) with 30 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