117 lines
2.8 KiB
Plaintext
117 lines
2.8 KiB
Plaintext
Citizen[] mensch = new Citizen[3];
|
|
|
|
//settings
|
|
boolean b_smallerImage = true; //use a cropped, smaller version of the 1920x1080 image for faster development
|
|
boolean b_loadSun = false; //load sun from web-api instead of local json file (local file is adressed to january 4th 2019. might implement a check that downloads today's information only once...
|
|
float f_nodeResolution = 0.2; //defines density of path-finding nodes, multiplied with resolution
|
|
|
|
//void mouseClicked(){
|
|
//mensch.goTo(112);
|
|
//}
|
|
|
|
class Citizen{
|
|
int i_xSpawn, i_ySpawn, i_xPos, i_yPos, i_diameter;
|
|
boolean b_linked;
|
|
int i_home;
|
|
String S_name;
|
|
|
|
|
|
//0-100:
|
|
//motivation (bei arbeiter montag ~40, freitag ~80 - 100)
|
|
//7 emotionen?
|
|
|
|
// berufsfeld: webdesigner, pädagoge, schmuckdesigner, schmied
|
|
// berufsstatus: beamter, selbstständiger, unternehmer, angestellter, grundschüler, gymnasiast, hauptschüler, realschüler, azubi, student, rentner
|
|
|
|
// identität: gelbhemd, lokal, regional, national, international, fremd,
|
|
|
|
//names of pathfinding algorithms: greedy best first search, uniform cost search, a star search
|
|
|
|
Citizen(int home, String name){
|
|
i_home = home;
|
|
S_name = name;
|
|
i_diameter = 15;
|
|
}
|
|
|
|
void goTo(int house){
|
|
println("want to go to house " + house);
|
|
}
|
|
|
|
void spawn(int house){
|
|
PVector v2_spawnPoint = spawnAreas.get(house).v2_randomSpawnPoint();
|
|
i_xSpawn = int(v2_spawnPoint.x);
|
|
i_ySpawn = int(v2_spawnPoint.y);
|
|
i_xPos = i_xSpawn;
|
|
i_yPos = i_ySpawn;
|
|
b_linked = true;
|
|
}
|
|
|
|
void despawn(){
|
|
b_linked = false;
|
|
}
|
|
|
|
void display(){
|
|
ellipse(i_xPos, i_yPos, i_diameter, i_diameter);
|
|
textSize(10);
|
|
text(S_name, i_xPos, i_yPos-10);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void setup() {
|
|
size(400, 300);
|
|
fill(0);
|
|
//ft = new SimpleDateFormat ("HH:mm:ss");
|
|
|
|
if(b_smallerImage) img_houses = loadImage(dataPath("map/houses_with_borders_small.png"));
|
|
else img_houses = loadImage(dataPath("map/houses_with_borders.png"));
|
|
|
|
img_streets = loadImage(dataPath("map/streets.png"));
|
|
|
|
initHouses();
|
|
|
|
blendMode(MULTIPLY);
|
|
|
|
surface.setSize(img_houses.width, img_houses.height);
|
|
|
|
initPathFinding();
|
|
initWeather();
|
|
|
|
|
|
|
|
mensch[0] = new Citizen(59, "Pe");
|
|
mensch[1] = new Citizen(121, "Paul");
|
|
mensch[2] = new Citizen(18, "Freddy");
|
|
|
|
for(int i = 0; i < mensch.length; i++){
|
|
mensch[i].spawn(int(random(0,spawnAreas.size())));
|
|
}
|
|
|
|
//mensch[2].spawn(59);
|
|
}
|
|
|
|
|
|
|
|
void draw() {
|
|
background(255);
|
|
image(img_houses, 0, 0, img_houses.width, img_houses.height);
|
|
|
|
//image(img_streets, 0, 0, img_houses.width, img_houses.height);
|
|
textSize(7);
|
|
textAlign(CENTER);
|
|
for (SpawnArea spawn : spawnAreas) {
|
|
spawn.display();
|
|
}
|
|
|
|
displayPathFinding();
|
|
|
|
for (int i = 0; i < mensch.length; i++){
|
|
if(mensch[i].b_linked) mensch[i].display();
|
|
}
|
|
|
|
UI();
|
|
}
|