mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-10-19 16:07:38 +00:00
Compare commits
19 Commits
v1.12.2-1.
...
v1.14-1.82
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f15a278f3b | ||
![]() |
26b73c2ff3 | ||
![]() |
4a25e7a178 | ||
![]() |
55d54fec63 | ||
![]() |
220e4bd660 | ||
![]() |
c1e08fc3c7 | ||
![]() |
b9ec6f236d | ||
![]() |
b1fff97bff | ||
![]() |
c81bc70475 | ||
![]() |
362dbd97ac | ||
![]() |
aa0e1883d1 | ||
![]() |
9cdbcb4332 | ||
![]() |
23ddd4feb5 | ||
![]() |
fcaa777c95 | ||
![]() |
55a7ee4acf | ||
![]() |
7afc3e5260 | ||
![]() |
f9e13ca67a | ||
![]() |
810258e9b8 | ||
![]() |
5e462adc5c |
@@ -11,8 +11,5 @@ insert_final_newline = true
|
|||||||
[*.md]
|
[*.md]
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
[*.sexp]
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[*.properties]
|
[*.properties]
|
||||||
insert_final_newline = false
|
insert_final_newline = false
|
||||||
|
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
name: Bug report
|
name: Bug report
|
||||||
about: Report some misbehaviour in the mod
|
about: Report some misbehaviour in the mod
|
||||||
labels: bug
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
4
.github/ISSUE_TEMPLATE/feature_request.md
vendored
4
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
name: Feature request
|
name: Feature request
|
||||||
about: Suggest an idea or improvement
|
about: Suggest an idea or improvement
|
||||||
labels: enhancement
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
@@ -11,4 +11,4 @@ labels: enhancement
|
|||||||
|
|
||||||
## Useful information to include:
|
## Useful information to include:
|
||||||
- Explanation of how the feature/change should work.
|
- Explanation of how the feature/change should work.
|
||||||
- Some rationale/use case for a feature. My general approach to designing new features is to ask yourself "what issue are we trying to solve" and _then_ "is this the best way to solve this issue?".
|
- Some rationale/use case for a feature. I'd like to keep CC:T as minimal as possible, so I like have a solid justification for each feature.
|
||||||
|
3
.github/pull_request_template.md
vendored
3
.github/pull_request_template.md
vendored
@@ -1,3 +0,0 @@
|
|||||||
## A quick checklist
|
|
||||||
- If there's a existing issue, please link to it. If not, provide fill out the same information you would in a normal issue - reproduction steps for bugs, rationale for use-case.
|
|
||||||
- If you're working on CraftOS, try to write a few test cases so we can ensure everything continues to work in the future. Tests live in `src/test/resources/test-rom/spec` and can be run with `./gradlew check`.
|
|
39
.github/workflows/main-ci.yml
vendored
39
.github/workflows/main-ci.yml
vendored
@@ -1,39 +0,0 @@
|
|||||||
name: Build
|
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Set up JDK 1.8
|
|
||||||
uses: actions/setup-java@v1
|
|
||||||
with:
|
|
||||||
java-version: 1.8
|
|
||||||
|
|
||||||
- name: Build with Gradle
|
|
||||||
run: ./gradlew build --no-daemon
|
|
||||||
|
|
||||||
- name: Upload Jar
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: CC-Tweaked
|
|
||||||
path: build/libs
|
|
||||||
|
|
||||||
lint-lua:
|
|
||||||
name: Lint Lua
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Lint Lua code
|
|
||||||
run: |
|
|
||||||
test -d bin || mkdir bin
|
|
||||||
test -f bin/illuaminate || wget -q -Obin/illuaminate https://squiddev.cc/illuaminate/bin/illuaminate
|
|
||||||
chmod +x bin/illuaminate
|
|
||||||
bin/illuaminate lint
|
|
6
.gitignore
vendored
6
.gitignore
vendored
@@ -15,9 +15,3 @@
|
|||||||
.idea
|
.idea
|
||||||
.gradle
|
.gradle
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
|
|
||||||
.classpath
|
|
||||||
.project
|
|
||||||
.settings/
|
|
||||||
bin/
|
|
||||||
*.launch
|
|
||||||
|
34
.luacheckrc
Normal file
34
.luacheckrc
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
std = "max"
|
||||||
|
|
||||||
|
ignore = {
|
||||||
|
-- Allow access to undefined globals or their fields. In the future we'll
|
||||||
|
-- define all of CC's globals within this file
|
||||||
|
'113', '143',
|
||||||
|
|
||||||
|
-- FIXME: Ignore unused arguments and loop variables
|
||||||
|
'212', '213',
|
||||||
|
|
||||||
|
-- Disable line is too long for now. It would be possible to clean
|
||||||
|
-- this up in the future.
|
||||||
|
'631',
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Only run the linter on ROM and bios for now, as the treasure disks
|
||||||
|
-- are largely unsupported.
|
||||||
|
include_files = {
|
||||||
|
'src/main/resources/assets/computercraft/lua/rom',
|
||||||
|
'src/main/resources/assets/computercraft/lua/bios.lua'
|
||||||
|
}
|
||||||
|
|
||||||
|
files['src/main/resources/assets/computercraft/lua/bios.lua'] = {
|
||||||
|
-- Allow declaring and mutating globals
|
||||||
|
allow_defined_top = true,
|
||||||
|
ignore = { '112', '121', '122', '131', '142' },
|
||||||
|
}
|
||||||
|
|
||||||
|
files['src/main/resources/assets/computercraft/lua/rom/apis'] = {
|
||||||
|
-- APIs may define globals on the top level. We'll ignore unused globals,
|
||||||
|
-- as obviously they may be used outside that API.
|
||||||
|
allow_defined_top = true,
|
||||||
|
ignore = { '131' },
|
||||||
|
}
|
14
.travis.yml
Normal file
14
.travis.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
language: java
|
||||||
|
|
||||||
|
script: ./gradlew build --no-daemon
|
||||||
|
|
||||||
|
before_cache:
|
||||||
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
||||||
|
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.gradle/caches/
|
||||||
|
- $HOME/.gradle/wrapper/s
|
||||||
|
|
||||||
|
jdk:
|
||||||
|
- oraclejdk8
|
15
README.md
15
README.md
@@ -1,5 +1,5 @@
|
|||||||
# 
|
# 
|
||||||
[](https://github.com/SquidDev-CC/CC-Tweaked/actions "Current build status") [](https://minecraft.curseforge.com/projects/cc-tweaked "Download CC: Tweaked on CurseForge")
|
[](https://travis-ci.org/SquidDev-CC/CC-Tweaked)
|
||||||
|
|
||||||
CC: Tweaked is a fork of [ComputerCraft](https://github.com/dan200/ComputerCraft), adding programmable computers,
|
CC: Tweaked is a fork of [ComputerCraft](https://github.com/dan200/ComputerCraft), adding programmable computers,
|
||||||
turtles and more to Minecraft.
|
turtles and more to Minecraft.
|
||||||
@@ -9,7 +9,7 @@ ComputerCraft has always held a fond place in my heart: it's the mod which reall
|
|||||||
mod which has kept me playing it for many years. However, development of the original mod has slowed, as the original
|
mod which has kept me playing it for many years. However, development of the original mod has slowed, as the original
|
||||||
developers have had less time to work on the mod, and moved onto other projects and commitments.
|
developers have had less time to work on the mod, and moved onto other projects and commitments.
|
||||||
|
|
||||||
CC: Tweaked (or CC:T for short) is an attempt to continue ComputerCraft's legacy. It's not intended to be a competitor
|
CC:Tweaked (or CC:T for short) is an attempt to continue ComputerCraft's legacy. It's not intended to be a competitor
|
||||||
to CC, nor do I want to take it in a vastly different direction to the original mod. Instead, CC:T focuses on making the
|
to CC, nor do I want to take it in a vastly different direction to the original mod. Instead, CC:T focuses on making the
|
||||||
ComputerCraft experience as _solid_ as possible, ironing out any wrinkles that may have developed over time.
|
ComputerCraft experience as _solid_ as possible, ironing out any wrinkles that may have developed over time.
|
||||||
|
|
||||||
@@ -46,17 +46,8 @@ develop CC:T, you'll need to follow these steps:
|
|||||||
|
|
||||||
If you want to run CC:T in a normal Minecraft instance, run `./gradlew build` and copy the `.jar` from `build/libs`.
|
If you want to run CC:T in a normal Minecraft instance, run `./gradlew build` and copy the `.jar` from `build/libs`.
|
||||||
|
|
||||||
## Community
|
|
||||||
If you need help getting started with CC: Tweaked, want to show off your latest project, or just want to chat about
|
|
||||||
ComputerCraft we have a [forum](https://forums.computercraft.cc/) and [Discord guild](https://discord.gg/H2UyJXe)!
|
|
||||||
There's also a fairly populated, albeit quiet [IRC channel](http://webchat.esper.net/?channels=#computercraft), if
|
|
||||||
that's more your cup of tea.
|
|
||||||
|
|
||||||
I'd generally recommend you don't contact me directly (email, DM, etc...) unless absolutely necessary (i.e. in order to
|
|
||||||
report exploits). You'll get a far quicker response if you ask the whole community!
|
|
||||||
|
|
||||||
## Using
|
## Using
|
||||||
If you want to depend on CC: Tweaked, we have a maven repo. However, you should be wary that some functionality is only
|
If you want to depend on CC:Tweaked, we have a maven repo. However, you should be wary that some functionality is only
|
||||||
exposed by CC:T's API and not vanilla ComputerCraft. If you wish to support all variations of ComputerCraft, I recommend
|
exposed by CC:T's API and not vanilla ComputerCraft. If you wish to support all variations of ComputerCraft, I recommend
|
||||||
using [cc.crzd.me's maven](https://cc.crzd.me/maven/) instead.
|
using [cc.crzd.me's maven](https://cc.crzd.me/maven/) instead.
|
||||||
|
|
||||||
|
245
build.gradle
245
build.gradle
@@ -1,29 +1,17 @@
|
|||||||
|
|
||||||
// For those who want the bleeding edge
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
|
||||||
jcenter()
|
|
||||||
maven {
|
|
||||||
name = "forge"
|
|
||||||
url = "https://files.minecraftforge.net/maven"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.google.code.gson:gson:2.8.1'
|
classpath 'com.google.code.gson:gson:2.8.1'
|
||||||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
|
classpath 'net.sf.proguard:proguard-gradle:6.1.0beta2'
|
||||||
classpath 'net.sf.proguard:proguard-gradle:6.1.0beta1'
|
|
||||||
classpath 'org.ajoberstar.grgit:grgit-gradle:3.0.0'
|
classpath 'org.ajoberstar.grgit:grgit-gradle:3.0.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id "checkstyle"
|
id 'fabric-loom' version '0.2.2-SNAPSHOT'
|
||||||
id "com.github.hierynomus.license" version "0.15.0"
|
id 'com.matthewprenger.cursegradle' version '1.2.0'
|
||||||
id "com.matthewprenger.cursegradle" version "1.3.0"
|
|
||||||
id "com.github.breadmoirai.github-release" version "2.2.4"
|
id "com.github.breadmoirai.github-release" version "2.2.4"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
|
||||||
apply plugin: 'org.ajoberstar.grgit'
|
apply plugin: 'org.ajoberstar.grgit'
|
||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
@@ -34,18 +22,13 @@ group = "org.squiddev"
|
|||||||
archivesBaseName = "cc-tweaked-${mc_version}"
|
archivesBaseName = "cc-tweaked-${mc_version}"
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "${mc_version}-${forge_version}"
|
|
||||||
runDir = "run"
|
|
||||||
replace '${version}', mod_version
|
|
||||||
|
|
||||||
mappings = mappings_version
|
|
||||||
makeObfSourceJar = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
maven {
|
maven {
|
||||||
name "JEI"
|
name "JEI"
|
||||||
url "https://dvs1.progwml6.com/files/maven"
|
url "http://dvs1.progwml6.com/files/maven"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "SquidDev"
|
name "SquidDev"
|
||||||
@@ -57,11 +40,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "Amadornes"
|
name "Amadornes"
|
||||||
url "https://maven.amadornes.com/"
|
url "http://maven.amadornes.com/"
|
||||||
}
|
|
||||||
maven {
|
|
||||||
name "CraftTweaker"
|
|
||||||
url "https://maven.blamejared.com/"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,24 +51,43 @@ configurations {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
checkstyle "com.puppycrawl.tools:checkstyle:8.25"
|
minecraft "com.mojang:minecraft:${mc_version}"
|
||||||
|
mappings "net.fabricmc:yarn:${mc_version}+build.${mappings_version}"
|
||||||
|
modCompile "net.fabricmc:fabric-loader:0.4.2+build.132"
|
||||||
|
modCompile "net.fabricmc:fabric:0.2.7+build.126"
|
||||||
|
|
||||||
deobfProvided "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.1.20.554"
|
/*
|
||||||
deobfProvided "MCMultiPart2:MCMultiPart:2.5.3"
|
modCompile "net.fabricmc:fabric-lib:0.1.0"
|
||||||
deobfProvided "mezz.jei:jei_1.12.2:4.15.0.269:api"
|
modCompile "net.fabricmc:fabric-networking:0.1.0"
|
||||||
deobfProvided "pl.asie:Charset-Lib:0.5.4.6"
|
modCompile "net.fabricmc:fabric-networking-blockentity:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-object-builders:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-containers:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-item-groups:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-client-registries:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-commands:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-events-lifecycle:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-events-interaction:0.1.0"
|
||||||
|
modCompile "net.fabricmc:fabric-resource-loader:0.1.0"
|
||||||
|
*/
|
||||||
|
|
||||||
runtime "mezz.jei:jei_1.12.2:4.15.0.269"
|
implementation 'com.google.code.findbugs:jsr305:3.0.2'
|
||||||
|
|
||||||
shade 'org.squiddev:Cobalt:0.5.0-SNAPSHOT'
|
shade 'org.squiddev:Cobalt:0.5.0-SNAPSHOT'
|
||||||
|
shade 'javax.vecmath:vecmath:1.5.2'
|
||||||
|
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
|
||||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
|
||||||
|
|
||||||
deployerJars "org.apache.maven.wagon:wagon-ssh:3.0.0"
|
deployerJars "org.apache.maven.wagon:wagon-ssh:3.0.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compile tasks
|
sourceSets {
|
||||||
|
main {
|
||||||
|
java {
|
||||||
|
exclude 'dan200/computercraft/shared/integration'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
javadoc {
|
javadoc {
|
||||||
include "dan200/computercraft/api/**/*.java"
|
include "dan200/computercraft/api/**/*.java"
|
||||||
@@ -99,7 +97,13 @@ jar {
|
|||||||
dependsOn javadoc
|
dependsOn javadoc
|
||||||
|
|
||||||
manifest {
|
manifest {
|
||||||
attributes('FMLAT': 'computercraft_at.cfg')
|
attributes(["Specification-Title": "computercraft",
|
||||||
|
"Specification-Vendor": "SquidDev",
|
||||||
|
"Specification-Version": "25.0",
|
||||||
|
"Implementation-Title": "CC: Tweaked",
|
||||||
|
"Implementation-Version": "${mod_version}",
|
||||||
|
"Implementation-Vendor" :"SquidDev",
|
||||||
|
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")])
|
||||||
}
|
}
|
||||||
|
|
||||||
from (sourceSets.main.allSource) {
|
from (sourceSets.main.allSource) {
|
||||||
@@ -109,22 +113,12 @@ jar {
|
|||||||
from configurations.shade.collect { it.isDirectory() ? it : zipTree(it) }
|
from configurations.shade.collect { it.isDirectory() ? it : zipTree(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
[compileJava, compileTestJava].forEach {
|
|
||||||
it.configure {
|
|
||||||
options.compilerArgs << "-Xlint" << "-Xlint:-processing" << "-Werror"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import java.nio.charset.StandardCharsets
|
import java.nio.charset.StandardCharsets
|
||||||
import java.nio.file.*
|
import java.nio.file.*
|
||||||
import java.util.zip.*
|
import java.util.zip.*
|
||||||
|
|
||||||
import com.google.gson.GsonBuilder
|
import com.google.gson.GsonBuilder
|
||||||
import com.google.gson.JsonElement
|
import com.google.gson.JsonElement
|
||||||
import com.hierynomus.gradle.license.tasks.LicenseCheck
|
|
||||||
import com.hierynomus.gradle.license.tasks.LicenseFormat
|
|
||||||
import org.ajoberstar.grgit.Grgit
|
import org.ajoberstar.grgit.Grgit
|
||||||
import proguard.gradle.ProGuardTask
|
import proguard.gradle.ProGuardTask
|
||||||
|
|
||||||
@@ -137,7 +131,6 @@ task proguard(type: ProGuardTask, dependsOn: jar) {
|
|||||||
|
|
||||||
// Add the main runtime jar and all non-shadowed dependencies
|
// Add the main runtime jar and all non-shadowed dependencies
|
||||||
libraryjars "${System.getProperty('java.home')}/lib/rt.jar"
|
libraryjars "${System.getProperty('java.home')}/lib/rt.jar"
|
||||||
libraryjars "${System.getProperty('java.home')}/lib/jce.jar"
|
|
||||||
doFirst {
|
doFirst {
|
||||||
sourceSets.main.compileClasspath
|
sourceSets.main.compileClasspath
|
||||||
.filter { !it.name.contains("Cobalt") }
|
.filter { !it.name.contains("Cobalt") }
|
||||||
@@ -152,6 +145,13 @@ task proguard(type: ProGuardTask, dependsOn: jar) {
|
|||||||
|
|
||||||
// Preserve ComputerCraft classes - we only want to strip shadowed files.
|
// Preserve ComputerCraft classes - we only want to strip shadowed files.
|
||||||
keep 'class dan200.computercraft.** { *; }'
|
keep 'class dan200.computercraft.** { *; }'
|
||||||
|
|
||||||
|
// Preserve the constructors in Cobalt library class, as we init them via reflection
|
||||||
|
keepclassmembers 'class org.squiddev.cobalt.lib.** { <init>(...); }'
|
||||||
|
|
||||||
|
// LWJGL and Apache bundle Java 9 versions, which is great, but rather breaks Proguard
|
||||||
|
dontwarn 'module-info'
|
||||||
|
dontwarn 'org.apache.**,org.lwjgl.**'
|
||||||
}
|
}
|
||||||
|
|
||||||
task proguardMove(dependsOn: proguard) {
|
task proguardMove(dependsOn: proguard) {
|
||||||
@@ -167,7 +167,7 @@ task proguardMove(dependsOn: proguard) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reobfJar.dependsOn proguardMove
|
|
||||||
|
|
||||||
processResources {
|
processResources {
|
||||||
inputs.property "version", mod_version
|
inputs.property "version", mod_version
|
||||||
@@ -189,8 +189,8 @@ processResources {
|
|||||||
inputs.property "commithash", hash
|
inputs.property "commithash", hash
|
||||||
|
|
||||||
from(sourceSets.main.resources.srcDirs) {
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
include 'mcmod.info'
|
include 'fabric.mods.json'
|
||||||
include 'assets/computercraft/lua/rom/help/credits.txt'
|
include 'data/computercraft/lua/rom/help/credits.txt'
|
||||||
|
|
||||||
expand 'version': mod_version,
|
expand 'version': mod_version,
|
||||||
'mcversion': mc_version,
|
'mcversion': mc_version,
|
||||||
@@ -198,12 +198,12 @@ processResources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
from(sourceSets.main.resources.srcDirs) {
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
exclude 'mcmod.info'
|
exclude 'fabric.mods.json'
|
||||||
exclude 'assets/computercraft/lua/rom/help/credits.txt'
|
exclude 'data/computercraft/lua/rom/help/credits.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task compressJson(dependsOn: extractAnnotationsJar) {
|
task compressJson(dependsOn: jar) {
|
||||||
group "compact"
|
group "compact"
|
||||||
description "Minifies all JSON files, stripping whitespace"
|
description "Minifies all JSON files, stripping whitespace"
|
||||||
|
|
||||||
@@ -218,7 +218,6 @@ task compressJson(dependsOn: extractAnnotationsJar) {
|
|||||||
// Copy over all files in the current jar to the new one, running json files from GSON. As pretty printing
|
// Copy over all files in the current jar to the new one, running json files from GSON. As pretty printing
|
||||||
// is turned off, they should be minified.
|
// is turned off, they should be minified.
|
||||||
new ZipFile(jarPath).withCloseable { inJar ->
|
new ZipFile(jarPath).withCloseable { inJar ->
|
||||||
tempPath.getParentFile().mkdirs()
|
|
||||||
new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(tempPath))).withCloseable { outJar ->
|
new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(tempPath))).withCloseable { outJar ->
|
||||||
inJar.entries().each { entry ->
|
inJar.entries().each { entry ->
|
||||||
if(entry.directory) {
|
if(entry.directory) {
|
||||||
@@ -246,106 +245,13 @@ task compressJson(dependsOn: extractAnnotationsJar) {
|
|||||||
|
|
||||||
assemble.dependsOn compressJson
|
assemble.dependsOn compressJson
|
||||||
|
|
||||||
// Check tasks
|
|
||||||
|
|
||||||
test {
|
|
||||||
useJUnitPlatform()
|
|
||||||
testLogging {
|
|
||||||
events "skipped", "failed"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
license {
|
|
||||||
mapping("java", "SLASHSTAR_STYLE")
|
|
||||||
strictCheck true
|
|
||||||
|
|
||||||
ext.year = Calendar.getInstance().get(Calendar.YEAR)
|
|
||||||
}
|
|
||||||
|
|
||||||
[licenseMain, licenseFormatMain].forEach {
|
|
||||||
it.configure {
|
|
||||||
include("**/*.java")
|
|
||||||
exclude("dan200/computercraft/api/**")
|
|
||||||
header rootProject.file('config/license/main.txt')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[licenseTest, licenseFormatTest].forEach {
|
|
||||||
it.configure {
|
|
||||||
include("**/*.java")
|
|
||||||
header rootProject.file('config/license/main.txt')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
gradle.projectsEvaluated {
|
|
||||||
tasks.withType(LicenseFormat) {
|
|
||||||
outputs.upToDateWhen { false }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
task licenseAPI(type: LicenseCheck);
|
|
||||||
task licenseFormatAPI(type: LicenseFormat);
|
|
||||||
[licenseAPI, licenseFormatAPI].forEach {
|
|
||||||
it.configure {
|
|
||||||
source = sourceSets.main.java
|
|
||||||
include("dan200/computercraft/api/**")
|
|
||||||
header rootProject.file('config/license/api.txt')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Upload tasks
|
|
||||||
|
|
||||||
task checkRelease {
|
|
||||||
group "upload"
|
|
||||||
description "Verifies that everything is ready for a release"
|
|
||||||
|
|
||||||
inputs.property "version", mod_version
|
|
||||||
inputs.file("src/main/resources/assets/computercraft/lua/rom/help/changelog.txt")
|
|
||||||
inputs.file("src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt")
|
|
||||||
|
|
||||||
doLast {
|
|
||||||
def ok = true
|
|
||||||
|
|
||||||
// Check we're targetting the current version
|
|
||||||
def whatsnew = new File("src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt").readLines()
|
|
||||||
if (whatsnew[0] != "New features in CC: Tweaked $mod_version") {
|
|
||||||
ok = false
|
|
||||||
project.logger.error("Expected `whatsnew.txt' to target $mod_version.")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check "read more" exists and trim it
|
|
||||||
def idx = whatsnew.findIndexOf { it == 'Type "help changelog" to see the full version history.' }
|
|
||||||
if (idx == -1) {
|
|
||||||
ok = false
|
|
||||||
project.logger.error("Must mention the changelog in whatsnew.txt")
|
|
||||||
} else {
|
|
||||||
whatsnew = whatsnew.getAt(0 ..< idx)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check whatsnew and changelog match.
|
|
||||||
def versionChangelog = "# " + whatsnew.join("\n")
|
|
||||||
def changelog = new File("src/main/resources/assets/computercraft/lua/rom/help/changelog.txt").getText()
|
|
||||||
if (!changelog.startsWith(versionChangelog)) {
|
|
||||||
ok = false
|
|
||||||
project.logger.error("whatsnew and changelog are not in sync")
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ok) throw new IllegalStateException("Could not check release")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
check.dependsOn checkRelease
|
|
||||||
|
|
||||||
curseforge {
|
curseforge {
|
||||||
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
|
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
|
||||||
project {
|
project {
|
||||||
id = '282001'
|
id = '282001'
|
||||||
releaseType = 'release'
|
addGameVersion '1.14-Snapshot'
|
||||||
|
releaseType = 'alpha'
|
||||||
changelog = "Release notes can be found on the GitHub repository (https://github.com/SquidDev-CC/CC-Tweaked/releases/tag/v${mc_version}-${mod_version})."
|
changelog = "Release notes can be found on the GitHub repository (https://github.com/SquidDev-CC/CC-Tweaked/releases/tag/v${mc_version}-${mod_version})."
|
||||||
|
|
||||||
relations {
|
|
||||||
incompatible "computercraft"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -353,7 +259,7 @@ publishing {
|
|||||||
publications {
|
publications {
|
||||||
mavenJava(MavenPublication) {
|
mavenJava(MavenPublication) {
|
||||||
from components.java
|
from components.java
|
||||||
artifact sourceJar
|
// artifact sourceJar
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -406,28 +312,33 @@ githubRelease {
|
|||||||
token project.hasProperty('githubApiKey') ? project.githubApiKey : ''
|
token project.hasProperty('githubApiKey') ? project.githubApiKey : ''
|
||||||
owner 'SquidDev-CC'
|
owner 'SquidDev-CC'
|
||||||
repo 'CC-Tweaked'
|
repo 'CC-Tweaked'
|
||||||
try {
|
targetCommitish "mc-1.14-fabric" // TODO: Pull from GrGit
|
||||||
targetCommitish = Grgit.open(dir: '.').branch.current().name
|
|
||||||
} catch(Exception ignored) { }
|
|
||||||
|
|
||||||
tagName "v${mc_version}-${mod_version}"
|
tagName "v${mc_version}-${mod_version}"
|
||||||
releaseName "[${mc_version}] ${mod_version}"
|
releaseName "[${mc_version}] ${mod_version}"
|
||||||
body {
|
body ''
|
||||||
"## " + new File("src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt")
|
prerelease true
|
||||||
.readLines()
|
|
||||||
.takeWhile { it != 'Type "help changelog" to see the full version history.' }
|
releaseAssets.from(jar.archivePath)
|
||||||
.join("\n").trim()
|
|
||||||
}
|
|
||||||
prerelease false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def uploadTasks = ["uploadArchives", "curseforge", "githubRelease"]
|
task uploadAll(dependsOn: [uploadArchives, "curseforge", "githubRelease"]) {
|
||||||
uploadTasks.forEach { tasks.getByName(it).dependsOn checkRelease }
|
|
||||||
|
|
||||||
task uploadAll(dependsOn: uploadTasks) {
|
|
||||||
group "upload"
|
group "upload"
|
||||||
description "Uploads to all repositories (Maven, Curse, GitHub release)"
|
description "Uploads to all repositories (Maven, Curse, GitHub release)"
|
||||||
}
|
}
|
||||||
|
|
||||||
runClient.outputs.upToDateWhen { false }
|
test {
|
||||||
runServer.outputs.upToDateWhen { false }
|
useJUnitPlatform()
|
||||||
|
testLogging {
|
||||||
|
events "passed", "skipped", "failed"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
gradle.projectsEvaluated {
|
||||||
|
remapJar.dependsOn proguardMove
|
||||||
|
|
||||||
|
tasks.withType(JavaCompile) {
|
||||||
|
options.compilerArgs << "-Xlint" << "-Xlint:-processing" // Causes Forge build to fail << "-Werror"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -1,169 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE module PUBLIC
|
|
||||||
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
|
|
||||||
"https://checkstyle.org/dtds/configuration_1_3.dtd">
|
|
||||||
<module name="Checker">
|
|
||||||
<property name="tabWidth" value="4"/>
|
|
||||||
<property name="charset" value="UTF-8" />
|
|
||||||
|
|
||||||
<module name="SuppressionFilter">
|
|
||||||
<property name="file" value="config/checkstyle/suppressions.xml" />
|
|
||||||
</module>
|
|
||||||
|
|
||||||
<module name="TreeWalker">
|
|
||||||
<!-- Annotations -->
|
|
||||||
<module name="AnnotationLocation" />
|
|
||||||
<module name="AnnotationUseStyle" />
|
|
||||||
<module name="MissingDeprecated" />
|
|
||||||
<module name="MissingOverride" />
|
|
||||||
|
|
||||||
<!-- Blocks -->
|
|
||||||
<module name="EmptyBlock" />
|
|
||||||
<module name="EmptyCatchBlock">
|
|
||||||
<property name="exceptionVariableName" value="ignored" />
|
|
||||||
</module>
|
|
||||||
<module name="LeftCurly">
|
|
||||||
<property name="option" value="nl" />
|
|
||||||
<!-- The defaults, minus lambdas. -->
|
|
||||||
<property name="tokens" value="ANNOTATION_DEF,CLASS_DEF,CTOR_DEF,ENUM_CONSTANT_DEF,ENUM_DEF,INTERFACE_DEF,LITERAL_CASE,LITERAL_CATCH,LITERAL_DEFAULT,LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_FOR,LITERAL_IF,LITERAL_SWITCH,LITERAL_SYNCHRONIZED,LITERAL_TRY,LITERAL_WHILE,METHOD_DEF,OBJBLOCK,STATIC_INIT" />
|
|
||||||
</module>
|
|
||||||
<module name="NeedBraces">
|
|
||||||
<property name="allowSingleLineStatement" value="true"/>
|
|
||||||
</module>
|
|
||||||
<module name="RightCurly">
|
|
||||||
<property name="option" value="alone" />
|
|
||||||
</module>
|
|
||||||
|
|
||||||
<!-- Class design. As if we've ever followed good practice here. -->
|
|
||||||
<module name="FinalClass" />
|
|
||||||
<module name="InterfaceIsType" />
|
|
||||||
<module name="MutableException" />
|
|
||||||
<module name="OneTopLevelClass" />
|
|
||||||
|
|
||||||
<!-- Coding -->
|
|
||||||
<module name="ArrayTrailingComma" />
|
|
||||||
<module name="EqualsHashCode" />
|
|
||||||
<!-- FallThrough does not handle unreachable code well -->
|
|
||||||
<module name="IllegalInstantiation" />
|
|
||||||
<module name="IllegalThrows" />
|
|
||||||
<module name="ModifiedControlVariable" />
|
|
||||||
<module name="NoClone" />
|
|
||||||
<module name="NoFinalizer" />
|
|
||||||
<module name="OneStatementPerLine" />
|
|
||||||
<module name="PackageDeclaration" />
|
|
||||||
<module name="SimplifyBooleanExpression" />
|
|
||||||
<module name="SimplifyBooleanReturn" />
|
|
||||||
<module name="StringLiteralEquality" />
|
|
||||||
<module name="UnnecessaryParentheses" />
|
|
||||||
<module name="UnnecessarySemicolonAfterTypeMemberDeclaration" />
|
|
||||||
<module name="UnnecessarySemicolonInTryWithResources" />
|
|
||||||
<module name="UnnecessarySemicolonInEnumeration" />
|
|
||||||
|
|
||||||
<!-- Imports -->
|
|
||||||
<module name="CustomImportOrder" />
|
|
||||||
<module name="IllegalImport" />
|
|
||||||
<module name="RedundantImport" />
|
|
||||||
<module name="UnusedImports" />
|
|
||||||
|
|
||||||
<!-- Javadoc -->
|
|
||||||
<!-- TODO: Missing* checks for the dan200.computercraft.api package? -->
|
|
||||||
<module name="AtclauseOrder" />
|
|
||||||
<module name="InvalidJavadocPosition" />
|
|
||||||
<module name="JavadocBlockTagLocation" />
|
|
||||||
<module name="JavadocMethod"/>
|
|
||||||
<module name="JavadocType"/>
|
|
||||||
<module name="JavadocStyle" />
|
|
||||||
<module name="NonEmptyAtclauseDescription" />
|
|
||||||
<module name="SingleLineJavadoc" />
|
|
||||||
<module name="SummaryJavadocCheck"/>
|
|
||||||
|
|
||||||
<!-- Misc -->
|
|
||||||
<module name="ArrayTypeStyle" />
|
|
||||||
<module name="CommentsIndentation" />
|
|
||||||
<module name="Indentation" />
|
|
||||||
<module name="OuterTypeFilename" />
|
|
||||||
|
|
||||||
<!-- Modifiers -->
|
|
||||||
<module name="ModifierOrder" />
|
|
||||||
<module name="RedundantModifier" />
|
|
||||||
|
|
||||||
<!-- Naming -->
|
|
||||||
<module name="ClassTypeParameterName" />
|
|
||||||
<module name="InterfaceTypeParameterName" />
|
|
||||||
<module name="LambdaParameterName" />
|
|
||||||
<module name="LocalFinalVariableName" />
|
|
||||||
<module name="LocalVariableName" />
|
|
||||||
<!-- Allow an optional m_ on private members -->
|
|
||||||
<module name="MemberName">
|
|
||||||
<property name="applyToPrivate" value="false" />
|
|
||||||
<property name="applyToPackage" value="false" />
|
|
||||||
</module>
|
|
||||||
<module name="MemberName">
|
|
||||||
<property name="format" value="^(m_)?[a-z][a-zA-Z0-9]*$" />
|
|
||||||
<property name="applyToPrivate" value="true" />
|
|
||||||
<property name="applyToPackage" value="true" />
|
|
||||||
</module>
|
|
||||||
<module name="MethodName" />
|
|
||||||
<module name="MethodTypeParameterName" />
|
|
||||||
<module name="PackageName">
|
|
||||||
<property name="format" value="^dan200\.computercraf(\.[a-z][a-z0-9]*)*" />
|
|
||||||
</module>
|
|
||||||
<module name="ParameterName" />
|
|
||||||
<module name="StaticVariableName">
|
|
||||||
<property name="format" value="^[a-z][a-zA-Z0-9]*|CAPABILITY(_[A-Z]+)?$" />
|
|
||||||
<property name="applyToPrivate" value="false" />
|
|
||||||
</module>
|
|
||||||
<module name="StaticVariableName">
|
|
||||||
<property name="format" value="^(s_)?[a-z][a-zA-Z0-9]*|CAPABILITY(_[A-Z]+)?$" />
|
|
||||||
<property name="applyToPrivate" value="true" />
|
|
||||||
</module>
|
|
||||||
<module name="TypeName" />
|
|
||||||
|
|
||||||
<!-- Whitespace -->
|
|
||||||
<module name="EmptyForInitializerPad"/>
|
|
||||||
<module name="EmptyForIteratorPad">
|
|
||||||
<property name="option" value="space"/>
|
|
||||||
</module>
|
|
||||||
<module name="GenericWhitespace" />
|
|
||||||
<module name="MethodParamPad" />
|
|
||||||
<module name="NoLineWrap" />
|
|
||||||
<module name="NoWhitespaceAfter">
|
|
||||||
<property name="tokens" value="AT,INC,DEC,UNARY_MINUS,UNARY_PLUS,BNOT,LNOT,DOT,ARRAY_DECLARATOR,INDEX_OP" />
|
|
||||||
</module>
|
|
||||||
<module name="NoWhitespaceBefore" />
|
|
||||||
<!-- TODO: Decide on an OperatorWrap style. -->
|
|
||||||
<module name="ParenPad">
|
|
||||||
<property name="option" value="space" />
|
|
||||||
<property name="tokens" value="ANNOTATION,ANNOTATION_FIELD_DEF,CTOR_CALL,CTOR_DEF,ENUM_CONSTANT_DEF,LITERAL_CATCH,LITERAL_DO,LITERAL_FOR,LITERAL_IF,LITERAL_NEW,LITERAL_SWITCH,LITERAL_SYNCHRONIZED,LITERAL_WHILE,METHOD_CALL,METHOD_DEF,RESOURCE_SPECIFICATION,SUPER_CTOR_CALL,LAMBDA" />
|
|
||||||
</module>
|
|
||||||
<module name="ParenPad">
|
|
||||||
<property name="option" value="nospace" />
|
|
||||||
<property name="tokens" value="DOT,EXPR,QUESTION" />
|
|
||||||
</module>
|
|
||||||
<module name="SeparatorWrap">
|
|
||||||
<property name="option" value="eol" />
|
|
||||||
<property name="tokens" value="COMMA,SEMI,ELLIPSIS,ARRAY_DECLARATOR,RBRACK,METHOD_REF" />
|
|
||||||
</module>
|
|
||||||
<module name="SeparatorWrap">
|
|
||||||
<property name="option" value="nl" />
|
|
||||||
<property name="tokens" value="DOT,AT" />
|
|
||||||
</module>
|
|
||||||
<module name="SingleSpaceSeparator" />
|
|
||||||
<module name="TypecastParenPad" />
|
|
||||||
<module name="WhitespaceAfter">
|
|
||||||
<property name="tokens" value="COMMA" />
|
|
||||||
</module>
|
|
||||||
<module name="WhitespaceAround">
|
|
||||||
<property name="allowEmptyConstructors" value="true" />
|
|
||||||
<property name="ignoreEnhancedForColon" value="false" />
|
|
||||||
<property name="tokens" value="ASSIGN,BAND,BAND_ASSIGN,BOR,BOR_ASSIGN,BSR,BSR_ASSIGN,BXOR,BXOR_ASSIGN,COLON,DIV,DIV_ASSIGN,DO_WHILE,EQUAL,GE,GT,LAMBDA,LAND,LCURLY,LE,LITERAL_RETURN,LOR,LT,MINUS,MINUS_ASSIGN,MOD,MOD_ASSIGN,NOT_EQUAL,PLUS,PLUS_ASSIGN,QUESTION,RCURLY,SL,SLIST,SL_ASSIGN,SR,SR_ASSIGN,STAR,STAR_ASSIGN,LITERAL_ASSERT,TYPE_EXTENSION_AND" />
|
|
||||||
</module>
|
|
||||||
</module>
|
|
||||||
|
|
||||||
<module name="FileTabCharacter" />
|
|
||||||
<module name="NewlineAtEndOfFile" />
|
|
||||||
<module name="RegexpSingleline">
|
|
||||||
<property name="format" value="\s+$"/>
|
|
||||||
<property name="message" value="Trailing whitespace"/>
|
|
||||||
</module>
|
|
||||||
</module>
|
|
@@ -1,12 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE suppressions PUBLIC
|
|
||||||
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
|
||||||
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
|
||||||
<suppressions>
|
|
||||||
<!-- All the config options and method fields. -->
|
|
||||||
<suppress checks="StaticVariableName" files=".*[\\/]ComputerCraft.java" />
|
|
||||||
<suppress checks="StaticVariableName" files=".*[\\/]ComputerCraftAPI.java" />
|
|
||||||
|
|
||||||
<!-- Do not check for missing package Javadoc. -->
|
|
||||||
<suppress checks="JavadocStyle" files=".*[\\/]package-info.java" />
|
|
||||||
</suppressions>
|
|
@@ -1,3 +0,0 @@
|
|||||||
This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
Copyright Daniel Ratcliffe, 2011-${year}. This API may be redistributed unmodified and in full only.
|
|
||||||
For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
@@ -1,3 +0,0 @@
|
|||||||
This file is part of ComputerCraft - http://www.computercraft.info
|
|
||||||
Copyright Daniel Ratcliffe, 2011-${year}. Do not distribute without permission.
|
|
||||||
Send enquiries to dratcliffe@gmail.com
|
|
@@ -1,7 +1,6 @@
|
|||||||
# Mod properties
|
# Mod properties
|
||||||
mod_version=1.86.1
|
mod_version=1.82.3
|
||||||
|
|
||||||
# Minecraft properties
|
# Minecraft properties
|
||||||
mc_version=1.12.2
|
mc_version=1.14
|
||||||
forge_version=14.23.4.2749
|
mappings_version=1
|
||||||
mappings_version=snapshot_20180724
|
|
||||||
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
|
|
||||||
|
@@ -1,28 +0,0 @@
|
|||||||
; -*- mode: Lisp;-*-
|
|
||||||
|
|
||||||
(sources
|
|
||||||
/src/main/resources/assets/computercraft/lua/bios.lua
|
|
||||||
/src/main/resources/assets/computercraft/lua/rom/
|
|
||||||
/src/test/resources/test-rom)
|
|
||||||
|
|
||||||
(at /
|
|
||||||
(linters
|
|
||||||
;; It'd be nice to avoid this, but right now there's a lot of instances of
|
|
||||||
;; it.
|
|
||||||
-var:set-loop
|
|
||||||
|
|
||||||
;; It's useful to name arguments for documentation, so we allow this. It'd
|
|
||||||
;; be good to find a compromise in the future, but this works for now.
|
|
||||||
-var:unused-arg))
|
|
||||||
|
|
||||||
;; We disable the unused global linter in bios.lua and the APIs. In the future
|
|
||||||
;; hopefully we'll get illuaminate to handle this.
|
|
||||||
(at
|
|
||||||
(/src/main/resources/assets/computercraft/lua/bios.lua
|
|
||||||
/src/main/resources/assets/computercraft/lua/rom/apis/)
|
|
||||||
(linters -var:unused-global)
|
|
||||||
(lint
|
|
||||||
(allow-toplevel-global true)))
|
|
||||||
|
|
||||||
;; These warnings are broken right now
|
|
||||||
(at (bios.lua worm.lua) (linters -control:unreachable))
|
|
@@ -1 +1,12 @@
|
|||||||
rootProject.name = "cc-tweaked-${mc_version}"
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
name = 'Fabric'
|
||||||
|
url = 'https://maven.fabricmc.net/'
|
||||||
|
}
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rootProject.name = "cc-tweaked-${mc_version}-fabric"
|
||||||
|
@@ -1,29 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
|
||||||
*/
|
|
||||||
package dan200.computercraft;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.Mod;
|
|
||||||
import net.minecraftforge.fml.common.network.NetworkCheckHandler;
|
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A stub mod for CC: Tweaked. This doesn't have any functionality (everything of note is done in
|
|
||||||
* {@link ComputerCraft}), but people may depend on this if they require CC: Tweaked functionality.
|
|
||||||
*/
|
|
||||||
@Mod(
|
|
||||||
modid = "cctweaked", name = ComputerCraft.NAME, version = ComputerCraft.VERSION,
|
|
||||||
acceptableRemoteVersions = "*"
|
|
||||||
)
|
|
||||||
public class CCTweaked
|
|
||||||
{
|
|
||||||
@NetworkCheckHandler
|
|
||||||
public boolean onNetworkConnect( Map<String, String> mods, Side side )
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,100 +1,56 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft;
|
package dan200.computercraft;
|
||||||
|
|
||||||
import dan200.computercraft.api.filesystem.IMount;
|
import dan200.computercraft.api.filesystem.IMount;
|
||||||
import dan200.computercraft.api.filesystem.IWritableMount;
|
|
||||||
import dan200.computercraft.api.lua.ILuaAPIFactory;
|
|
||||||
import dan200.computercraft.api.media.IMedia;
|
|
||||||
import dan200.computercraft.api.media.IMediaProvider;
|
|
||||||
import dan200.computercraft.api.network.IPacketNetwork;
|
|
||||||
import dan200.computercraft.api.network.wired.IWiredElement;
|
|
||||||
import dan200.computercraft.api.network.wired.IWiredNode;
|
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
|
||||||
import dan200.computercraft.api.peripheral.IPeripheralProvider;
|
|
||||||
import dan200.computercraft.api.permissions.ITurtlePermissionProvider;
|
|
||||||
import dan200.computercraft.api.pocket.IPocketUpgrade;
|
|
||||||
import dan200.computercraft.api.redstone.IBundledRedstoneProvider;
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
|
||||||
import dan200.computercraft.api.turtle.event.TurtleAction;
|
import dan200.computercraft.api.turtle.event.TurtleAction;
|
||||||
|
import dan200.computercraft.client.proxy.ComputerCraftProxyClient;
|
||||||
import dan200.computercraft.core.apis.AddressPredicate;
|
import dan200.computercraft.core.apis.AddressPredicate;
|
||||||
import dan200.computercraft.core.apis.ApiFactories;
|
|
||||||
import dan200.computercraft.core.apis.http.websocket.Websocket;
|
import dan200.computercraft.core.apis.http.websocket.Websocket;
|
||||||
import dan200.computercraft.core.computer.MainThread;
|
import dan200.computercraft.core.filesystem.ResourceMount;
|
||||||
import dan200.computercraft.core.filesystem.ComboMount;
|
|
||||||
import dan200.computercraft.core.filesystem.FileMount;
|
|
||||||
import dan200.computercraft.core.filesystem.JarMount;
|
|
||||||
import dan200.computercraft.core.tracking.Tracking;
|
|
||||||
import dan200.computercraft.shared.*;
|
|
||||||
import dan200.computercraft.shared.computer.blocks.BlockCommandComputer;
|
|
||||||
import dan200.computercraft.shared.computer.blocks.BlockComputer;
|
import dan200.computercraft.shared.computer.blocks.BlockComputer;
|
||||||
import dan200.computercraft.shared.computer.core.ClientComputerRegistry;
|
import dan200.computercraft.shared.computer.core.ClientComputerRegistry;
|
||||||
import dan200.computercraft.shared.computer.core.ServerComputerRegistry;
|
import dan200.computercraft.shared.computer.core.ServerComputerRegistry;
|
||||||
import dan200.computercraft.shared.computer.items.ItemCommandComputer;
|
|
||||||
import dan200.computercraft.shared.computer.items.ItemComputer;
|
import dan200.computercraft.shared.computer.items.ItemComputer;
|
||||||
import dan200.computercraft.shared.media.items.ItemDiskExpanded;
|
import dan200.computercraft.shared.media.items.ItemDisk;
|
||||||
import dan200.computercraft.shared.media.items.ItemDiskLegacy;
|
|
||||||
import dan200.computercraft.shared.media.items.ItemPrintout;
|
import dan200.computercraft.shared.media.items.ItemPrintout;
|
||||||
import dan200.computercraft.shared.media.items.ItemTreasureDisk;
|
import dan200.computercraft.shared.media.items.ItemTreasureDisk;
|
||||||
import dan200.computercraft.shared.peripheral.common.BlockPeripheral;
|
import dan200.computercraft.shared.peripheral.diskdrive.BlockDiskDrive;
|
||||||
import dan200.computercraft.shared.peripheral.common.ItemPeripheral;
|
|
||||||
import dan200.computercraft.shared.peripheral.modem.wired.BlockCable;
|
import dan200.computercraft.shared.peripheral.modem.wired.BlockCable;
|
||||||
import dan200.computercraft.shared.peripheral.modem.wired.BlockWiredModemFull;
|
import dan200.computercraft.shared.peripheral.modem.wired.BlockWiredModemFull;
|
||||||
import dan200.computercraft.shared.peripheral.modem.wired.ItemCable;
|
import dan200.computercraft.shared.peripheral.modem.wired.ItemBlockCable;
|
||||||
import dan200.computercraft.shared.peripheral.modem.wireless.BlockAdvancedModem;
|
import dan200.computercraft.shared.peripheral.modem.wireless.BlockWirelessModem;
|
||||||
import dan200.computercraft.shared.peripheral.modem.wireless.ItemAdvancedModem;
|
import dan200.computercraft.shared.peripheral.monitor.BlockMonitor;
|
||||||
import dan200.computercraft.shared.peripheral.modem.wireless.WirelessNetwork;
|
import dan200.computercraft.shared.peripheral.printer.BlockPrinter;
|
||||||
|
import dan200.computercraft.shared.peripheral.speaker.BlockSpeaker;
|
||||||
import dan200.computercraft.shared.pocket.items.ItemPocketComputer;
|
import dan200.computercraft.shared.pocket.items.ItemPocketComputer;
|
||||||
import dan200.computercraft.shared.pocket.peripherals.PocketModem;
|
import dan200.computercraft.shared.pocket.peripherals.PocketModem;
|
||||||
import dan200.computercraft.shared.pocket.peripherals.PocketSpeaker;
|
import dan200.computercraft.shared.pocket.peripherals.PocketSpeaker;
|
||||||
import dan200.computercraft.shared.proxy.ComputerCraftProxyCommon;
|
import dan200.computercraft.shared.proxy.ComputerCraftProxyCommon;
|
||||||
import dan200.computercraft.shared.turtle.blocks.BlockTurtle;
|
import dan200.computercraft.shared.turtle.blocks.BlockTurtle;
|
||||||
import dan200.computercraft.shared.turtle.items.ItemTurtleAdvanced;
|
import dan200.computercraft.shared.turtle.items.ItemTurtle;
|
||||||
import dan200.computercraft.shared.turtle.items.ItemTurtleLegacy;
|
|
||||||
import dan200.computercraft.shared.turtle.items.ItemTurtleNormal;
|
|
||||||
import dan200.computercraft.shared.turtle.upgrades.*;
|
import dan200.computercraft.shared.turtle.upgrades.*;
|
||||||
import dan200.computercraft.shared.util.CreativeTabMain;
|
import net.fabricmc.api.EnvType;
|
||||||
import dan200.computercraft.shared.util.IDAssigner;
|
import net.fabricmc.api.ModInitializer;
|
||||||
import dan200.computercraft.shared.util.IoUtil;
|
import net.minecraft.resource.ReloadableResourceManager;
|
||||||
import dan200.computercraft.shared.wired.CapabilityWiredElement;
|
import net.minecraft.util.Identifier;
|
||||||
import dan200.computercraft.shared.wired.WiredNode;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
|
||||||
import net.minecraft.item.ItemBlock;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.server.MinecraftServer;
|
|
||||||
import net.minecraft.tileentity.TileEntity;
|
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
|
||||||
import net.minecraft.world.IBlockAccess;
|
|
||||||
import net.minecraft.world.World;
|
|
||||||
import net.minecraftforge.common.DimensionManager;
|
|
||||||
import net.minecraftforge.fml.common.*;
|
|
||||||
import net.minecraftforge.fml.common.event.*;
|
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.IOException;
|
||||||
import java.net.MalformedURLException;
|
import java.io.InputStream;
|
||||||
import java.net.URISyntaxException;
|
import java.util.EnumSet;
|
||||||
import java.net.URL;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.zip.ZipEntry;
|
|
||||||
import java.util.zip.ZipFile;
|
|
||||||
|
|
||||||
@Mod(
|
public final class ComputerCraft implements ModInitializer
|
||||||
modid = ComputerCraft.MOD_ID, name = ComputerCraft.NAME, version = ComputerCraft.VERSION,
|
|
||||||
guiFactory = "dan200.computercraft.client.gui.GuiConfigCC$Factory",
|
|
||||||
dependencies = "required:forge@[14.23.4.2746,)"
|
|
||||||
)
|
|
||||||
public class ComputerCraft
|
|
||||||
{
|
{
|
||||||
public static final String MOD_ID = "computercraft";
|
public static final String MOD_ID = "computercraft";
|
||||||
static final String VERSION = "${version}";
|
|
||||||
static final String NAME = "CC: Tweaked";
|
public static final int DATAFIXER_VERSION = 0;
|
||||||
|
|
||||||
// Configuration options
|
// Configuration options
|
||||||
public static final String[] DEFAULT_HTTP_WHITELIST = new String[] { "*" };
|
public static final String[] DEFAULT_HTTP_WHITELIST = new String[] { "*" };
|
||||||
@@ -156,46 +112,54 @@ public class ComputerCraft
|
|||||||
// Blocks and Items
|
// Blocks and Items
|
||||||
public static final class Blocks
|
public static final class Blocks
|
||||||
{
|
{
|
||||||
public static BlockComputer computer;
|
public static BlockComputer computerNormal;
|
||||||
public static BlockCommandComputer commandComputer;
|
public static BlockComputer computerAdvanced;
|
||||||
|
public static BlockComputer computerCommand;
|
||||||
|
|
||||||
public static BlockTurtle turtle;
|
public static BlockTurtle turtleNormal;
|
||||||
public static BlockTurtle turtleExpanded;
|
|
||||||
public static BlockTurtle turtleAdvanced;
|
public static BlockTurtle turtleAdvanced;
|
||||||
|
|
||||||
public static BlockPeripheral peripheral;
|
public static BlockSpeaker speaker;
|
||||||
public static BlockCable cable;
|
public static BlockDiskDrive diskDrive;
|
||||||
public static BlockAdvancedModem advancedModem;
|
public static BlockPrinter printer;
|
||||||
|
|
||||||
|
public static BlockMonitor monitorNormal;
|
||||||
|
public static BlockMonitor monitorAdvanced;
|
||||||
|
|
||||||
|
public static BlockWirelessModem wirelessModemNormal;
|
||||||
|
public static BlockWirelessModem wirelessModemAdvanced;
|
||||||
|
|
||||||
public static BlockWiredModemFull wiredModemFull;
|
public static BlockWiredModemFull wiredModemFull;
|
||||||
|
public static BlockCable cable;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class Items
|
public static final class Items
|
||||||
{
|
{
|
||||||
public static ItemComputer computer;
|
public static ItemComputer computerNormal;
|
||||||
public static ItemCommandComputer commandComputer;
|
public static ItemComputer computerAdvanced;
|
||||||
|
public static ItemComputer computerCommand;
|
||||||
|
|
||||||
public static ItemTurtleLegacy turtle;
|
public static ItemPocketComputer pocketComputerNormal;
|
||||||
public static ItemTurtleNormal turtleExpanded;
|
public static ItemPocketComputer pocketComputerAdvanced;
|
||||||
public static ItemTurtleAdvanced turtleAdvanced;
|
|
||||||
|
|
||||||
public static ItemPocketComputer pocketComputer;
|
public static ItemTurtle turtleNormal;
|
||||||
|
public static ItemTurtle turtleAdvanced;
|
||||||
|
|
||||||
public static ItemDiskLegacy disk;
|
public static ItemDisk disk;
|
||||||
public static ItemDiskExpanded diskExpanded;
|
|
||||||
public static ItemTreasureDisk treasureDisk;
|
public static ItemTreasureDisk treasureDisk;
|
||||||
|
|
||||||
public static ItemPrintout printout;
|
public static ItemPrintout printedPage;
|
||||||
|
public static ItemPrintout printedPages;
|
||||||
|
public static ItemPrintout printedBook;
|
||||||
|
|
||||||
public static ItemPeripheral peripheral;
|
public static ItemBlockCable.Cable cable;
|
||||||
public static ItemAdvancedModem advancedModem;
|
public static ItemBlockCable.WiredModem wiredModem;
|
||||||
public static ItemCable cable;
|
|
||||||
public static ItemBlock wiredModemFull;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class TurtleUpgrades
|
public static final class TurtleUpgrades
|
||||||
{
|
{
|
||||||
public static TurtleModem wirelessModem;
|
public static TurtleModem wirelessModemNormal;
|
||||||
public static TurtleModem advancedModem;
|
public static TurtleModem wirelessModemAdvanced;
|
||||||
public static TurtleSpeaker speaker;
|
public static TurtleSpeaker speaker;
|
||||||
|
|
||||||
public static TurtleCraftingTable craftingTable;
|
public static TurtleCraftingTable craftingTable;
|
||||||
@@ -208,457 +172,58 @@ public class ComputerCraft
|
|||||||
|
|
||||||
public static final class PocketUpgrades
|
public static final class PocketUpgrades
|
||||||
{
|
{
|
||||||
public static PocketModem wirelessModem;
|
public static PocketModem wirelessModemNormal;
|
||||||
public static PocketModem advancedModem;
|
public static PocketModem wirelessModemAdvanced;
|
||||||
public static PocketSpeaker speaker;
|
public static PocketSpeaker speaker;
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static PocketSpeaker pocketSpeaker;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static final class Upgrades
|
|
||||||
{
|
|
||||||
public static TurtleModem advancedModem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Registries
|
// Registries
|
||||||
public static final ClientComputerRegistry clientComputerRegistry = new ClientComputerRegistry();
|
public static final ClientComputerRegistry clientComputerRegistry = new ClientComputerRegistry();
|
||||||
public static final ServerComputerRegistry serverComputerRegistry = new ServerComputerRegistry();
|
public static final ServerComputerRegistry serverComputerRegistry = new ServerComputerRegistry();
|
||||||
|
|
||||||
// Creative
|
|
||||||
public static CreativeTabMain mainCreativeTab;
|
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
public static Logger log;
|
public static final Logger log = LogManager.getLogger( MOD_ID );
|
||||||
|
|
||||||
// Peripheral providers. This is still here to ensure compatibility with Plethora and Computronics
|
|
||||||
public static List<IPeripheralProvider> peripheralProviders = new ArrayList<>();
|
|
||||||
|
|
||||||
// Implementation
|
// Implementation
|
||||||
@Mod.Instance( ComputerCraft.MOD_ID )
|
|
||||||
public static ComputerCraft instance;
|
public static ComputerCraft instance;
|
||||||
|
|
||||||
@SidedProxy(
|
public ComputerCraft()
|
||||||
clientSide = "dan200.computercraft.client.proxy.ComputerCraftProxyClient",
|
|
||||||
serverSide = "dan200.computercraft.shared.proxy.ComputerCraftProxyCommon"
|
|
||||||
)
|
|
||||||
private static ComputerCraftProxyCommon proxy;
|
|
||||||
|
|
||||||
@Mod.EventHandler
|
|
||||||
public void preInit( FMLPreInitializationEvent event )
|
|
||||||
{
|
{
|
||||||
log = event.getModLog();
|
instance = this;
|
||||||
|
|
||||||
// Load config
|
|
||||||
Config.load( event.getSuggestedConfigurationFile() );
|
|
||||||
|
|
||||||
proxy.preInit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Mod.EventHandler
|
@Override
|
||||||
public void init( FMLInitializationEvent event )
|
public void onInitialize()
|
||||||
{
|
{
|
||||||
proxy.init();
|
ComputerCraftProxyCommon.setup();
|
||||||
}
|
if( net.fabricmc.loader.api.FabricLoader.getInstance().getEnvironmentType() == EnvType.CLIENT )
|
||||||
|
|
||||||
@Mod.EventHandler
|
|
||||||
public void onServerStarting( FMLServerStartingEvent event )
|
|
||||||
{
|
|
||||||
ComputerCraftProxyCommon.initServer( event.getServer() );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Mod.EventHandler
|
|
||||||
public void onServerStart( FMLServerStartedEvent event )
|
|
||||||
{
|
|
||||||
if( FMLCommonHandler.instance().getEffectiveSide() == Side.SERVER )
|
|
||||||
{
|
{
|
||||||
ComputerCraft.serverComputerRegistry.reset();
|
ComputerCraftProxyClient.setup();
|
||||||
WirelessNetwork.resetNetworks();
|
|
||||||
MainThread.reset();
|
|
||||||
Tracking.reset();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Mod.EventHandler
|
|
||||||
public void onServerStopped( FMLServerStoppedEvent event )
|
|
||||||
{
|
|
||||||
if( FMLCommonHandler.instance().getEffectiveSide() == Side.SERVER )
|
|
||||||
{
|
|
||||||
ComputerCraft.serverComputerRegistry.reset();
|
|
||||||
WirelessNetwork.resetNetworks();
|
|
||||||
MainThread.reset();
|
|
||||||
Tracking.reset();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getVersion()
|
public static String getVersion()
|
||||||
{
|
{
|
||||||
return VERSION;
|
return "${version}";
|
||||||
}
|
}
|
||||||
|
|
||||||
private static File getBaseDir()
|
static IMount createResourceMount( String domain, String subPath )
|
||||||
{
|
{
|
||||||
return FMLCommonHandler.instance().getMinecraftServerInstance().getDataDirectory();
|
ReloadableResourceManager manager = ComputerCraftProxyCommon.getServer().getDataManager();
|
||||||
|
ResourceMount mount = new ResourceMount( domain, subPath, manager );
|
||||||
|
return mount.exists( "" ) ? mount : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static File getResourcePackDir()
|
public static InputStream getResourceFile( String domain, String subPath )
|
||||||
{
|
|
||||||
return new File( getBaseDir(), "resourcepacks" );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerPermissionProvider( ITurtlePermissionProvider provider )
|
|
||||||
{
|
|
||||||
TurtlePermissions.register( provider );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerPocketUpgrade( IPocketUpgrade upgrade )
|
|
||||||
{
|
|
||||||
dan200.computercraft.shared.PocketUpgrades.register( upgrade );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerPeripheralProvider( IPeripheralProvider provider )
|
|
||||||
{
|
|
||||||
Peripherals.register( provider );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerBundledRedstoneProvider( IBundledRedstoneProvider provider )
|
|
||||||
{
|
|
||||||
BundledRedstone.register( provider );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerMediaProvider( IMediaProvider provider )
|
|
||||||
{
|
|
||||||
MediaProviders.register( provider );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerAPIFactory( ILuaAPIFactory factory )
|
|
||||||
{
|
|
||||||
ApiFactories.register( factory );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IWiredNode createWiredNodeForElement( IWiredElement element )
|
|
||||||
{
|
|
||||||
return new WiredNode( element );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IWiredElement getWiredElementAt( IBlockAccess world, BlockPos pos, EnumFacing side )
|
|
||||||
{
|
|
||||||
TileEntity tile = world.getTileEntity( pos );
|
|
||||||
return tile != null && tile.hasCapability( CapabilityWiredElement.CAPABILITY, side )
|
|
||||||
? tile.getCapability( CapabilityWiredElement.CAPABILITY, side )
|
|
||||||
: null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static int getDefaultBundledRedstoneOutput( World world, BlockPos pos, EnumFacing side )
|
|
||||||
{
|
|
||||||
return BundledRedstone.getDefaultOutput( world, pos, side );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IPacketNetwork getWirelessNetwork()
|
|
||||||
{
|
|
||||||
return WirelessNetwork.getUniversal();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static int createUniqueNumberedSaveDir( World world, String parentSubPath )
|
|
||||||
{
|
|
||||||
return IDAssigner.getNextIDFromDirectory( parentSubPath );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IWritableMount createSaveDirMount( World world, String subPath, long capacity )
|
|
||||||
{
|
{
|
||||||
|
ReloadableResourceManager manager = ComputerCraftProxyCommon.getServer().getDataManager();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return new FileMount( new File( getWorldDir(), subPath ), capacity );
|
return manager.getResource( new Identifier( domain, subPath ) ).getInputStream();
|
||||||
}
|
}
|
||||||
catch( Exception e )
|
catch( IOException ignored )
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void loadFromFile( List<IMount> mounts, File file, String path, boolean allowMissing )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if( file.isFile() )
|
|
||||||
{
|
|
||||||
mounts.add( new JarMount( file, path ) );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
File subResource = new File( file, path );
|
|
||||||
if( subResource.exists() ) mounts.add( new FileMount( subResource, 0 ) );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch( IOException | RuntimeException e )
|
|
||||||
{
|
|
||||||
if( allowMissing && e instanceof FileNotFoundException ) return;
|
|
||||||
ComputerCraft.log.error( "Could not load mount '" + path + " 'from '" + file.getName() + "'", e );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IMount createResourceMount( Class<?> modClass, String domain, String subPath )
|
|
||||||
{
|
|
||||||
// Start building list of mounts
|
|
||||||
List<IMount> mounts = new ArrayList<>();
|
|
||||||
subPath = "assets/" + domain + "/" + subPath;
|
|
||||||
|
|
||||||
// Mount from debug dir
|
|
||||||
File codeDir = getDebugCodeDir( modClass );
|
|
||||||
if( codeDir != null )
|
|
||||||
{
|
|
||||||
File subResource = new File( codeDir, subPath );
|
|
||||||
if( subResource.exists() )
|
|
||||||
{
|
|
||||||
IMount resourcePackMount = new FileMount( subResource, 0 );
|
|
||||||
mounts.add( resourcePackMount );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mount from mod jars, preferring the specified one.
|
|
||||||
File modJar = getContainingJar( modClass );
|
|
||||||
Set<File> otherMods = new HashSet<>();
|
|
||||||
for( ModContainer container : Loader.instance().getActiveModList() )
|
|
||||||
{
|
|
||||||
File modFile = container.getSource();
|
|
||||||
if( modFile != null && !modFile.equals( modJar ) && modFile.exists() )
|
|
||||||
{
|
|
||||||
otherMods.add( container.getSource() );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for( File file : otherMods )
|
|
||||||
{
|
|
||||||
loadFromFile( mounts, file, subPath, true );
|
|
||||||
}
|
|
||||||
|
|
||||||
if( modJar != null )
|
|
||||||
{
|
|
||||||
loadFromFile( mounts, modJar, subPath, false );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mount from resource packs
|
|
||||||
File resourcePackDir = getResourcePackDir();
|
|
||||||
if( resourcePackDir.exists() && resourcePackDir.isDirectory() )
|
|
||||||
{
|
|
||||||
String[] resourcePacks = resourcePackDir.list();
|
|
||||||
for( String resourcePackName : resourcePacks )
|
|
||||||
{
|
|
||||||
File resourcePack = new File( resourcePackDir, resourcePackName );
|
|
||||||
loadFromFile( mounts, resourcePack, subPath, true );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the combination of all the mounts found
|
|
||||||
if( mounts.size() >= 2 )
|
|
||||||
{
|
|
||||||
IMount[] mountArray = new IMount[mounts.size()];
|
|
||||||
mounts.toArray( mountArray );
|
|
||||||
return new ComboMount( mountArray );
|
|
||||||
}
|
|
||||||
else if( mounts.size() == 1 )
|
|
||||||
{
|
|
||||||
return mounts.get( 0 );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static InputStream getResourceFile( Class<?> modClass, String domain, String subPath )
|
|
||||||
{
|
|
||||||
// Start searching in possible locations
|
|
||||||
subPath = "assets/" + domain + "/" + subPath;
|
|
||||||
|
|
||||||
// Look in resource packs
|
|
||||||
File resourcePackDir = getResourcePackDir();
|
|
||||||
if( resourcePackDir.exists() && resourcePackDir.isDirectory() )
|
|
||||||
{
|
|
||||||
String[] resourcePacks = resourcePackDir.list();
|
|
||||||
for( String resourcePackPath : resourcePacks )
|
|
||||||
{
|
|
||||||
File resourcePack = new File( resourcePackDir, resourcePackPath );
|
|
||||||
if( resourcePack.isDirectory() )
|
|
||||||
{
|
|
||||||
// Mount a resource pack from a folder
|
|
||||||
File subResource = new File( resourcePack, subPath );
|
|
||||||
if( subResource.exists() && subResource.isFile() )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return new FileInputStream( subResource );
|
|
||||||
}
|
|
||||||
catch( FileNotFoundException ignored )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ZipFile zipFile = null;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
final ZipFile zip = zipFile = new ZipFile( resourcePack );
|
|
||||||
ZipEntry entry = zipFile.getEntry( subPath );
|
|
||||||
if( entry != null )
|
|
||||||
{
|
|
||||||
// Return a custom InputStream which will close the original zip when finished.
|
|
||||||
return new FilterInputStream( zipFile.getInputStream( entry ) )
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException
|
|
||||||
{
|
|
||||||
super.close();
|
|
||||||
zip.close();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
IoUtil.closeQuietly( zipFile );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch( IOException e )
|
|
||||||
{
|
|
||||||
if( zipFile != null ) IoUtil.closeQuietly( zipFile );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Look in debug dir
|
|
||||||
File codeDir = getDebugCodeDir( modClass );
|
|
||||||
if( codeDir != null )
|
|
||||||
{
|
|
||||||
File subResource = new File( codeDir, subPath );
|
|
||||||
if( subResource.exists() && subResource.isFile() )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return new FileInputStream( subResource );
|
|
||||||
}
|
|
||||||
catch( FileNotFoundException ignored )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Look in class loader
|
|
||||||
return modClass.getClassLoader().getResourceAsStream( subPath );
|
|
||||||
}
|
|
||||||
|
|
||||||
private static File getContainingJar( Class<?> modClass )
|
|
||||||
{
|
|
||||||
String path = modClass.getProtectionDomain().getCodeSource().getLocation().getPath();
|
|
||||||
int bangIndex = path.indexOf( '!' );
|
|
||||||
if( bangIndex >= 0 )
|
|
||||||
{
|
|
||||||
path = path.substring( 0, bangIndex );
|
|
||||||
}
|
|
||||||
|
|
||||||
URL url;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
url = new URL( path );
|
|
||||||
}
|
|
||||||
catch( MalformedURLException e1 )
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
File file;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
file = new File( url.toURI() );
|
|
||||||
}
|
|
||||||
catch( URISyntaxException e )
|
|
||||||
{
|
|
||||||
file = new File( url.getPath() );
|
|
||||||
}
|
|
||||||
return file;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static File getDebugCodeDir( Class<?> modClass )
|
|
||||||
{
|
|
||||||
String path = modClass.getProtectionDomain().getCodeSource().getLocation().getPath();
|
|
||||||
int bangIndex = path.indexOf( '!' );
|
|
||||||
return bangIndex >= 0 ? null : new File( new File( path ).getParentFile(), "../.." );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void registerTurtleUpgrade( ITurtleUpgrade upgrade )
|
|
||||||
{
|
|
||||||
dan200.computercraft.shared.TurtleUpgrades.register( upgrade );
|
|
||||||
}
|
|
||||||
|
|
||||||
public static File getWorldDir()
|
|
||||||
{
|
|
||||||
return DimensionManager.getCurrentSaveRootDirectory();
|
|
||||||
}
|
|
||||||
|
|
||||||
//region Compatibility
|
|
||||||
@Deprecated
|
|
||||||
public static File getWorldDir( World world )
|
|
||||||
{
|
|
||||||
return DimensionManager.getCurrentSaveRootDirectory();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IMedia getMedia( ItemStack stack )
|
|
||||||
{
|
|
||||||
return MediaProviders.get( stack );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IPocketUpgrade getPocketUpgrade( ItemStack stack )
|
|
||||||
{
|
|
||||||
return dan200.computercraft.shared.PocketUpgrades.get( stack );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static ITurtleUpgrade getTurtleUpgrade( ItemStack stack )
|
|
||||||
{
|
|
||||||
return dan200.computercraft.shared.TurtleUpgrades.get( stack );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IPocketUpgrade getPocketUpgrade( String id )
|
|
||||||
{
|
|
||||||
return dan200.computercraft.shared.PocketUpgrades.get( id );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static ITurtleUpgrade getTurtleUpgrade( String id )
|
|
||||||
{
|
|
||||||
return dan200.computercraft.shared.TurtleUpgrades.get( id );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static IPeripheral getPeripheralAt( World world, BlockPos pos, EnumFacing side )
|
|
||||||
{
|
|
||||||
return Peripherals.getPeripheral( world, pos, side );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static boolean canPlayerUseCommands( EntityPlayer player )
|
|
||||||
{
|
|
||||||
MinecraftServer server = player.getServer();
|
|
||||||
return server != null && server.getPlayerList().canSendCommands( player.getGameProfile() );
|
|
||||||
}
|
|
||||||
//endregion
|
|
||||||
}
|
}
|
||||||
|
150
src/main/java/dan200/computercraft/ComputerCraftAPIImpl.java
Normal file
150
src/main/java/dan200/computercraft/ComputerCraftAPIImpl.java
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
package dan200.computercraft;
|
||||||
|
|
||||||
|
import dan200.computercraft.api.ComputerCraftAPI.IComputerCraftAPI;
|
||||||
|
import dan200.computercraft.api.filesystem.IMount;
|
||||||
|
import dan200.computercraft.api.filesystem.IWritableMount;
|
||||||
|
import dan200.computercraft.api.lua.ILuaAPIFactory;
|
||||||
|
import dan200.computercraft.api.media.IMediaProvider;
|
||||||
|
import dan200.computercraft.api.network.IPacketNetwork;
|
||||||
|
import dan200.computercraft.api.network.wired.IWiredElement;
|
||||||
|
import dan200.computercraft.api.network.wired.IWiredNode;
|
||||||
|
import dan200.computercraft.api.peripheral.IPeripheralProvider;
|
||||||
|
import dan200.computercraft.api.pocket.IPocketUpgrade;
|
||||||
|
import dan200.computercraft.api.redstone.IBundledRedstoneProvider;
|
||||||
|
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
||||||
|
import dan200.computercraft.core.apis.ApiFactories;
|
||||||
|
import dan200.computercraft.core.filesystem.FileMount;
|
||||||
|
import dan200.computercraft.shared.*;
|
||||||
|
import dan200.computercraft.shared.peripheral.modem.wired.TileCable;
|
||||||
|
import dan200.computercraft.shared.peripheral.modem.wired.TileWiredModemFull;
|
||||||
|
import dan200.computercraft.shared.peripheral.modem.wireless.WirelessNetwork;
|
||||||
|
import dan200.computercraft.shared.util.IDAssigner;
|
||||||
|
import dan200.computercraft.shared.wired.WiredNode;
|
||||||
|
import net.minecraft.block.entity.BlockEntity;
|
||||||
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.math.Direction;
|
||||||
|
import net.minecraft.world.BlockView;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
|
import javax.annotation.Nonnull;
|
||||||
|
import javax.annotation.Nullable;
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
public final class ComputerCraftAPIImpl implements IComputerCraftAPI
|
||||||
|
{
|
||||||
|
public static final ComputerCraftAPIImpl INSTANCE = new ComputerCraftAPIImpl();
|
||||||
|
|
||||||
|
private ComputerCraftAPIImpl()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
@Override
|
||||||
|
public String getInstalledVersion()
|
||||||
|
{
|
||||||
|
return "${version}";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int createUniqueNumberedSaveDir( @Nonnull World world, @Nonnull String parentSubPath )
|
||||||
|
{
|
||||||
|
return IDAssigner.getNextId( world, parentSubPath );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IWritableMount createSaveDirMount( @Nonnull World world, @Nonnull String subPath, long capacity )
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return new FileMount( new File( IDAssigner.getDir( world ), subPath ), capacity );
|
||||||
|
}
|
||||||
|
catch( Exception e )
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IMount createResourceMount( @Nonnull String domain, @Nonnull String subPath )
|
||||||
|
{
|
||||||
|
return ComputerCraft.createResourceMount( domain, subPath );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerPeripheralProvider( @Nonnull IPeripheralProvider provider )
|
||||||
|
{
|
||||||
|
Peripherals.register( provider );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerTurtleUpgrade( @Nonnull ITurtleUpgrade upgrade )
|
||||||
|
{
|
||||||
|
TurtleUpgrades.register( upgrade );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerBundledRedstoneProvider( @Nonnull IBundledRedstoneProvider provider )
|
||||||
|
{
|
||||||
|
BundledRedstone.register( provider );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getBundledRedstoneOutput( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull Direction side )
|
||||||
|
{
|
||||||
|
return BundledRedstone.getDefaultOutput( world, pos, side );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerMediaProvider( @Nonnull IMediaProvider provider )
|
||||||
|
{
|
||||||
|
MediaProviders.register( provider );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerPocketUpgrade( @Nonnull IPocketUpgrade upgrade )
|
||||||
|
{
|
||||||
|
PocketUpgrades.register( upgrade );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
@Override
|
||||||
|
public IPacketNetwork getWirelessNetwork()
|
||||||
|
{
|
||||||
|
return WirelessNetwork.getUniversal();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerAPIFactory( @Nonnull ILuaAPIFactory factory )
|
||||||
|
{
|
||||||
|
ApiFactories.register( factory );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
@Override
|
||||||
|
public IWiredNode createWiredNodeForElement( @Nonnull IWiredElement element )
|
||||||
|
{
|
||||||
|
return new WiredNode( element );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
@Override
|
||||||
|
public IWiredElement getWiredElementAt( @Nonnull BlockView world, @Nonnull BlockPos pos, @Nonnull Direction side )
|
||||||
|
{
|
||||||
|
BlockEntity tile = world.getBlockEntity( pos );
|
||||||
|
if( tile instanceof TileCable )
|
||||||
|
{
|
||||||
|
return ((TileCable) tile).getElement( side );
|
||||||
|
}
|
||||||
|
else if( tile instanceof TileWiredModemFull )
|
||||||
|
{
|
||||||
|
return ((TileWiredModemFull) tile).getElement();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@@ -1,16 +1,17 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api;
|
package dan200.computercraft.api;
|
||||||
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
||||||
import dan200.computercraft.api.turtle.TurtleUpgradeType;
|
import dan200.computercraft.api.turtle.TurtleUpgradeType;
|
||||||
import net.minecraft.block.Block;
|
import net.minecraft.item.ItemProvider;
|
||||||
import net.minecraft.item.Item;
|
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.Identifier;
|
||||||
|
import net.minecraft.util.SystemUtil;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
@@ -21,59 +22,41 @@ import javax.annotation.Nonnull;
|
|||||||
*/
|
*/
|
||||||
public abstract class AbstractTurtleUpgrade implements ITurtleUpgrade
|
public abstract class AbstractTurtleUpgrade implements ITurtleUpgrade
|
||||||
{
|
{
|
||||||
private final ResourceLocation id;
|
private final Identifier id;
|
||||||
private final int legacyId;
|
|
||||||
private final TurtleUpgradeType type;
|
private final TurtleUpgradeType type;
|
||||||
private final String adjective;
|
private final String adjective;
|
||||||
private final ItemStack stack;
|
private final ItemStack stack;
|
||||||
|
|
||||||
protected AbstractTurtleUpgrade( ResourceLocation id, int legacyId, TurtleUpgradeType type, String adjective, ItemStack stack )
|
protected AbstractTurtleUpgrade( Identifier id, TurtleUpgradeType type, String adjective, ItemStack stack )
|
||||||
{
|
{
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.legacyId = legacyId;
|
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.adjective = adjective;
|
this.adjective = adjective;
|
||||||
this.stack = stack;
|
this.stack = stack;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AbstractTurtleUpgrade( ResourceLocation id, int legacyId, TurtleUpgradeType type, String adjective, Item item )
|
protected AbstractTurtleUpgrade( Identifier id, TurtleUpgradeType type, String adjective, ItemProvider item )
|
||||||
{
|
{
|
||||||
this( id, legacyId, type, adjective, new ItemStack( item ) );
|
this( id, type, adjective, new ItemStack( item ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AbstractTurtleUpgrade( ResourceLocation id, int legacyId, TurtleUpgradeType type, String adjective, Block block )
|
protected AbstractTurtleUpgrade( Identifier id, TurtleUpgradeType type, ItemStack stack )
|
||||||
{
|
{
|
||||||
this( id, legacyId, type, adjective, new ItemStack( block ) );
|
this( id, type, SystemUtil.createTranslationKey( "upgrade", id ) + ".adjective", stack );
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AbstractTurtleUpgrade( ResourceLocation id, int legacyId, TurtleUpgradeType type, ItemStack stack )
|
protected AbstractTurtleUpgrade( Identifier id, TurtleUpgradeType type, ItemProvider item )
|
||||||
{
|
{
|
||||||
this( id, legacyId, type, "upgrade." + id + ".adjective", stack );
|
this( id, type, new ItemStack( item ) );
|
||||||
}
|
|
||||||
|
|
||||||
protected AbstractTurtleUpgrade( ResourceLocation id, int legacyId, TurtleUpgradeType type, Item item )
|
|
||||||
{
|
|
||||||
this( id, legacyId, type, new ItemStack( item ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
protected AbstractTurtleUpgrade( ResourceLocation id, int legacyId, TurtleUpgradeType type, Block block )
|
|
||||||
{
|
|
||||||
this( id, legacyId, type, new ItemStack( block ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@Override
|
@Override
|
||||||
public final ResourceLocation getUpgradeID()
|
public final Identifier getUpgradeID()
|
||||||
{
|
{
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public final int getLegacyUpgradeID()
|
|
||||||
{
|
|
||||||
return legacyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@Override
|
@Override
|
||||||
public final String getUnlocalisedAdjective()
|
public final String getUnlocalisedAdjective()
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api;
|
package dan200.computercraft.api;
|
||||||
|
|
||||||
import dan200.computercraft.api.filesystem.IMount;
|
import dan200.computercraft.api.filesystem.IMount;
|
||||||
@@ -16,49 +17,28 @@ import dan200.computercraft.api.network.wired.IWiredNode;
|
|||||||
import dan200.computercraft.api.peripheral.IComputerAccess;
|
import dan200.computercraft.api.peripheral.IComputerAccess;
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
import dan200.computercraft.api.peripheral.IPeripheralProvider;
|
import dan200.computercraft.api.peripheral.IPeripheralProvider;
|
||||||
import dan200.computercraft.api.permissions.ITurtlePermissionProvider;
|
|
||||||
import dan200.computercraft.api.pocket.IPocketUpgrade;
|
import dan200.computercraft.api.pocket.IPocketUpgrade;
|
||||||
import dan200.computercraft.api.redstone.IBundledRedstoneProvider;
|
import dan200.computercraft.api.redstone.IBundledRedstoneProvider;
|
||||||
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.IBlockAccess;
|
import net.minecraft.util.math.Direction;
|
||||||
|
import net.minecraft.world.BlockView;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.lang.reflect.Method;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The static entry point to the ComputerCraft API.
|
* The static entry point to the ComputerCraft API.
|
||||||
*
|
* Members in this class must be called after mod_ComputerCraft has been initialised,
|
||||||
* Members in this class must be called after mod_ComputerCraft has been initialised, but may be called before it is
|
* but may be called before it is fully loaded.
|
||||||
* fully loaded.
|
|
||||||
*/
|
*/
|
||||||
public final class ComputerCraftAPI
|
public final class ComputerCraftAPI
|
||||||
{
|
{
|
||||||
public static boolean isInstalled()
|
|
||||||
{
|
|
||||||
findCC();
|
|
||||||
return computerCraft != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
public static String getInstalledVersion()
|
public static String getInstalledVersion()
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().getInstalledVersion();
|
||||||
if( computerCraft_getVersion != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (String) computerCraft_getVersion.invoke( null );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@@ -82,19 +62,7 @@ public final class ComputerCraftAPI
|
|||||||
*/
|
*/
|
||||||
public static int createUniqueNumberedSaveDir( @Nonnull World world, @Nonnull String parentSubPath )
|
public static int createUniqueNumberedSaveDir( @Nonnull World world, @Nonnull String parentSubPath )
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().createUniqueNumberedSaveDir( world, parentSubPath );
|
||||||
if( computerCraft_createUniqueNumberedSaveDir != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (Integer) computerCraft_createUniqueNumberedSaveDir.invoke( null, world, parentSubPath );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -118,55 +86,54 @@ public final class ComputerCraftAPI
|
|||||||
@Nullable
|
@Nullable
|
||||||
public static IWritableMount createSaveDirMount( @Nonnull World world, @Nonnull String subPath, long capacity )
|
public static IWritableMount createSaveDirMount( @Nonnull World world, @Nonnull String subPath, long capacity )
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().createSaveDirMount( world, subPath, capacity );
|
||||||
if( computerCraft_createSaveDirMount != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (IWritableMount) computerCraft_createSaveDirMount.invoke( null, world, subPath, capacity );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a file system mount to a resource folder, and returns it.
|
* Creates a file system mount to a resource folder, and returns it.
|
||||||
*
|
*
|
||||||
* Use in conjunction with IComputerAccess.mount() or IComputerAccess.mountWritable() to mount a resource folder
|
* Use in conjunction with {@link IComputerAccess#mount} or {@link IComputerAccess#mountWritable} to mount a
|
||||||
* onto a computer's file system.
|
* resource folder onto a computer's file system.
|
||||||
*
|
*
|
||||||
* The files in this mount will be a combination of files in the specified mod jar, and resource packs that contain
|
* The files in this mount will be a combination of files in all mod jar, and data packs that contain
|
||||||
* resources with the same domain and path.
|
* resources with the same domain and path.
|
||||||
*
|
*
|
||||||
* @param modClass A class in whose jar to look first for the resources to mount. Using your main mod class is recommended. eg: MyMod.class
|
* @param domain The domain under which to look for resources. eg: "mymod".
|
||||||
* @param domain The domain under which to look for resources. eg: "mymod".
|
* @param subPath The subPath under which to look for resources. eg: "lua/myfiles".
|
||||||
* @param subPath The domain under which to look for resources. eg: "mymod/lua/myfiles".
|
* @return The mount, or {@code null} if it could be created for some reason.
|
||||||
* @return The mount, or {@code null} if it could be created for some reason. Use IComputerAccess.mount() or
|
|
||||||
* IComputerAccess.mountWritable() to mount this on a Computers' file system.
|
|
||||||
* @see IComputerAccess#mount(String, IMount)
|
* @see IComputerAccess#mount(String, IMount)
|
||||||
* @see IComputerAccess#mountWritable(String, IWritableMount)
|
* @see IComputerAccess#mountWritable(String, IWritableMount)
|
||||||
* @see IMount
|
* @see IMount
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public static IMount createResourceMount( @Nonnull Class<?> modClass, @Nonnull String domain, @Nonnull String subPath )
|
public static IMount createResourceMount( @Nonnull String domain, @Nonnull String subPath )
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().createResourceMount( domain, subPath );
|
||||||
if( computerCraft_createResourceMount != null )
|
}
|
||||||
{
|
|
||||||
try
|
/**
|
||||||
{
|
* Creates a file system mount to a resource folder, and returns it.
|
||||||
return (IMount) computerCraft_createResourceMount.invoke( null, modClass, domain, subPath );
|
*
|
||||||
}
|
* Use in conjunction with {@link IComputerAccess#mount} or {@link IComputerAccess#mountWritable} to mount a
|
||||||
catch( Exception e )
|
* resource folder onto a computer's file system.
|
||||||
{
|
*
|
||||||
// It failed
|
* The files in this mount will be a combination of files in all mod jar, and data packs that contain
|
||||||
}
|
* resources with the same domain and path.
|
||||||
}
|
*
|
||||||
return null;
|
* @param klass The mod class to which the files belong.
|
||||||
|
* @param domain The domain under which to look for resources. eg: "mymod".
|
||||||
|
* @param subPath The subPath under which to look for resources. eg: "lua/myfiles".
|
||||||
|
* @return The mount, or {@code null} if it could be created for some reason.
|
||||||
|
* @see IComputerAccess#mount(String, IMount)
|
||||||
|
* @see IComputerAccess#mountWritable(String, IWritableMount)
|
||||||
|
* @see IMount
|
||||||
|
* @deprecated Use {@link #createResourceMount(String, String)} instead.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
@Deprecated
|
||||||
|
public static IMount createResourceMount( Class<?> klass, @Nonnull String domain, @Nonnull String subPath )
|
||||||
|
{
|
||||||
|
return getInstance().createResourceMount( domain, subPath );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -178,18 +145,7 @@ public final class ComputerCraftAPI
|
|||||||
*/
|
*/
|
||||||
public static void registerPeripheralProvider( @Nonnull IPeripheralProvider provider )
|
public static void registerPeripheralProvider( @Nonnull IPeripheralProvider provider )
|
||||||
{
|
{
|
||||||
findCC();
|
getInstance().registerPeripheralProvider( provider );
|
||||||
if( computerCraft_registerPeripheralProvider != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerPeripheralProvider.invoke( null, provider );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -202,21 +158,7 @@ public final class ComputerCraftAPI
|
|||||||
*/
|
*/
|
||||||
public static void registerTurtleUpgrade( @Nonnull ITurtleUpgrade upgrade )
|
public static void registerTurtleUpgrade( @Nonnull ITurtleUpgrade upgrade )
|
||||||
{
|
{
|
||||||
if( upgrade != null )
|
getInstance().registerTurtleUpgrade( upgrade );
|
||||||
{
|
|
||||||
findCC();
|
|
||||||
if( computerCraft_registerTurtleUpgrade != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerTurtleUpgrade.invoke( null, upgrade );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -227,18 +169,7 @@ public final class ComputerCraftAPI
|
|||||||
*/
|
*/
|
||||||
public static void registerBundledRedstoneProvider( @Nonnull IBundledRedstoneProvider provider )
|
public static void registerBundledRedstoneProvider( @Nonnull IBundledRedstoneProvider provider )
|
||||||
{
|
{
|
||||||
findCC();
|
getInstance().registerBundledRedstoneProvider( provider );
|
||||||
if( computerCraft_registerBundledRedstoneProvider != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerBundledRedstoneProvider.invoke( null, provider );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -251,83 +182,25 @@ public final class ComputerCraftAPI
|
|||||||
* If there is no block capable of emitting bundled redstone at the location, -1 will be returned.
|
* If there is no block capable of emitting bundled redstone at the location, -1 will be returned.
|
||||||
* @see IBundledRedstoneProvider
|
* @see IBundledRedstoneProvider
|
||||||
*/
|
*/
|
||||||
public static int getBundledRedstoneOutput( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull EnumFacing side )
|
public static int getBundledRedstoneOutput( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull Direction side )
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().getBundledRedstoneOutput( world, pos, side );
|
||||||
if( computerCraft_getDefaultBundledRedstoneOutput != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (Integer) computerCraft_getDefaultBundledRedstoneOutput.invoke( null, world, pos, side );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers a media provider to provide {@link IMedia} implementations for Items.
|
* Registers a media provider to provide {@link IMedia} implementations for Items
|
||||||
*
|
*
|
||||||
* @param provider The media provider to register.
|
* @param provider The media provider to register.
|
||||||
* @see IMediaProvider
|
* @see IMediaProvider
|
||||||
*/
|
*/
|
||||||
public static void registerMediaProvider( @Nonnull IMediaProvider provider )
|
public static void registerMediaProvider( @Nonnull IMediaProvider provider )
|
||||||
{
|
{
|
||||||
findCC();
|
getInstance().registerMediaProvider( provider );
|
||||||
if( computerCraft_registerMediaProvider != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerMediaProvider.invoke( null, provider );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a permission provider to restrict where turtles can move or build.
|
|
||||||
*
|
|
||||||
* @param provider The turtle permission provider to register.
|
|
||||||
* @see ITurtlePermissionProvider
|
|
||||||
* @deprecated Prefer using {@link dan200.computercraft.api.turtle.event.TurtleBlockEvent} or the standard Forge events.
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public static void registerPermissionProvider( @Nonnull ITurtlePermissionProvider provider )
|
|
||||||
{
|
|
||||||
findCC();
|
|
||||||
if( computerCraft_registerPermissionProvider != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerPermissionProvider.invoke( null, provider );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void registerPocketUpgrade( @Nonnull IPocketUpgrade upgrade )
|
public static void registerPocketUpgrade( @Nonnull IPocketUpgrade upgrade )
|
||||||
{
|
{
|
||||||
findCC();
|
getInstance().registerPocketUpgrade( upgrade );
|
||||||
if( computerCraft_registerPocketUpgrade != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerPocketUpgrade.invoke( null, upgrade );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -337,40 +210,16 @@ public final class ComputerCraftAPI
|
|||||||
*/
|
*/
|
||||||
public static IPacketNetwork getWirelessNetwork()
|
public static IPacketNetwork getWirelessNetwork()
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().getWirelessNetwork();
|
||||||
if( computerCraft_getWirelessNetwork != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (IPacketNetwork) computerCraft_getWirelessNetwork.invoke( null );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void registerAPIFactory( @Nonnull ILuaAPIFactory upgrade )
|
public static void registerAPIFactory( @Nonnull ILuaAPIFactory factory )
|
||||||
{
|
{
|
||||||
findCC();
|
getInstance().registerAPIFactory( factory );
|
||||||
if( computerCraft_registerAPIFactory != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft_registerAPIFactory.invoke( null, upgrade );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
// It failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a new wired node for a given wired element.
|
* Construct a new wired node for a given wired element
|
||||||
*
|
*
|
||||||
* @param element The element to construct it for
|
* @param element The element to construct it for
|
||||||
* @return The element's node
|
* @return The element's node
|
||||||
@@ -379,26 +228,11 @@ public final class ComputerCraftAPI
|
|||||||
@Nonnull
|
@Nonnull
|
||||||
public static IWiredNode createWiredNodeForElement( @Nonnull IWiredElement element )
|
public static IWiredNode createWiredNodeForElement( @Nonnull IWiredElement element )
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().createWiredNodeForElement( element );
|
||||||
if( computerCraft_createWiredNodeForElement != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (IWiredNode) computerCraft_createWiredNodeForElement.invoke( null, element );
|
|
||||||
}
|
|
||||||
catch( ReflectiveOperationException e )
|
|
||||||
{
|
|
||||||
throw new IllegalStateException( "Error creating wired node", e );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
throw new IllegalStateException( "ComputerCraft cannot be found" );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the wired network element for a block in world.
|
* Get the wired network element for a block in world
|
||||||
*
|
*
|
||||||
* @param world The world the block exists in
|
* @param world The world the block exists in
|
||||||
* @param pos The position the block exists in
|
* @param pos The position the block exists in
|
||||||
@@ -407,117 +241,63 @@ public final class ComputerCraftAPI
|
|||||||
* @see IWiredElement#getNode()
|
* @see IWiredElement#getNode()
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public static IWiredElement getWiredElementAt( @Nonnull IBlockAccess world, @Nonnull BlockPos pos, @Nonnull EnumFacing side )
|
public static IWiredElement getWiredElementAt( @Nonnull BlockView world, @Nonnull BlockPos pos, @Nonnull Direction side )
|
||||||
{
|
{
|
||||||
findCC();
|
return getInstance().getWiredElementAt( world, pos, side );
|
||||||
if( computerCraft_getWiredElementAt != null )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (IWiredElement) computerCraft_getWiredElementAt.invoke( null, world, pos, side );
|
|
||||||
}
|
|
||||||
catch( ReflectiveOperationException ignored )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// The functions below here are private, and are used to interface with the non-API ComputerCraft classes.
|
private static IComputerCraftAPI instance;
|
||||||
// Reflection is used here so you can develop your mod without decompiling ComputerCraft and including
|
|
||||||
// it in your solution, and so your mod won't crash if ComputerCraft is installed.
|
|
||||||
|
|
||||||
private static void findCC()
|
@Nonnull
|
||||||
|
private static IComputerCraftAPI getInstance()
|
||||||
{
|
{
|
||||||
if( !ccSearched )
|
if( instance != null ) return instance;
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
computerCraft = Class.forName( "dan200.computercraft.ComputerCraft" );
|
|
||||||
computerCraft_getVersion = findCCMethod( "getVersion", new Class<?>[] {
|
|
||||||
} );
|
|
||||||
computerCraft_createUniqueNumberedSaveDir = findCCMethod( "createUniqueNumberedSaveDir", new Class<?>[] {
|
|
||||||
World.class, String.class,
|
|
||||||
} );
|
|
||||||
computerCraft_createSaveDirMount = findCCMethod( "createSaveDirMount", new Class<?>[] {
|
|
||||||
World.class, String.class, Long.TYPE,
|
|
||||||
} );
|
|
||||||
computerCraft_createResourceMount = findCCMethod( "createResourceMount", new Class<?>[] {
|
|
||||||
Class.class, String.class, String.class,
|
|
||||||
} );
|
|
||||||
computerCraft_registerPeripheralProvider = findCCMethod( "registerPeripheralProvider", new Class<?>[] {
|
|
||||||
IPeripheralProvider.class,
|
|
||||||
} );
|
|
||||||
computerCraft_registerTurtleUpgrade = findCCMethod( "registerTurtleUpgrade", new Class<?>[] {
|
|
||||||
ITurtleUpgrade.class,
|
|
||||||
} );
|
|
||||||
computerCraft_registerBundledRedstoneProvider = findCCMethod( "registerBundledRedstoneProvider", new Class<?>[] {
|
|
||||||
IBundledRedstoneProvider.class,
|
|
||||||
} );
|
|
||||||
computerCraft_getDefaultBundledRedstoneOutput = findCCMethod( "getDefaultBundledRedstoneOutput", new Class<?>[] {
|
|
||||||
World.class, BlockPos.class, EnumFacing.class,
|
|
||||||
} );
|
|
||||||
computerCraft_registerMediaProvider = findCCMethod( "registerMediaProvider", new Class<?>[] {
|
|
||||||
IMediaProvider.class,
|
|
||||||
} );
|
|
||||||
computerCraft_registerPermissionProvider = findCCMethod( "registerPermissionProvider", new Class<?>[] {
|
|
||||||
ITurtlePermissionProvider.class,
|
|
||||||
} );
|
|
||||||
computerCraft_registerPocketUpgrade = findCCMethod( "registerPocketUpgrade", new Class<?>[] {
|
|
||||||
IPocketUpgrade.class,
|
|
||||||
} );
|
|
||||||
computerCraft_getWirelessNetwork = findCCMethod( "getWirelessNetwork", new Class<?>[] {
|
|
||||||
} );
|
|
||||||
computerCraft_registerAPIFactory = findCCMethod( "registerAPIFactory", new Class<?>[] {
|
|
||||||
ILuaAPIFactory.class,
|
|
||||||
} );
|
|
||||||
computerCraft_createWiredNodeForElement = findCCMethod( "createWiredNodeForElement", new Class<?>[] {
|
|
||||||
IWiredElement.class,
|
|
||||||
} );
|
|
||||||
computerCraft_getWiredElementAt = findCCMethod( "getWiredElementAt", new Class<?>[] {
|
|
||||||
IBlockAccess.class, BlockPos.class, EnumFacing.class,
|
|
||||||
} );
|
|
||||||
}
|
|
||||||
catch( Exception e )
|
|
||||||
{
|
|
||||||
System.err.println( "ComputerCraftAPI: ComputerCraft not found." );
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
ccSearched = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Method findCCMethod( String name, Class<?>[] args )
|
|
||||||
{
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return computerCraft != null ? computerCraft.getMethod( name, args ) : null;
|
return instance = (IComputerCraftAPI) Class.forName( "dan200.computercraft.ComputerCraftAPIImpl" )
|
||||||
|
.getField( "INSTANCE" ).get( null );
|
||||||
}
|
}
|
||||||
catch( NoSuchMethodException e )
|
catch( ReflectiveOperationException e )
|
||||||
{
|
{
|
||||||
System.err.println( "ComputerCraftAPI: ComputerCraft method " + name + " not found." );
|
throw new IllegalStateException( "Cannot find ComputerCraft API", e );
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean ccSearched = false;
|
public interface IComputerCraftAPI
|
||||||
private static Class<?> computerCraft = null;
|
{
|
||||||
private static Method computerCraft_getVersion = null;
|
@Nonnull
|
||||||
private static Method computerCraft_createUniqueNumberedSaveDir = null;
|
String getInstalledVersion();
|
||||||
private static Method computerCraft_createSaveDirMount = null;
|
|
||||||
private static Method computerCraft_createResourceMount = null;
|
int createUniqueNumberedSaveDir( @Nonnull World world, @Nonnull String parentSubPath );
|
||||||
private static Method computerCraft_registerPeripheralProvider = null;
|
|
||||||
private static Method computerCraft_registerTurtleUpgrade = null;
|
@Nullable
|
||||||
private static Method computerCraft_registerBundledRedstoneProvider = null;
|
IWritableMount createSaveDirMount( @Nonnull World world, @Nonnull String subPath, long capacity );
|
||||||
private static Method computerCraft_getDefaultBundledRedstoneOutput = null;
|
|
||||||
private static Method computerCraft_registerMediaProvider = null;
|
@Nullable
|
||||||
private static Method computerCraft_registerPermissionProvider = null;
|
IMount createResourceMount( @Nonnull String domain, @Nonnull String subPath );
|
||||||
private static Method computerCraft_registerPocketUpgrade = null;
|
|
||||||
private static Method computerCraft_getWirelessNetwork = null;
|
void registerPeripheralProvider( @Nonnull IPeripheralProvider provider );
|
||||||
private static Method computerCraft_registerAPIFactory = null;
|
|
||||||
private static Method computerCraft_createWiredNodeForElement = null;
|
void registerTurtleUpgrade( @Nonnull ITurtleUpgrade upgrade );
|
||||||
private static Method computerCraft_getWiredElementAt = null;
|
|
||||||
|
void registerBundledRedstoneProvider( @Nonnull IBundledRedstoneProvider provider );
|
||||||
|
|
||||||
|
int getBundledRedstoneOutput( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull Direction side );
|
||||||
|
|
||||||
|
void registerMediaProvider( @Nonnull IMediaProvider provider );
|
||||||
|
|
||||||
|
void registerPocketUpgrade( @Nonnull IPocketUpgrade upgrade );
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
IPacketNetwork getWirelessNetwork();
|
||||||
|
|
||||||
|
void registerAPIFactory( @Nonnull ILuaAPIFactory factory );
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
IWiredNode createWiredNodeForElement( @Nonnull IWiredElement element );
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
IWiredElement getWiredElementAt( @Nonnull BlockView world, @Nonnull BlockPos pos, @Nonnull Direction side );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,41 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
package dan200.computercraft.api.filesystem;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An {@link IOException} which occurred on a specific file.
|
|
||||||
*
|
|
||||||
* This may be thrown from a {@link IMount} or {@link IWritableMount} to give more information about a failure.
|
|
||||||
*/
|
|
||||||
public class FileOperationException extends IOException
|
|
||||||
{
|
|
||||||
private static final long serialVersionUID = -8809108200853029849L;
|
|
||||||
|
|
||||||
private final String filename;
|
|
||||||
|
|
||||||
public FileOperationException( @Nullable String filename, @Nonnull String message )
|
|
||||||
{
|
|
||||||
super( Objects.requireNonNull( message, "message cannot be null" ) );
|
|
||||||
this.filename = filename;
|
|
||||||
}
|
|
||||||
|
|
||||||
public FileOperationException( String message )
|
|
||||||
{
|
|
||||||
super( Objects.requireNonNull( message, "message cannot be null" ) );
|
|
||||||
this.filename = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
public String getFilename()
|
|
||||||
{
|
|
||||||
return filename;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.filesystem;
|
package dan200.computercraft.api.filesystem;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.filesystem;
|
package dan200.computercraft.api.filesystem;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
@@ -18,7 +19,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a read only part of a virtual filesystem that can be mounted onto a computer using
|
* Represents a read only part of a virtual filesystem that can be mounted onto a computer using
|
||||||
* {@link IComputerAccess#mount(String, IMount)}.
|
* {@link IComputerAccess#mount(String, IMount)}
|
||||||
*
|
*
|
||||||
* Ready made implementations of this interface can be created using
|
* Ready made implementations of this interface can be created using
|
||||||
* {@link ComputerCraftAPI#createSaveDirMount(World, String, long)} or
|
* {@link ComputerCraftAPI#createSaveDirMount(World, String, long)} or
|
||||||
@@ -59,7 +60,7 @@ public interface IMount
|
|||||||
void list( @Nonnull String path, @Nonnull List<String> contents ) throws IOException;
|
void list( @Nonnull String path, @Nonnull List<String> contents ) throws IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the size of a file with a given path, in bytes.
|
* Returns the size of a file with a given path, in bytes
|
||||||
*
|
*
|
||||||
* @param path A file path in normalised format, relative to the mount location. ie: "programs/myprogram".
|
* @param path A file path in normalised format, relative to the mount location. ie: "programs/myprogram".
|
||||||
* @return The size of the file, in bytes.
|
* @return The size of the file, in bytes.
|
||||||
@@ -89,6 +90,7 @@ public interface IMount
|
|||||||
* @throws IOException If the file does not exist, or could not be opened.
|
* @throws IOException If the file does not exist, or could not be opened.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
@SuppressWarnings( "deprecation" )
|
||||||
default ReadableByteChannel openChannelForRead( @Nonnull String path ) throws IOException
|
default ReadableByteChannel openChannelForRead( @Nonnull String path ) throws IOException
|
||||||
{
|
{
|
||||||
return Channels.newChannel( openForRead( path ) );
|
return Channels.newChannel( openForRead( path ) );
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.filesystem;
|
package dan200.computercraft.api.filesystem;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
@@ -66,6 +67,7 @@ public interface IWritableMount extends IMount
|
|||||||
* @throws IOException If the file could not be opened for writing.
|
* @throws IOException If the file could not be opened for writing.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
@SuppressWarnings( "deprecation" )
|
||||||
default WritableByteChannel openChannelForWrite( @Nonnull String path ) throws IOException
|
default WritableByteChannel openChannelForWrite( @Nonnull String path ) throws IOException
|
||||||
{
|
{
|
||||||
return Channels.newChannel( openForWrite( path ) );
|
return Channels.newChannel( openForWrite( path ) );
|
||||||
@@ -92,6 +94,7 @@ public interface IWritableMount extends IMount
|
|||||||
* @throws IOException If the file could not be opened for writing.
|
* @throws IOException If the file could not be opened for writing.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
@SuppressWarnings( "deprecation" )
|
||||||
default WritableByteChannel openChannelForAppend( @Nonnull String path ) throws IOException
|
default WritableByteChannel openChannelForAppend( @Nonnull String path ) throws IOException
|
||||||
{
|
{
|
||||||
return Channels.newChannel( openForAppend( path ) );
|
return Channels.newChannel( openForAppend( path ) );
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|FileSystem", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.filesystem;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,334 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
package dan200.computercraft.api.lua;
|
|
||||||
|
|
||||||
import dan200.computercraft.api.peripheral.IComputerAccess;
|
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides methods for extracting values and validating Lua arguments, such as those provided to
|
|
||||||
* {@link ILuaObject#callMethod(ILuaContext, int, Object[])} or
|
|
||||||
* {@link IPeripheral#callMethod(IComputerAccess, ILuaContext, int, Object[])}.
|
|
||||||
*
|
|
||||||
* This provides two sets of functions: the {@code get*} methods, which require an argument to be valid, and
|
|
||||||
* {@code opt*}, which accept a default value and return that if the argument was not present or was {@code null}.
|
|
||||||
* If the argument is of the wrong type, a suitable error message will be thrown, with a similar format to Lua's own
|
|
||||||
* error messages.
|
|
||||||
*
|
|
||||||
* <h2>Example usage:</h2>
|
|
||||||
* <pre>
|
|
||||||
* {@code
|
|
||||||
* int slot = getInt( args, 0 );
|
|
||||||
* int amount = optInt( args, 1, 64 );
|
|
||||||
* }
|
|
||||||
* </pre>
|
|
||||||
*/
|
|
||||||
public final class ArgumentHelper
|
|
||||||
{
|
|
||||||
private ArgumentHelper()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a string representation of the given value's type.
|
|
||||||
*
|
|
||||||
* @param value The value whose type we are trying to compute.
|
|
||||||
* @return A string representation of the given value's type, in a similar format to that provided by Lua's
|
|
||||||
* {@code type} function.
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
public static String getType( @Nullable Object value )
|
|
||||||
{
|
|
||||||
if( value == null ) return "nil";
|
|
||||||
if( value instanceof String ) return "string";
|
|
||||||
if( value instanceof Boolean ) return "boolean";
|
|
||||||
if( value instanceof Number ) return "number";
|
|
||||||
if( value instanceof Map ) return "table";
|
|
||||||
return "userdata";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Construct a "bad argument" exception, from an expected type and the actual value provided.
|
|
||||||
*
|
|
||||||
* @param index The argument number, starting from 0.
|
|
||||||
* @param expected The expected type for this argument.
|
|
||||||
* @param actual The actual value provided for this argument.
|
|
||||||
* @return The constructed exception, which should be thrown immediately.
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
public static LuaException badArgumentOf( int index, @Nonnull String expected, @Nullable Object actual )
|
|
||||||
{
|
|
||||||
return badArgument( index, expected, getType( actual ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Construct a "bad argument" exception, from an expected and actual type.
|
|
||||||
*
|
|
||||||
* @param index The argument number, starting from 0.
|
|
||||||
* @param expected The expected type for this argument.
|
|
||||||
* @param actual The provided type for this argument.
|
|
||||||
* @return The constructed exception, which should be thrown immediately.
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
public static LuaException badArgument( int index, @Nonnull String expected, @Nonnull String actual )
|
|
||||||
{
|
|
||||||
return new LuaException( "bad argument #" + (index + 1) + " (" + expected + " expected, got " + actual + ")" );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a double.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not a number.
|
|
||||||
* @see #getFiniteDouble(Object[], int) if you require this to be finite (i.e. not infinite or NaN).
|
|
||||||
*/
|
|
||||||
public static double getDouble( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
if( index >= args.length ) throw badArgument( index, "number", "nil" );
|
|
||||||
Object value = args[index];
|
|
||||||
if( !(value instanceof Number) ) throw badArgumentOf( index, "number", value );
|
|
||||||
return ((Number) value).doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as an integer.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not an integer.
|
|
||||||
*/
|
|
||||||
public static int getInt( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
return (int) getLong( args, index );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a long.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not a long.
|
|
||||||
*/
|
|
||||||
public static long getLong( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
if( index >= args.length ) throw badArgument( index, "number", "nil" );
|
|
||||||
Object value = args[index];
|
|
||||||
if( !(value instanceof Number) ) throw badArgumentOf( index, "number", value );
|
|
||||||
return checkFinite( index, (Number) value ).longValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a finite number (not infinite or NaN).
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not finite.
|
|
||||||
*/
|
|
||||||
public static double getFiniteDouble( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
return checkFinite( index, getDouble( args, index ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a boolean.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not a boolean.
|
|
||||||
*/
|
|
||||||
public static boolean getBoolean( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
if( index >= args.length ) throw badArgument( index, "boolean", "nil" );
|
|
||||||
Object value = args[index];
|
|
||||||
if( !(value instanceof Boolean) ) throw badArgumentOf( index, "boolean", value );
|
|
||||||
return (Boolean) value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a string.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not a string.
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
public static String getString( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
if( index >= args.length ) throw badArgument( index, "string", "nil" );
|
|
||||||
Object value = args[index];
|
|
||||||
if( !(value instanceof String) ) throw badArgumentOf( index, "string", value );
|
|
||||||
return (String) value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a table.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @return The argument's value.
|
|
||||||
* @throws LuaException If the value is not a table.
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
public static Map<?, ?> getTable( @Nonnull Object[] args, int index ) throws LuaException
|
|
||||||
{
|
|
||||||
if( index >= args.length ) throw badArgument( index, "table", "nil" );
|
|
||||||
Object value = args[index];
|
|
||||||
if( !(value instanceof Map) ) throw badArgumentOf( index, "table", value );
|
|
||||||
return (Map<?, ?>) value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a double.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not a number.
|
|
||||||
*/
|
|
||||||
public static double optDouble( @Nonnull Object[] args, int index, double def ) throws LuaException
|
|
||||||
{
|
|
||||||
Object value = index < args.length ? args[index] : null;
|
|
||||||
if( value == null ) return def;
|
|
||||||
if( !(value instanceof Number) ) throw badArgumentOf( index, "number", value );
|
|
||||||
return ((Number) value).doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as an int.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not a number.
|
|
||||||
*/
|
|
||||||
public static int optInt( @Nonnull Object[] args, int index, int def ) throws LuaException
|
|
||||||
{
|
|
||||||
return (int) optLong( args, index, def );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a long.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not a number.
|
|
||||||
*/
|
|
||||||
public static long optLong( @Nonnull Object[] args, int index, long def ) throws LuaException
|
|
||||||
{
|
|
||||||
Object value = index < args.length ? args[index] : null;
|
|
||||||
if( value == null ) return def;
|
|
||||||
if( !(value instanceof Number) ) throw badArgumentOf( index, "number", value );
|
|
||||||
return checkFinite( index, (Number) value ).longValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a finite number (not infinite or NaN).
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not finite.
|
|
||||||
*/
|
|
||||||
public static double optFiniteDouble( @Nonnull Object[] args, int index, double def ) throws LuaException
|
|
||||||
{
|
|
||||||
return checkFinite( index, optDouble( args, index, def ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a boolean.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not a boolean.
|
|
||||||
*/
|
|
||||||
public static boolean optBoolean( @Nonnull Object[] args, int index, boolean def ) throws LuaException
|
|
||||||
{
|
|
||||||
Object value = index < args.length ? args[index] : null;
|
|
||||||
if( value == null ) return def;
|
|
||||||
if( !(value instanceof Boolean) ) throw badArgumentOf( index, "boolean", value );
|
|
||||||
return (Boolean) value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a string.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not a string.
|
|
||||||
*/
|
|
||||||
public static String optString( @Nonnull Object[] args, int index, String def ) throws LuaException
|
|
||||||
{
|
|
||||||
Object value = index < args.length ? args[index] : null;
|
|
||||||
if( value == null ) return def;
|
|
||||||
if( !(value instanceof String) ) throw badArgumentOf( index, "string", value );
|
|
||||||
return (String) value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an argument as a table.
|
|
||||||
*
|
|
||||||
* @param args The arguments to extract from.
|
|
||||||
* @param index The index into the argument array to read from.
|
|
||||||
* @param def The default value, if this argument is not given.
|
|
||||||
* @return The argument's value, or {@code def} if none was provided.
|
|
||||||
* @throws LuaException If the value is not a table.
|
|
||||||
*/
|
|
||||||
public static Map<?, ?> optTable( @Nonnull Object[] args, int index, Map<Object, Object> def ) throws LuaException
|
|
||||||
{
|
|
||||||
Object value = index < args.length ? args[index] : null;
|
|
||||||
if( value == null ) return def;
|
|
||||||
if( !(value instanceof Map) ) throw badArgumentOf( index, "table", value );
|
|
||||||
return (Map<?, ?>) value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Number checkFinite( int index, Number value ) throws LuaException
|
|
||||||
{
|
|
||||||
checkFinite( index, value.doubleValue() );
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static double checkFinite( int index, double value ) throws LuaException
|
|
||||||
{
|
|
||||||
if( !Double.isFinite( value ) ) throw badArgument( index, "number", getNumericType( value ) );
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a more detailed representation of this number's type. If this is finite, it will just return "number",
|
|
||||||
* otherwise it returns whether it is infinite or NaN.
|
|
||||||
*
|
|
||||||
* @param value The value to extract the type for.
|
|
||||||
* @return This value's numeric type.
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
public static String getNumericType( double value )
|
|
||||||
{
|
|
||||||
if( Double.isNaN( value ) ) return "nan";
|
|
||||||
if( value == Double.POSITIVE_INFINITY ) return "inf";
|
|
||||||
if( value == Double.NEGATIVE_INFINITY ) return "-inf";
|
|
||||||
return "number";
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import dan200.computercraft.api.filesystem.IFileSystem;
|
import dan200.computercraft.api.filesystem.IFileSystem;
|
||||||
@@ -25,7 +26,7 @@ public interface IComputerSystem extends IComputerAccess
|
|||||||
IFileSystem getFileSystem();
|
IFileSystem getFileSystem();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the label for this computer.
|
* Get the label for this computer
|
||||||
*
|
*
|
||||||
* @return This computer's label, or {@code null} if it is not set.
|
* @return This computer's label, or {@code null} if it is not set.
|
||||||
*/
|
*/
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import dan200.computercraft.api.peripheral.IComputerAccess;
|
import dan200.computercraft.api.peripheral.IComputerAccess;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.lua;
|
package dan200.computercraft.api.lua;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Lua", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.lua;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,14 +1,15 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.media;
|
package dan200.computercraft.api.media;
|
||||||
|
|
||||||
import dan200.computercraft.api.filesystem.IMount;
|
import dan200.computercraft.api.filesystem.IMount;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.SoundEvent;
|
import net.minecraft.sound.SoundEvent;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.media;
|
package dan200.computercraft.api.media;
|
||||||
|
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Media", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.media;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
package dan200.computercraft.api.network;
|
package dan200.computercraft.api.network;
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
package dan200.computercraft.api.network;
|
package dan200.computercraft.api.network;
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
package dan200.computercraft.api.network;
|
package dan200.computercraft.api.network;
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
package dan200.computercraft.api.network;
|
package dan200.computercraft.api.network;
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Network", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.network;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.network.wired;
|
package dan200.computercraft.api.network.wired;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.network.wired;
|
package dan200.computercraft.api.network.wired;
|
||||||
|
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.network.wired;
|
package dan200.computercraft.api.network.wired;
|
||||||
|
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.network.wired;
|
package dan200.computercraft.api.network.wired;
|
||||||
|
|
||||||
import dan200.computercraft.api.network.IPacketNetwork;
|
import dan200.computercraft.api.network.IPacketNetwork;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.network.wired;
|
package dan200.computercraft.api.network.wired;
|
||||||
|
|
||||||
import dan200.computercraft.api.network.IPacketSender;
|
import dan200.computercraft.api.network.IPacketSender;
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Network|Wired", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.network.wired;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.peripheral;
|
package dan200.computercraft.api.peripheral;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
|
@@ -1,11 +1,11 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.peripheral;
|
package dan200.computercraft.api.peripheral;
|
||||||
|
|
||||||
import dan200.computercraft.api.lua.ArgumentHelper;
|
|
||||||
import dan200.computercraft.api.lua.ILuaContext;
|
import dan200.computercraft.api.lua.ILuaContext;
|
||||||
import dan200.computercraft.api.lua.LuaException;
|
import dan200.computercraft.api.lua.LuaException;
|
||||||
|
|
||||||
@@ -58,11 +58,9 @@ public interface IPeripheral
|
|||||||
* Lua values of type "table" will be represented by Object type Map.<br>
|
* Lua values of type "table" will be represented by Object type Map.<br>
|
||||||
* Lua values of any other type will be represented by a null object.<br>
|
* Lua values of any other type will be represented by a null object.<br>
|
||||||
* This array will be empty if no arguments are passed.
|
* This array will be empty if no arguments are passed.
|
||||||
*
|
|
||||||
* It is recommended you use {@link ArgumentHelper} in order to validate and process arguments.
|
|
||||||
* @return An array of objects, representing values you wish to return to the lua program. Integers, Doubles, Floats,
|
* @return An array of objects, representing values you wish to return to the lua program. Integers, Doubles, Floats,
|
||||||
* Strings, Booleans, Maps, ILuaObject and null be converted to their corresponding lua type. All other types will
|
* Strings, Booleans, Maps and ILuaObject and null be converted to their corresponding lua type. All other types
|
||||||
* be converted to nil.
|
* will be converted to nil.
|
||||||
*
|
*
|
||||||
* You may return null to indicate no values should be returned.
|
* You may return null to indicate no values should be returned.
|
||||||
* @throws LuaException If you throw any exception from this function, a lua error will be raised with the
|
* @throws LuaException If you throw any exception from this function, a lua error will be raised with the
|
||||||
@@ -72,7 +70,6 @@ public interface IPeripheral
|
|||||||
* InterruptedException will be thrown. This exception must not be caught or
|
* InterruptedException will be thrown. This exception must not be caught or
|
||||||
* intercepted, or the computer will leak memory and end up in a broken state.
|
* intercepted, or the computer will leak memory and end up in a broken state.
|
||||||
* @see #getMethodNames
|
* @see #getMethodNames
|
||||||
* @see ArgumentHelper
|
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
Object[] callMethod( @Nonnull IComputerAccess computer, @Nonnull ILuaContext context, int method, @Nonnull Object[] arguments ) throws LuaException, InterruptedException;
|
Object[] callMethod( @Nonnull IComputerAccess computer, @Nonnull ILuaContext context, int method, @Nonnull Object[] arguments ) throws LuaException, InterruptedException;
|
||||||
|
@@ -1,13 +1,14 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.peripheral;
|
package dan200.computercraft.api.peripheral;
|
||||||
|
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.block.entity.BlockEntity;
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
@@ -16,7 +17,8 @@ import javax.annotation.Nullable;
|
|||||||
/**
|
/**
|
||||||
* This interface is used to create peripheral implementations for blocks.
|
* This interface is used to create peripheral implementations for blocks.
|
||||||
*
|
*
|
||||||
* If you have a {@link TileEntity} which acts as a peripheral, you may alternatively implement {@link IPeripheralTile}.
|
* If you have a {@link BlockEntity} which acts as a peripheral, you may alternatively implement
|
||||||
|
* {@link IPeripheralTile}.
|
||||||
*
|
*
|
||||||
* @see dan200.computercraft.api.ComputerCraftAPI#registerPeripheralProvider(IPeripheralProvider)
|
* @see dan200.computercraft.api.ComputerCraftAPI#registerPeripheralProvider(IPeripheralProvider)
|
||||||
*/
|
*/
|
||||||
@@ -33,5 +35,5 @@ public interface IPeripheralProvider
|
|||||||
* @see dan200.computercraft.api.ComputerCraftAPI#registerPeripheralProvider(IPeripheralProvider)
|
* @see dan200.computercraft.api.ComputerCraftAPI#registerPeripheralProvider(IPeripheralProvider)
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
IPeripheral getPeripheral( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull EnumFacing side );
|
IPeripheral getPeripheral( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull Direction side );
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
package dan200.computercraft.api.peripheral;
|
package dan200.computercraft.api.peripheral;
|
||||||
|
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@link net.minecraft.tileentity.TileEntity} which may act as a peripheral.
|
* A {@link net.minecraft.block.entity.BlockEntity} which may act as a peripheral.
|
||||||
*
|
*
|
||||||
* If you need more complex capabilities (such as handling TEs not belonging to your mod), you should use
|
* If you need more complex capabilities (such as handling TEs not belonging to your mod), you should use
|
||||||
* {@link IPeripheralProvider}.
|
* {@link IPeripheralProvider}.
|
||||||
@@ -25,8 +25,8 @@ public interface IPeripheralTile
|
|||||||
*
|
*
|
||||||
* @param side The side to get the peripheral from.
|
* @param side The side to get the peripheral from.
|
||||||
* @return A peripheral, or {@code null} if there is not a peripheral here.
|
* @return A peripheral, or {@code null} if there is not a peripheral here.
|
||||||
* @see IPeripheralProvider#getPeripheral(World, BlockPos, EnumFacing)
|
* @see IPeripheralProvider#getPeripheral(World, BlockPos, Direction)
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
IPeripheral getPeripheral( @Nonnull EnumFacing side );
|
IPeripheral getPeripheral( @Nonnull Direction side );
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.peripheral;
|
package dan200.computercraft.api.peripheral;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Peripheral", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.peripheral;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,41 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
package dan200.computercraft.api.permissions;
|
|
||||||
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
|
||||||
import net.minecraft.world.World;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This interface is used to restrict where turtles can move or build.
|
|
||||||
*
|
|
||||||
* Turtles will call these methods before attempting to perform an action, allowing them to be cancelled.
|
|
||||||
*
|
|
||||||
* @see dan200.computercraft.api.ComputerCraftAPI#registerPermissionProvider(ITurtlePermissionProvider)
|
|
||||||
*/
|
|
||||||
public interface ITurtlePermissionProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Determine whether a block can be entered by a turtle.
|
|
||||||
*
|
|
||||||
* @param world The world the block exists in
|
|
||||||
* @param pos The location of the block.
|
|
||||||
* @return Whether the turtle can move into this block.
|
|
||||||
*/
|
|
||||||
boolean isBlockEnterable( @Nonnull World world, @Nonnull BlockPos pos );
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether a block can be modified by a turtle.
|
|
||||||
*
|
|
||||||
* This includes breaking and placing blocks.
|
|
||||||
*
|
|
||||||
* @param world The world the block exists in
|
|
||||||
* @param pos The location of the block.
|
|
||||||
* @return Whether the turtle can modify this block.
|
|
||||||
*/
|
|
||||||
boolean isBlockEditable( @Nonnull World world, @Nonnull BlockPos pos );
|
|
||||||
}
|
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Permissions", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.permissions;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,12 +1,15 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.pocket;
|
package dan200.computercraft.api.pocket;
|
||||||
|
|
||||||
|
import net.minecraft.item.ItemProvider;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.Identifier;
|
||||||
|
import net.minecraft.util.SystemUtil;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
@@ -17,25 +20,30 @@ import javax.annotation.Nonnull;
|
|||||||
*/
|
*/
|
||||||
public abstract class AbstractPocketUpgrade implements IPocketUpgrade
|
public abstract class AbstractPocketUpgrade implements IPocketUpgrade
|
||||||
{
|
{
|
||||||
private final ResourceLocation id;
|
private final Identifier id;
|
||||||
private final String adjective;
|
private final String adjective;
|
||||||
private final ItemStack stack;
|
private final ItemStack stack;
|
||||||
|
|
||||||
protected AbstractPocketUpgrade( ResourceLocation id, String adjective, ItemStack stack )
|
protected AbstractPocketUpgrade( Identifier id, String adjective, ItemStack stack )
|
||||||
{
|
{
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.adjective = adjective;
|
this.adjective = adjective;
|
||||||
this.stack = stack;
|
this.stack = stack;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AbstractPocketUpgrade( ResourceLocation id, ItemStack stack )
|
protected AbstractPocketUpgrade( Identifier identifier, String adjective, ItemProvider item )
|
||||||
{
|
{
|
||||||
this( id, "upgrade." + id + ".adjective", stack );
|
this( identifier, adjective, new ItemStack( item ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
protected AbstractPocketUpgrade( Identifier id, ItemProvider item )
|
||||||
|
{
|
||||||
|
this( id, SystemUtil.createTranslationKey( "upgrade", id ) + ".adjective", new ItemStack( item ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@Override
|
@Override
|
||||||
public final ResourceLocation getUpgradeID()
|
public final Identifier getUpgradeID()
|
||||||
{
|
{
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
@@ -1,43 +1,34 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.pocket;
|
package dan200.computercraft.api.pocket;
|
||||||
|
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
import net.minecraft.entity.Entity;
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.nbt.NBTTagCompound;
|
import net.minecraft.nbt.CompoundTag;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.Identifier;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wrapper class for pocket computers.
|
* Wrapper class for pocket computers
|
||||||
*/
|
*/
|
||||||
public interface IPocketAccess
|
public interface IPocketAccess
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Gets the entity holding this item.
|
* Gets the entity holding this item.
|
||||||
*
|
*
|
||||||
* @return The holding entity. This may be {@code null}.
|
|
||||||
* @deprecated Use {@link #getValidEntity()} where possible.
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
@Deprecated
|
|
||||||
Entity getEntity();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the entity holding this item with additional safety checks.
|
|
||||||
*
|
|
||||||
* This must be called on the server thread.
|
* This must be called on the server thread.
|
||||||
*
|
*
|
||||||
* @return The holding entity, or {@code null} if none exists.
|
* @return The holding entity, or {@code null} if none exists.
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
Entity getValidEntity();
|
Entity getEntity();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the colour of this pocket computer as a RGB number.
|
* Get the colour of this pocket computer as a RGB number.
|
||||||
@@ -84,7 +75,7 @@ public interface IPocketAccess
|
|||||||
* @see #updateUpgradeNBTData()
|
* @see #updateUpgradeNBTData()
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
NBTTagCompound getUpgradeNBTData();
|
CompoundTag getUpgradeNBTData();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mark the upgrade-specific NBT as dirty.
|
* Mark the upgrade-specific NBT as dirty.
|
||||||
@@ -104,5 +95,5 @@ public interface IPocketAccess
|
|||||||
* @return A collection of all upgrade names.
|
* @return A collection of all upgrade names.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
Map<ResourceLocation, IPeripheral> getUpgrades();
|
Map<Identifier, IPeripheral> getUpgrades();
|
||||||
}
|
}
|
||||||
|
@@ -1,15 +1,16 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.pocket;
|
package dan200.computercraft.api.pocket;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.Identifier;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
@@ -35,7 +36,7 @@ public interface IPocketUpgrade
|
|||||||
* @see ComputerCraftAPI#registerPocketUpgrade(IPocketUpgrade)
|
* @see ComputerCraftAPI#registerPocketUpgrade(IPocketUpgrade)
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
ResourceLocation getUpgradeID();
|
Identifier getUpgradeID();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return an unlocalised string to describe the type of pocket computer this upgrade provides.
|
* Return an unlocalised string to describe the type of pocket computer this upgrade provides.
|
||||||
|
@@ -1,12 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.redstone;
|
package dan200.computercraft.api.redstone;
|
||||||
|
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
@@ -29,5 +30,5 @@ public interface IBundledRedstoneProvider
|
|||||||
* handle this block.
|
* handle this block.
|
||||||
* @see dan200.computercraft.api.ComputerCraftAPI#registerBundledRedstoneProvider(IBundledRedstoneProvider)
|
* @see dan200.computercraft.api.ComputerCraftAPI#registerBundledRedstoneProvider(IBundledRedstoneProvider)
|
||||||
*/
|
*/
|
||||||
int getBundledRedstoneOutput( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull EnumFacing side );
|
int getBundledRedstoneOutput( @Nonnull World world, @Nonnull BlockPos pos, @Nonnull Direction side );
|
||||||
}
|
}
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Redstone", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.redstone;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,21 +1,21 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import dan200.computercraft.api.lua.ILuaContext;
|
import dan200.computercraft.api.lua.ILuaContext;
|
||||||
import dan200.computercraft.api.lua.LuaException;
|
import dan200.computercraft.api.lua.LuaException;
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
import net.minecraft.inventory.IInventory;
|
import net.minecraft.inventory.Inventory;
|
||||||
import net.minecraft.nbt.NBTTagCompound;
|
import net.minecraft.nbt.CompoundTag;
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraft.util.math.Vec3d;
|
import net.minecraft.util.math.Vec3d;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import net.minecraftforge.items.IItemHandlerModifiable;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -53,8 +53,7 @@ public interface ITurtleAccess
|
|||||||
* @param world The new world to move it to
|
* @param world The new world to move it to
|
||||||
* @param pos The new position to move it to.
|
* @param pos The new position to move it to.
|
||||||
* @return Whether the movement was successful. It may fail if the block was not loaded or the block placement
|
* @return Whether the movement was successful. It may fail if the block was not loaded or the block placement
|
||||||
* was cancelled. Note this will not check
|
* was cancelled.
|
||||||
* {@link dan200.computercraft.api.permissions.ITurtlePermissionProvider#isBlockEnterable(World, BlockPos)}.
|
|
||||||
* @throws UnsupportedOperationException When attempting to teleport on the client side.
|
* @throws UnsupportedOperationException When attempting to teleport on the client side.
|
||||||
*/
|
*/
|
||||||
boolean teleportTo( @Nonnull World world, @Nonnull BlockPos pos );
|
boolean teleportTo( @Nonnull World world, @Nonnull BlockPos pos );
|
||||||
@@ -83,10 +82,10 @@ public interface ITurtleAccess
|
|||||||
* Returns the world direction the turtle is currently facing.
|
* Returns the world direction the turtle is currently facing.
|
||||||
*
|
*
|
||||||
* @return The world direction the turtle is currently facing.
|
* @return The world direction the turtle is currently facing.
|
||||||
* @see #setDirection(EnumFacing)
|
* @see #setDirection(Direction)
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
EnumFacing getDirection();
|
Direction getDirection();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the direction the turtle is facing. Note that this will not play a rotation animation, you will also need to
|
* Set the direction the turtle is facing. Note that this will not play a rotation animation, you will also need to
|
||||||
@@ -95,7 +94,7 @@ public interface ITurtleAccess
|
|||||||
* @param dir The new direction to set. This should be on either the x or z axis (so north, south, east or west).
|
* @param dir The new direction to set. This should be on either the x or z axis (so north, south, east or west).
|
||||||
* @see #getDirection()
|
* @see #getDirection()
|
||||||
*/
|
*/
|
||||||
void setDirection( @Nonnull EnumFacing dir );
|
void setDirection( @Nonnull Direction dir );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the currently selected slot in the turtle's inventory.
|
* Get the currently selected slot in the turtle's inventory.
|
||||||
@@ -144,28 +143,12 @@ public interface ITurtleAccess
|
|||||||
GameProfile getOwningPlayer();
|
GameProfile getOwningPlayer();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the inventory of this turtle.
|
* Get the inventory of this turtle
|
||||||
*
|
|
||||||
* Note: this inventory should only be accessed and modified on the server thread.
|
|
||||||
*
|
*
|
||||||
* @return This turtle's inventory
|
* @return This turtle's inventory
|
||||||
* @see #getItemHandler()
|
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
IInventory getInventory();
|
Inventory getInventory();
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the inventory of this turtle as an {@link IItemHandlerModifiable}.
|
|
||||||
*
|
|
||||||
* Note: this inventory should only be accessed and modified on the server thread.
|
|
||||||
*
|
|
||||||
* @return This turtle's inventory
|
|
||||||
* @see #getInventory()
|
|
||||||
* @see IItemHandlerModifiable
|
|
||||||
* @see net.minecraftforge.items.CapabilityItemHandler#ITEM_HANDLER_CAPABILITY
|
|
||||||
*/
|
|
||||||
@Nonnull
|
|
||||||
IItemHandlerModifiable getItemHandler();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine whether this turtle will require fuel when performing actions.
|
* Determine whether this turtle will require fuel when performing actions.
|
||||||
@@ -294,7 +277,7 @@ public interface ITurtleAccess
|
|||||||
* @see #updateUpgradeNBTData(TurtleSide)
|
* @see #updateUpgradeNBTData(TurtleSide)
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
NBTTagCompound getUpgradeNBTData( @Nullable TurtleSide side );
|
CompoundTag getUpgradeNBTData( @Nullable TurtleSide side );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mark the upgrade-specific data as dirty on a specific side. This is required for the data to be synced to the
|
* Mark the upgrade-specific data as dirty on a specific side. This is required for the data to be synced to the
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
import dan200.computercraft.api.lua.ILuaContext;
|
import dan200.computercraft.api.lua.ILuaContext;
|
||||||
|
@@ -1,23 +1,22 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
import dan200.computercraft.api.ComputerCraftAPI;
|
import dan200.computercraft.api.ComputerCraftAPI;
|
||||||
import dan200.computercraft.api.peripheral.IPeripheral;
|
import dan200.computercraft.api.peripheral.IPeripheral;
|
||||||
import dan200.computercraft.api.turtle.event.TurtleAttackEvent;
|
import dan200.computercraft.api.turtle.event.TurtleAttackEvent;
|
||||||
import dan200.computercraft.api.turtle.event.TurtleBlockEvent;
|
import dan200.computercraft.api.turtle.event.TurtleBlockEvent;
|
||||||
import net.minecraft.client.renderer.block.model.IBakedModel;
|
import net.fabricmc.api.EnvType;
|
||||||
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
import net.fabricmc.api.Environment;
|
||||||
|
import net.minecraft.client.render.model.BakedModel;
|
||||||
|
import net.minecraft.client.util.ModelIdentifier;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.Identifier;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraftforge.event.entity.player.AttackEntityEvent;
|
|
||||||
import net.minecraftforge.event.world.BlockEvent;
|
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
|
||||||
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
||||||
import org.apache.commons.lang3.tuple.Pair;
|
import org.apache.commons.lang3.tuple.Pair;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
@@ -41,18 +40,7 @@ public interface ITurtleUpgrade
|
|||||||
* @see ComputerCraftAPI#registerTurtleUpgrade(ITurtleUpgrade)
|
* @see ComputerCraftAPI#registerTurtleUpgrade(ITurtleUpgrade)
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
ResourceLocation getUpgradeID();
|
Identifier getUpgradeID();
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a numerical identifier representing this type of turtle upgrade,
|
|
||||||
* for backwards compatibility with pre-1.76 worlds. If your upgrade was
|
|
||||||
* not released for older ComputerCraft versions, you can return -1 here.
|
|
||||||
* The turtle will fail registration if an already used positive ID is specified.
|
|
||||||
*
|
|
||||||
* @return The legacy ID, or -1 if is needed.
|
|
||||||
* @see ComputerCraftAPI#registerTurtleUpgrade(ITurtleUpgrade)
|
|
||||||
*/
|
|
||||||
int getLegacyUpgradeID();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return an unlocalised string to describe this type of turtle in turtle item names.
|
* Return an unlocalised string to describe this type of turtle in turtle item names.
|
||||||
@@ -108,8 +96,8 @@ public interface ITurtleUpgrade
|
|||||||
* Will only be called for Tool turtle. Called when turtle.dig() or turtle.attack() is called
|
* Will only be called for Tool turtle. Called when turtle.dig() or turtle.attack() is called
|
||||||
* by the turtle, and the tool is required to do some work.
|
* by the turtle, and the tool is required to do some work.
|
||||||
*
|
*
|
||||||
* Conforming implementations should fire {@link BlockEvent.BreakEvent} and {@link TurtleBlockEvent.Dig} for
|
* Conforming implementations should fire {@code BlockEvent.BreakEvent} and {@link TurtleBlockEvent.Dig}for digging,
|
||||||
* digging, {@link AttackEntityEvent} and {@link TurtleAttackEvent} for attacking.
|
* {@code AttackEntityEvent} and {@link TurtleAttackEvent} for attacking.
|
||||||
*
|
*
|
||||||
* @param turtle Access to the turtle that the tool resides on.
|
* @param turtle Access to the turtle that the tool resides on.
|
||||||
* @param side Which side of the turtle (left or right) the tool resides on.
|
* @param side Which side of the turtle (left or right) the tool resides on.
|
||||||
@@ -123,7 +111,7 @@ public interface ITurtleUpgrade
|
|||||||
* to be called.
|
* to be called.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
default TurtleCommandResult useTool( @Nonnull ITurtleAccess turtle, @Nonnull TurtleSide side, @Nonnull TurtleVerb verb, @Nonnull EnumFacing direction )
|
default TurtleCommandResult useTool( @Nonnull ITurtleAccess turtle, @Nonnull TurtleSide side, @Nonnull TurtleVerb verb, @Nonnull Direction direction )
|
||||||
{
|
{
|
||||||
return TurtleCommandResult.failure();
|
return TurtleCommandResult.failure();
|
||||||
}
|
}
|
||||||
@@ -131,8 +119,8 @@ public interface ITurtleUpgrade
|
|||||||
/**
|
/**
|
||||||
* Called to obtain the model to be used when rendering a turtle peripheral.
|
* Called to obtain the model to be used when rendering a turtle peripheral.
|
||||||
*
|
*
|
||||||
* This can be obtained from {@link net.minecraft.client.renderer.ItemModelMesher#getItemModel(ItemStack)},
|
* This can be obtained from {@link net.minecraft.client.render.item.ItemModels#getModel(ItemStack)},
|
||||||
* {@link net.minecraft.client.renderer.block.model.ModelManager#getModel(ModelResourceLocation)} or any other
|
* {@link net.minecraft.client.render.model.BakedModelManager#getModel(ModelIdentifier)} or any other
|
||||||
* source.
|
* source.
|
||||||
*
|
*
|
||||||
* @param turtle Access to the turtle that the upgrade resides on. This will be null when getting item models!
|
* @param turtle Access to the turtle that the upgrade resides on. This will be null when getting item models!
|
||||||
@@ -141,8 +129,8 @@ public interface ITurtleUpgrade
|
|||||||
* a transformation of {@code null} has the same effect as the identify matrix.
|
* a transformation of {@code null} has the same effect as the identify matrix.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@SideOnly( Side.CLIENT )
|
@Environment( EnvType.CLIENT )
|
||||||
Pair<IBakedModel, Matrix4f> getModel( @Nullable ITurtleAccess turtle, @Nonnull TurtleSide side );
|
Pair<BakedModel, Matrix4f> getModel( @Nullable ITurtleAccess turtle, @Nonnull TurtleSide side );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called once per tick for each turtle which has the upgrade equipped.
|
* Called once per tick for each turtle which has the upgrade equipped.
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,11 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.math.Direction;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -14,7 +15,7 @@ import javax.annotation.Nullable;
|
|||||||
* Used to indicate the result of executing a turtle command.
|
* Used to indicate the result of executing a turtle command.
|
||||||
*
|
*
|
||||||
* @see ITurtleCommand#execute(ITurtleAccess)
|
* @see ITurtleCommand#execute(ITurtleAccess)
|
||||||
* @see ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, EnumFacing)
|
* @see ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, Direction)
|
||||||
*/
|
*/
|
||||||
public final class TurtleCommandResult
|
public final class TurtleCommandResult
|
||||||
{
|
{
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -11,12 +12,12 @@ package dan200.computercraft.api.turtle;
|
|||||||
public enum TurtleSide
|
public enum TurtleSide
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* The turtle's left side (where the pickaxe usually is on a Wireless Mining Turtle).
|
* The turtle's left side (where the pickaxe usually is on a Wireless Mining Turtle)
|
||||||
*/
|
*/
|
||||||
Left,
|
Left,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The turtle's right side (where the modem usually is on a Wireless Mining Turtle).
|
* The turtle's right side (where the modem usually is on a Wireless Mining Turtle)
|
||||||
*/
|
*/
|
||||||
Right,
|
Right,
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,28 +1,29 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle;
|
package dan200.computercraft.api.turtle;
|
||||||
|
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.math.Direction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An enum representing the different actions that an {@link ITurtleUpgrade} of type Tool may be called on to perform by
|
* An enum representing the different actions that an {@link ITurtleUpgrade} of type Tool may be called on to perform by
|
||||||
* a turtle.
|
* a turtle.
|
||||||
*
|
*
|
||||||
* @see ITurtleUpgrade#getType()
|
* @see ITurtleUpgrade#getType()
|
||||||
* @see ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, EnumFacing)
|
* @see ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, Direction)
|
||||||
*/
|
*/
|
||||||
public enum TurtleVerb
|
public enum TurtleVerb
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* The turtle called {@code turtle.dig()}, {@code turtle.digUp()} or {@code turtle.digDown()}.
|
* The turtle called {@code turtle.dig()}, {@code turtle.digUp()} or {@code turtle.digDown()}
|
||||||
*/
|
*/
|
||||||
Dig,
|
Dig,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The turtle called {@code turtle.attack()}, {@code turtle.attackUp()} or {@code turtle.attackDown()}.
|
* The turtle called {@code turtle.attack()}, {@code turtle.attackUp()} or {@code turtle.attackDown()}
|
||||||
*/
|
*/
|
||||||
Attack,
|
Attack,
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
|
* Copyright Daniel Ratcliffe, 2011-2018. Do not distribute without permission.
|
||||||
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
|
import com.mojang.authlib.GameProfile;
|
||||||
|
import net.minecraft.server.network.ServerPlayerEntity;
|
||||||
|
import net.minecraft.server.network.ServerPlayerInteractionManager;
|
||||||
|
import net.minecraft.server.world.ServerWorld;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A wrapper for {@link ServerPlayerEntity} which denotes a "fake" player.
|
||||||
|
*
|
||||||
|
* Please note that this does not implement any of the traditional fake player behaviour. It simply exists to prevent
|
||||||
|
* me passing in normal players.
|
||||||
|
*/
|
||||||
|
public class FakePlayer extends ServerPlayerEntity
|
||||||
|
{
|
||||||
|
public FakePlayer( ServerWorld world, GameProfile gameProfile )
|
||||||
|
{
|
||||||
|
super( world.getServer(), world, gameProfile, new ServerPlayerInteractionManager( world ) );
|
||||||
|
}
|
||||||
|
}
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -70,7 +71,7 @@ public enum TurtleAction
|
|||||||
EQUIP,
|
EQUIP,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inspect a block in world.
|
* Inspect a block in world
|
||||||
*
|
*
|
||||||
* @see TurtleBlockEvent.Inspect
|
* @see TurtleBlockEvent.Inspect
|
||||||
*/
|
*/
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleAccess;
|
import dan200.computercraft.api.turtle.ITurtleAccess;
|
||||||
import dan200.computercraft.api.turtle.TurtleCommandResult;
|
import dan200.computercraft.api.turtle.TurtleCommandResult;
|
||||||
import net.minecraftforge.fml.common.eventhandler.Cancelable;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -16,11 +16,11 @@ import java.util.Objects;
|
|||||||
/**
|
/**
|
||||||
* An event fired when a turtle is performing a known action.
|
* An event fired when a turtle is performing a known action.
|
||||||
*/
|
*/
|
||||||
@Cancelable
|
|
||||||
public class TurtleActionEvent extends TurtleEvent
|
public class TurtleActionEvent extends TurtleEvent
|
||||||
{
|
{
|
||||||
private final TurtleAction action;
|
private final TurtleAction action;
|
||||||
private String failureMessage;
|
private String failureMessage;
|
||||||
|
private boolean cancelled = false;
|
||||||
|
|
||||||
public TurtleActionEvent( @Nonnull ITurtleAccess turtle, @Nonnull TurtleAction action )
|
public TurtleActionEvent( @Nonnull ITurtleAccess turtle, @Nonnull TurtleAction action )
|
||||||
{
|
{
|
||||||
@@ -44,7 +44,6 @@ public class TurtleActionEvent extends TurtleEvent
|
|||||||
* @see TurtleCommandResult#failure()
|
* @see TurtleCommandResult#failure()
|
||||||
* @deprecated Use {@link #setCanceled(boolean, String)} instead.
|
* @deprecated Use {@link #setCanceled(boolean, String)} instead.
|
||||||
*/
|
*/
|
||||||
@Override
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void setCanceled( boolean cancel )
|
public void setCanceled( boolean cancel )
|
||||||
{
|
{
|
||||||
@@ -62,7 +61,7 @@ public class TurtleActionEvent extends TurtleEvent
|
|||||||
*/
|
*/
|
||||||
public void setCanceled( boolean cancel, @Nullable String failureMessage )
|
public void setCanceled( boolean cancel, @Nullable String failureMessage )
|
||||||
{
|
{
|
||||||
super.setCanceled( cancel );
|
this.cancelled = true;
|
||||||
this.failureMessage = cancel ? failureMessage : null;
|
this.failureMessage = cancel ? failureMessage : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,4 +77,15 @@ public class TurtleActionEvent extends TurtleEvent
|
|||||||
{
|
{
|
||||||
return failureMessage;
|
return failureMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if this event is cancelled
|
||||||
|
*
|
||||||
|
* @return If this event is cancelled
|
||||||
|
* @see #setCanceled(boolean, String)
|
||||||
|
*/
|
||||||
|
public boolean isCancelled()
|
||||||
|
{
|
||||||
|
return cancelled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleAccess;
|
import dan200.computercraft.api.turtle.ITurtleAccess;
|
||||||
@@ -10,9 +11,7 @@ import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
|||||||
import dan200.computercraft.api.turtle.TurtleSide;
|
import dan200.computercraft.api.turtle.TurtleSide;
|
||||||
import dan200.computercraft.api.turtle.TurtleVerb;
|
import dan200.computercraft.api.turtle.TurtleVerb;
|
||||||
import net.minecraft.entity.Entity;
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraftforge.common.util.FakePlayer;
|
|
||||||
import net.minecraftforge.event.entity.player.AttackEntityEvent;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
@@ -20,10 +19,11 @@ import java.util.Objects;
|
|||||||
/**
|
/**
|
||||||
* Fired when a turtle attempts to attack an entity.
|
* Fired when a turtle attempts to attack an entity.
|
||||||
*
|
*
|
||||||
* This must be fired by {@link ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, EnumFacing)},
|
* This must be fired by {@link ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, Direction)},
|
||||||
* as the base {@code turtle.attack()} command does not fire it.
|
* as the base {@code turtle.attack()} command does not fire it.
|
||||||
*
|
*
|
||||||
* Note that such commands should also fire {@link AttackEntityEvent}, so you do not need to listen to both.
|
* Note that such commands should also fire {@link net.fabricmc.fabric.api.event.player.AttackEntityCallback}, so you do
|
||||||
|
* not need to listen to both.
|
||||||
*
|
*
|
||||||
* @see TurtleAction#ATTACK
|
* @see TurtleAction#ATTACK
|
||||||
*/
|
*/
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.lua.ILuaContext;
|
import dan200.computercraft.api.lua.ILuaContext;
|
||||||
@@ -11,13 +12,11 @@ import dan200.computercraft.api.turtle.ITurtleAccess;
|
|||||||
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
import dan200.computercraft.api.turtle.ITurtleUpgrade;
|
||||||
import dan200.computercraft.api.turtle.TurtleSide;
|
import dan200.computercraft.api.turtle.TurtleSide;
|
||||||
import dan200.computercraft.api.turtle.TurtleVerb;
|
import dan200.computercraft.api.turtle.TurtleVerb;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.BlockState;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.EnumFacing;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.math.Direction;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import net.minecraftforge.common.util.FakePlayer;
|
|
||||||
import net.minecraftforge.event.world.BlockEvent;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@@ -74,20 +73,21 @@ public abstract class TurtleBlockEvent extends TurtlePlayerEvent
|
|||||||
/**
|
/**
|
||||||
* Fired when a turtle attempts to dig a block.
|
* Fired when a turtle attempts to dig a block.
|
||||||
*
|
*
|
||||||
* This must be fired by {@link ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, EnumFacing)},
|
* This must be fired by {@link ITurtleUpgrade#useTool(ITurtleAccess, TurtleSide, TurtleVerb, Direction)},
|
||||||
* as the base {@code turtle.dig()} command does not fire it.
|
* as the base {@code turtle.dig()} command does not fire it.
|
||||||
*
|
*
|
||||||
* Note that such commands should also fire {@link BlockEvent.BreakEvent}, so you do not need to listen to both.
|
* Note that such commands should also fire {@link net.fabricmc.fabric.api.event.player.AttackBlockCallback}, so you
|
||||||
|
* do not need to listen to both.
|
||||||
*
|
*
|
||||||
* @see TurtleAction#DIG
|
* @see TurtleAction#DIG
|
||||||
*/
|
*/
|
||||||
public static class Dig extends TurtleBlockEvent
|
public static class Dig extends TurtleBlockEvent
|
||||||
{
|
{
|
||||||
private final IBlockState block;
|
private final BlockState block;
|
||||||
private final ITurtleUpgrade upgrade;
|
private final ITurtleUpgrade upgrade;
|
||||||
private final TurtleSide side;
|
private final TurtleSide side;
|
||||||
|
|
||||||
public Dig( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nonnull IBlockState block, @Nonnull ITurtleUpgrade upgrade, @Nonnull TurtleSide side )
|
public Dig( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nonnull BlockState block, @Nonnull ITurtleUpgrade upgrade, @Nonnull TurtleSide side )
|
||||||
{
|
{
|
||||||
super( turtle, TurtleAction.DIG, player, world, pos );
|
super( turtle, TurtleAction.DIG, player, world, pos );
|
||||||
|
|
||||||
@@ -105,13 +105,13 @@ public abstract class TurtleBlockEvent extends TurtlePlayerEvent
|
|||||||
* @return The block which is going to be broken.
|
* @return The block which is going to be broken.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
public IBlockState getBlock()
|
public BlockState getBlock()
|
||||||
{
|
{
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the upgrade doing the digging.
|
* Get the upgrade doing the digging
|
||||||
*
|
*
|
||||||
* @return The upgrade doing the digging.
|
* @return The upgrade doing the digging.
|
||||||
*/
|
*/
|
||||||
@@ -184,10 +184,10 @@ public abstract class TurtleBlockEvent extends TurtlePlayerEvent
|
|||||||
*/
|
*/
|
||||||
public static class Inspect extends TurtleBlockEvent
|
public static class Inspect extends TurtleBlockEvent
|
||||||
{
|
{
|
||||||
private final IBlockState state;
|
private final BlockState state;
|
||||||
private final Map<String, Object> data;
|
private final Map<String, Object> data;
|
||||||
|
|
||||||
public Inspect( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nonnull IBlockState state, @Nonnull Map<String, Object> data )
|
public Inspect( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nonnull BlockState state, @Nonnull Map<String, Object> data )
|
||||||
{
|
{
|
||||||
super( turtle, TurtleAction.INSPECT, player, world, pos );
|
super( turtle, TurtleAction.INSPECT, player, world, pos );
|
||||||
|
|
||||||
@@ -203,7 +203,7 @@ public abstract class TurtleBlockEvent extends TurtlePlayerEvent
|
|||||||
* @return The inspected block state.
|
* @return The inspected block state.
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
public IBlockState getState()
|
public BlockState getState()
|
||||||
{
|
{
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
@@ -1,12 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
|
import com.google.common.eventbus.EventBus;
|
||||||
import dan200.computercraft.api.turtle.ITurtleAccess;
|
import dan200.computercraft.api.turtle.ITurtleAccess;
|
||||||
import net.minecraftforge.fml.common.eventhandler.Event;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
@@ -19,8 +20,10 @@ import java.util.Objects;
|
|||||||
*
|
*
|
||||||
* @see TurtleActionEvent
|
* @see TurtleActionEvent
|
||||||
*/
|
*/
|
||||||
public abstract class TurtleEvent extends Event
|
public abstract class TurtleEvent
|
||||||
{
|
{
|
||||||
|
public static final EventBus EVENT_BUS = new EventBus();
|
||||||
|
|
||||||
private final ITurtleAccess turtle;
|
private final ITurtleAccess turtle;
|
||||||
|
|
||||||
protected TurtleEvent( @Nonnull ITurtleAccess turtle )
|
protected TurtleEvent( @Nonnull ITurtleAccess turtle )
|
||||||
@@ -39,4 +42,10 @@ public abstract class TurtleEvent extends Event
|
|||||||
{
|
{
|
||||||
return turtle;
|
return turtle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean post( TurtleActionEvent event )
|
||||||
|
{
|
||||||
|
EVENT_BUS.post( event );
|
||||||
|
return event.isCancelled();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.lua.ILuaContext;
|
import dan200.computercraft.api.lua.ILuaContext;
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleAccess;
|
import dan200.computercraft.api.turtle.ITurtleAccess;
|
||||||
|
import net.minecraft.inventory.Inventory;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import net.minecraftforge.common.util.FakePlayer;
|
|
||||||
import net.minecraftforge.items.IItemHandler;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -21,21 +21,21 @@ import java.util.Objects;
|
|||||||
*/
|
*/
|
||||||
public abstract class TurtleInventoryEvent extends TurtleBlockEvent
|
public abstract class TurtleInventoryEvent extends TurtleBlockEvent
|
||||||
{
|
{
|
||||||
private final IItemHandler handler;
|
private final Inventory handler;
|
||||||
|
|
||||||
protected TurtleInventoryEvent( @Nonnull ITurtleAccess turtle, @Nonnull TurtleAction action, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nullable IItemHandler handler )
|
protected TurtleInventoryEvent( @Nonnull ITurtleAccess turtle, @Nonnull TurtleAction action, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nullable Inventory handler )
|
||||||
{
|
{
|
||||||
super( turtle, action, player, world, pos );
|
super( turtle, action, player, world, pos );
|
||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the inventory being interacted with.
|
* Get the inventory being interacted with
|
||||||
*
|
*
|
||||||
* @return The inventory being interacted with, {@code null} if the item will be dropped to/sucked from the world.
|
* @return The inventory being interacted with, {@code null} if the item will be dropped to/sucked from the world.
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public IItemHandler getItemHandler()
|
public Inventory getItemHandler()
|
||||||
{
|
{
|
||||||
return handler;
|
return handler;
|
||||||
}
|
}
|
||||||
@@ -47,7 +47,7 @@ public abstract class TurtleInventoryEvent extends TurtleBlockEvent
|
|||||||
*/
|
*/
|
||||||
public static class Suck extends TurtleInventoryEvent
|
public static class Suck extends TurtleInventoryEvent
|
||||||
{
|
{
|
||||||
public Suck( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nullable IItemHandler handler )
|
public Suck( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nullable Inventory handler )
|
||||||
{
|
{
|
||||||
super( turtle, TurtleAction.SUCK, player, world, pos, handler );
|
super( turtle, TurtleAction.SUCK, player, world, pos, handler );
|
||||||
}
|
}
|
||||||
@@ -62,7 +62,7 @@ public abstract class TurtleInventoryEvent extends TurtleBlockEvent
|
|||||||
{
|
{
|
||||||
private final ItemStack stack;
|
private final ItemStack stack;
|
||||||
|
|
||||||
public Drop( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nullable IItemHandler handler, @Nonnull ItemStack stack )
|
public Drop( @Nonnull ITurtleAccess turtle, @Nonnull FakePlayer player, @Nonnull World world, @Nonnull BlockPos pos, @Nullable Inventory handler, @Nonnull ItemStack stack )
|
||||||
{
|
{
|
||||||
super( turtle, TurtleAction.DROP, player, world, pos, handler );
|
super( turtle, TurtleAction.DROP, player, world, pos, handler );
|
||||||
|
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. This API may be redistributed unmodified and in full only.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleAccess;
|
import dan200.computercraft.api.turtle.ITurtleAccess;
|
||||||
import net.minecraftforge.common.util.FakePlayer;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
package dan200.computercraft.api.turtle.event;
|
||||||
|
|
||||||
import dan200.computercraft.api.turtle.ITurtleAccess;
|
import dan200.computercraft.api.turtle.ITurtleAccess;
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Turtle|Event", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.turtle.event;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,9 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the public ComputerCraft API - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. This API may be redistributed unmodified and in full only.
|
|
||||||
* For help using the API, and posting your mods, visit the forums at computercraft.info.
|
|
||||||
*/
|
|
||||||
@API( owner = "ComputerCraft", provides = "ComputerCraft|API|Turtle", apiVersion = "${version}" )
|
|
||||||
package dan200.computercraft.api.turtle;
|
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.API;
|
|
@@ -1,184 +1,146 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client;
|
package dan200.computercraft.client;
|
||||||
|
|
||||||
import dan200.computercraft.ComputerCraft;
|
import dan200.computercraft.ComputerCraft;
|
||||||
import dan200.computercraft.client.render.TurtleModelLoader;
|
import dan200.computercraft.shared.common.IColouredItem;
|
||||||
import dan200.computercraft.shared.media.items.ItemDiskLegacy;
|
import dan200.computercraft.shared.media.items.ItemDisk;
|
||||||
import dan200.computercraft.shared.pocket.items.ItemPocketComputer;
|
import dan200.computercraft.shared.pocket.items.ItemPocketComputer;
|
||||||
import dan200.computercraft.shared.turtle.items.ItemTurtleBase;
|
|
||||||
import dan200.computercraft.shared.util.Colour;
|
import dan200.computercraft.shared.util.Colour;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.fabricmc.fabric.api.client.render.ColorProviderRegistry;
|
||||||
import net.minecraft.client.renderer.ItemMeshDefinition;
|
import net.minecraft.client.MinecraftClient;
|
||||||
import net.minecraft.client.renderer.block.model.IBakedModel;
|
import net.minecraft.client.render.model.BakedModel;
|
||||||
import net.minecraft.client.renderer.block.model.ModelBakery;
|
import net.minecraft.client.render.model.ModelLoader;
|
||||||
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
import net.minecraft.client.render.model.ModelRotation;
|
||||||
import net.minecraft.client.renderer.texture.TextureMap;
|
import net.minecraft.client.render.model.UnbakedModel;
|
||||||
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
|
import net.minecraft.client.texture.SpriteAtlasTexture;
|
||||||
import net.minecraft.item.Item;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import net.minecraftforge.client.event.ColorHandlerEvent;
|
|
||||||
import net.minecraftforge.client.event.ModelBakeEvent;
|
|
||||||
import net.minecraftforge.client.event.ModelRegistryEvent;
|
|
||||||
import net.minecraftforge.client.event.TextureStitchEvent;
|
|
||||||
import net.minecraftforge.client.model.IModel;
|
|
||||||
import net.minecraftforge.client.model.ModelLoader;
|
|
||||||
import net.minecraftforge.client.model.ModelLoaderRegistry;
|
|
||||||
import net.minecraftforge.fml.common.Mod;
|
|
||||||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import java.util.HashSet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers textures and models for items.
|
* Registers textures and models for items.
|
||||||
*/
|
*/
|
||||||
@Mod.EventBusSubscriber( modid = ComputerCraft.MOD_ID, value = Side.CLIENT )
|
|
||||||
public final class ClientRegistry
|
public final class ClientRegistry
|
||||||
{
|
{
|
||||||
private static final String[] EXTRA_MODELS = new String[] {
|
private static final String[] EXTRA_MODELS = new String[] {
|
||||||
"turtle_modem_off_left",
|
"turtle_modem_normal_off_left",
|
||||||
"turtle_modem_on_left",
|
"turtle_modem_normal_on_left",
|
||||||
"turtle_modem_off_right",
|
"turtle_modem_normal_off_right",
|
||||||
"turtle_modem_on_right",
|
"turtle_modem_normal_on_right",
|
||||||
|
|
||||||
|
"turtle_modem_advanced_off_left",
|
||||||
|
"turtle_modem_advanced_on_left",
|
||||||
|
"turtle_modem_advanced_off_right",
|
||||||
|
"turtle_modem_advanced_on_right",
|
||||||
"turtle_crafting_table_left",
|
"turtle_crafting_table_left",
|
||||||
"turtle_crafting_table_right",
|
"turtle_crafting_table_right",
|
||||||
"advanced_turtle_modem_off_left",
|
|
||||||
"advanced_turtle_modem_on_left",
|
|
||||||
"advanced_turtle_modem_off_right",
|
|
||||||
"advanced_turtle_modem_on_right",
|
|
||||||
"turtle_speaker_upgrade_left",
|
"turtle_speaker_upgrade_left",
|
||||||
"turtle_speaker_upgrade_right",
|
"turtle_speaker_upgrade_right",
|
||||||
|
|
||||||
"turtle_white",
|
"turtle_colour",
|
||||||
"turtle_elf_overlay",
|
"turtle_elf_overlay",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private static final String[] EXTRA_TEXTURES = new String[] {
|
||||||
|
// TODO: Gather these automatically from the model. I'm unable to get this working with Forge's current
|
||||||
|
// model loading code.
|
||||||
|
"block/turtle_colour",
|
||||||
|
"block/turtle_elf_overlay",
|
||||||
|
"block/turtle_crafty_face",
|
||||||
|
"block/turtle_speaker_face",
|
||||||
|
};
|
||||||
|
|
||||||
private ClientRegistry() {}
|
private ClientRegistry() {}
|
||||||
|
|
||||||
@SubscribeEvent
|
/*
|
||||||
|
TODO: @SubscribeEvent
|
||||||
public static void registerModels( ModelRegistryEvent event )
|
public static void registerModels( ModelRegistryEvent event )
|
||||||
{
|
{
|
||||||
ModelLoaderRegistry.registerLoader( TurtleModelLoader.INSTANCE );
|
ModelLoaderRegistry.registerLoader( TurtleModelLoader.INSTANCE );
|
||||||
|
|
||||||
// Register item models
|
|
||||||
registerUniversalItemModel( ComputerCraft.Items.computer, "computer" );
|
|
||||||
registerItemModel( ComputerCraft.Items.commandComputer, 0, "command_computer" );
|
|
||||||
|
|
||||||
registerItemModel( ComputerCraft.Items.pocketComputer, 0, "pocket_computer" );
|
|
||||||
registerItemModel( ComputerCraft.Items.pocketComputer, 1, "advanced_pocket_computer" );
|
|
||||||
|
|
||||||
registerItemModel( ComputerCraft.Items.peripheral, 0, "peripheral" );
|
|
||||||
registerItemModel( ComputerCraft.Items.peripheral, 1, "wireless_modem" );
|
|
||||||
registerItemModel( ComputerCraft.Items.peripheral, 2, "monitor" );
|
|
||||||
registerItemModel( ComputerCraft.Items.peripheral, 3, "printer" );
|
|
||||||
registerItemModel( ComputerCraft.Items.peripheral, 4, "advanced_monitor" );
|
|
||||||
registerItemModel( ComputerCraft.Items.cable, 0, "cable" );
|
|
||||||
registerItemModel( ComputerCraft.Items.cable, 1, "wired_modem" );
|
|
||||||
registerItemModel( ComputerCraft.Items.advancedModem, 0, "advanced_modem" );
|
|
||||||
registerItemModel( ComputerCraft.Items.peripheral, 5, "speaker" );
|
|
||||||
registerItemModel( ComputerCraft.Items.wiredModemFull, 0, "wired_modem_full" );
|
|
||||||
|
|
||||||
registerUniversalItemModel( ComputerCraft.Items.disk, "disk" );
|
|
||||||
registerItemModel( ComputerCraft.Items.diskExpanded, 0, "disk_expanded" );
|
|
||||||
registerItemModel( ComputerCraft.Items.treasureDisk, 0, "treasure_disk" );
|
|
||||||
|
|
||||||
registerItemModel( ComputerCraft.Items.printout, 0, "printout" );
|
|
||||||
registerItemModel( ComputerCraft.Items.printout, 1, "pages" );
|
|
||||||
registerItemModel( ComputerCraft.Items.printout, 2, "book" );
|
|
||||||
|
|
||||||
registerUniversalItemModel( ComputerCraft.Items.turtle, "turtle" );
|
|
||||||
registerUniversalItemModel( ComputerCraft.Items.turtleExpanded, "turtle" );
|
|
||||||
registerUniversalItemModel( ComputerCraft.Items.turtleAdvanced, "turtle_advanced" );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
TODO: @SubscribeEvent
|
||||||
public static void onTextureStitchEvent( TextureStitchEvent.Pre event )
|
public static void onTextureStitchEvent( TextureStitchEvent.Pre event )
|
||||||
{
|
{
|
||||||
// Load all textures for the extra models
|
ResourceManager manager = MinecraftClient.getInstance().getResourceManager();
|
||||||
TextureMap map = event.getMap();
|
for( String extra : EXTRA_TEXTURES )
|
||||||
for( String upgrade : EXTRA_MODELS )
|
|
||||||
{
|
{
|
||||||
IModel model = ModelLoaderRegistry.getModelOrMissing( new ResourceLocation( "computercraft", "block/" + upgrade ) );
|
event.getMap().registerSprite( manager, new Identifier( ComputerCraft.MOD_ID, extra ) );
|
||||||
for( ResourceLocation texture : model.getTextures() ) map.registerSprite( texture );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
TODO: @SubscribeEvent
|
||||||
public static void onModelBakeEvent( ModelBakeEvent event )
|
public static void onModelBakeEvent( ModelBakeEvent event )
|
||||||
{
|
{
|
||||||
// Load all extra models
|
// Load all extra models
|
||||||
for( String model : EXTRA_MODELS ) loadBlockModel( event, model );
|
ModelLoader loader = event.getModelLoader();
|
||||||
}
|
Map<ModelIdentifier, BakedModel> registry = event.getModelRegistry();
|
||||||
|
|
||||||
@SubscribeEvent
|
for( String model : EXTRA_MODELS )
|
||||||
public static void onItemColours( ColorHandlerEvent.Item event )
|
{
|
||||||
{
|
BakedModel bakedModel = bake( loader, loader.getOrLoadModel( new Identifier( ComputerCraft.MOD_ID, "item/" + model ) ) );
|
||||||
event.getItemColors().registerItemColorHandler(
|
|
||||||
( stack, layer ) -> layer == 1 ? ((ItemDiskLegacy) stack.getItem()).getColour( stack ) : 0xFFFFFF,
|
if( bakedModel != null )
|
||||||
ComputerCraft.Items.disk, ComputerCraft.Items.diskExpanded
|
{
|
||||||
|
registry.put(
|
||||||
|
new ModelIdentifier( new Identifier( ComputerCraft.MOD_ID, model ), "inventory" ),
|
||||||
|
bakedModel
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// And load the custom turtle models in too.
|
||||||
|
registry.put(
|
||||||
|
new ModelIdentifier( new Identifier( ComputerCraft.MOD_ID, "turtle_normal" ), "inventory" ),
|
||||||
|
bake( loader, TurtleModelLoader.INSTANCE.loadModel( new Identifier( ComputerCraft.MOD_ID, "item/turtle_normal" ) ) )
|
||||||
);
|
);
|
||||||
|
|
||||||
event.getItemColors().registerItemColorHandler( ( stack, layer ) -> {
|
registry.put(
|
||||||
|
new ModelIdentifier( new Identifier( ComputerCraft.MOD_ID, "turtle_advanced" ), "inventory" ),
|
||||||
|
bake( loader, TurtleModelLoader.INSTANCE.loadModel( new Identifier( ComputerCraft.MOD_ID, "item/turtle_advanced" ) ) )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
public static void onItemColours()
|
||||||
|
{
|
||||||
|
ColorProviderRegistry.ITEM.register(
|
||||||
|
( stack, layer ) -> layer == 1 ? ((ItemDisk) stack.getItem()).getColour( stack ) : 0xFFFFFF,
|
||||||
|
ComputerCraft.Items.disk
|
||||||
|
);
|
||||||
|
|
||||||
|
ColorProviderRegistry.ITEM.register( ( stack, layer ) -> {
|
||||||
switch( layer )
|
switch( layer )
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
default:
|
default:
|
||||||
return 0xFFFFFF;
|
return 0xFFFFFF;
|
||||||
case 1: // Frame colour
|
case 1: // Frame colour
|
||||||
return ComputerCraft.Items.pocketComputer.getColour( stack );
|
return IColouredItem.getColourBasic( stack );
|
||||||
case 2: // Light colour
|
case 2: // Light colour
|
||||||
{
|
{
|
||||||
int light = ItemPocketComputer.getLightState( stack );
|
int light = ItemPocketComputer.getLightState( stack );
|
||||||
return light == -1 ? Colour.Black.getHex() : light;
|
return light == -1 ? Colour.Black.getHex() : light;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, ComputerCraft.Items.pocketComputer );
|
}, ComputerCraft.Items.pocketComputerNormal, ComputerCraft.Items.pocketComputerAdvanced );
|
||||||
|
|
||||||
// Setup turtle colours
|
// Setup turtle colours
|
||||||
event.getItemColors().registerItemColorHandler(
|
ColorProviderRegistry.ITEM.register(
|
||||||
( stack, tintIndex ) -> tintIndex == 0 ? ((ItemTurtleBase) stack.getItem()).getColour( stack ) : 0xFFFFFF,
|
( stack, tintIndex ) -> tintIndex == 0 ? ((IColouredItem) stack.getItem()).getColour( stack ) : 0xFFFFFF,
|
||||||
ComputerCraft.Blocks.turtle, ComputerCraft.Blocks.turtleExpanded, ComputerCraft.Blocks.turtleAdvanced
|
ComputerCraft.Blocks.turtleNormal, ComputerCraft.Blocks.turtleAdvanced
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void registerItemModel( Item item, int damage, String name )
|
private static BakedModel bake( ModelLoader loader, UnbakedModel model )
|
||||||
{
|
{
|
||||||
ResourceLocation location = new ResourceLocation( ComputerCraft.MOD_ID, name );
|
model.getTextureDependencies( loader::getOrLoadModel, new HashSet<>() );
|
||||||
final ModelResourceLocation res = new ModelResourceLocation( location, "inventory" );
|
SpriteAtlasTexture sprite = MinecraftClient.getInstance().getSpriteAtlas();
|
||||||
ModelBakery.registerItemVariants( item, location );
|
return model.bake( loader, sprite::getSprite, ModelRotation.X0_Y0 );
|
||||||
ModelLoader.setCustomModelResourceLocation( item, damage, res );
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void registerUniversalItemModel( Item item, String mainModel )
|
|
||||||
{
|
|
||||||
ResourceLocation mainLocation = new ResourceLocation( ComputerCraft.MOD_ID, mainModel );
|
|
||||||
ModelBakery.registerItemVariants( item, mainLocation );
|
|
||||||
|
|
||||||
final ModelResourceLocation mainModelLocation = new ModelResourceLocation( mainLocation, "inventory" );
|
|
||||||
ModelLoader.setCustomMeshDefinition( item, new ItemMeshDefinition()
|
|
||||||
{
|
|
||||||
@Nonnull
|
|
||||||
@Override
|
|
||||||
public ModelResourceLocation getModelLocation( @Nonnull ItemStack stack )
|
|
||||||
{
|
|
||||||
return mainModelLocation;
|
|
||||||
}
|
|
||||||
} );
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void loadBlockModel( ModelBakeEvent event, String name )
|
|
||||||
{
|
|
||||||
IModel model = ModelLoaderRegistry.getModelOrMissing( new ResourceLocation( ComputerCraft.MOD_ID, "block/" + name ) );
|
|
||||||
IBakedModel bakedModel = model.bake(
|
|
||||||
model.getDefaultState(), DefaultVertexFormats.ITEM,
|
|
||||||
location -> Minecraft.getMinecraft().getTextureMapBlocks().getAtlasSprite( location.toString() )
|
|
||||||
);
|
|
||||||
|
|
||||||
event.getModelRegistry().putObject( new ModelResourceLocation( ComputerCraft.MOD_ID + ":" + name, "inventory" ), bakedModel );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,22 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client;
|
package dan200.computercraft.client;
|
||||||
|
|
||||||
import dan200.computercraft.shared.command.text.ChatHelpers;
|
import dan200.computercraft.shared.command.text.ChatHelpers;
|
||||||
import dan200.computercraft.shared.command.text.TableBuilder;
|
import dan200.computercraft.shared.command.text.TableBuilder;
|
||||||
import dan200.computercraft.shared.command.text.TableFormatter;
|
import dan200.computercraft.shared.command.text.TableFormatter;
|
||||||
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
|
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.MinecraftClient;
|
||||||
import net.minecraft.client.gui.FontRenderer;
|
import net.minecraft.client.font.TextRenderer;
|
||||||
import net.minecraft.client.gui.GuiNewChat;
|
import net.minecraft.client.gui.hud.ChatHud;
|
||||||
import net.minecraft.client.gui.GuiUtilRenderComponents;
|
import net.minecraft.client.util.TextComponentUtil;
|
||||||
|
import net.minecraft.text.TextComponent;
|
||||||
|
import net.minecraft.text.TextFormat;
|
||||||
import net.minecraft.util.math.MathHelper;
|
import net.minecraft.util.math.MathHelper;
|
||||||
import net.minecraft.util.text.ITextComponent;
|
|
||||||
import net.minecraft.util.text.TextFormatting;
|
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -27,25 +28,25 @@ public class ClientTableFormatter implements TableFormatter
|
|||||||
|
|
||||||
private static Int2IntOpenHashMap lastHeights = new Int2IntOpenHashMap();
|
private static Int2IntOpenHashMap lastHeights = new Int2IntOpenHashMap();
|
||||||
|
|
||||||
private static FontRenderer renderer()
|
private static TextRenderer renderer()
|
||||||
{
|
{
|
||||||
return Minecraft.getMinecraft().fontRenderer;
|
return MinecraftClient.getInstance().textRenderer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Nullable
|
@Nullable
|
||||||
public ITextComponent getPadding( ITextComponent component, int width )
|
public TextComponent getPadding( TextComponent component, int width )
|
||||||
{
|
{
|
||||||
int extraWidth = width - getWidth( component );
|
int extraWidth = width - getWidth( component );
|
||||||
if( extraWidth <= 0 ) return null;
|
if( extraWidth <= 0 ) return null;
|
||||||
|
|
||||||
FontRenderer renderer = renderer();
|
TextRenderer renderer = renderer();
|
||||||
|
|
||||||
float spaceWidth = renderer.getCharWidth( ' ' );
|
float spaceWidth = renderer.getCharWidth( ' ' );
|
||||||
int spaces = MathHelper.floor( extraWidth / spaceWidth );
|
int spaces = MathHelper.floor( extraWidth / spaceWidth );
|
||||||
int extra = extraWidth - (int) (spaces * spaceWidth);
|
int extra = extraWidth - (int) (spaces * spaceWidth);
|
||||||
|
|
||||||
return ChatHelpers.coloured( StringUtils.repeat( ' ', spaces ) + StringUtils.repeat( (char) 712, extra ), TextFormatting.GRAY );
|
return ChatHelpers.coloured( StringUtils.repeat( ' ', spaces ) + StringUtils.repeat( (char) 712, extra ), TextFormat.GRAY );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -55,34 +56,34 @@ public class ClientTableFormatter implements TableFormatter
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getWidth( ITextComponent component )
|
public int getWidth( TextComponent component )
|
||||||
{
|
{
|
||||||
return renderer().getStringWidth( component.getFormattedText() );
|
return renderer().getStringWidth( component.getFormattedText() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeLine( int id, ITextComponent component )
|
public void writeLine( int id, TextComponent component )
|
||||||
{
|
{
|
||||||
Minecraft mc = Minecraft.getMinecraft();
|
MinecraftClient mc = MinecraftClient.getInstance();
|
||||||
GuiNewChat chat = mc.ingameGUI.getChatGUI();
|
ChatHud chat = mc.inGameHud.getChatHud();
|
||||||
|
|
||||||
// Trim the text if it goes over the allowed length
|
// Trim the text if it goes over the allowed length
|
||||||
int maxWidth = MathHelper.floor( chat.getChatWidth() / chat.getChatScale() );
|
int maxWidth = MathHelper.floor( chat.getWidth() / chat.getScale() );
|
||||||
List<ITextComponent> list = GuiUtilRenderComponents.splitText( component, maxWidth, mc.fontRenderer, false, false );
|
List<TextComponent> list = TextComponentUtil.wrapLines( component, maxWidth, mc.textRenderer, false, false );
|
||||||
if( !list.isEmpty() ) chat.printChatMessageWithOptionalDeletion( list.get( 0 ), id );
|
if( !list.isEmpty() ) chat.addMessage( list.get( 0 ), id );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int display( TableBuilder table )
|
public int display( TableBuilder table )
|
||||||
{
|
{
|
||||||
GuiNewChat chat = Minecraft.getMinecraft().ingameGUI.getChatGUI();
|
ChatHud chat = MinecraftClient.getInstance().inGameHud.getChatHud();
|
||||||
|
|
||||||
int lastHeight = lastHeights.get( table.getId() );
|
int lastHeight = lastHeights.get( table.getId() );
|
||||||
|
|
||||||
int height = TableFormatter.super.display( table );
|
int height = TableFormatter.super.display( table );
|
||||||
lastHeights.put( table.getId(), height );
|
lastHeights.put( table.getId(), height );
|
||||||
|
|
||||||
for( int i = height; i < lastHeight; i++ ) chat.deleteChatLine( i + table.getId() );
|
for( int i = height; i < lastHeight; i++ ) chat.removeMessage( i + table.getId() );
|
||||||
return height;
|
return height;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,17 +1,11 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client;
|
package dan200.computercraft.client;
|
||||||
|
|
||||||
import dan200.computercraft.ComputerCraft;
|
|
||||||
import net.minecraftforge.fml.common.Mod;
|
|
||||||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
|
||||||
import net.minecraftforge.fml.common.gameevent.TickEvent;
|
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
|
||||||
|
|
||||||
@Mod.EventBusSubscriber( modid = ComputerCraft.MOD_ID, value = Side.CLIENT )
|
|
||||||
public final class FrameInfo
|
public final class FrameInfo
|
||||||
{
|
{
|
||||||
private static int tick;
|
private static int tick;
|
||||||
@@ -31,15 +25,13 @@ public final class FrameInfo
|
|||||||
return renderFrame;
|
return renderFrame;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
public static void onTick()
|
||||||
public static void onTick( TickEvent.ClientTickEvent event )
|
|
||||||
{
|
{
|
||||||
if( event.phase == TickEvent.Phase.START ) tick++;
|
tick++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
public static void onRenderFrame()
|
||||||
public static void onRenderTick( TickEvent.RenderTickEvent event )
|
|
||||||
{
|
{
|
||||||
if( event.phase == TickEvent.Phase.START ) renderFrame++;
|
renderFrame++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,27 +1,28 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlStateManager;
|
||||||
import dan200.computercraft.core.terminal.TextBuffer;
|
import dan200.computercraft.core.terminal.TextBuffer;
|
||||||
import dan200.computercraft.shared.util.Palette;
|
import dan200.computercraft.shared.util.Palette;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.MinecraftClient;
|
||||||
import net.minecraft.client.renderer.BufferBuilder;
|
import net.minecraft.client.render.BufferBuilder;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.client.render.Tessellator;
|
||||||
import net.minecraft.client.renderer.Tessellator;
|
import net.minecraft.client.render.VertexFormats;
|
||||||
import net.minecraft.client.renderer.texture.TextureManager;
|
import net.minecraft.client.texture.TextureManager;
|
||||||
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
|
import net.minecraft.util.Identifier;
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import org.lwjgl.opengl.GL11;
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
public final class FixedWidthFontRenderer
|
public final class FixedWidthFontRenderer
|
||||||
{
|
{
|
||||||
private static final ResourceLocation FONT = new ResourceLocation( "computercraft", "textures/gui/term_font.png" );
|
private static final Identifier FONT = new Identifier( "computercraft", "textures/gui/term_font.png" );
|
||||||
public static final ResourceLocation BACKGROUND = new ResourceLocation( "computercraft", "textures/gui/term_background.png" );
|
public static final Identifier BACKGROUND = new Identifier( "computercraft", "textures/gui/term_background.png" );
|
||||||
|
|
||||||
public static final int FONT_HEIGHT = 9;
|
public static final int FONT_HEIGHT = 9;
|
||||||
public static final int FONT_WIDTH = 6;
|
public static final int FONT_WIDTH = 6;
|
||||||
@@ -38,7 +39,7 @@ public final class FixedWidthFontRenderer
|
|||||||
|
|
||||||
private FixedWidthFontRenderer()
|
private FixedWidthFontRenderer()
|
||||||
{
|
{
|
||||||
m_textureManager = Minecraft.getMinecraft().getTextureManager();
|
m_textureManager = MinecraftClient.getInstance().getTextureManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void greyscaleify( double[] rgb )
|
private static void greyscaleify( double[] rgb )
|
||||||
@@ -63,12 +64,12 @@ public final class FixedWidthFontRenderer
|
|||||||
int xStart = 1 + column * (FONT_WIDTH + 2);
|
int xStart = 1 + column * (FONT_WIDTH + 2);
|
||||||
int yStart = 1 + row * (FONT_HEIGHT + 2);
|
int yStart = 1 + row * (FONT_HEIGHT + 2);
|
||||||
|
|
||||||
renderer.pos( x, y, 0.0 ).tex( xStart / 256.0, yStart / 256.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x, y, 0.0 ).texture( xStart / 256.0, yStart / 256.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x, y + FONT_HEIGHT, 0.0 ).tex( xStart / 256.0, (yStart + FONT_HEIGHT) / 256.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x, y + FONT_HEIGHT, 0.0 ).texture( xStart / 256.0, (yStart + FONT_HEIGHT) / 256.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x + FONT_WIDTH, y, 0.0 ).tex( (xStart + FONT_WIDTH) / 256.0, yStart / 256.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x + FONT_WIDTH, y, 0.0 ).texture( (xStart + FONT_WIDTH) / 256.0, yStart / 256.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x + FONT_WIDTH, y, 0.0 ).tex( (xStart + FONT_WIDTH) / 256.0, yStart / 256.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x + FONT_WIDTH, y, 0.0 ).texture( (xStart + FONT_WIDTH) / 256.0, yStart / 256.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x, y + FONT_HEIGHT, 0.0 ).tex( xStart / 256.0, (yStart + FONT_HEIGHT) / 256.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x, y + FONT_HEIGHT, 0.0 ).texture( xStart / 256.0, (yStart + FONT_HEIGHT) / 256.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x + FONT_WIDTH, y + FONT_HEIGHT, 0.0 ).tex( (xStart + FONT_WIDTH) / 256.0, (yStart + FONT_HEIGHT) / 256.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x + FONT_WIDTH, y + FONT_HEIGHT, 0.0 ).texture( (xStart + FONT_WIDTH) / 256.0, (yStart + FONT_HEIGHT) / 256.0 ).color( r, g, b, 1.0f ).next();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void drawQuad( BufferBuilder renderer, double x, double y, int color, double width, Palette p, boolean greyscale )
|
private void drawQuad( BufferBuilder renderer, double x, double y, int color, double width, Palette p, boolean greyscale )
|
||||||
@@ -82,12 +83,12 @@ public final class FixedWidthFontRenderer
|
|||||||
float g = (float) colour[1];
|
float g = (float) colour[1];
|
||||||
float b = (float) colour[2];
|
float b = (float) colour[2];
|
||||||
|
|
||||||
renderer.pos( x, y, 0.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x, y, 0.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x, y + FONT_HEIGHT, 0.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x, y + FONT_HEIGHT, 0.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x + width, y, 0.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x + width, y, 0.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x + width, y, 0.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x + width, y, 0.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x, y + FONT_HEIGHT, 0.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x, y + FONT_HEIGHT, 0.0 ).color( r, g, b, 1.0f ).next();
|
||||||
renderer.pos( x + width, y + FONT_HEIGHT, 0.0 ).color( r, g, b, 1.0f ).endVertex();
|
renderer.vertex( x + width, y + FONT_HEIGHT, 0.0 ).color( r, g, b, 1.0f ).next();
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isGreyScale( int colour )
|
private boolean isGreyScale( int colour )
|
||||||
@@ -99,8 +100,8 @@ public final class FixedWidthFontRenderer
|
|||||||
{
|
{
|
||||||
// Draw the quads
|
// Draw the quads
|
||||||
Tessellator tessellator = Tessellator.getInstance();
|
Tessellator tessellator = Tessellator.getInstance();
|
||||||
BufferBuilder renderer = tessellator.getBuffer();
|
BufferBuilder renderer = tessellator.getBufferBuilder();
|
||||||
renderer.begin( GL11.GL_TRIANGLES, DefaultVertexFormats.POSITION_COLOR );
|
renderer.begin( GL11.GL_TRIANGLES, VertexFormats.POSITION_COLOR );
|
||||||
if( leftMarginSize > 0.0 )
|
if( leftMarginSize > 0.0 )
|
||||||
{
|
{
|
||||||
int colour1 = "0123456789abcdef".indexOf( backgroundColour.charAt( 0 ) );
|
int colour1 = "0123456789abcdef".indexOf( backgroundColour.charAt( 0 ) );
|
||||||
@@ -128,17 +129,17 @@ public final class FixedWidthFontRenderer
|
|||||||
}
|
}
|
||||||
drawQuad( renderer, x + i * FONT_WIDTH, y, colour, FONT_WIDTH, p, greyScale );
|
drawQuad( renderer, x + i * FONT_WIDTH, y, colour, FONT_WIDTH, p, greyScale );
|
||||||
}
|
}
|
||||||
GlStateManager.disableTexture2D();
|
GlStateManager.disableTexture();
|
||||||
tessellator.draw();
|
tessellator.draw();
|
||||||
GlStateManager.enableTexture2D();
|
GlStateManager.enableTexture();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void drawStringTextPart( int x, int y, TextBuffer s, TextBuffer textColour, boolean greyScale, Palette p )
|
public void drawStringTextPart( int x, int y, TextBuffer s, TextBuffer textColour, boolean greyScale, Palette p )
|
||||||
{
|
{
|
||||||
// Draw the quads
|
// Draw the quads
|
||||||
Tessellator tessellator = Tessellator.getInstance();
|
Tessellator tessellator = Tessellator.getInstance();
|
||||||
BufferBuilder renderer = tessellator.getBuffer();
|
BufferBuilder renderer = tessellator.getBufferBuilder();
|
||||||
renderer.begin( GL11.GL_TRIANGLES, DefaultVertexFormats.POSITION_TEX_COLOR );
|
renderer.begin( GL11.GL_TRIANGLES, VertexFormats.POSITION_UV_COLOR );
|
||||||
for( int i = 0; i < s.length(); i++ )
|
for( int i = 0; i < s.length(); i++ )
|
||||||
{
|
{
|
||||||
// Switch colour
|
// Switch colour
|
||||||
@@ -194,6 +195,6 @@ public final class FixedWidthFontRenderer
|
|||||||
public void bindFont()
|
public void bindFont()
|
||||||
{
|
{
|
||||||
m_textureManager.bindTexture( FONT );
|
m_textureManager.bindTexture( FONT );
|
||||||
GlStateManager.glTexParameteri( GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_S, GL11.GL_CLAMP );
|
GlStateManager.texParameter( GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_S, GL11.GL_CLAMP );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,59 +1,55 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlStateManager;
|
||||||
import dan200.computercraft.ComputerCraft;
|
import dan200.computercraft.ComputerCraft;
|
||||||
import dan200.computercraft.client.gui.widgets.WidgetTerminal;
|
import dan200.computercraft.client.gui.widgets.WidgetTerminal;
|
||||||
|
import dan200.computercraft.client.gui.widgets.WidgetWrapper;
|
||||||
import dan200.computercraft.shared.computer.blocks.TileComputer;
|
import dan200.computercraft.shared.computer.blocks.TileComputer;
|
||||||
import dan200.computercraft.shared.computer.core.ClientComputer;
|
import dan200.computercraft.shared.computer.core.ClientComputer;
|
||||||
import dan200.computercraft.shared.computer.core.ComputerFamily;
|
import dan200.computercraft.shared.computer.core.ComputerFamily;
|
||||||
import dan200.computercraft.shared.computer.core.IComputer;
|
|
||||||
import dan200.computercraft.shared.computer.inventory.ContainerComputer;
|
import dan200.computercraft.shared.computer.inventory.ContainerComputer;
|
||||||
import net.minecraft.client.gui.inventory.GuiContainer;
|
import net.minecraft.client.gui.ContainerScreen;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.container.Container;
|
||||||
import net.minecraft.inventory.Container;
|
import net.minecraft.entity.player.PlayerInventory;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.text.StringTextComponent;
|
||||||
import org.lwjgl.input.Keyboard;
|
import net.minecraft.util.Identifier;
|
||||||
import org.lwjgl.input.Mouse;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
public class GuiComputer<T extends Container> extends ContainerScreen<T>
|
||||||
|
|
||||||
public class GuiComputer extends GuiContainer
|
|
||||||
{
|
{
|
||||||
public static final ResourceLocation BACKGROUND_NORMAL = new ResourceLocation( ComputerCraft.MOD_ID, "textures/gui/corners.png" );
|
private static final Identifier BACKGROUND_NORMAL = new Identifier( "computercraft", "textures/gui/corners_normal.png" );
|
||||||
public static final ResourceLocation BACKGROUND_ADVANCED = new ResourceLocation( ComputerCraft.MOD_ID, "textures/gui/corners_advanced.png" );
|
private static final Identifier BACKGROUND_ADVANCED = new Identifier( "computercraft", "textures/gui/corners_advanced.png" );
|
||||||
public static final ResourceLocation BACKGROUND_COMMAND = new ResourceLocation( ComputerCraft.MOD_ID, "textures/gui/corners_command.png" );
|
private static final Identifier BACKGROUND_COMMAND = new Identifier( "computercraft", "textures/gui/corners_command.png" );
|
||||||
public static final ResourceLocation BACKGROUND_COLOUR = new ResourceLocation( ComputerCraft.MOD_ID, "textures/gui/corners_colour.png" );
|
|
||||||
|
|
||||||
private final ComputerFamily m_family;
|
private final ComputerFamily m_family;
|
||||||
private final ClientComputer m_computer;
|
private final ClientComputer m_computer;
|
||||||
private final int m_termWidth;
|
private final int m_termWidth;
|
||||||
private final int m_termHeight;
|
private final int m_termHeight;
|
||||||
private WidgetTerminal m_terminal;
|
|
||||||
|
|
||||||
public GuiComputer( Container container, ComputerFamily family, ClientComputer computer, int termWidth, int termHeight )
|
private WidgetTerminal terminal;
|
||||||
|
private WidgetWrapper terminalWrapper;
|
||||||
|
|
||||||
|
|
||||||
|
public GuiComputer( T container, PlayerInventory player, ComputerFamily family, ClientComputer computer, int termWidth, int termHeight )
|
||||||
{
|
{
|
||||||
super( container );
|
super( container, player, new StringTextComponent( "" ) );
|
||||||
|
|
||||||
m_family = family;
|
m_family = family;
|
||||||
m_computer = computer;
|
m_computer = computer;
|
||||||
m_termWidth = termWidth;
|
m_termWidth = termWidth;
|
||||||
m_termHeight = termHeight;
|
m_termHeight = termHeight;
|
||||||
m_terminal = null;
|
terminal = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
public static GuiComputer<ContainerComputer> create( int id, TileComputer computer, PlayerInventory player )
|
||||||
public GuiComputer( Container container, ComputerFamily family, IComputer computer, int termWidth, int termHeight )
|
|
||||||
{
|
{
|
||||||
this( container, family, (ClientComputer) computer, termWidth, termHeight );
|
return new GuiComputer<>(
|
||||||
}
|
new ContainerComputer( id, computer ), player,
|
||||||
|
|
||||||
public GuiComputer( TileComputer computer )
|
|
||||||
{
|
|
||||||
this(
|
|
||||||
new ContainerComputer( computer ),
|
|
||||||
computer.getFamily(),
|
computer.getFamily(),
|
||||||
computer.createClientComputer(),
|
computer.createClientComputer(),
|
||||||
ComputerCraft.terminalWidth_computer,
|
ComputerCraft.terminalWidth_computer,
|
||||||
@@ -62,121 +58,100 @@ public class GuiComputer extends GuiContainer
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initGui()
|
protected void init()
|
||||||
{
|
{
|
||||||
super.initGui();
|
minecraft.keyboard.enableRepeatEvents( true );
|
||||||
Keyboard.enableRepeatEvents( true );
|
|
||||||
|
|
||||||
m_terminal = new WidgetTerminal( 0, 0, m_termWidth, m_termHeight, () -> m_computer, 2, 2, 2, 2 );
|
int termPxWidth = m_termWidth * FixedWidthFontRenderer.FONT_WIDTH;
|
||||||
m_terminal.setAllowFocusLoss( false );
|
int termPxHeight = m_termHeight * FixedWidthFontRenderer.FONT_HEIGHT;
|
||||||
xSize = m_terminal.getWidth() + 24;
|
|
||||||
ySize = m_terminal.getHeight() + 24;
|
containerWidth = termPxWidth + 4 + 24;
|
||||||
|
containerHeight = termPxHeight + 4 + 24;
|
||||||
|
|
||||||
|
super.init();
|
||||||
|
|
||||||
|
terminal = new WidgetTerminal( minecraft, () -> m_computer, m_termWidth, m_termHeight, 2, 2, 2, 2 );
|
||||||
|
terminalWrapper = new WidgetWrapper( terminal, 2 + 12 + left, 2 + 12 + top, termPxWidth, termPxHeight );
|
||||||
|
|
||||||
|
children.add( terminalWrapper );
|
||||||
|
setFocused( terminalWrapper );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onGuiClosed()
|
public void removed()
|
||||||
{
|
{
|
||||||
super.onGuiClosed();
|
super.removed();
|
||||||
Keyboard.enableRepeatEvents( false );
|
children.remove( terminal );
|
||||||
|
terminal = null;
|
||||||
|
minecraft.keyboard.enableRepeatEvents( false );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateScreen()
|
public void tick()
|
||||||
{
|
{
|
||||||
super.updateScreen();
|
super.tick();
|
||||||
m_terminal.update();
|
terminal.update();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void keyTyped( char c, int k ) throws IOException
|
public void drawBackground( float partialTicks, int mouseX, int mouseY )
|
||||||
{
|
|
||||||
if( k == 1 )
|
|
||||||
{
|
|
||||||
super.keyTyped( c, k );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if( m_terminal.onKeyTyped( c, k ) ) keyHandled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void mouseClicked( int x, int y, int button )
|
|
||||||
{
|
|
||||||
int startX = (width - m_terminal.getWidth()) / 2;
|
|
||||||
int startY = (height - m_terminal.getHeight()) / 2;
|
|
||||||
m_terminal.mouseClicked( x - startX, y - startY, button );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void handleMouseInput() throws IOException
|
|
||||||
{
|
|
||||||
super.handleMouseInput();
|
|
||||||
|
|
||||||
int x = Mouse.getEventX() * width / mc.displayWidth;
|
|
||||||
int y = height - Mouse.getEventY() * height / mc.displayHeight - 1;
|
|
||||||
int startX = (width - m_terminal.getWidth()) / 2;
|
|
||||||
int startY = (height - m_terminal.getHeight()) / 2;
|
|
||||||
m_terminal.handleMouseInput( x - startX, y - startY );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void handleKeyboardInput() throws IOException
|
|
||||||
{
|
|
||||||
super.handleKeyboardInput();
|
|
||||||
if( m_terminal.onKeyboardInput() ) keyHandled = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void drawGuiContainerForegroundLayer( int par1, int par2 )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void drawGuiContainerBackgroundLayer( float var1, int var2, int var3 )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void drawScreen( int mouseX, int mouseY, float partialTicks )
|
|
||||||
{
|
{
|
||||||
// Work out where to draw
|
// Work out where to draw
|
||||||
int startX = (width - m_terminal.getWidth()) / 2;
|
int startX = terminalWrapper.getX() - 2;
|
||||||
int startY = (height - m_terminal.getHeight()) / 2;
|
int startY = terminalWrapper.getY() - 2;
|
||||||
int endX = startX + m_terminal.getWidth();
|
int endX = startX + terminalWrapper.getWidth() + 4;
|
||||||
int endY = startY + m_terminal.getHeight();
|
int endY = startY + terminalWrapper.getHeight() + 4;
|
||||||
|
|
||||||
// Draw background
|
|
||||||
drawDefaultBackground();
|
|
||||||
|
|
||||||
// Draw terminal
|
// Draw terminal
|
||||||
m_terminal.draw( mc, startX, startY, mouseX, mouseY );
|
terminal.draw( terminalWrapper.getX(), terminalWrapper.getY() );
|
||||||
|
|
||||||
// Draw a border around the terminal
|
// Draw a border around the terminal
|
||||||
GlStateManager.color( 1.0f, 1.0f, 1.0f, 1.0f );
|
GlStateManager.color4f( 1.0f, 1.0f, 1.0f, 1.0f );
|
||||||
switch( m_family )
|
switch( m_family )
|
||||||
{
|
{
|
||||||
case Normal:
|
case Normal:
|
||||||
default:
|
default:
|
||||||
mc.getTextureManager().bindTexture( BACKGROUND_NORMAL );
|
minecraft.getTextureManager().bindTexture( BACKGROUND_NORMAL );
|
||||||
break;
|
break;
|
||||||
case Advanced:
|
case Advanced:
|
||||||
mc.getTextureManager().bindTexture( BACKGROUND_ADVANCED );
|
minecraft.getTextureManager().bindTexture( BACKGROUND_ADVANCED );
|
||||||
break;
|
break;
|
||||||
case Command:
|
case Command:
|
||||||
mc.getTextureManager().bindTexture( BACKGROUND_COMMAND );
|
minecraft.getTextureManager().bindTexture( BACKGROUND_COMMAND );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
drawTexturedModalRect( startX - 12, startY - 12, 12, 28, 12, 12 );
|
blit( startX - 12, startY - 12, 12, 28, 12, 12 );
|
||||||
drawTexturedModalRect( startX - 12, endY, 12, 40, 12, 12 );
|
blit( startX - 12, endY, 12, 40, 12, 16 );
|
||||||
drawTexturedModalRect( endX, startY - 12, 24, 28, 12, 12 );
|
blit( endX, startY - 12, 24, 28, 12, 12 );
|
||||||
drawTexturedModalRect( endX, endY, 24, 40, 12, 12 );
|
blit( endX, endY, 24, 40, 12, 16 );
|
||||||
|
|
||||||
drawTexturedModalRect( startX, startY - 12, 0, 0, endX - startX, 12 );
|
blit( startX, startY - 12, 0, 0, endX - startX, 12 );
|
||||||
drawTexturedModalRect( startX, endY, 0, 12, endX - startX, 12 );
|
blit( startX, endY, 0, 12, endX - startX, 16 );
|
||||||
|
|
||||||
drawTexturedModalRect( startX - 12, startY, 0, 28, 12, endY - startY );
|
blit( startX - 12, startY, 0, 28, 12, endY - startY );
|
||||||
drawTexturedModalRect( endX, startY, 36, 28, 12, endY - startY );
|
blit( endX, startY, 36, 28, 12, endY - startY );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void render( int mouseX, int mouseY, float partialTicks )
|
||||||
|
{
|
||||||
|
renderBackground( 0 );
|
||||||
|
super.render( mouseX, mouseY, partialTicks );
|
||||||
|
drawMouseoverTooltip( mouseX, mouseY );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean mouseDragged( double x, double y, int button, double deltaX, double deltaY )
|
||||||
|
{
|
||||||
|
return (getFocused() != null && getFocused().mouseDragged( x, y, button, deltaX, deltaY ))
|
||||||
|
|| super.mouseDragged( x, y, button, deltaX, deltaY );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean mouseReleased( double x, double y, int button )
|
||||||
|
{
|
||||||
|
return (getFocused() != null && getFocused().mouseReleased( x, y, button ))
|
||||||
|
|| super.mouseReleased( x, y, button );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,49 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
|
||||||
*/
|
|
||||||
package dan200.computercraft.client.gui;
|
|
||||||
|
|
||||||
import dan200.computercraft.ComputerCraft;
|
|
||||||
import dan200.computercraft.shared.Config;
|
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.client.gui.GuiScreen;
|
|
||||||
import net.minecraftforge.fml.client.IModGuiFactory;
|
|
||||||
import net.minecraftforge.fml.client.config.GuiConfig;
|
|
||||||
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public class GuiConfigCC extends GuiConfig
|
|
||||||
{
|
|
||||||
public GuiConfigCC( GuiScreen parentScreen )
|
|
||||||
{
|
|
||||||
super( parentScreen, Config.getConfigElements(), ComputerCraft.MOD_ID, false, false, "CC: Tweaked" );
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class Factory implements IModGuiFactory
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public void initialize( Minecraft minecraft )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean hasConfigGui()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public GuiScreen createConfigGui( GuiScreen parentScreen )
|
|
||||||
{
|
|
||||||
return new GuiConfigCC( parentScreen );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Set<RuntimeOptionCategoryElement> runtimeGuiCategories()
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,49 +1,49 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlStateManager;
|
||||||
|
import dan200.computercraft.ComputerCraft;
|
||||||
import dan200.computercraft.shared.peripheral.diskdrive.ContainerDiskDrive;
|
import dan200.computercraft.shared.peripheral.diskdrive.ContainerDiskDrive;
|
||||||
import net.minecraft.client.gui.inventory.GuiContainer;
|
import net.minecraft.client.gui.ContainerScreen;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.client.resource.language.I18n;
|
||||||
import net.minecraft.client.resources.I18n;
|
import net.minecraft.entity.player.PlayerInventory;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.Identifier;
|
||||||
|
|
||||||
public class GuiDiskDrive extends GuiContainer
|
public class GuiDiskDrive extends ContainerScreen<ContainerDiskDrive>
|
||||||
{
|
{
|
||||||
private static final ResourceLocation BACKGROUND = new ResourceLocation( "computercraft", "textures/gui/diskdrive.png" );
|
private static final Identifier BACKGROUND = new Identifier( "computercraft", "textures/gui/disk_drive.png" );
|
||||||
|
|
||||||
private final ContainerDiskDrive m_container;
|
public GuiDiskDrive( ContainerDiskDrive container, PlayerInventory inventory )
|
||||||
|
|
||||||
public GuiDiskDrive( ContainerDiskDrive container )
|
|
||||||
{
|
{
|
||||||
super( container );
|
super( container, inventory, ComputerCraft.Blocks.diskDrive.getTextComponent() );
|
||||||
m_container = container;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawGuiContainerForegroundLayer( int mouseX, int mouseY )
|
protected void drawForeground( int par1, int par2 )
|
||||||
{
|
{
|
||||||
String title = m_container.getDiskDrive().getDisplayName().getUnformattedText();
|
String title = getTitle().getFormattedText();
|
||||||
fontRenderer.drawString( title, (xSize - fontRenderer.getStringWidth( title )) / 2, 6, 0x404040 );
|
font.draw( title, (containerWidth - font.getStringWidth( title )) / 2.0f, 6, 0x404040 );
|
||||||
fontRenderer.drawString( I18n.format( "container.inventory" ), 8, ySize - 96 + 2, 0x404040 );
|
font.draw( I18n.translate( "container.inventory" ), 8, (containerHeight - 96) + 2, 0x404040 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawGuiContainerBackgroundLayer( float partialTicks, int mouseX, int mouseY )
|
protected void drawBackground( float partialTicks, int mouseX, int mouseY )
|
||||||
{
|
{
|
||||||
GlStateManager.color( 1.0F, 1.0F, 1.0F, 1.0F );
|
GlStateManager.color4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
||||||
mc.getTextureManager().bindTexture( BACKGROUND );
|
minecraft.getTextureManager().bindTexture( BACKGROUND );
|
||||||
drawTexturedModalRect( guiLeft, guiTop, 0, 0, xSize, ySize );
|
blit( left, top, 0, 0, containerWidth, containerHeight );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawScreen( int mouseX, int mouseY, float partialTicks )
|
public void render( int mouseX, int mouseY, float partialTicks )
|
||||||
{
|
{
|
||||||
drawDefaultBackground();
|
renderBackground();
|
||||||
super.drawScreen( mouseX, mouseY, partialTicks );
|
super.render( mouseX, mouseY, partialTicks );
|
||||||
renderHoveredToolTip( mouseX, mouseY );
|
drawMouseoverTooltip( mouseX, mouseY );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,24 +1,35 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
import dan200.computercraft.ComputerCraft;
|
import dan200.computercraft.ComputerCraft;
|
||||||
import dan200.computercraft.shared.media.inventory.ContainerHeldItem;
|
import dan200.computercraft.shared.computer.core.ComputerFamily;
|
||||||
|
import dan200.computercraft.shared.pocket.inventory.ContainerPocketComputer;
|
||||||
import dan200.computercraft.shared.pocket.items.ItemPocketComputer;
|
import dan200.computercraft.shared.pocket.items.ItemPocketComputer;
|
||||||
|
import net.minecraft.entity.player.PlayerInventory;
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
public class GuiPocketComputer extends GuiComputer
|
public class GuiPocketComputer extends GuiComputer<ContainerPocketComputer>
|
||||||
{
|
{
|
||||||
public GuiPocketComputer( ContainerHeldItem container )
|
public GuiPocketComputer( ContainerPocketComputer container, PlayerInventory player )
|
||||||
{
|
{
|
||||||
super(
|
super(
|
||||||
container,
|
container, player,
|
||||||
ComputerCraft.Items.pocketComputer.getFamily( container.getStack() ),
|
getFamily( container.getStack() ),
|
||||||
ItemPocketComputer.createClientComputer( container.getStack() ),
|
ItemPocketComputer.createClientComputer( container.getStack() ),
|
||||||
ComputerCraft.terminalWidth_pocketComputer,
|
ComputerCraft.terminalWidth_pocketComputer,
|
||||||
ComputerCraft.terminalHeight_pocketComputer
|
ComputerCraft.terminalHeight_pocketComputer
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static ComputerFamily getFamily( ItemStack stack )
|
||||||
|
{
|
||||||
|
Item item = stack.getItem();
|
||||||
|
return item instanceof ItemPocketComputer ? ((ItemPocketComputer) item).getFamily() : ComputerFamily.Normal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,51 +1,51 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlStateManager;
|
||||||
|
import dan200.computercraft.ComputerCraft;
|
||||||
import dan200.computercraft.shared.peripheral.printer.ContainerPrinter;
|
import dan200.computercraft.shared.peripheral.printer.ContainerPrinter;
|
||||||
import net.minecraft.client.gui.inventory.GuiContainer;
|
import net.minecraft.client.gui.ContainerScreen;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.client.resource.language.I18n;
|
||||||
import net.minecraft.client.resources.I18n;
|
import net.minecraft.entity.player.PlayerInventory;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.Identifier;
|
||||||
|
|
||||||
public class GuiPrinter extends GuiContainer
|
public class GuiPrinter extends ContainerScreen<ContainerPrinter>
|
||||||
{
|
{
|
||||||
private static final ResourceLocation BACKGROUND = new ResourceLocation( "computercraft", "textures/gui/printer.png" );
|
private static final Identifier BACKGROUND = new Identifier( "computercraft", "textures/gui/printer.png" );
|
||||||
|
|
||||||
private final ContainerPrinter container;
|
public GuiPrinter( ContainerPrinter container, PlayerInventory player )
|
||||||
|
|
||||||
public GuiPrinter( ContainerPrinter container )
|
|
||||||
{
|
{
|
||||||
super( container );
|
super( container, player, ComputerCraft.Blocks.printer.getTextComponent() );
|
||||||
this.container = container;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawGuiContainerForegroundLayer( int mouseX, int mouseY )
|
protected void drawForeground( int mouseX, int mouseY )
|
||||||
{
|
{
|
||||||
String title = container.getPrinter().getDisplayName().getUnformattedText();
|
String title = getTitle().getFormattedText();
|
||||||
fontRenderer.drawString( title, (xSize - fontRenderer.getStringWidth( title )) / 2, 6, 0x404040 );
|
font.draw( title, (containerWidth - font.getStringWidth( title )) / 2.0f, 6, 0x404040 );
|
||||||
fontRenderer.drawString( I18n.format( "container.inventory" ), 8, ySize - 96 + 2, 0x404040 );
|
font.draw( I18n.translate( "container.inventory" ), 8, containerHeight - 96 + 2, 0x404040 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawGuiContainerBackgroundLayer( float partialTicks, int mouseX, int mouseY )
|
protected void drawBackground( float f, int i, int j )
|
||||||
{
|
{
|
||||||
GlStateManager.color( 1.0F, 1.0F, 1.0F, 1.0F );
|
GlStateManager.color4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
||||||
mc.getTextureManager().bindTexture( BACKGROUND );
|
minecraft.getTextureManager().bindTexture( BACKGROUND );
|
||||||
drawTexturedModalRect( guiLeft, guiTop, 0, 0, xSize, ySize );
|
blit( left, top, 0, 0, containerWidth, containerHeight );
|
||||||
|
|
||||||
if( container.isPrinting() ) drawTexturedModalRect( guiLeft + 34, guiTop + 21, 176, 0, 25, 45 );
|
if( container.isPrinting() ) blit( left + 34, top + 21, 176, 0, 25, 45 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawScreen( int mouseX, int mouseY, float partialTicks )
|
public void render( int mouseX, int mouseY, float partialTicks )
|
||||||
{
|
{
|
||||||
drawDefaultBackground();
|
renderBackground();
|
||||||
super.drawScreen( mouseX, mouseY, partialTicks );
|
super.render( mouseX, mouseY, partialTicks );
|
||||||
renderHoveredToolTip( mouseX, mouseY );
|
drawMouseoverTooltip( mouseX, mouseY );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,22 +1,22 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlStateManager;
|
||||||
import dan200.computercraft.core.terminal.TextBuffer;
|
import dan200.computercraft.core.terminal.TextBuffer;
|
||||||
import dan200.computercraft.shared.media.inventory.ContainerHeldItem;
|
import dan200.computercraft.shared.common.ContainerHeldItem;
|
||||||
import dan200.computercraft.shared.media.items.ItemPrintout;
|
import dan200.computercraft.shared.media.items.ItemPrintout;
|
||||||
import net.minecraft.client.gui.inventory.GuiContainer;
|
import net.minecraft.client.gui.ContainerScreen;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.entity.player.PlayerInventory;
|
||||||
import org.lwjgl.input.Mouse;
|
import org.lwjgl.glfw.GLFW;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import static dan200.computercraft.client.render.PrintoutRenderer.*;
|
import static dan200.computercraft.client.render.PrintoutRenderer.*;
|
||||||
|
|
||||||
public class GuiPrintout extends GuiContainer
|
public class GuiPrintout extends ContainerScreen<ContainerHeldItem>
|
||||||
{
|
{
|
||||||
private final boolean m_book;
|
private final boolean m_book;
|
||||||
private final int m_pages;
|
private final int m_pages;
|
||||||
@@ -24,11 +24,11 @@ public class GuiPrintout extends GuiContainer
|
|||||||
private final TextBuffer[] m_colours;
|
private final TextBuffer[] m_colours;
|
||||||
private int m_page;
|
private int m_page;
|
||||||
|
|
||||||
public GuiPrintout( ContainerHeldItem container )
|
public GuiPrintout( ContainerHeldItem container, PlayerInventory player )
|
||||||
{
|
{
|
||||||
super( container );
|
super( container, player, container.getStack().getDisplayName() );
|
||||||
|
|
||||||
ySize = Y_SIZE;
|
containerHeight = Y_SIZE;
|
||||||
|
|
||||||
String[] text = ItemPrintout.getText( container.getStack() );
|
String[] text = ItemPrintout.getText( container.getStack() );
|
||||||
m_text = new TextBuffer[text.length];
|
m_text = new TextBuffer[text.length];
|
||||||
@@ -40,63 +40,70 @@ public class GuiPrintout extends GuiContainer
|
|||||||
|
|
||||||
m_page = 0;
|
m_page = 0;
|
||||||
m_pages = Math.max( m_text.length / ItemPrintout.LINES_PER_PAGE, 1 );
|
m_pages = Math.max( m_text.length / ItemPrintout.LINES_PER_PAGE, 1 );
|
||||||
m_book = ItemPrintout.getType( container.getStack() ) == ItemPrintout.Type.Book;
|
m_book = ((ItemPrintout) container.getStack().getItem()).getType() == ItemPrintout.Type.BOOK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void keyTyped( char c, int k ) throws IOException
|
public boolean keyPressed( int key, int scancode, int modifiers )
|
||||||
{
|
{
|
||||||
super.keyTyped( c, k );
|
if( super.keyPressed( key, scancode, modifiers ) ) return true;
|
||||||
|
|
||||||
if( k == 205 )
|
if( key == GLFW.GLFW_KEY_RIGHT )
|
||||||
{
|
{
|
||||||
// Right
|
|
||||||
if( m_page < m_pages - 1 ) m_page++;
|
if( m_page < m_pages - 1 ) m_page++;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
else if( k == 203 )
|
|
||||||
|
if( key == GLFW.GLFW_KEY_LEFT )
|
||||||
{
|
{
|
||||||
// Left
|
|
||||||
if( m_page > 0 ) m_page--;
|
if( m_page > 0 ) m_page--;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void handleMouseInput() throws IOException
|
public boolean mouseScrolled( double x, double y, double delta )
|
||||||
{
|
{
|
||||||
super.handleMouseInput();
|
if( super.mouseScrolled( x, y, delta ) ) return true;
|
||||||
|
if( delta < 0 )
|
||||||
int mouseWheelChange = Mouse.getEventDWheel();
|
|
||||||
if( mouseWheelChange < 0 )
|
|
||||||
{
|
{
|
||||||
// Scroll up goes to the next page
|
// Scroll up goes to the next page
|
||||||
if( m_page < m_pages - 1 ) m_page++;
|
if( m_page < m_pages - 1 ) m_page++;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
else if( mouseWheelChange > 0 )
|
|
||||||
|
if( delta > 0 )
|
||||||
{
|
{
|
||||||
// Scroll down goes to the previous page
|
// Scroll down goes to the previous page
|
||||||
if( m_page > 0 ) m_page--;
|
if( m_page > 0 ) m_page--;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawGuiContainerBackgroundLayer( float partialTicks, int mouseX, int mouseY )
|
public void drawBackground( float partialTicks, int mouseX, int mouseY )
|
||||||
{
|
{
|
||||||
// Draw the printout
|
// Draw the printout
|
||||||
GlStateManager.color( 1.0f, 1.0f, 1.0f, 1.0f );
|
GlStateManager.color4f( 1.0f, 1.0f, 1.0f, 1.0f );
|
||||||
|
GlStateManager.enableDepthTest();
|
||||||
|
|
||||||
drawBorder( guiLeft, guiTop, zLevel, m_page, m_pages, m_book );
|
drawBorder( left, top, blitOffset, m_page, m_pages, m_book );
|
||||||
drawText( guiLeft + X_TEXT_MARGIN, guiTop + Y_TEXT_MARGIN, ItemPrintout.LINES_PER_PAGE * m_page, m_text, m_colours );
|
drawText( left + X_TEXT_MARGIN, top + Y_TEXT_MARGIN, ItemPrintout.LINES_PER_PAGE * m_page, m_text, m_colours );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawScreen( int mouseX, int mouseY, float partialTicks )
|
public void render( int mouseX, int mouseY, float partialTicks )
|
||||||
{
|
{
|
||||||
// We must take the background further back in order to not overlap with our printed pages.
|
// We must take the background further back in order to not overlap with our printed pages.
|
||||||
zLevel--;
|
blitOffset--;
|
||||||
drawDefaultBackground();
|
renderBackground();
|
||||||
zLevel++;
|
blitOffset++;
|
||||||
|
|
||||||
super.drawScreen( mouseX, mouseY, partialTicks );
|
super.render( mouseX, mouseY, partialTicks );
|
||||||
renderHoveredToolTip( mouseX, mouseY );
|
drawMouseoverTooltip( mouseX, mouseY );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,148 +1,119 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
* Send enquiries to dratcliffe@gmail.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package dan200.computercraft.client.gui;
|
package dan200.computercraft.client.gui;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlStateManager;
|
||||||
import dan200.computercraft.ComputerCraft;
|
import dan200.computercraft.ComputerCraft;
|
||||||
import dan200.computercraft.client.gui.widgets.WidgetTerminal;
|
import dan200.computercraft.client.gui.widgets.WidgetTerminal;
|
||||||
|
import dan200.computercraft.client.gui.widgets.WidgetWrapper;
|
||||||
import dan200.computercraft.shared.computer.core.ClientComputer;
|
import dan200.computercraft.shared.computer.core.ClientComputer;
|
||||||
import dan200.computercraft.shared.computer.core.ComputerFamily;
|
import dan200.computercraft.shared.computer.core.ComputerFamily;
|
||||||
import dan200.computercraft.shared.turtle.blocks.TileTurtle;
|
import dan200.computercraft.shared.turtle.blocks.TileTurtle;
|
||||||
import dan200.computercraft.shared.turtle.inventory.ContainerTurtle;
|
import dan200.computercraft.shared.turtle.inventory.ContainerTurtle;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.gui.ContainerScreen;
|
||||||
import net.minecraft.client.gui.inventory.GuiContainer;
|
import net.minecraft.entity.player.PlayerInventory;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.util.Identifier;
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import org.lwjgl.input.Keyboard;
|
|
||||||
import org.lwjgl.input.Mouse;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
public class GuiTurtle extends ContainerScreen<ContainerTurtle>
|
||||||
|
|
||||||
public class GuiTurtle extends GuiContainer
|
|
||||||
{
|
{
|
||||||
private static final ResourceLocation BACKGROUND_NORMAL = new ResourceLocation( "computercraft", "textures/gui/turtle.png" );
|
private static final Identifier BACKGROUND_NORMAL = new Identifier( "computercraft", "textures/gui/turtle_normal.png" );
|
||||||
private static final ResourceLocation BACKGROUND_ADVANCED = new ResourceLocation( "computercraft", "textures/gui/turtle_advanced.png" );
|
private static final Identifier BACKGROUND_ADVANCED = new Identifier( "computercraft", "textures/gui/turtle_advanced.png" );
|
||||||
|
|
||||||
private ContainerTurtle m_container;
|
private ContainerTurtle m_container;
|
||||||
|
|
||||||
private final ComputerFamily m_family;
|
private final ComputerFamily m_family;
|
||||||
private final ClientComputer m_computer;
|
private final ClientComputer m_computer;
|
||||||
private WidgetTerminal m_terminalGui;
|
|
||||||
|
|
||||||
public GuiTurtle( TileTurtle turtle, ContainerTurtle container )
|
private WidgetTerminal terminal;
|
||||||
|
private WidgetWrapper terminalWrapper;
|
||||||
|
|
||||||
|
public GuiTurtle( TileTurtle turtle, ContainerTurtle container, PlayerInventory player )
|
||||||
{
|
{
|
||||||
super( container );
|
super( container, player, turtle.getDisplayName() );
|
||||||
|
|
||||||
m_container = container;
|
m_container = container;
|
||||||
m_family = turtle.getFamily();
|
m_family = turtle.getFamily();
|
||||||
m_computer = turtle.getClientComputer();
|
m_computer = turtle.getClientComputer();
|
||||||
|
|
||||||
xSize = 254;
|
containerWidth = 254;
|
||||||
ySize = 217;
|
containerHeight = 217;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initGui()
|
protected void init()
|
||||||
{
|
{
|
||||||
super.initGui();
|
super.init();
|
||||||
Keyboard.enableRepeatEvents( true );
|
minecraft.keyboard.enableRepeatEvents( true );
|
||||||
m_terminalGui = new WidgetTerminal(
|
|
||||||
guiLeft + 8,
|
int termPxWidth = ComputerCraft.terminalWidth_turtle * FixedWidthFontRenderer.FONT_WIDTH;
|
||||||
guiTop + 8,
|
int termPxHeight = ComputerCraft.terminalHeight_turtle * FixedWidthFontRenderer.FONT_HEIGHT;
|
||||||
|
|
||||||
|
terminal = new WidgetTerminal(
|
||||||
|
minecraft, () -> m_computer,
|
||||||
ComputerCraft.terminalWidth_turtle,
|
ComputerCraft.terminalWidth_turtle,
|
||||||
ComputerCraft.terminalHeight_turtle,
|
ComputerCraft.terminalHeight_turtle,
|
||||||
() -> m_computer,
|
|
||||||
2, 2, 2, 2
|
2, 2, 2, 2
|
||||||
);
|
);
|
||||||
m_terminalGui.setAllowFocusLoss( false );
|
terminalWrapper = new WidgetWrapper( terminal, 2 + 8 + left, 2 + 8 + top, termPxWidth, termPxHeight );
|
||||||
|
|
||||||
|
children.add( terminalWrapper );
|
||||||
|
setFocused( terminalWrapper );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onGuiClosed()
|
public void removed()
|
||||||
{
|
{
|
||||||
super.onGuiClosed();
|
super.removed();
|
||||||
Keyboard.enableRepeatEvents( false );
|
children.remove( terminal );
|
||||||
|
terminal = null;
|
||||||
|
minecraft.keyboard.enableRepeatEvents( false );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateScreen()
|
public void tick()
|
||||||
{
|
{
|
||||||
super.updateScreen();
|
super.tick();
|
||||||
m_terminalGui.update();
|
terminal.update();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
private void drawSelectionSlot( boolean advanced )
|
||||||
protected void keyTyped( char c, int k ) throws IOException
|
|
||||||
{
|
|
||||||
if( k == 1 )
|
|
||||||
{
|
|
||||||
super.keyTyped( c, k );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if( m_terminalGui.onKeyTyped( c, k ) ) keyHandled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void mouseClicked( int x, int y, int button ) throws IOException
|
|
||||||
{
|
|
||||||
super.mouseClicked( x, y, button );
|
|
||||||
m_terminalGui.mouseClicked( x, y, button );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void handleMouseInput() throws IOException
|
|
||||||
{
|
|
||||||
super.handleMouseInput();
|
|
||||||
int x = Mouse.getEventX() * width / mc.displayWidth;
|
|
||||||
int y = height - Mouse.getEventY() * height / mc.displayHeight - 1;
|
|
||||||
m_terminalGui.handleMouseInput( x, y );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void handleKeyboardInput() throws IOException
|
|
||||||
{
|
|
||||||
super.handleKeyboardInput();
|
|
||||||
if( m_terminalGui.onKeyboardInput() ) keyHandled = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void drawSelectionSlot( boolean advanced )
|
|
||||||
{
|
{
|
||||||
// Draw selection slot
|
// Draw selection slot
|
||||||
int slot = m_container.getSelectedSlot();
|
int slot = m_container.getSelectedSlot();
|
||||||
if( slot >= 0 )
|
if( slot >= 0 )
|
||||||
{
|
{
|
||||||
GlStateManager.color( 1.0F, 1.0F, 1.0F, 1.0F );
|
GlStateManager.color4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
||||||
int slotX = slot % 4;
|
int slotX = slot % 4;
|
||||||
int slotY = slot / 4;
|
int slotY = slot / 4;
|
||||||
mc.getTextureManager().bindTexture( advanced ? BACKGROUND_ADVANCED : BACKGROUND_NORMAL );
|
minecraft.getTextureManager().bindTexture( advanced ? BACKGROUND_ADVANCED : BACKGROUND_NORMAL );
|
||||||
drawTexturedModalRect( guiLeft + m_container.turtleInvStartX - 2 + slotX * 18, guiTop + m_container.playerInvStartY - 2 + slotY * 18, 0, 217, 24, 24 );
|
blit( left + m_container.m_turtleInvStartX - 2 + slotX * 18, top + m_container.m_playerInvStartY - 2 + slotY * 18, 0, 217, 24, 24 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawGuiContainerBackgroundLayer( float partialTicks, int mouseX, int mouseY )
|
protected void drawBackground( float partialTicks, int mouseX, int mouseY )
|
||||||
{
|
{
|
||||||
// Draw term
|
// Draw term
|
||||||
boolean advanced = m_family == ComputerFamily.Advanced;
|
boolean advanced = m_family == ComputerFamily.Advanced;
|
||||||
m_terminalGui.draw( Minecraft.getMinecraft(), 0, 0, mouseX, mouseY );
|
terminal.draw( terminalWrapper.getX(), terminalWrapper.getY() );
|
||||||
|
|
||||||
// Draw border/inventory
|
// Draw border/inventory
|
||||||
GlStateManager.color( 1.0F, 1.0F, 1.0F, 1.0F );
|
GlStateManager.color4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
||||||
mc.getTextureManager().bindTexture( advanced ? BACKGROUND_ADVANCED : BACKGROUND_NORMAL );
|
minecraft.getTextureManager().bindTexture( advanced ? BACKGROUND_ADVANCED : BACKGROUND_NORMAL );
|
||||||
drawTexturedModalRect( guiLeft, guiTop, 0, 0, xSize, ySize );
|
blit( left, top, 0, 0, containerWidth, containerHeight );
|
||||||
|
|
||||||
drawSelectionSlot( advanced );
|
drawSelectionSlot( advanced );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawScreen( int mouseX, int mouseY, float partialTicks )
|
public void render( int mouseX, int mouseY, float partialTicks )
|
||||||
{
|
{
|
||||||
drawDefaultBackground();
|
renderBackground();
|
||||||
super.drawScreen( mouseX, mouseY, partialTicks );
|
super.render( mouseX, mouseY, partialTicks );
|
||||||
renderHoveredToolTip( mouseX, mouseY );
|
drawMouseoverTooltip( mouseX, mouseY );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,83 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
||||||
* Copyright Daniel Ratcliffe, 2011-2020. Do not distribute without permission.
|
|
||||||
* Send enquiries to dratcliffe@gmail.com
|
|
||||||
*/
|
|
||||||
package dan200.computercraft.client.gui.widgets;
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.client.gui.Gui;
|
|
||||||
|
|
||||||
public abstract class Widget extends Gui
|
|
||||||
{
|
|
||||||
private int m_xPosition;
|
|
||||||
private int m_yPosition;
|
|
||||||
private int m_width;
|
|
||||||
private int m_height;
|
|
||||||
|
|
||||||
protected Widget( int x, int y, int width, int height )
|
|
||||||
{
|
|
||||||
m_xPosition = x;
|
|
||||||
m_yPosition = y;
|
|
||||||
m_width = width;
|
|
||||||
m_height = height;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getXPosition()
|
|
||||||
{
|
|
||||||
return m_xPosition;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getYPosition()
|
|
||||||
{
|
|
||||||
return m_yPosition;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getWidth()
|
|
||||||
{
|
|
||||||
return m_width;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getHeight()
|
|
||||||
{
|
|
||||||
return m_height;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void update()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void draw( Minecraft mc, int xOrigin, int yOrigin, int mouseX, int mouseY )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void handleMouseInput( int mouseX, int mouseY )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean onKeyboardInput()
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public void handleKeyboardInput()
|
|
||||||
{
|
|
||||||
onKeyboardInput();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void mouseClicked( int mouseX, int mouseY, int mouseButton )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean onKeyTyped( char c, int k )
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public void keyTyped( char c, int k )
|
|
||||||
{
|
|
||||||
onKeyTyped( c, k );
|
|
||||||
}
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user