mirror of
https://github.com/Assasinnys/ED-AStar-Galaxy-Router
synced 2025-04-12 06:30:01 +03:00
init: upload project
This commit is contained in:
commit
a69c150d73
BIN
.gradle/5.2.1/executionHistory/executionHistory.bin
Normal file
BIN
.gradle/5.2.1/executionHistory/executionHistory.bin
Normal file
Binary file not shown.
BIN
.gradle/5.2.1/executionHistory/executionHistory.lock
Normal file
BIN
.gradle/5.2.1/executionHistory/executionHistory.lock
Normal file
Binary file not shown.
BIN
.gradle/5.2.1/fileChanges/last-build.bin
Normal file
BIN
.gradle/5.2.1/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
.gradle/5.2.1/fileContent/fileContent.lock
Normal file
BIN
.gradle/5.2.1/fileContent/fileContent.lock
Normal file
Binary file not shown.
BIN
.gradle/5.2.1/fileHashes/fileHashes.bin
Normal file
BIN
.gradle/5.2.1/fileHashes/fileHashes.bin
Normal file
Binary file not shown.
BIN
.gradle/5.2.1/fileHashes/fileHashes.lock
Normal file
BIN
.gradle/5.2.1/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
0
.gradle/5.2.1/gc.properties
Normal file
0
.gradle/5.2.1/gc.properties
Normal file
BIN
.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
BIN
.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
Binary file not shown.
2
.gradle/buildOutputCleanup/cache.properties
Normal file
2
.gradle/buildOutputCleanup/cache.properties
Normal file
@ -0,0 +1,2 @@
|
||||
#Fri May 08 19:25:34 MSK 2020
|
||||
gradle.version=5.2.1
|
BIN
.gradle/buildOutputCleanup/outputFiles.bin
Normal file
BIN
.gradle/buildOutputCleanup/outputFiles.bin
Normal file
Binary file not shown.
0
.gradle/vcs-1/gc.properties
Normal file
0
.gradle/vcs-1/gc.properties
Normal file
1
.idea/.name
generated
Normal file
1
.idea/.name
generated
Normal file
@ -0,0 +1 @@
|
||||
Igor
|
10
.idea/codeStyles/Project.xml
generated
Normal file
10
.idea/codeStyles/Project.xml
generated
Normal file
@ -0,0 +1,10 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<code_scheme name="Project" version="173">
|
||||
<JetCodeStyleSettings>
|
||||
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
|
||||
</JetCodeStyleSettings>
|
||||
<codeStyleSettings language="kotlin">
|
||||
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
|
||||
</codeStyleSettings>
|
||||
</code_scheme>
|
||||
</component>
|
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
@ -0,0 +1,5 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
|
||||
</state>
|
||||
</component>
|
19
.idea/gradle.xml
generated
Normal file
19
.idea/gradle.xml
generated
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="disableWrapperSourceDistributionNotification" value="true" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
</set>
|
||||
</option>
|
||||
<option name="useQualifiedModuleNames" value="true" />
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
7
.idea/misc.xml
generated
Normal file
7
.idea/misc.xml
generated
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
31
build.gradle
Normal file
31
build.gradle
Normal file
@ -0,0 +1,31 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
|
||||
}
|
||||
|
||||
group 'ED-AStar-Galaxy-Router'
|
||||
version '1.0'
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
|
||||
compile group: 'org.json', name: 'json', version: '20190722'
|
||||
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.2'
|
||||
compile group: 'javazoom', name: 'jlayer', version: '1.0.1'
|
||||
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0"
|
||||
}
|
||||
|
||||
compileKotlin {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
compileTestKotlin {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
BIN
build/classes/kotlin/main/META-INF/Igor.kotlin_module
Normal file
BIN
build/classes/kotlin/main/META-INF/Igor.kotlin_module
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/classes/kotlin/main/elite/MainKt.class
Normal file
BIN
build/classes/kotlin/main/elite/MainKt.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/classes/kotlin/main/elite/algorithm/AStarMain.class
Normal file
BIN
build/classes/kotlin/main/elite/algorithm/AStarMain.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/classes/kotlin/main/elite/algorithm/StarPoint.class
Normal file
BIN
build/classes/kotlin/main/elite/algorithm/StarPoint.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/classes/kotlin/main/elite/alternative/AStarMainFile.class
Normal file
BIN
build/classes/kotlin/main/elite/alternative/AStarMainFile.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/classes/kotlin/main/elite/database/Database.class
Normal file
BIN
build/classes/kotlin/main/elite/database/Database.class
Normal file
Binary file not shown.
BIN
build/classes/kotlin/main/elite/pojo/Coordinates.class
Normal file
BIN
build/classes/kotlin/main/elite/pojo/Coordinates.class
Normal file
Binary file not shown.
BIN
build/classes/kotlin/main/elite/utils/ExtUtilsKt.class
Normal file
BIN
build/classes/kotlin/main/elite/utils/ExtUtilsKt.class
Normal file
Binary file not shown.
BIN
build/classes/kotlin/main/elite/utils/UtilsKt.class
Normal file
BIN
build/classes/kotlin/main/elite/utils/UtilsKt.class
Normal file
Binary file not shown.
BIN
build/kotlin/compileKotlin/build-history.bin
Normal file
BIN
build/kotlin/compileKotlin/build-history.bin
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/constants.tab
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/constants.tab
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/constants.tab_i
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/constants.tab_i
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.len
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.len
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i
Normal file
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
21
|
||||
4
|
BIN
build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab
Normal file
BIN
build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user