From cfc7182eb55fea5ea3961527fb88f4fd5b017770 Mon Sep 17 00:00:00 2001 From: Kacper Donat Date: Sat, 27 Jul 2019 22:40:42 +0200 Subject: [PATCH] initial commit --- .gitignore | 56 ++ Assembly-CSharp.csproj.DotSettings | 2 + Assets/Editor.meta | 8 + Assets/Editor/GraphGeneratorUI.cs | 60 ++ Assets/Editor/GraphGeneratorUI.cs.meta | 11 + Assets/Generators.meta | 8 + Assets/Generators/INoiseGenerator.cs | 9 + Assets/Generators/INoiseGenerator.cs.meta | 11 + Assets/Generators/IslandGenerator.cs | 29 + Assets/Generators/IslandGenerator.cs.meta | 11 + Assets/Generators/PerlinNoiseGenerator.cs | 36 + .../Generators/PerlinNoiseGenerator.cs.meta | 11 + Assets/Generators/PoissonDiskSampler.cs | 103 +++ Assets/Generators/PoissonDiskSampler.cs.meta | 11 + Assets/LandMaterial.mat | 77 +++ Assets/LandMaterial.mat.meta | 8 + Assets/Libraries.meta | 8 + Assets/Libraries/Priority Queue.dll | Bin 0 -> 20992 bytes Assets/Libraries/Priority Queue.dll.meta | 33 + Assets/Map.meta | 3 + Assets/Map/Graph.cs | 10 + Assets/Map/Graph.cs.meta | 3 + Assets/Map/Map.cs | 10 + Assets/Map/Map.cs.meta | 3 + Assets/Map/Section.cs | 8 + Assets/Map/Section.cs.meta | 3 + Assets/Scenes.meta | 8 + Assets/Scenes/SampleScene.unity | 305 +++++++++ Assets/Scenes/SampleScene.unity.meta | 7 + Assets/Scripts.meta | 8 + Assets/Scripts/CircleGenerator.cs | 61 ++ Assets/Scripts/CircleGenerator.cs.meta | 11 + Assets/Scripts/GraphGenerator.cs | 190 ++++++ Assets/Scripts/GraphGenerator.cs.meta | 11 + Assets/Scripts/MapRenderer.cs | 57 ++ Assets/Scripts/MapRenderer.cs.meta | 11 + Assets/Voronoi.meta | 8 + Assets/Voronoi/BeachLine.cs | 205 ++++++ Assets/Voronoi/BeachLine.cs.meta | 11 + Assets/Voronoi/Tree.cs | 349 ++++++++++ Assets/Voronoi/Tree.cs.meta | 3 + Assets/Voronoi/VoronoiGenerator.cs | 196 ++++++ Assets/Voronoi/VoronoiGenerator.cs.meta | 11 + Assets/Voronoi/VoronoiGraph.cs | 27 + Assets/Voronoi/VoronoiGraph.cs.meta | 3 + Packages/manifest.json | 46 ++ ProjectSettings/AudioManager.asset | 17 + ProjectSettings/ClusterInputManager.asset | 6 + ProjectSettings/DynamicsManager.asset | 30 + ProjectSettings/EditorBuildSettings.asset | 11 + ProjectSettings/EditorSettings.asset | 28 + ProjectSettings/GraphicsSettings.asset | 57 ++ ProjectSettings/InputManager.asset | 295 +++++++++ ProjectSettings/NavMeshAreas.asset | 91 +++ ProjectSettings/NetworkManager.asset | 8 + ProjectSettings/Physics2DSettings.asset | Bin 0 -> 4448 bytes ProjectSettings/PresetManager.asset | 6 + ProjectSettings/ProjectSettings.asset | 621 ++++++++++++++++++ ProjectSettings/ProjectVersion.txt | 2 + ProjectSettings/QualitySettings.asset | 239 +++++++ ProjectSettings/TagManager.asset | 43 ++ ProjectSettings/TimeManager.asset | 9 + ProjectSettings/UnityConnectSettings.asset | 34 + ProjectSettings/VFXManager.asset | 7 + ProjectSettings/XRSettings.asset | 10 + csc.rsp | 0 packages.config | 4 + 67 files changed, 3578 insertions(+) create mode 100644 .gitignore create mode 100644 Assembly-CSharp.csproj.DotSettings create mode 100644 Assets/Editor.meta create mode 100644 Assets/Editor/GraphGeneratorUI.cs create mode 100644 Assets/Editor/GraphGeneratorUI.cs.meta create mode 100644 Assets/Generators.meta create mode 100644 Assets/Generators/INoiseGenerator.cs create mode 100644 Assets/Generators/INoiseGenerator.cs.meta create mode 100644 Assets/Generators/IslandGenerator.cs create mode 100644 Assets/Generators/IslandGenerator.cs.meta create mode 100644 Assets/Generators/PerlinNoiseGenerator.cs create mode 100644 Assets/Generators/PerlinNoiseGenerator.cs.meta create mode 100644 Assets/Generators/PoissonDiskSampler.cs create mode 100644 Assets/Generators/PoissonDiskSampler.cs.meta create mode 100644 Assets/LandMaterial.mat create mode 100644 Assets/LandMaterial.mat.meta create mode 100644 Assets/Libraries.meta create mode 100644 Assets/Libraries/Priority Queue.dll create mode 100644 Assets/Libraries/Priority Queue.dll.meta create mode 100644 Assets/Map.meta create mode 100644 Assets/Map/Graph.cs create mode 100644 Assets/Map/Graph.cs.meta create mode 100644 Assets/Map/Map.cs create mode 100644 Assets/Map/Map.cs.meta create mode 100644 Assets/Map/Section.cs create mode 100644 Assets/Map/Section.cs.meta create mode 100644 Assets/Scenes.meta create mode 100644 Assets/Scenes/SampleScene.unity create mode 100644 Assets/Scenes/SampleScene.unity.meta create mode 100644 Assets/Scripts.meta create mode 100644 Assets/Scripts/CircleGenerator.cs create mode 100644 Assets/Scripts/CircleGenerator.cs.meta create mode 100644 Assets/Scripts/GraphGenerator.cs create mode 100644 Assets/Scripts/GraphGenerator.cs.meta create mode 100644 Assets/Scripts/MapRenderer.cs create mode 100644 Assets/Scripts/MapRenderer.cs.meta create mode 100644 Assets/Voronoi.meta create mode 100644 Assets/Voronoi/BeachLine.cs create mode 100644 Assets/Voronoi/BeachLine.cs.meta create mode 100644 Assets/Voronoi/Tree.cs create mode 100644 Assets/Voronoi/Tree.cs.meta create mode 100644 Assets/Voronoi/VoronoiGenerator.cs create mode 100644 Assets/Voronoi/VoronoiGenerator.cs.meta create mode 100644 Assets/Voronoi/VoronoiGraph.cs create mode 100644 Assets/Voronoi/VoronoiGraph.cs.meta create mode 100644 Packages/manifest.json create mode 100644 ProjectSettings/AudioManager.asset create mode 100644 ProjectSettings/ClusterInputManager.asset create mode 100644 ProjectSettings/DynamicsManager.asset create mode 100644 ProjectSettings/EditorBuildSettings.asset create mode 100644 ProjectSettings/EditorSettings.asset create mode 100644 ProjectSettings/GraphicsSettings.asset create mode 100644 ProjectSettings/InputManager.asset create mode 100644 ProjectSettings/NavMeshAreas.asset create mode 100644 ProjectSettings/NetworkManager.asset create mode 100644 ProjectSettings/Physics2DSettings.asset create mode 100644 ProjectSettings/PresetManager.asset create mode 100644 ProjectSettings/ProjectSettings.asset create mode 100644 ProjectSettings/ProjectVersion.txt create mode 100644 ProjectSettings/QualitySettings.asset create mode 100644 ProjectSettings/TagManager.asset create mode 100644 ProjectSettings/TimeManager.asset create mode 100644 ProjectSettings/UnityConnectSettings.asset create mode 100644 ProjectSettings/VFXManager.asset create mode 100644 ProjectSettings/XRSettings.asset create mode 100644 csc.rsp create mode 100644 packages.config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..23ce6a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Mm]emoryCaptures/ + +# Never ignore Asset meta data +!/[Aa]ssets/**/*.meta + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.unitypackage + +# Crashlytics generated file +crashlytics-build.properties + diff --git a/Assembly-CSharp.csproj.DotSettings b/Assembly-CSharp.csproj.DotSettings new file mode 100644 index 0000000..2349744 --- /dev/null +++ b/Assembly-CSharp.csproj.DotSettings @@ -0,0 +1,2 @@ + + False \ No newline at end of file diff --git a/Assets/Editor.meta b/Assets/Editor.meta new file mode 100644 index 0000000..3bcb1fa --- /dev/null +++ b/Assets/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e4ef7f5cb76f2c2338c59b987caf4a41 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor/GraphGeneratorUI.cs b/Assets/Editor/GraphGeneratorUI.cs new file mode 100644 index 0000000..51e8b0c --- /dev/null +++ b/Assets/Editor/GraphGeneratorUI.cs @@ -0,0 +1,60 @@ +using System; +using Assets; +using UnityEditor; +using UnityEngine; + +namespace Editor +{ + [CustomEditor(typeof (GraphGenerator))] + public class GraphGeneratorUI : UnityEditor.Editor + { + private string _threshold; + + public override void OnInspectorGUI() + { + GraphGenerator generator = (GraphGenerator)target; + + DrawDefaultInspector(); + + if (GUILayout.Button("Reset")) { + generator.Reset(); + } + + if (GUILayout.Button("Generate")) { + generator.Generate(); + } + + if (GUILayout.Button("Step")) { + generator.Step(); + } + + GUILayout.BeginHorizontal(); + { + _threshold = GUILayout.TextField(_threshold); + + if (GUILayout.Button("Go")) { + try + { + generator.Rewind(float.Parse(_threshold)); + } + catch + { + GUILayout.Label("You should pass valid number."); + } + } + } + GUILayout.EndHorizontal(); + } + + private void OnSceneGUI() + { + GraphGenerator generator = (GraphGenerator)target; + + if (generator.generator != null) + { + var moved = Handles.PositionHandle(generator.transform.position + Vector3.up * (float)generator.generator.Line.Directrix, Quaternion.identity); + generator.generator.Line.Directrix = moved.y; + } + } + } +} \ No newline at end of file diff --git a/Assets/Editor/GraphGeneratorUI.cs.meta b/Assets/Editor/GraphGeneratorUI.cs.meta new file mode 100644 index 0000000..f6c675d --- /dev/null +++ b/Assets/Editor/GraphGeneratorUI.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3937bde6d112f8b4ba131980cb080db3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Generators.meta b/Assets/Generators.meta new file mode 100644 index 0000000..b3f2cdf --- /dev/null +++ b/Assets/Generators.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 259153a10cc9545dbb826a5a4c315254 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Generators/INoiseGenerator.cs b/Assets/Generators/INoiseGenerator.cs new file mode 100644 index 0000000..87727de --- /dev/null +++ b/Assets/Generators/INoiseGenerator.cs @@ -0,0 +1,9 @@ +using UnityEngine; + +namespace Generators +{ + public interface IGenerator + { + double GetValue(Vector2 position); + } +} \ No newline at end of file diff --git a/Assets/Generators/INoiseGenerator.cs.meta b/Assets/Generators/INoiseGenerator.cs.meta new file mode 100644 index 0000000..cba8874 --- /dev/null +++ b/Assets/Generators/INoiseGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 682b56d4654bea3de8b383036947492f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Generators/IslandGenerator.cs b/Assets/Generators/IslandGenerator.cs new file mode 100644 index 0000000..5a9fef2 --- /dev/null +++ b/Assets/Generators/IslandGenerator.cs @@ -0,0 +1,29 @@ +using UnityEngine; + +namespace Generators +{ + public class IslandGenerator : IGenerator + { + private IGenerator noise; + + public float Inner { get; set; } = 20; + public float Outer { get; set; } = 23; + + public float Threshold { get; set; } = .5f; + + public IslandGenerator(IGenerator noise) + { + this.noise = noise; + } + + public double GetValue(Vector2 position) + { + var distance = position.magnitude / 10; + distance = (distance - Inner) / (Outer - Inner); + + var result = noise.GetValue(position) + .75 * (Mathf.Clamp(0, distance, 1) - 1); + + return result > Threshold ? 1 : 0; + } + } +} \ No newline at end of file diff --git a/Assets/Generators/IslandGenerator.cs.meta b/Assets/Generators/IslandGenerator.cs.meta new file mode 100644 index 0000000..19d5c0e --- /dev/null +++ b/Assets/Generators/IslandGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bbd6867fa0c423e078e554a9835c397f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Generators/PerlinNoiseGenerator.cs b/Assets/Generators/PerlinNoiseGenerator.cs new file mode 100644 index 0000000..28c671a --- /dev/null +++ b/Assets/Generators/PerlinNoiseGenerator.cs @@ -0,0 +1,36 @@ +using UnityEngine; + +namespace Generators +{ + public class PerlinNoiseGenerator : IGenerator + { + public float Scale { get; set; } = 0.001f; + public Vector2 Offset { get; set; } = new Vector2(.0f, .0f); + public int Iterations { get; set; } = 8; + public float Decay { get; set; } = .7f; + public float Lacunarity { get; set; } = 1.71f; + + public double GetValue(Vector2 position) + { + var amplitude = 1.0; + var scale = Scale; + var result = 0.0; + + for (int i = 0; i < Iterations; i++) { + result += amplitude * Calculate(position, scale); + + amplitude *= Decay; + scale *= Lacunarity; + } + + return result / ((1 - System.Math.Pow(Decay, Iterations)) / (1 - Decay)); + } + + private double Calculate(Vector2 position, float scale) + { + var final = (position + Offset) * scale; + + return Mathf.PerlinNoise(final.x, final.y); + } + } +} \ No newline at end of file diff --git a/Assets/Generators/PerlinNoiseGenerator.cs.meta b/Assets/Generators/PerlinNoiseGenerator.cs.meta new file mode 100644 index 0000000..d564429 --- /dev/null +++ b/Assets/Generators/PerlinNoiseGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 80853afcc172aecd3bc2885e9c1f4705 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Generators/PoissonDiskSampler.cs b/Assets/Generators/PoissonDiskSampler.cs new file mode 100644 index 0000000..22c20f9 --- /dev/null +++ b/Assets/Generators/PoissonDiskSampler.cs @@ -0,0 +1,103 @@ +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +namespace Assets.Generators +{ + public class PoissonDiskSampler + { + public System.Random Generator { get; set; } = new System.Random(); + + private int k; + private float r; + + private float Random(float max, float min = 0) + { + return (float)Generator.NextDouble() * (max - min) + min; + } + + public PoissonDiskSampler(float r, int k = 30) + { + this.k = k; + this.r = r; + } + + public IEnumerable Generate(float width, float height) + { + var size = r / Mathf.Sqrt(2); + + var grid = new Dictionary<(int, int), Vector3>(); + var active = new List(); + + var initial = new Vector3(Random(width), Random(height)); + + void AddToGrid(Vector3 point) + { + grid.Add( + (Mathf.FloorToInt(point.x / size), Mathf.FloorToInt(point.y / size)), + point + ); + + active.Add(point); + } + + bool IsPointOk(Vector3 point) + { + if (point.x < 0 || point.y < 0 || point.x > width || point.y > height) + { + return false; + } + + var x = Mathf.FloorToInt(point.x / size); + var y = Mathf.FloorToInt(point.y / size); + + var neighbours = (new List<(int, int)>() { + (x - 1, y + 1), (x, y + 1), (x + 1, y + 1), + (x - 1, y), (x, y), (x + 1, y), + (x - 1, y - 1), (x, y - 1), (x + 1, y - 1) + }); + + return neighbours + .Where(p => grid.ContainsKey(p)) + .All(p => Vector3.Distance(point, grid[p]) > r); + } + + Vector3 RandomPoint(Vector3 origin) + { + var angle = Random(Mathf.PI * 2); + var length = Random(2 * r, r); + + return origin + new Vector3(Mathf.Sin(angle), Mathf.Cos(angle)) * length; + } + + AddToGrid(initial); + yield return initial; + + int watchdog = 3000000; + + while (active.Count > 0 && watchdog-- > 0) + { + var current = Mathf.FloorToInt(Random(active.Count)); + var point = active[current]; + + var i = 0; + for (; i < k; i++) + { + var candidate = RandomPoint(point); + + if (IsPointOk(candidate)) + { + AddToGrid(candidate); + yield return candidate; + break; + } + } + + if (i >= k) + { + active.RemoveAt(current); + } + } + } + } +} \ No newline at end of file diff --git a/Assets/Generators/PoissonDiskSampler.cs.meta b/Assets/Generators/PoissonDiskSampler.cs.meta new file mode 100644 index 0000000..2b3572c --- /dev/null +++ b/Assets/Generators/PoissonDiskSampler.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 27e4eb7def845447daaee66ce140d435 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/LandMaterial.mat b/Assets/LandMaterial.mat new file mode 100644 index 0000000..076241a --- /dev/null +++ b/Assets/LandMaterial.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: New Material + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/LandMaterial.mat.meta b/Assets/LandMaterial.mat.meta new file mode 100644 index 0000000..c39cdf9 --- /dev/null +++ b/Assets/LandMaterial.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4796502263427fe76aeff40c630e21d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Libraries.meta b/Assets/Libraries.meta new file mode 100644 index 0000000..ae2fac1 --- /dev/null +++ b/Assets/Libraries.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 04728ae6dacc2e7a8b1e9ab1563d3f1a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Libraries/Priority Queue.dll b/Assets/Libraries/Priority Queue.dll new file mode 100644 index 0000000000000000000000000000000000000000..bc4537dd226dd4cf8b7da9989d09dd755700c2e3 GIT binary patch literal 20992 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 yHsj1-U + { + public IList Vertices { get; internal set; } = new List(); + public ISet<(int, int)> Edges { get; internal set; } = new HashSet<(int, int)>(); + } +} \ No newline at end of file diff --git a/Assets/Map/Graph.cs.meta b/Assets/Map/Graph.cs.meta new file mode 100644 index 0000000..16edf2c --- /dev/null +++ b/Assets/Map/Graph.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 9f2ef711bc3f4879b1b00668b485fffa +timeCreated: 1564083013 \ No newline at end of file diff --git a/Assets/Map/Map.cs b/Assets/Map/Map.cs new file mode 100644 index 0000000..b169de7 --- /dev/null +++ b/Assets/Map/Map.cs @@ -0,0 +1,10 @@ +using System; + +namespace Assets.Map +{ + [Serializable] + public class Map + { + public readonly Graph
Sections = new Graph
(); + } +} \ No newline at end of file diff --git a/Assets/Map/Map.cs.meta b/Assets/Map/Map.cs.meta new file mode 100644 index 0000000..7d9379e --- /dev/null +++ b/Assets/Map/Map.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: d1d1ebae421749529153eedaa70e227b +timeCreated: 1564082971 \ No newline at end of file diff --git a/Assets/Map/Section.cs b/Assets/Map/Section.cs new file mode 100644 index 0000000..9479013 --- /dev/null +++ b/Assets/Map/Section.cs @@ -0,0 +1,8 @@ +namespace Assets.Map +{ + public class Section + { + public double x; + public double y; + } +} \ No newline at end of file diff --git a/Assets/Map/Section.cs.meta b/Assets/Map/Section.cs.meta new file mode 100644 index 0000000..8732477 --- /dev/null +++ b/Assets/Map/Section.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: c1829eb593684199a5177fd08c07a753 +timeCreated: 1564083223 \ No newline at end of file diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta new file mode 100644 index 0000000..131116f --- /dev/null +++ b/Assets/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8238cc2d3a1b0dbc09dc2f483fcd28f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/SampleScene.unity b/Assets/Scenes/SampleScene.unity new file mode 100644 index 0000000..4ab83e5 --- /dev/null +++ b/Assets/Scenes/SampleScene.unity @@ -0,0 +1,305 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &519420028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 519420032} + - component: {fileID: 519420031} + - component: {fileID: 519420029} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &519420029 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 +--- !u!20 &519420031 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1920 + height: 1080 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 1 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 0 + m_HDR: 1 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &519420032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &528199731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 528199732} + - component: {fileID: 528199734} + - component: {fileID: 528199733} + - component: {fileID: 528199735} + m_Layer: 0 + m_Name: Map Generator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4294967295 + m_IsActive: 1 +--- !u!4 &528199732 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528199731} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &528199733 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528199731} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 06dfaa94f8713f12fbe207b61b694c90, type: 3} + m_Name: + m_EditorClassIdentifier: + seed: 150 + size: {x: 100, y: 100} + debug: + enabled: 1 + displayPoints: 1 + displayBeachLine: 1 + displayParabolas: 0 + displayVertices: 0 +--- !u!33 &528199734 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528199731} + m_Mesh: {fileID: 0} +--- !u!23 &528199735 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528199731} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 4796502263427fe76aeff40c630e21d3, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 diff --git a/Assets/Scenes/SampleScene.unity.meta b/Assets/Scenes/SampleScene.unity.meta new file mode 100644 index 0000000..c1e3c88 --- /dev/null +++ b/Assets/Scenes/SampleScene.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2cda990e2423bbf4892e6590ba056729 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 0000000..720970c --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c9150292d30fa43288a8b5c72449d49 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/CircleGenerator.cs b/Assets/Scripts/CircleGenerator.cs new file mode 100644 index 0000000..4e2fc40 --- /dev/null +++ b/Assets/Scripts/CircleGenerator.cs @@ -0,0 +1,61 @@ +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))] +public class CircleGenerator : MonoBehaviour +{ + [Range(1, 200)] + public int NodeCount = 3; + + public int Details = 150; + + public float Radius = 20.0f; + + [Range(0, 1)] + public float AngleVariation = 0.5f; + + public float RadiusVariation = 2f; + private Random random = new Random(); + + private float RandomCoefficient(float multiplier) => 2 * (Random.value - 0.5f) * multiplier; + + public void Generate() + { + Vector3 center = new Vector3(0, 0, 0); + Mesh mesh = new Mesh(); + + var maxAngleVariation = AngleVariation * Mathf.PI * 2 / Details; + + var vertices = new List(); + for (int i = 0; i < Details; i++) + { + var angle = i * Mathf.PI * 2 / Details + RandomCoefficient(maxAngleVariation); + var radius = Radius + RandomCoefficient(RadiusVariation); + + Vector3 direction = new Vector3(Mathf.Sin(angle), 0, Mathf.Cos(angle)); + vertices.Add(direction * radius); + } + + var triangles = new List(); + for (int i = 0; i < Details - 2; i++) + { + triangles.Add(0); + triangles.Add(i); + triangles.Add(i + 1); + } + + var normals = new List(); + for (int i = 0; i < Details; i++) + { + normals.Add(-Vector3.forward); + } + + mesh.vertices = vertices.ToArray(); + mesh.triangles = triangles.ToArray(); + mesh.normals = normals.ToArray(); + + var mf = GetComponent(); + mf.mesh = mesh; + } +} \ No newline at end of file diff --git a/Assets/Scripts/CircleGenerator.cs.meta b/Assets/Scripts/CircleGenerator.cs.meta new file mode 100644 index 0000000..8001993 --- /dev/null +++ b/Assets/Scripts/CircleGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3229222b4f08ca4759cc1561d71992c0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/GraphGenerator.cs b/Assets/Scripts/GraphGenerator.cs new file mode 100644 index 0000000..db09621 --- /dev/null +++ b/Assets/Scripts/GraphGenerator.cs @@ -0,0 +1,190 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Assets.Generators; +using Assets.Voronoi; +using UnityEditor; +using UnityEngine; +using Random = System.Random; + +namespace Assets +{ + [Serializable] + public class GraphGeneratorDebug + { + public bool enabled = true; + public bool displayPoints = true; + public bool displayBeachLine = true; + public bool displayParabolas = false; + public bool displayVertices = true; + public bool displayNeighbours = false; + public bool displayLabels= false; + } + + [RequireComponent(typeof(MeshRenderer), typeof(MeshFilter)), ExecuteInEditMode] + public class GraphGenerator : MonoBehaviour + { + MeshFilter _filter; + private PoissonDiskSampler _sampler; + IList _points = new List(); + + public VoronoiGenerator generator; + public int seed = Environment.TickCount; + public Vector2 size = new Vector2(); + public GraphGeneratorDebug debug; + [Range(2.0f, 64.0f)] + public float radius = 8; + + private double _directrix = 0.0f; + + private Random _random; + private Dictionary _colors; + + void Start() + { + _filter = GetComponent(); + + Reset(); + } + + public Vector3 RandomPoint() + { + return _points[_random.Next(_points.Count)]; + } + + public void Reset() + { + _colors = new Dictionary(); + _random = new System.Random(seed); + + _sampler = new PoissonDiskSampler(radius); + _sampler.Generator = _random; + + _points = new List(_sampler.Generate(size.x, size.y)); + + for (int i = 0; i < 10; i++) + { + _colors[RandomPoint()] = Color.yellow; + } + +// points = new List() +// { +// new Vector3(15.7f, 5.9f), +// new Vector3(37.9f, 10.3f), +// new Vector3(24.6f, 18.1f), +// new Vector3(53.5f, 8.0f), +// }; + + generator = new VoronoiGenerator(_points.Select(x => new Point(x.x, x.y)).ToList()); + } + + public void Generate() + { + generator.Generate(); + } + + public void Step() + { + generator.Step(); + _directrix = generator.Line.Directrix; + } + + void OnDrawGizmos() + { + + if (!debug.enabled) return; + + if (debug.displayPoints) + { + + foreach (var point in _points) + { + Gizmos.color = _colors.ContainsKey(point) ? _colors[point] : Color.white; + Gizmos.DrawSphere(point, 1); + + if (debug.displayLabels) Handles.Label(point, $"({point.x:F1}, {point.y:F1})"); + } + } + + if (generator is null) return; + + if (debug.displayNeighbours) + { + Gizmos.color = Color.yellow; + + foreach (var site in generator.Sites) + { + var vecStart = new Vector3((float)site.Point.x, (float)site.Point.y); + foreach (var neighbour in site.Neighbours) + { + var vecEnd = new Vector3((float)neighbour.Point.x, (float)neighbour.Point.y); + Gizmos.DrawLine(vecStart, vecEnd); + } + } + } + + + Gizmos.color = Color.green; + foreach (var edge in generator.Edges) + { + var vecStart = new Vector3((float)edge.start.x, (float)edge.start.y); + var vecEnd = new Vector3((float)edge.end.x, (float)edge.end.y); + + Gizmos.DrawLine(vecStart, vecEnd); + } + + Gizmos.color = Color.red; + Gizmos.DrawLine(new Vector3(0, (float)generator.Line.Directrix), new Vector3(size.x, (float)generator.Line.Directrix)); + Gizmos.color = Color.blue; + + Vector3 start; + + if (debug.displayParabolas) + { + foreach (var parabola in generator.Line.Parabolas) + { + start = new Vector3(-size.x, (float)generator.Line.EvalParabola(parabola.Site.Point, -size.x)); + for (var x = -size.x + 0.1f; x < size.x * 2; x += 0.1f) + { + var point = new Vector3(x, (float)generator.Line.EvalParabola(parabola.Site.Point, x)); + Gizmos.DrawLine(start, point); + + start = point; + } + } + } + + if (debug.displayVertices) + { + foreach (var vertex in generator.Vertices) + { + var point = new Vector3((float)vertex.x, (float)vertex.y); + + Gizmos.DrawSphere(point, 1); + if (debug.displayLabels) Handles.Label(point, $"({point.x:F1}, {point.y:F1})"); + } + } + + if (debug.displayBeachLine) + { + Gizmos.color = Color.white; + start = new Vector3(-size.x, (float)generator.Line.Eval(-size.x)); + for (var x = -size.x + 0.1f; x < size.x * 2; x += 0.1f) + { + var point = new Vector3(x, (float)generator.Line.Eval(x)); + Gizmos.DrawLine(start, point); + + start = point; + } + } + } + + public void Rewind(float y) + { + while (generator.Line.Directrix < y && !generator.Done) + { + generator.Step(); + } + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/GraphGenerator.cs.meta b/Assets/Scripts/GraphGenerator.cs.meta new file mode 100644 index 0000000..3eca0e8 --- /dev/null +++ b/Assets/Scripts/GraphGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 06dfaa94f8713f12fbe207b61b694c90 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/MapRenderer.cs b/Assets/Scripts/MapRenderer.cs new file mode 100644 index 0000000..07108d9 --- /dev/null +++ b/Assets/Scripts/MapRenderer.cs @@ -0,0 +1,57 @@ +using System; +using Generators; +using UnityEngine; + +public class MapRenderer : MonoBehaviour +{ + public Renderer mapRenderer; + public IGenerator generator; + + public Vector2 Offset; + public float Scale; + + [Range(0, 1)] + + public float Decay; + [Range(0, 4)] + public float Lacunarity; + + [Range(0, 1)] + public float Threshold; + + public void DrawMap(int width, int height) + { + var texture = new Texture2D(width, height); + var colors = new Color[width * height]; + + var position = new Vector2(0.0f, 0.0f); + + generator = new PerlinNoiseGenerator { + Scale = Scale, + Offset = Offset, + Decay = Decay, + Lacunarity = Lacunarity + }; + + generator = new IslandGenerator(generator) { + Threshold = Threshold + }; + + for (int x = 0; x < width; x++) + { + for (int y = 0; y < height; y++) + { + position.x = x - width / 2; + position.y = y - height / 2; + + colors[y * width + x] = Color.Lerp(Color.black, Color.white, (float)generator.GetValue(position)); + } + } + + texture.SetPixels(colors); + texture.Apply(); + + mapRenderer.sharedMaterial.mainTexture = texture; + mapRenderer.transform.localScale = new Vector3(width / 100.0f, 1, height / 100.0f); + } +} \ No newline at end of file diff --git a/Assets/Scripts/MapRenderer.cs.meta b/Assets/Scripts/MapRenderer.cs.meta new file mode 100644 index 0000000..4d9cd77 --- /dev/null +++ b/Assets/Scripts/MapRenderer.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 56488ae21f3a5526189eba26fc16d0c3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Voronoi.meta b/Assets/Voronoi.meta new file mode 100644 index 0000000..34debe6 --- /dev/null +++ b/Assets/Voronoi.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fbf7fc0e072a192d5b6f39c54a3f1ada +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Voronoi/BeachLine.cs b/Assets/Voronoi/BeachLine.cs new file mode 100644 index 0000000..017495d --- /dev/null +++ b/Assets/Voronoi/BeachLine.cs @@ -0,0 +1,205 @@ +using System; +using System.Collections.Generic; +using System.Runtime.CompilerServices; +using static System.Math; + +namespace Assets.Voronoi +{ + + public class Edge + { + public Point start = null; + public Point end = null; + } + + public class Parabola + { + public Parabola(Site site) + { + Site = site; + } + + public Site Site { get; internal set; } + public EdgeEvent Event { get; internal set; } + + public Edge LeftEdge { get; set; } + public Edge RightEdge { get; set; } + + public override string ToString() + { + return $"({Site.Point.x}, {Site.Point.y})"; + } + } + + public class BeachLine + { + private IDictionary, EdgeEvent> _events = new Dictionary, EdgeEvent>(); + private RedBlackTree _tree = new RedBlackTree(); + public double Directrix { get; set; } = 0.0f; + + public IEnumerable Parabolas + { + get + { + if (!_tree.IsEmpty) + { + var current = _tree.Root; + + while (current.Left != null) + current = current.Left; + + while (current != null) + { + yield return current.Value; + current = current.Next; + } + } + } + } + + public RedBlackNode AddParabola(Site site, RedBlackNode node = null) + { + if (node == null) + { + node = new RedBlackNode(new Parabola(site)); + + _tree.Root = node; + } + else + { + if (node.Value.Event != null) node.Value.Event.IsValid = false; + + _tree.InsertBefore(node, new Parabola(node.Value.Site)); + _tree.InsertAfter(node, new Parabola(node.Value.Site)); + + node.Value = new Parabola(site); + } + + return node; + } + + public void RemoveParabola(RedBlackNode parabola) + { + _tree.Remove(parabola); + } + + public RedBlackNode FindParabola(double x) + { + if (_tree.IsEmpty) + return null; + + var current = _tree.Root; + + while (current != null) + { + if (x < Left(current)) + { + current = current.Left; + } + else if (x > Right(current)) + { + current = current.Right; + } + else + { + return current; + } + } + + throw new Exception("WTF?"); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public double Left(RedBlackNode node) + { + return node.Previous == null + ? double.NegativeInfinity + : IntersectParabola(node.Previous.Value.Site.Point, node.Value.Site.Point); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public double Right(RedBlackNode node) + { + return node.Next == null + ? double.PositiveInfinity + : IntersectParabola(node.Value.Site.Point, node.Next.Value.Site.Point); + } + + public double EvalParabola(Point f, double x) + { + var nominator = Pow(x - f.x, 2) + f.y * f.y - Directrix * Directrix; + return nominator / (2 * (f.y - Directrix)); + } + + public double Eval(double x) + { + var parabola = FindParabola(x); + + if (parabola is null) return Directrix; + + return EvalParabola(parabola.Value.Site.Point, x); + } + + private Point Circle(RedBlackNode node) + { + if (node.Previous == null || node.Next == null) + return null; + + var a = node.Previous.Value.Site.Point; + var b = node.Value.Site.Point; + var c = node.Next.Value.Site.Point; + + if ((a.x - b.x) * (c.y - b.y) - (c.x - b.x) * (a.y - b.y) > 0.000001) + return null; + + var A = a.x * (b.y - c.y) - a.y * (b.x - c.x) + b.x * c.y - c.x * b.y; + var B = (a.x * a.x + a.y * a.y) * (c.y - b.y) + + (b.x * b.x + b.y * b.y) * (a.y - c.y) + + (c.x * c.x + c.y * c.y) * (b.y - a.y); + var C = (a.x * a.x + a.y * a.y) * (b.x - c.x) + + (b.x * b.x + b.y * b.y) * (c.x - a.x) + + (c.x * c.x + c.y * c.y) * (a.x - b.x); + + if (Math.Abs(A) < 0.1) + return null; + + var x = -B / (2 * A); + var y = -C / (2 * A); + + return new Point(x, y); + } + + public EdgeEvent CheckCircleEvent(RedBlackNode node) + { + if (node == null) + return null; + + var circle = Circle(node); + + if (circle == null) + return null; + + return node.Value.Event = new EdgeEvent() { vertex = circle, node = node }; + } + + private double IntersectParabola(Point q, Point p) + { + if (Abs(p.y - Directrix) < 0.0001) return p.x; + if (Abs(q.y - Directrix) < 0.0001) return q.x; + + if (Abs(p.y - q.y) < 0.0001) return (q.x + p.x) / 2; + + var alpha = 1 / (2 * (q.y - Directrix)); + var beta = 1 / (2 * (p.y - Directrix)); + + double a = alpha - beta; + double b = -2 * alpha * q.x + 2 * beta * p.x; + double c = alpha * (Pow(q.x, 2) + Pow(q.y, 2) - Pow(Directrix, 2)) + - beta * (Pow(p.x, 2) + Pow(p.y, 2) - Pow(Directrix, 2)); + + double d = Sqrt(b * b - 4.0 * a * c); + + return (-b - d) / (2 * a); + } + } +} \ No newline at end of file diff --git a/Assets/Voronoi/BeachLine.cs.meta b/Assets/Voronoi/BeachLine.cs.meta new file mode 100644 index 0000000..b40a87b --- /dev/null +++ b/Assets/Voronoi/BeachLine.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 82358063bb5f5d96aa4843aabde7aa80 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Voronoi/Tree.cs b/Assets/Voronoi/Tree.cs new file mode 100644 index 0000000..8fb337e --- /dev/null +++ b/Assets/Voronoi/Tree.cs @@ -0,0 +1,349 @@ +using System; +using System.Runtime.CompilerServices; + +namespace Assets.Voronoi +{ + public enum RedBlackNodeType + { + Black, + Red + } + + public class RedBlackNode + { + public T Value { get; internal set; } + + internal RedBlackNodeType Color { get; set; } = RedBlackNodeType.Red; + + internal RedBlackNode _left; + internal RedBlackNode _right; + + + public RedBlackNode Next => GetSuccessor(); + public RedBlackNode Previous => GetPredecessor(); + + internal RedBlackNode GrandParent => Parent?.Parent; + + internal RedBlackNode Uncle => Parent?.Parent?.Left == Parent + ? Parent?.Parent?.Right + : Parent?.Parent?.Left; + + public RedBlackNode Parent { get; internal set; } + + public RedBlackNode Right + { + get => _right; + internal set + { + _right = value; + if (value != null) value.Parent = this; + } + } + + public RedBlackNode Left + { + get => _left; + internal set + { + _left = value; + if (value != null) value.Parent = this; + } + } + + public RedBlackNode(T value = default) + { + Value = value; + } + + private RedBlackNode GetSuccessor() + { + RedBlackNode successor, node = this; + + if (node.Right != null) + { + successor = node.Right; + + while (successor.Left != null) + successor = successor.Left; + + return successor; + } + + successor = node.Parent; + while (successor != null && successor.Right == node) + { + node = successor; + successor = successor.Parent; + } + + return successor; + } + + private RedBlackNode GetPredecessor() + { + RedBlackNode predecessor, node = this; + + if (node.Left != null) + { + predecessor = node.Left; + + while (predecessor.Right != null) + predecessor = predecessor.Right; + + return predecessor; + } + + predecessor = node.Parent; + while (predecessor != null && predecessor.Left == node) + { + node = predecessor; + predecessor = predecessor.Parent; + } + + return predecessor; + } + } + + public class RedBlackTree + { + private RedBlackNode _root; + + public RedBlackNode Root + { + get => _root; + internal set + { + _root = value; + _root.Color = RedBlackNodeType.Black; + } + } + + public bool IsEmpty => _root == null; + + public RedBlackNode First + { + get + { + var current = _root; + + while (current?.Left != null) current = current.Left; + + return current; + } + } + + public RedBlackNode Last + { + get + { + var current = _root; + + while (current?.Right != null) current = current.Right; + + return current; + } + } + + public void Rebalance(RedBlackNode node) + { + while (node != Root && node.Parent.Color == RedBlackNodeType.Red) + { + if (node.Uncle != null && node.Uncle.Color == RedBlackNodeType.Red) + { + node.Parent.Color = RedBlackNodeType.Black; + node.Uncle.Color = RedBlackNodeType.Black; + + node = node.GrandParent; + } + else + { + (node.Parent.Color, node.GrandParent.Color) = (node.GrandParent.Color, node.Parent.Color); + + if (node == node.Parent.Left) + { + if (node.Parent == node.GrandParent.Right) + { + RotateLeft(node.Parent); + } + + RotateRight(node.GrandParent); + } + else + { + if (node.Parent == node.GrandParent.Left) + { + RotateRight(node.Parent); + } + + RotateRight(node.GrandParent); + } + } + } + } + + public void InsertAfter(RedBlackNode node, T value) + { + var current = node.Right; + var inserted = new RedBlackNode(value); + + if (current is null) + { + node.Right = inserted; + } + else + { + while (current.Left != null) + current = current.Left; + + current.Left = inserted; + } + +// Rebalance(inserted); + } + + public void InsertBefore(RedBlackNode node, T value) + { + var current = node.Left; + var inserted = new RedBlackNode(value); + + if (current is null) + { + node.Left = inserted; + } + else + { + while (current.Right != null) + current = current.Right; + + current.Right = inserted; + } + +// Rebalance(inserted); + } + + private void RotateLeft(RedBlackNode current) + { + var right = current.Right; + + current.Right = right.Left; + right.Left = current; + right.Parent = current.Parent; + current.Parent = right; + + FixRoot(current, right); + } + + private void RotateRight(RedBlackNode current) + { + var left = current.Left; + + current.Left = left.Right; + left.Right = current; + left.Parent = current.Parent; + current.Parent = left; + + FixRoot(current, left); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private void FixRoot(RedBlackNode old, RedBlackNode current) + { + if (Root == old) + { + Root = current; + Root.Color = RedBlackNodeType.Black; + Root.Parent = null; + } + } + + public void Remove(RedBlackNode node) + { + if (node.Left == null && node.Right == null) + RemoveLeaf(node); + else if (node.Left == null || node.Right == null) + RemoveOneChild(node); + else + Substitute(node, node.Next); + } + + private void RemoveOneChild(RedBlackNode node) + { + var replacement = node.Left ?? node.Right; + + if (Root == node) + Root = replacement; + else if (node.Parent.Left == node) + node.Parent.Left = replacement; + else if (node.Parent.Right == node) + node.Parent.Right = replacement; + else + throw new Exception("WTF?"); + } + + private void Swap(RedBlackNode a, RedBlackNode b) + { + if (b.Parent == a) + (a, b) = (b, a); + + if (a.Parent == b) + { + if (b.Parent?.Left == b) b.Parent.Left = a; + if (b.Parent?.Right == b) b.Parent.Right = a; + if (b.Parent == null) a.Parent = null; + + if (b.Left == a) + { + (b.Right, a.Right) = (a.Right, b.Right); + + b.Left = a.Left; + a.Left = b; + } + else + { + (b.Left, a.Left) = (a.Left, b.Left); + + b.Right = a.Right; + a.Right = b; + } + } + else + { + (a.Right, b.Right) = (b.Right, a.Right); + (a.Left, b.Left) = (b.Left, a.Left); + + var bparent = b.Parent; + + if (a.Parent != null && a.Parent.Left == a) a.Parent.Left = b; + else if (a.Parent != null && a.Parent.Right == a) a.Parent.Right = b; + else b.Parent = null; + + if (bparent != null && bparent.Left == b) bparent.Left = a; + else if (bparent != null && bparent.Right == b) bparent.Right = a; + else a.Parent = null; + } + + if (b.Parent == null) Root = b; + if (a.Parent == null) Root = a; + } + + private void Substitute(RedBlackNode node, RedBlackNode replacement) + { +// (node.Value, replacement.Value) = (replacement.Value, node.Value); + Swap(node, replacement); + + Remove(node); + } + + private void RemoveLeaf(RedBlackNode leaf) + { + if (leaf.Parent == null) + { + Root = null; + return; + } + + if (leaf.Parent.Left == leaf) leaf.Parent.Left = null; + else leaf.Parent.Right = null; + } + } +} \ No newline at end of file diff --git a/Assets/Voronoi/Tree.cs.meta b/Assets/Voronoi/Tree.cs.meta new file mode 100644 index 0000000..a1476d1 --- /dev/null +++ b/Assets/Voronoi/Tree.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: dc397bc0f0ca489297be4d21bf0e53a1 +timeCreated: 1563555455 \ No newline at end of file diff --git a/Assets/Voronoi/VoronoiGenerator.cs b/Assets/Voronoi/VoronoiGenerator.cs new file mode 100644 index 0000000..1eda6fb --- /dev/null +++ b/Assets/Voronoi/VoronoiGenerator.cs @@ -0,0 +1,196 @@ +using System.Collections.Generic; +using System.Linq; +using Priority_Queue; + +namespace Assets.Voronoi +{ + public interface IEvent + { + double Priority { get; } + bool IsValid { get; } + } + + public class SiteEvent : IEvent + { + public Site Site { get; internal set; } + + public double Priority => Site.Point.y; + public bool IsValid => true; + } + + public class EdgeEvent : IEvent + { + public RedBlackNode node; + public Point vertex; + public bool IsValid { get; set; } = true; + + public double Priority => vertex.y + Point.Dist(vertex, node.Value.Site.Point); + } + + public class Site + { + public ISet Neighbours { get; internal set; } = new HashSet(); + public Point Point { get; internal set; } + + public Site(Point point) + { + Point = point; + } + } + + public class VoronoiGenerator + { + public IList Sites { get; } + + public IPriorityQueue Queue { get; internal set; } + public IList Vertices { get; internal set; } + public IList Edges { get; internal set; } + + public BeachLine Line { get; private set; } + + public bool Done => Queue.Count == 0; + + public VoronoiGenerator(IList sites) + { + Sites = sites.Select(x => new Site(x)).ToList(); + + Reset(); + } + + private void Reset() + { + Queue = new SimplePriorityQueue(); + Line = new BeachLine(); + + Vertices = new List(); + Edges = new List(); + + foreach (var site in Sites) + { + var @event = new SiteEvent { Site = site }; + Queue.Enqueue(@event, @event.Priority); + } + } + + public void Step() + { + while (Queue.Count > 0) + { + var ev = Queue.Dequeue(); + if (!ev.IsValid) continue; + + Line.Directrix = ev.Priority; + + switch (ev) + { + case SiteEvent site: + HandleSiteEvent(site); + return; + + case EdgeEvent edge: + HandleEdgeEvent(edge); + return; + } + } + } + + public void Generate() + { + Reset(); + + while (Queue.Count > 0) + Step(); + } + + private void Enqueue(EdgeEvent @event) + { + if (@event.Priority > Line.Directrix) + Queue.Enqueue(@event, @event.Priority); + } + + private void HandleEdgeEvent(EdgeEvent @event) + { + var queue = new Queue>(); + + var node = @event.node; + var parabola = node.Value; + + var previous = node.Previous; + var next = node.Next; + + if (previous?.Value.Event != null) previous.Value.Event.IsValid = false; + if (next?.Value.Event != null) next.Value.Event.IsValid = false; + + Vertices.Add(@event.vertex); + + node.Value.LeftEdge.end = @event.vertex; + node.Value.RightEdge.end = @event.vertex; + + Edges.Add(node.Value.LeftEdge); + Edges.Add(node.Value.RightEdge); + + var newEdge = new Edge() { start = @event.vertex }; + + node.Previous.Value.RightEdge = newEdge; + node.Next.Value.LeftEdge = newEdge; + + Line.RemoveParabola(node); + + if (Line.CheckCircleEvent(previous) is EdgeEvent p) + Enqueue(p); + + if (Line.CheckCircleEvent(next) is EdgeEvent n) + Enqueue(n); + + if (previous != null && next != null) + { + previous.Value.Site.Neighbours.Add(next.Value.Site); + next.Value.Site.Neighbours.Add(previous.Value.Site); + } + } + + private void HandleSiteEvent(SiteEvent @event) + { + var site = @event.Site; + var start = new Point(site.Point.x, Line.Eval(site.Point.x)); + + var above = Line.FindParabola(site.Point.x); + + if (above != null) + { + var left = above.Value.LeftEdge; + var right = above.Value.RightEdge; + + var node = Line.AddParabola(@event.Site, above); + + var newLeft = new Edge() { start = start }; + var newRight = new Edge() { start = start }; + + node.Previous.Value.LeftEdge = left; + node.Previous.Value.RightEdge = newLeft; + + node.Value.LeftEdge = newLeft; + node.Value.RightEdge = newRight; + + node.Next.Value.LeftEdge = newRight; + node.Next.Value.RightEdge = right; + + if (Line.CheckCircleEvent(node.Previous) is EdgeEvent p) + Enqueue(p); + + if (Line.CheckCircleEvent(node.Next) is EdgeEvent n) + Enqueue(n); + + if (node.Previous != null) + { + @event.Site.Neighbours.Add(node.Previous.Value.Site); + node.Previous.Value.Site.Neighbours.Add(@event.Site); + } + } + else + { + Line.AddParabola(@event.Site); + } + } + } +} \ No newline at end of file diff --git a/Assets/Voronoi/VoronoiGenerator.cs.meta b/Assets/Voronoi/VoronoiGenerator.cs.meta new file mode 100644 index 0000000..657c3c7 --- /dev/null +++ b/Assets/Voronoi/VoronoiGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9ef796d6659f96a0fab12fb2a6c687ab +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Voronoi/VoronoiGraph.cs b/Assets/Voronoi/VoronoiGraph.cs new file mode 100644 index 0000000..471e27a --- /dev/null +++ b/Assets/Voronoi/VoronoiGraph.cs @@ -0,0 +1,27 @@ +using System; +using UnityEngine; + +namespace Assets.Voronoi +{ + public class Point + { + public double x; + public double y; + + public Point(double x, double y) + { + this.x = x; + this.y = y; + } + + public static double Dist(Point a, Point b) + { + return Math.Sqrt(Math.Pow(a.x - b.x, 2) + Math.Pow(a.y - b.y, 2)); + } + } + + public class VoronoiGraph + { + + } +} \ No newline at end of file diff --git a/Assets/Voronoi/VoronoiGraph.cs.meta b/Assets/Voronoi/VoronoiGraph.cs.meta new file mode 100644 index 0000000..9353431 --- /dev/null +++ b/Assets/Voronoi/VoronoiGraph.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 9e306028c37441f7abf011f8429ffcef +timeCreated: 1563289564 \ No newline at end of file diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..037f0ee --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,46 @@ +{ + "dependencies": { + "com.unity.2d.sprite": "1.0.0", + "com.unity.2d.tilemap": "1.0.0", + "com.unity.collab-proxy": "1.2.16", + "com.unity.ext.nunit": "1.0.0", + "com.unity.ide.rider": "1.0.8", + "com.unity.ide.visualstudio": "1.0.11", + "com.unity.ide.vscode": "1.0.7", + "com.unity.test-framework": "1.0.16", + "com.unity.textmeshpro": "2.0.1", + "com.unity.timeline": "1.1.0", + "com.unity.ugui": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..4f31e74 --- /dev/null +++ b/ProjectSettings/AudioManager.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..4144c06 --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 7 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0 + m_ClothInterCollisionStiffness: 0 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..82ab0f5 --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,11 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: + - enabled: 1 + path: Assets/Scenes/SampleScene.unity + guid: 2cda990e2423bbf4892e6590ba056729 + m_configObjects: {} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..f70eba0 --- /dev/null +++ b/ProjectSettings/EditorSettings.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_ExternalVersionControlSupport: Visible Meta Files + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 2 + m_DefaultBehaviorMode: 1 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 4 + m_SpritePackerPaddingPower: 1 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmref;asmdef + m_ProjectGenerationRootNamespace: + m_CollabEditorSettings: + inProgressEnabled: 1 + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_AsyncShaderCompilation: 1 + m_EnterPlayModeOptionsEnabled: 0 + m_EnterPlayModeOptions: 3 + m_ShowLightmapResolutionOverlay: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..6c2632a --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,57 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_LegacyDeferred: + m_Mode: 1 + m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_AlwaysIncludedShaders: + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, + type: 0} + m_CustomRenderPipeline: {fileID: 0} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_LightsUseLinearIntensity: 0 + m_LightsUseColorTemperature: 0 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..17c8f53 --- /dev/null +++ b/ProjectSettings/InputManager.asset @@ -0,0 +1,295 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..3b0b7c3 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,91 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/ProjectSettings/NetworkManager.asset b/ProjectSettings/NetworkManager.asset new file mode 100644 index 0000000..5dc6a83 --- /dev/null +++ b/ProjectSettings/NetworkManager.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!149 &1 +NetworkManager: + m_ObjectHideFlags: 0 + m_DebugLevel: 0 + m_Sendrate: 15 + m_AssetToPrefab: {} diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000000000000000000000000000000000000..719d79cf98d468f1061cb7a1ce478e68f155823f GIT binary patch literal 4448 zcmeH~O^g&p6vu18Pf!#EQ9)b<1r-)p`~X2_W@jCk%`Uq#BO%d5dS_~9TY9_K?jCmM zVA38SCYl)Kq$h~V)s69hF;R#IA<>gj4}RSBqTVC~G&D5K!_p5sK z>ecIy5n|P_5UY<1A=V0UJAQ=d+qr9R@9y56&K~jC+}vC)2i=_nb8{R_`nB@V z`76=>SC4HSgm(5iA@Eh@DIpR}nNyu4)luf~Ilo*aALm5Eu{6nQ3i(gqcR+Cy>M{j- zl%&W(a}KsQpw0QqsT4g*QW(AwZSvHg9<YcO&XTo>TK*gr4&`CR?~Z?Y{yg`OR5~HaYiqTJsea{+{M5EqqpU?lD`8 z{jZ?p`nP5w+J^tE`6>(lUGv*4oVh~#X(Dw78T%VGU)@2fW%xGDnFrZocu8}Wj+p_5 zzo7Y=3}bT{b{K-4Mm>N&a$Sgv38gAL-yy{R3^=~xE~QPBq%izL&DT*`NGMe?`STe# z_kXw2CQ4Em{=Me+D3T~iVfb&F->XQXB!%J2aADB?dPNc?DGXn$Ij<9JM@b69w`+c% zB8id|h7W4a>u9O@uIBe!_$keMEc|`VAF%K*G=I>-f7E=FgB+bsNB&9{Ru zzJJmGUp4Qw@IN)*Vc}~KT*hZ7c_D#Ji@83xfHVHPP#3R%6zlH;HM>K!j!fTp8Vc|zLf3l0`1pPY(PXF+nTXKElAD=V-iSO`ye;5Ao{iRHvKYM|}fT8ON^QjKt(i2Sewi8@I)bXp7O&INYxX4Lh+6UB~MiIDkztEni+;1^b*pQk<42xar#dC2HgP0~7pVH3)@0KOV_B^`o`k`9Ma`X* zBjc6HDW@JANL?+cdQwhdXzGsY)dCND^6Rvq{pr%{5S0QyhRKof@kqu(2XinO8<|oe z>0`(`UD1lvJt!G%`Bm#(I0a2DGvoBM~dUKA4cC?~$X`|>(JME}C5g-TDkt@sDzDek; z&V(HXvg%^7zn^}khf)l~VA{mjST9aHCy-WN5Q<$ZaT(9$PfBUOz;}TBiXS%dU8A6XMFSoFdEoD5UHLM{N}Z`p75>R(H9UucF00@g z@4US_fAx + + + \ No newline at end of file