This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
citylimitsj/src/micropolisj/engine/ZoneStatus.java
2013-02-20 01:36:50 +00:00

30 lines
1.1 KiB
Java

// This file is part of MicropolisJ.
// Copyright (C) 2013 Jason Long
// Portions Copyright (C) 1989-2007 Electronic Arts Inc.
//
// MicropolisJ is free software; you can redistribute it and/or modify
// it under the terms of the GNU GPLv3, with additional terms.
// See the README file, included in this distribution, for details.
package micropolisj.engine;
/**
* Contains the information generated by the query tool.
* The numbers have very limited use, they are interpreted directly
* by the showZoneStatus() method of NotificationPane.
*/
public class ZoneStatus
{
/** Number from 0 to 27, identifying the type of building. */
public int building;
/** Number from 1 to 4, 1=Low, 2=Medium, 3=High, 4=Very High. */
public int popDensity;
/** Number from 5 to 8, 5=Slum, 6=Lower Class, etc. */
public int landValue;
/** Number from 9 to 12, 9=Safe, 10=Light, 11=Moderate, etc. */
public int crimeLevel;
/** Number from 13 to 16, 13=None, 14=Moderate, 15=Heavy, etc. */
public int pollution;
/** Number from 17 to 20, 17=Declining, 18=Stable, etc. */
public int growthRate;
}