Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

dcje

15
Posts
3
Followers
4
Following
A member registered Jul 01, 2017 · View creator page →

Creator of

Recent community posts

Thanks for the feedback, I will try to explain more of the systems in the game, though I have to carefully think about how I am going to do that.

I made this with GamemakerStudio 2.  I am not familiar with GAMA  but from the website it seems too be a good tool for such a simulation.

Okay in that case let me take a deep dive into the programming. In the Simulation there are basically two objects people and land. Lets start with the people, the people have 3 Skills, because the simulation has 3 different types of work (Agriculture, Industry, Office). In random intervalls the people will call a function find_job and a function find_home. These functions loop through all available jobs and homes that are provided through the land and find the one with the best payment/livelihood. It is possible for people to become unemployed if the payment for the job is below the unemployment benefit and it is also possible for someone to become homeless (live in another city) if some threshold of livelihood is not met or if there is not sufficient housing available. The Livelihood is calculated like this:

livelihood=location(x,y)+space-travelling_cost+10*sqrt(person.income-rent)

-location is just the bonus some buildings give around them

-the traveling cost is the manhattan distance between the workplace and the home

-and then I used the squareroot as a concave function for the deminishing return of available income

while the payment is just:

payment=person.skill[field_of_work]*wage

the wage term is calculated indepent:

wage=(profit(worktalent+100,maintenance,maxrevenue,saturation)-profit(worktalent,maintenance,maxrevenue,saturation))/(100)-maintenance/expected_number_of_workers/50

the profit that is added to the company per worker declines the more workers already work there:

profit(WT,M,MR,S)=MR*WT/(WT+S)-M

why do I calculate the wage as I do?

The first part is to make sure that the wage (the payment per Skill) is so low that the company always profits from hiring someone for this wage. And the second part is to insure that also the maintenance cost is covered by the profit.

Now to the Land:

The land can host a variety of buildings these buildings can make a profit. This profit then influences the price of the neighboring land.

I showed you the formula how I calculate the profit of companies but land can also host housing for this it works very different. The profit for housing is just the accumulated rent from the tenants, minus the maintenance cost. Now an import part is how the rent is determined. For this I have 5 metrics that are either true, false or neutral. True values increase the rent while false values reduce the rent.

1.more liveable than average housing?

2.fuller than average housing?

3.profit lower than land price?

4.house full?

5.less housing than people?

Okay and the last important point is that if a land accumulates a loss greater than 10 times its maintenance cost the land declares bancrupcy and the building on the land is replaced by a random other structure. All workers are fired all tenants are evicted.

I hope I was able to help you with this overview, if you have more specific questions feel free to ask.

Best wishes

Dominik Eifler

Yes, my model is an agent-based model. I would explain it to you in more detail but it is quite complicated. If you are interested I just updated the game the new version showcases a bit more information.


I didn't know about the Alonso-Muth-Mills model but my model is different, as I understand it the AMM model assumes equal income while in my model the income is determined through the skills of a person and the demand for these skills.

Interesting game concept. I can see how it becomes a battle for land in  the multiplayer setting. I think the control could be better if you have the camera following the player, also I am curious how I can fire the bullets (I didn't find the button).

Very nice game, the video walkthrough is 100% worth it, otherwise it would have been hard to grasp. Maybe the gameboard is a bit big, so that it takes a while to get interesting, but I really love what you have done.

Really fun game, my highscore was at 88 000$, bet some of you can beat it.

Good written, I enjoyed it.

thanks I will try it again.

It looks like it would be Fun to play with friends.

Intresting concept.

(1 edit)

I was kinda confused I figured out what I can do but couldnt finish the first Level. I didnt quite understood why I could only interact with one Box but noone of the others. Maybe add a Help Menu next time explainning some of the Stuff a bit more.

(1 edit)

my Bad I thought it's both.