Advertisement
ktostam450

C# Map Generator stuff

Oct 6th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.19 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Microsoft.Xna.Framework.Graphics;
  6. using Microsoft.Xna.Framework;
  7. using Microsoft.Xna.Framework.Input;
  8.  
  9. namespace Gra
  10. {
  11.     class MapGenerator
  12.     {
  13.         public const int chunkSize = 32;
  14.         Chunk[] chunks = new Chunk[100];
  15.         //the index of a chunk in this ^- variable is not releavant to the position
  16.  
  17.         public double seedX, seedY;
  18.         public float noise;
  19.         Random rnd = new Random();
  20.        
  21.         public bool updateChunk(int x, int y)
  22.         {
  23.             int nr = findChunk(x, y);
  24.             if (nr < 0) return false;//invalid request
  25.             chunks[nr].lastUsed = MapGenerator.GetTime(); //now.
  26.             return true;
  27.         }
  28.  
  29.         public void unloadChunks()
  30.         {
  31.             long now = MapGenerator.GetTime();
  32.             for (int i = 0; i < chunks.Length; i++)
  33.             {
  34.                 if (chunks[i] == null) continue;
  35.                 if (now - chunks[i].lastUsed > 5)
  36.                 {
  37.                     saveChunk(i);
  38.                     chunks[i] = null;
  39.                 }
  40.             }
  41.         }
  42.  
  43.         public Chunk getChunk(int x, int y)
  44.         {
  45.             int nr = findChunk(x, y);
  46.             if (nr < 0)
  47.             {
  48.                 //Open new chunk
  49.                 nr = findFreeChunk();
  50.                 if (nr < 0) return null;//can not load more chunks, limit reached
  51.                 chunks[nr] = new Chunk(x, y);
  52.  
  53.                 loadChunk(nr);
  54.             }
  55.  
  56.             return chunks[nr];
  57.         }
  58.  
  59.         void saveChunk(int nr)
  60.         {
  61.             if (chunks[nr] == null) return;
  62.             if (!chunks[nr].needsSave) return;
  63.  
  64.             //add saving here
  65.         }
  66.  
  67.         void loadChunk(int nr)
  68.         {
  69.             //if(load == success){
  70.             //    chunks[nr].needsSave = true
  71.             //}
  72.             //loading here
  73.  
  74.             //if(load != success){
  75.             generateTerrain(nr);
  76.             //}
  77.         }
  78.  
  79.         void generateTerrain(int nr)
  80.         {
  81.             NoiseGenerator n = new NoiseGenerator();
  82.             n.Octaves = 3;
  83.             n.Seed = new Random().Next(-9999, 9999) * new Random().Next(-9999, 9999);
  84.             n.Frequency = 1 / 64.0;
  85.             int pX = chunks[nr].pos[0] * MapGenerator.chunkSize,
  86.                 pY = chunks[nr].pos[1] * MapGenerator.chunkSize;
  87.  
  88.             for (int x = 0; x < chunkSize; x++)
  89.             {
  90.                 for (int y = 0; y < chunkSize; y++)
  91.                 {
  92.                     //position in-game, otherwise, all chunks would look the same way
  93.                     chunks[nr].data[x, y] = (int)(n.Noise(pX + x, pY + y) * 10);
  94.                 }
  95.             }
  96.         }
  97.  
  98.         int findFreeChunk()
  99.         {
  100.             for (int i = 0; i < chunks.Length; i++)
  101.             {
  102.                 if (chunks[i] == null) return i;
  103.             }
  104.             return -1;
  105.         }
  106.  
  107.         int findChunk(int x, int y, bool ingame_pos = false)
  108.         {
  109.             if (ingame_pos)
  110.             {
  111.                 x = x / chunkSize;
  112.                 y = y / chunkSize;
  113.             }
  114.  
  115.             for (int i = 0; i < chunks.Length; i++)
  116.             {
  117.                 if (chunks[i] == null) continue;
  118.                 if (chunks[i].pos[0] == x && chunks[i].pos[1] == y)
  119.                 {
  120.                     return i;
  121.                 }
  122.             }
  123.             return -1;
  124.         }
  125.        
  126.         public static long GetTime()
  127.         {
  128.             TimeSpan s = DateTime.Now - new DateTime(2014, 01, 01);
  129.             return (long)s.TotalMinutes;
  130.         }
  131.     }
  132.     class Chunk
  133.     {
  134.         public bool needsSave;
  135.         public long lastUsed;
  136.         public int[,] data;
  137.         public int[] pos;//position of this chunk within all other cunks
  138.         //map:
  139.         //xy|xy
  140.         //-+||++
  141.         //======
  142.         //--||+-
  143.  
  144.         public Chunk(int pX, int pY)
  145.         {
  146.             needsSave = false;
  147.             lastUsed = MapGenerator.GetTime(); //time ...
  148.             pos = new int[] { pX, pY };
  149.             data = new int[MapGenerator.chunkSize, MapGenerator.chunkSize];
  150.         }
  151.     }
  152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement