From 4704ad27690b33f78834454f95bee0ff55c39d1d Mon Sep 17 00:00:00 2001 From: PopSlime Date: Tue, 11 Oct 2022 23:41:31 +0800 Subject: [PATCH] Remove unused packages. Generate editor config. Code cleanup. --- .editorconfig | 230 +++++++++++++++++++++++++++- Assets/Cryville/Crtr/ChartPlayer.cs | 6 +- Assets/Menu.unity | Bin 134797 -> 133541 bytes Packages/manifest.json | 3 - Packages/packages-lock.json | 27 +--- 5 files changed, 228 insertions(+), 38 deletions(-) diff --git a/.editorconfig b/.editorconfig index 13d2135..f36b9d8 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,225 @@ -[*.cs] +# Remove the line below if you want to inherit .editorconfig settings from higher directories +root = true -# IDE0008: Use explicit type -dotnet_diagnostic.IDE0008.severity = none -csharp_style_var_when_type_is_apparent=false:suggestion -csharp_style_var_for_built_in_types=false:suggestion -csharp_style_var_elsewhere=false:suggestion +# C# files +[*.cs] + +#### Core EditorConfig Options #### + +# Indentation and spacing +indent_size = 4 +indent_style = tab +tab_width = 4 + +# New line preferences +end_of_line = crlf +insert_final_newline = false + +#### .NET Coding Conventions #### + +# Organize usings +dotnet_separate_import_directive_groups = false +dotnet_sort_system_directives_first = false +file_header_template = unset + +# this. and Me. preferences +dotnet_style_qualification_for_event = false +dotnet_style_qualification_for_field = false +dotnet_style_qualification_for_method = false +dotnet_style_qualification_for_property = false + +# Language keywords vs BCL types preferences +dotnet_style_predefined_type_for_locals_parameters_members = true +dotnet_style_predefined_type_for_member_access = true + +# Parentheses preferences +dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_operators = never_if_unnecessary +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity + +# Modifier preferences +dotnet_style_require_accessibility_modifiers = for_non_interface_members + +# Expression-level preferences +dotnet_style_coalesce_expression = true +dotnet_style_collection_initializer = true +dotnet_style_explicit_tuple_names = true +dotnet_style_namespace_match_folder = true +dotnet_style_null_propagation = true +dotnet_style_object_initializer = true +dotnet_style_operator_placement_when_wrapping = beginning_of_line +dotnet_style_prefer_auto_properties = true +dotnet_style_prefer_compound_assignment = true +dotnet_style_prefer_conditional_expression_over_assignment = true +dotnet_style_prefer_conditional_expression_over_return = true +dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed +dotnet_style_prefer_inferred_anonymous_type_member_names = true +dotnet_style_prefer_inferred_tuple_names = true +dotnet_style_prefer_is_null_check_over_reference_equality_method = true +dotnet_style_prefer_simplified_boolean_expressions = true +dotnet_style_prefer_simplified_interpolation = true + +# Field preferences +dotnet_style_readonly_field = true + +# Parameter preferences +dotnet_code_quality_unused_parameters = all + +# Suppression preferences +dotnet_remove_unnecessary_suppression_exclusions = none + +# New line preferences +dotnet_style_allow_multiple_blank_lines_experimental = true +dotnet_style_allow_statement_immediately_after_block_experimental = true + +#### C# Coding Conventions #### + +# var preferences +csharp_style_var_elsewhere = false +csharp_style_var_for_built_in_types = false +csharp_style_var_when_type_is_apparent = false + +# Expression-bodied members +csharp_style_expression_bodied_accessors = true +csharp_style_expression_bodied_constructors = false +csharp_style_expression_bodied_indexers = true +csharp_style_expression_bodied_lambdas = true +csharp_style_expression_bodied_local_functions = false +csharp_style_expression_bodied_methods = false +csharp_style_expression_bodied_operators = false +csharp_style_expression_bodied_properties = true + +# Pattern matching preferences +csharp_style_pattern_matching_over_as_with_null_check = true +csharp_style_pattern_matching_over_is_with_cast_check = true +csharp_style_prefer_extended_property_pattern = true +csharp_style_prefer_not_pattern = true +csharp_style_prefer_pattern_matching = true +csharp_style_prefer_switch_expression = true + +# Null-checking preferences +csharp_style_conditional_delegate_call = true + +# Modifier preferences +csharp_prefer_static_local_function = true +csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async + +# Code-block preferences +csharp_prefer_braces = true +csharp_prefer_simple_using_statement = true +csharp_style_namespace_declarations = block_scoped +csharp_style_prefer_method_group_conversion = true +csharp_style_prefer_top_level_statements = true + +# Expression-level preferences +csharp_prefer_simple_default_expression = true +csharp_style_deconstructed_variable_declaration = true +csharp_style_implicit_object_creation_when_type_is_apparent = true +csharp_style_inlined_variable_declaration = true +csharp_style_prefer_index_operator = true +csharp_style_prefer_local_over_anonymous_function = true +csharp_style_prefer_null_check_over_type_check = true +csharp_style_prefer_range_operator = true +csharp_style_prefer_tuple_swap = true +csharp_style_prefer_utf8_string_literals = true +csharp_style_throw_expression = true +csharp_style_unused_value_assignment_preference = discard_variable +csharp_style_unused_value_expression_statement_preference = discard_variable + +# 'using' directive preferences +csharp_using_directive_placement = outside_namespace + +# New line preferences +csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true +csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true +csharp_style_allow_embedded_statements_on_same_line_experimental = true + +#### C# Formatting Rules #### + +# New line preferences +csharp_new_line_before_catch = true +csharp_new_line_before_else = true +csharp_new_line_before_finally = true +csharp_new_line_before_members_in_anonymous_types = false +csharp_new_line_before_members_in_object_initializers = false +csharp_new_line_before_open_brace = none +csharp_new_line_between_query_expression_clauses = true + +# Indentation preferences +csharp_indent_block_contents = true +csharp_indent_braces = false +csharp_indent_case_contents = true +csharp_indent_case_contents_when_block = true +csharp_indent_labels = one_less_than_current +csharp_indent_switch_labels = true + +# Space preferences +csharp_space_after_cast = false +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_after_comma = true +csharp_space_after_dot = false +csharp_space_after_keywords_in_control_flow_statements = true +csharp_space_after_semicolon_in_for_statement = true +csharp_space_around_binary_operators = before_and_after +csharp_space_around_declaration_statements = ignore +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_before_comma = false +csharp_space_before_dot = false +csharp_space_before_open_square_brackets = false +csharp_space_before_semicolon_in_for_statement = false +csharp_space_between_empty_square_brackets = false +csharp_space_between_method_call_empty_parameter_list_parentheses = false +csharp_space_between_method_call_name_and_opening_parenthesis = false +csharp_space_between_method_call_parameter_list_parentheses = false +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false +csharp_space_between_method_declaration_name_and_open_parenthesis = false +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_parentheses = false +csharp_space_between_square_brackets = false + +# Wrapping preferences +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = true + +#### Naming styles #### + +# Naming rules + +dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion +dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface +dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i + +dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion +dotnet_naming_rule.types_should_be_pascal_case.symbols = types +dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case + +dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion +dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members +dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case + +# Symbol specifications + +dotnet_naming_symbols.interface.applicable_kinds = interface +dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.interface.required_modifiers = + +dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum +dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.types.required_modifiers = + +dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method +dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.non_field_members.required_modifiers = + +# Naming styles + +dotnet_naming_style.pascal_case.required_prefix = +dotnet_naming_style.pascal_case.required_suffix = +dotnet_naming_style.pascal_case.word_separator = +dotnet_naming_style.pascal_case.capitalization = pascal_case + +dotnet_naming_style.begins_with_i.required_prefix = I +dotnet_naming_style.begins_with_i.required_suffix = +dotnet_naming_style.begins_with_i.word_separator = +dotnet_naming_style.begins_with_i.capitalization = pascal_case diff --git a/Assets/Cryville/Crtr/ChartPlayer.cs b/Assets/Cryville/Crtr/ChartPlayer.cs index dad4584..05e673c 100644 --- a/Assets/Cryville/Crtr/ChartPlayer.cs +++ b/Assets/Cryville/Crtr/ChartPlayer.cs @@ -19,7 +19,7 @@ using diag = System.Diagnostics; using Logger = Cryville.Common.Logger; namespace Cryville.Crtr { - public class ChartPlayer : MonoBehaviour, IDisposable { + public class ChartPlayer : MonoBehaviour { Chart chart; Skin skin; PdtSkin pskin; @@ -301,7 +301,7 @@ namespace Cryville.Crtr { #endif Game.AudioSession = Game.AudioSequencer.NewSession(); - + var hitPlane = new Plane(Vector3.forward, Vector3.zero); var r0 = Camera.main.ViewportPointToRay(new Vector3(0, 0, 1)); float dist; @@ -352,7 +352,7 @@ namespace Cryville.Crtr { Prehandle(); #else loadThread = new Thread(new ParameterizedThreadStart(Load)); - loadThread.Start(new LoadInfo(){ + loadThread.Start(new LoadInfo() { chartFile = chartFile, rulesetFile = rulesetFile, skinFile = skinFile, diff --git a/Assets/Menu.unity b/Assets/Menu.unity index bc1cd4ef01b274910f820d87878bb716d9f8c314..3d97a68d3d066920e983b1075bc2d26135777efc 100644 GIT binary patch delta 7806 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 Fe*$s{`2_#~ diff --git a/Packages/manifest.json b/Packages/manifest.json index 94646ee..87fbc92 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,11 +1,8 @@ { "dependencies": { "com.unity.2d.sprite": "1.0.0", - "com.unity.ide.rider": "3.0.15", "com.unity.ide.visualstudio": "2.0.16", - "com.unity.ide.vscode": "1.2.5", "com.unity.nuget.newtonsoft-json": "3.0.2", - "com.unity.textmeshpro": "3.0.6", "com.unity.ugui": "1.0.0", "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index f3f39e1..f22a918 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -8,20 +8,11 @@ }, "com.unity.ext.nunit": { "version": "1.0.6", - "depth": 1, + "depth": 2, "source": "registry", "dependencies": {}, "url": "https://packages.unity.cn" }, - "com.unity.ide.rider": { - "version": "3.0.15", - "depth": 0, - "source": "registry", - "dependencies": { - "com.unity.ext.nunit": "1.0.6" - }, - "url": "https://packages.unity.cn" - }, "com.unity.ide.visualstudio": { "version": "2.0.16", "depth": 0, @@ -31,13 +22,6 @@ }, "url": "https://packages.unity.cn" }, - "com.unity.ide.vscode": { - "version": "1.2.5", - "depth": 0, - "source": "registry", - "dependencies": {}, - "url": "https://packages.unity.cn" - }, "com.unity.nuget.newtonsoft-json": { "version": "3.0.2", "depth": 0, @@ -56,15 +40,6 @@ }, "url": "https://packages.unity.cn" }, - "com.unity.textmeshpro": { - "version": "3.0.6", - "depth": 0, - "source": "registry", - "dependencies": { - "com.unity.ugui": "1.0.0" - }, - "url": "https://packages.unity.cn" - }, "com.unity.ugui": { "version": "1.0.0", "depth": 0,