1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-07-17 09:22:53 +00:00
SquidDev 9f8774960f Generate documentation stubs from Javadocs
illuaminate does not handle Java files, for obvious reasons. In order to
get around that, we have a series of stub files within /doc/stub which
mirrored the Java ones. While this works, it has a few problems:

 - The link to source code does not work - it just links to the stub
   file.
 - There's no guarantee that documentation remains consistent with the
   Java code. This change found several methods which were incorrectly
   documented beforehand.

We now replace this with a custom Java doclet[1], which extracts doc
comments from @LuaFunction annotated methods and generates stub-files
from them. These also contain a @source annotation, which allows us to
correctly link them back to the original Java code.

There's some issues with this which have yet to be fixed. However, I
don't think any of them are major blockers right now:

 - The custom doclet relies on Java 9 - I think it's /technically/
   possible to do this on Java 8, but the API is significantly uglier.
   This means that we need to run javadoc on a separate JVM.

   This is possible, and it works locally and on CI, but is definitely
   not a nice approach.

 - illuaminate now requires the doc stubs to be generated in order for
   the linter to pass, which does make running the linter locally much
   harder (especially given the above bullet point).

   We could notionally include the generated stubs (or at least a cut
   down version of them) in the repo, but I'm not 100% sure about that.

[1]: https://docs.oracle.com/javase/9/docs/api/jdk/javadoc/doclet/package-summary.html
2020-07-03 13:31:26 +01:00

62 lines
1.7 KiB
Java

/*
* 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.shared.turtle.upgrades;
import dan200.computercraft.api.lua.LuaException;
import dan200.computercraft.api.lua.LuaFunction;
import dan200.computercraft.api.lua.MethodResult;
import dan200.computercraft.api.peripheral.IPeripheral;
import dan200.computercraft.api.turtle.ITurtleAccess;
import dan200.computercraft.shared.turtle.core.TurtleCraftCommand;
import javax.annotation.Nonnull;
import java.util.Optional;
/**
* The workbench peripheral allows you to craft items within the turtle's inventory.
*
* @cc.module workbench
* @hidden
* @cc.see turtle.craft This uses the {@link CraftingTablePeripheral} peripheral to craft items.
*/
public class CraftingTablePeripheral implements IPeripheral
{
private final ITurtleAccess turtle;
public CraftingTablePeripheral( ITurtleAccess turtle )
{
this.turtle = turtle;
}
@Nonnull
@Override
public String getType()
{
return "workbench";
}
@LuaFunction
public final MethodResult craft( Optional<Integer> count ) throws LuaException
{
int limit = count.orElse( 65 );
if( limit < 0 || limit > 64 ) throw new LuaException( "Crafting count " + limit + " out of range" );
return turtle.executeCommand( new TurtleCraftCommand( limit ) );
}
@Override
public boolean equals( IPeripheral other )
{
return other instanceof CraftingTablePeripheral;
}
@Nonnull
@Override
public Object getTarget()
{
return turtle;
}
}