2015-05-22 08:26:29 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using TransportGame.Model;
|
|
|
|
|
using TransportGame.Noise;
|
|
|
|
|
|
|
|
|
|
namespace TransportGame.Generator
|
|
|
|
|
{
|
|
|
|
|
public class PopulationCentersGenerator
|
|
|
|
|
{
|
|
|
|
|
System.Random random = new System.Random();
|
|
|
|
|
|
|
|
|
|
public void Generate(Map map)
|
|
|
|
|
{
|
2015-05-29 16:03:08 +00:00
|
|
|
|
// Generate range
|
|
|
|
|
float mp = (float)(map.Width * map.Height) / (1024 * 1024); // For 4k x 4k range should be around 900
|
|
|
|
|
map.PopulationCenterRange = mp * 155f / 5f + 1490f / 3f; // For 2k x 2k range should be around 600
|
|
|
|
|
|
2015-05-22 08:26:29 +00:00
|
|
|
|
// Generate a number of points
|
2015-05-29 16:03:08 +00:00
|
|
|
|
int maxPoints = 16 * (int) Math.Sqrt(mp);
|
|
|
|
|
int points = random.Next(maxPoints / 2, maxPoints);
|
2015-05-22 08:26:29 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < points; ++i)
|
|
|
|
|
{
|
|
|
|
|
int px, py;
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
2015-05-29 16:03:08 +00:00
|
|
|
|
px = random.Next(map.Width / 6, 5 * map.Width / 6);
|
|
|
|
|
py = random.Next(map.Height / 6, 5 * map.Height / 6);
|
2015-05-22 08:26:29 +00:00
|
|
|
|
}
|
|
|
|
|
while (map.IsWater(px, py));
|
|
|
|
|
|
2015-05-29 16:03:08 +00:00
|
|
|
|
map.PopulationCenters.Add(new Vector2(px, py));
|
2015-05-22 08:26:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|