commit cfc7182eb55fea5ea3961527fb88f4fd5b017770 Author: Kacper Donat Date: Sat Jul 27 22:40:42 2019 +0200 initial commit 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 0000000..bc4537d Binary files /dev/null and b/Assets/Libraries/Priority Queue.dll differ diff --git a/Assets/Libraries/Priority Queue.dll.meta b/Assets/Libraries/Priority Queue.dll.meta new file mode 100644 index 0000000..8780a98 --- /dev/null +++ b/Assets/Libraries/Priority Queue.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: c327e4e8cf0487f3a84ce8b65aa59d45 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Map.meta b/Assets/Map.meta new file mode 100644 index 0000000..0aa451d --- /dev/null +++ b/Assets/Map.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: b2de5bc0563442539a60e5a00687d27d +timeCreated: 1564082962 \ No newline at end of file diff --git a/Assets/Map/Graph.cs b/Assets/Map/Graph.cs new file mode 100644 index 0000000..b050378 --- /dev/null +++ b/Assets/Map/Graph.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; + +namespace Assets.Map +{ + public class Graph + { + 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 0000000..719d79c Binary files /dev/null and b/ProjectSettings/Physics2DSettings.asset differ diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..636a595 --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + m_DefaultList: [] diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..f6590f0 --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,621 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 17 + productGUID: 00000000000000000000000000000000 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: + productName: + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1024 + defaultScreenHeight: 768 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 0 + m_MTRendering: 1 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosAppInBackgroundBehavior: 0 + displayResolutionDialog: 0 + iosAllowHTTPDownload: 1 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 0 + androidBlitType: 0 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 1 + captureSingleScreen: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 0 + graphicsJobs: 0 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + graphicsJobMode: 0 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 0 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + vulkanEnableSetSRGBWrite: 0 + m_SupportedAspectRatios: + 4:3: 1 + 5:4: 1 + 16:10: 1 + 16:9: 1 + Others: 1 + bundleVersion: 0.1 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + cardboard: + depthFormat: 0 + enableTransitionView: 0 + daydream: + depthFormat: 0 + useSustainedPerformanceMode: 0 + enableVideoLayer: 0 + useProtectedVideoMemory: 0 + minimumSupportedHeadTracking: 0 + maximumSupportedHeadTracking: 1 + hololens: + depthFormat: 1 + depthBufferSharingEnabled: 1 + lumin: + depthFormat: 0 + frameTiming: 2 + enableGLCache: 0 + glCacheMaxBlobSize: 524288 + glCacheMaxFileSize: 8388608 + oculus: + sharedDepthBuffer: 1 + dashSupport: 1 + lowOverheadMode: 0 + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + protectGraphicsMemory: 0 + enableFrameTimingStats: 0 + useHDRDisplay: 0 + D3DHDRBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 + applicationIdentifier: + Standalone: com.Company.ProductName + buildNumber: {} + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 19 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + APKExpansionFiles: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 1 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSTargetOSVersionString: 10.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 10.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + iPhoneSplashScreen: {fileID: 0} + iPhoneHighResSplashScreen: {fileID: 0} + iPhoneTallHighResSplashScreen: {fileID: 0} + iPhone47inSplashScreen: {fileID: 0} + iPhone55inPortraitSplashScreen: {fileID: 0} + iPhone55inLandscapeSplashScreen: {fileID: 0} + iPhone58inPortraitSplashScreen: {fileID: 0} + iPhone58inLandscapeSplashScreen: {fileID: 0} + iPadPortraitSplashScreen: {fileID: 0} + iPadHighResPortraitSplashScreen: {fileID: 0} + iPadLandscapeSplashScreen: {fileID: 0} + iPadHighResLandscapeSplashScreen: {fileID: 0} + iPhone65inPortraitSplashScreen: {fileID: 0} + iPhone65inLandscapeSplashScreen: {fileID: 0} + iPhone61inPortraitSplashScreen: {fileID: 0} + iPhone61inLandscapeSplashScreen: {fileID: 0} + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreenCustomXibPath: + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreeniPadCustomXibPath: + iOSUseLaunchScreenStoryboard: 0 + iOSLaunchScreenCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + iOSRenderExtraFrameOnPause: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + clonedFromGUID: 5f34be1353de5cf4398729fda238591b + templatePackageId: com.unity.template.2d@3.2.0 + templateDefaultScene: Assets/Scenes/SampleScene.unity + AndroidTargetArchitectures: 1 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: '{inproject}: ' + AndroidKeyaliasName: + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 + resolutionDialogBanner: {fileID: 0} + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: [] + m_BuildTargetBatching: [] + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + m_BuildTargetVRSettings: [] + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + vuforiaEnabled: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupLightmapSettings: [] + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 3 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchPlayerConnectionEnabled: 1 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 1 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 0 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 16 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 1 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLWasmStreaming: 0 + scriptingDefineSymbols: {} + platformArchitecture: {} + scriptingBackend: {} + il2cppCompilerConfiguration: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + allowUnsafeCode: 0 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 0 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: Template_2D + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: Template_2D + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, + a: 1} + metroSplashScreenUseBackgroundColor: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + vrEditorSettings: + daydream: + daydreamIconForeground: {fileID: 0} + daydreamIconBackground: {fileID: 0} + cloudServicesEnabled: + UNet: 1 + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + facebookSdkVersion: 7.9.4 + facebookAppId: + facebookCookies: 1 + facebookLogging: 1 + facebookStatus: 1 + facebookXfbml: 0 + facebookFrictionlessRequests: 1 + apiCompatibilityLevel: 6 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + projectName: + organizationId: + cloudEnabled: 0 + enableNativePlatformBackendsForNewInputSystem: 0 + disableOldInputManagerSupport: 0 + legacyClampBlendShapeWeights: 1 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..a572b7b --- /dev/null +++ b/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 2019.3.0a8 +m_EditorVersionWithRevision: 2019.3.0a8 (8ea4afdbfa47) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..b9886cd --- /dev/null +++ b/ProjectSettings/QualitySettings.asset @@ -0,0 +1,239 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 3 + m_QualitySettings: + - serializedVersion: 2 + name: Very Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 15 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 1 + textureQuality: 1 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.3 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.4 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Medium + pixelLightCount: 1 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 0.7 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: High + pixelLightCount: 2 + shadows: 0 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 1 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Very High + pixelLightCount: 3 + shadows: 0 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 70 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 4 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 1.5 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 1024 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Ultra + pixelLightCount: 4 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 4 + shadowDistance: 150 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 4 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 2 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4096 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + m_PerPlatformDefaultQuality: + Android: 2 + Nintendo 3DS: 5 + Nintendo Switch: 5 + PS4: 5 + PSM: 5 + PSP2: 2 + Standalone: 5 + Tizen: 2 + WebGL: 3 + WiiU: 5 + Windows Store Apps: 5 + XboxOne: 5 + iPhone: 2 + tvOS: 2 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..1c92a78 --- /dev/null +++ b/ProjectSettings/TagManager.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 2 + tags: [] + layers: + - Default + - TransparentFX + - Ignore Raycast + - + - Water + - UI + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..06bcc6d --- /dev/null +++ b/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.1 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..fa0b146 --- /dev/null +++ b/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..0ce5434 --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_RenderPipeSettingsPath: diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/csc.rsp b/csc.rsp new file mode 100644 index 0000000..e69de29 diff --git a/packages.config b/packages.config new file mode 100644 index 0000000..a397096 --- /dev/null +++ b/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file