2020-04-08 20:04:31 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2020-05-06 16:22:30 +02:00
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
2020-04-08 20:04:31 +02:00
|
|
|
|
|
|
|
|
|
class Crops
|
|
|
|
|
{
|
2020-05-05 16:27:45 +02:00
|
|
|
|
private int Status;
|
|
|
|
|
private int originalStatus;
|
|
|
|
|
private int cropType = 0;
|
2020-05-07 13:53:07 +02:00
|
|
|
|
private float Timer = 1;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
private int UpdateCrop;
|
2020-05-07 13:53:07 +02:00
|
|
|
|
private float fullTimer;
|
2020-05-05 16:27:45 +02:00
|
|
|
|
private bool housePos = false;
|
2020-05-06 16:22:30 +02:00
|
|
|
|
private Vector2 Size;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
private CropTypes DataSet;
|
2020-05-06 16:22:30 +02:00
|
|
|
|
SoilProperties soilProperties = new SoilProperties();
|
2020-05-07 20:06:34 +02:00
|
|
|
|
private float ProductionRate;
|
2020-05-06 16:22:30 +02:00
|
|
|
|
|
2020-05-03 13:05:05 +02:00
|
|
|
|
|
2020-04-08 20:04:31 +02:00
|
|
|
|
|
2020-05-06 16:22:30 +02:00
|
|
|
|
public void updateCrop(Vector2 newSize)
|
2020-04-08 20:04:31 +02:00
|
|
|
|
{
|
2020-05-07 20:07:11 +02:00
|
|
|
|
getProductionRate(DataSet);
|
2020-05-07 20:06:34 +02:00
|
|
|
|
if (UpdateCrop == 60)
|
|
|
|
|
{
|
|
|
|
|
degradeSoil();
|
|
|
|
|
UpdateCrop = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-07 01:55:52 +02:00
|
|
|
|
if (Status == 3 && Timer != 1)
|
2020-05-06 16:22:30 +02:00
|
|
|
|
{
|
2020-05-07 14:51:52 +02:00
|
|
|
|
Timer = Timer - 1f * ProductionRate;
|
2020-05-06 16:22:30 +02:00
|
|
|
|
}
|
|
|
|
|
Size = newSize;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
UpdateCrop++;
|
2020-05-07 20:06:34 +02:00
|
|
|
|
|
2020-05-07 13:53:07 +02:00
|
|
|
|
if (Timer < 1)
|
|
|
|
|
{
|
|
|
|
|
Timer = 1;
|
|
|
|
|
}
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SoilProperties getSoilProperties()
|
|
|
|
|
{
|
|
|
|
|
return soilProperties;
|
2020-04-08 20:04:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-10 01:38:08 +02:00
|
|
|
|
public void Fertilize(Fertilizer fertilizer)
|
|
|
|
|
{
|
|
|
|
|
soilProperties.Nitrogen += fertilizer.Nitrogen;
|
|
|
|
|
soilProperties.Phosphorous += fertilizer.Phosphorus;
|
|
|
|
|
soilProperties.Potassium += fertilizer.Potassium;
|
2020-05-10 12:55:13 +02:00
|
|
|
|
|
|
|
|
|
if (soilProperties.Nitrogen > 42)
|
|
|
|
|
soilProperties.Nitrogen = 42;
|
|
|
|
|
if (soilProperties.Phosphorous > 42)
|
|
|
|
|
soilProperties.Phosphorous = 42;
|
|
|
|
|
if (soilProperties.Potassium > 19)
|
|
|
|
|
soilProperties.Potassium = 19;
|
|
|
|
|
|
2020-05-10 01:38:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool isSaturated()
|
|
|
|
|
{
|
2020-05-10 12:55:13 +02:00
|
|
|
|
if (soilProperties.Nitrogen > 40 && (soilProperties.Phosphorous > 40 || soilProperties.Potassium > 17))
|
2020-05-10 01:38:08 +02:00
|
|
|
|
return true;
|
2020-05-10 12:55:13 +02:00
|
|
|
|
if (soilProperties.Phosphorous > 40 && soilProperties.Potassium > 17)
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool isSaturated(int threshold)
|
|
|
|
|
{
|
|
|
|
|
if (soilProperties.Nitrogen > 40 - threshold && (soilProperties.Phosphorous > 40 - threshold || soilProperties.Potassium > 17 - (threshold * 17/40)))
|
|
|
|
|
return true;
|
|
|
|
|
if (soilProperties.Phosphorous > 40 - threshold && soilProperties.Potassium > 17 - (threshold *17/40))
|
2020-05-10 01:38:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-07 13:53:07 +02:00
|
|
|
|
public float getCropTimer()
|
2020-04-08 20:04:31 +02:00
|
|
|
|
{
|
|
|
|
|
return Timer;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-05 16:27:45 +02:00
|
|
|
|
public int getCropTimerBar(int tileSize)
|
|
|
|
|
{
|
2020-05-06 16:22:30 +02:00
|
|
|
|
|
|
|
|
|
int x = (int)((1 - ((float)Timer / fullTimer)) * (tileSize - tileSize / 3));
|
2020-05-05 16:27:45 +02:00
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 16:22:30 +02:00
|
|
|
|
public void init()
|
|
|
|
|
{
|
|
|
|
|
soilProperties.setSoilProperties();
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-05 16:27:45 +02:00
|
|
|
|
// Changes the time required for the crops to be harvestable
|
|
|
|
|
public void setCropTimer()
|
|
|
|
|
{
|
|
|
|
|
if (cropType == 0) // Carrots
|
|
|
|
|
{
|
|
|
|
|
Timer = 300;
|
|
|
|
|
fullTimer = Timer;
|
|
|
|
|
}
|
|
|
|
|
else if (cropType == 1) // Wheat
|
|
|
|
|
{
|
|
|
|
|
Timer = 600;
|
|
|
|
|
fullTimer = Timer;
|
|
|
|
|
}
|
|
|
|
|
else if (cropType == 2) // Berries
|
|
|
|
|
{
|
|
|
|
|
Timer = 1200;
|
|
|
|
|
fullTimer = Timer;
|
|
|
|
|
}
|
|
|
|
|
else // Fruit Trees
|
|
|
|
|
{
|
|
|
|
|
Timer = 2400;
|
|
|
|
|
fullTimer = Timer;
|
2020-05-06 16:22:30 +02:00
|
|
|
|
}
|
2020-05-05 16:27:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-03 13:05:05 +02:00
|
|
|
|
public int getCostOnMovement()
|
2020-04-08 20:04:31 +02:00
|
|
|
|
{
|
2020-05-04 01:50:43 +02:00
|
|
|
|
if (Status == 1) //grass
|
2020-05-03 13:05:05 +02:00
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2020-05-04 01:50:43 +02:00
|
|
|
|
else if (Status == 2) //dirt
|
2020-05-03 13:05:05 +02:00
|
|
|
|
{
|
2020-05-10 13:51:19 +02:00
|
|
|
|
return 16;
|
2020-05-03 13:05:05 +02:00
|
|
|
|
}
|
2020-05-07 01:55:52 +02:00
|
|
|
|
else
|
2020-05-03 13:05:05 +02:00
|
|
|
|
{
|
2020-05-05 16:27:45 +02:00
|
|
|
|
if (cropType == 0)
|
|
|
|
|
{
|
|
|
|
|
return 15; //Carrots
|
|
|
|
|
}
|
|
|
|
|
else if (cropType == 1)
|
|
|
|
|
{
|
|
|
|
|
return 30; //Wheat
|
|
|
|
|
}
|
|
|
|
|
else if (cropType == 2)
|
|
|
|
|
{
|
|
|
|
|
return 40; //Berries
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return 50; //Fruit Trees
|
|
|
|
|
}
|
2020-05-03 13:05:05 +02:00
|
|
|
|
}
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void degradeSoil()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (soilProperties.Nitrogen > 4.0f)
|
2020-05-03 13:05:05 +02:00
|
|
|
|
{
|
2020-05-07 01:55:52 +02:00
|
|
|
|
soilProperties.Nitrogen = soilProperties.Nitrogen - soilProperties.NitrogenDegradeRate;
|
2020-05-03 13:05:05 +02:00
|
|
|
|
}
|
2020-05-07 01:55:52 +02:00
|
|
|
|
if (soilProperties.Phosphorous > 0.1f)
|
|
|
|
|
{
|
|
|
|
|
soilProperties.Phosphorous = soilProperties.Phosphorous - soilProperties.PhosphorousDegradeRate;
|
|
|
|
|
}
|
|
|
|
|
if (soilProperties.Potassium > 0.1f)
|
|
|
|
|
{
|
|
|
|
|
soilProperties.Potassium = soilProperties.Potassium - soilProperties.PotassiumDegradeRate;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-08 20:04:31 +02:00
|
|
|
|
}
|
2020-05-06 16:22:30 +02:00
|
|
|
|
|
2020-04-08 20:04:31 +02:00
|
|
|
|
|
2020-05-07 01:55:52 +02:00
|
|
|
|
public void setCropType(int Type, CropTypes nCropType)
|
2020-04-08 20:04:31 +02:00
|
|
|
|
{
|
2020-05-07 01:55:52 +02:00
|
|
|
|
DataSet = nCropType;
|
2020-05-05 16:27:45 +02:00
|
|
|
|
cropType = Type;
|
2020-04-08 20:04:31 +02:00
|
|
|
|
}
|
2020-05-03 13:05:05 +02:00
|
|
|
|
|
2020-05-05 16:27:45 +02:00
|
|
|
|
public int getStatus()
|
|
|
|
|
{
|
2020-05-07 01:55:52 +02:00
|
|
|
|
if (Status != 3)
|
2020-05-05 16:27:45 +02:00
|
|
|
|
{
|
|
|
|
|
return Status;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return Status; // + cropType; When unique crop textures have been added
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getCropType()
|
|
|
|
|
{
|
|
|
|
|
return cropType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStatus(int newStatus)
|
|
|
|
|
{
|
|
|
|
|
Status = newStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOriginalStatus()
|
|
|
|
|
{
|
|
|
|
|
originalStatus = Status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setHousePos(bool state)
|
|
|
|
|
{
|
|
|
|
|
housePos = state;
|
|
|
|
|
if (state)
|
|
|
|
|
{
|
|
|
|
|
Status = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Status = originalStatus;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool getHousePos()
|
2020-05-03 13:05:05 +02:00
|
|
|
|
{
|
2020-05-05 16:27:45 +02:00
|
|
|
|
return housePos;
|
2020-05-03 13:05:05 +02:00
|
|
|
|
}
|
2020-05-06 16:22:30 +02:00
|
|
|
|
|
2020-05-10 01:38:08 +02:00
|
|
|
|
public bool belowCapacity()
|
|
|
|
|
{
|
|
|
|
|
return ((int)(soilProperties.Nitrogen + soilProperties.Potassium + soilProperties.Phosphorous)) < soilProperties.Capacity;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-07 20:06:34 +02:00
|
|
|
|
public float getProductionRate(CropTypes Sample)
|
2020-05-07 01:55:52 +02:00
|
|
|
|
{
|
2020-05-07 13:53:07 +02:00
|
|
|
|
ProductionRate = 1;
|
2020-05-09 15:54:53 +02:00
|
|
|
|
float min = 1.0f;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
if (DataSet != null)
|
|
|
|
|
{
|
2020-05-07 21:46:33 +02:00
|
|
|
|
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Temperature, Sample.Temparature));
|
|
|
|
|
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Moisture, Sample.Moisture));
|
|
|
|
|
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Humidity, Sample.Humidity));
|
2020-05-09 15:54:53 +02:00
|
|
|
|
min = Math.Min(compareToDatset(soilProperties.Phosphorous, Sample.Phosphorous), Math.Min(compareToDatset(soilProperties.Potassium, Sample.Potassium), compareToDatset(soilProperties.Nitrogen, Sample.Nitrogen)));
|
|
|
|
|
ProductionRate = ProductionRate + (ProductionRate * min);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
if (ProductionRate < 0)
|
|
|
|
|
{
|
2020-05-07 13:53:07 +02:00
|
|
|
|
ProductionRate = 0;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
2020-05-09 15:54:53 +02:00
|
|
|
|
ProductionRate = ProductionRate / 10;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
2020-05-10 16:42:25 +02:00
|
|
|
|
ProductionRate = (float)Math.Pow(ProductionRate, 2.5f);
|
2020-05-07 20:06:34 +02:00
|
|
|
|
return ProductionRate;
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float compareToDatset(float i, float j)
|
|
|
|
|
{
|
2020-05-07 14:51:52 +02:00
|
|
|
|
if (i < j)
|
2020-05-07 13:53:07 +02:00
|
|
|
|
{
|
2020-05-07 14:51:52 +02:00
|
|
|
|
return (i / j);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-05-07 14:51:52 +02:00
|
|
|
|
return (j / i);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
}
|
2020-05-07 14:51:52 +02:00
|
|
|
|
|
2020-05-07 01:55:52 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-05-06 16:22:30 +02:00
|
|
|
|
public void Inspect(int tileSize, int Spacing, SpriteFont Bold, SpriteBatch spriteBatch, string[] cropTypesNames)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.Begin();
|
|
|
|
|
if (housePos)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "Tiletype: House", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
|
|
|
|
|
}
|
|
|
|
|
else if (Status == 0)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "Tiletype: Boulders", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
|
|
|
|
|
}
|
|
|
|
|
else if (Status == 1)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "Tiletype: Grassfield", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
|
|
|
|
|
}
|
|
|
|
|
else if (Status == 2)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "Tiletype: Soil", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
|
|
|
|
|
}
|
|
|
|
|
else if (Status == 3)
|
|
|
|
|
{
|
|
|
|
|
int x = (int)(((float)Timer / fullTimer) * 100);
|
|
|
|
|
x = 100 - x;
|
|
|
|
|
spriteBatch.DrawString(Bold, "Tiletype: Crop ", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
|
|
|
|
|
spriteBatch.DrawString(Bold, "Completion: " + x + "%", new Vector2(240, Size.Y * (tileSize + Spacing) + 82), Color.DarkBlue);
|
|
|
|
|
}
|
2020-05-07 01:55:52 +02:00
|
|
|
|
if (Status != 3)
|
2020-05-06 16:22:30 +02:00
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "-------------", new Vector2(240, Size.Y * (tileSize + Spacing) + 82), Color.DarkRed);
|
|
|
|
|
}
|
|
|
|
|
if (Status > 1)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "Prefered Crop: " + cropTypesNames[cropType], new Vector2(240, Size.Y * (tileSize + Spacing) + 62), Color.DarkBlue);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.DrawString(Bold, "None", new Vector2(240, Size.Y * (tileSize + Spacing) + 62), Color.DarkBlue);
|
|
|
|
|
}
|
|
|
|
|
spriteBatch.DrawString(Bold, "Soil Properties:", new Vector2(240, Size.Y * (tileSize + Spacing) + 122), Color.DarkRed);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, "Soil Type: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 142), Color.DarkRed);
|
|
|
|
|
spriteBatch.DrawString(Bold, soilProperties.soilType, new Vector2(370, Size.Y * (tileSize + Spacing) + 142), Color.DarkBlue);
|
|
|
|
|
spriteBatch.DrawString(Bold, "Temparature: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 162), Color.DarkRed);
|
|
|
|
|
spriteBatch.DrawString(Bold, soilProperties.Temperature.ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 162), Color.DarkBlue);
|
|
|
|
|
spriteBatch.DrawString(Bold, "Moisture: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 182), Color.DarkRed);
|
|
|
|
|
spriteBatch.DrawString(Bold, soilProperties.Moisture.ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 182), Color.DarkBlue);
|
|
|
|
|
spriteBatch.DrawString(Bold, "Humidity: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 202), Color.DarkRed);
|
|
|
|
|
spriteBatch.DrawString(Bold, soilProperties.Humidity.ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 202), Color.DarkBlue);
|
|
|
|
|
spriteBatch.DrawString(Bold, "Phosphorous: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 222), Color.DarkRed);
|
2020-05-07 13:53:07 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, Math.Round(soilProperties.Phosphorous,1).ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 222), Color.DarkBlue);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, "Potassium: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 242), Color.DarkRed);
|
2020-05-07 13:53:07 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, Math.Round(soilProperties.Potassium, 1).ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 242), Color.DarkBlue);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, "Nitrogen: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 262), Color.DarkRed);
|
2020-05-07 13:53:07 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, Math.Round(soilProperties.Nitrogen, 1).ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 262), Color.DarkBlue);
|
2020-05-07 01:55:52 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, "Production Rate: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 282), Color.DarkRed);
|
2020-05-07 13:53:07 +02:00
|
|
|
|
spriteBatch.DrawString(Bold, Math.Round((ProductionRate * 100), 1).ToString() + "%", new Vector2(370, Size.Y * (tileSize + Spacing) + 282), Color.DarkBlue);
|
2020-05-06 16:22:30 +02:00
|
|
|
|
spriteBatch.End();
|
|
|
|
|
}
|
2020-04-08 20:04:31 +02:00
|
|
|
|
}
|