okay so thinking about it we need to:
either. Deconstruct the minecraft classes (or just get the source? IIRC you can now?) and derive them from com.amazon.kindle.kindlet.AbstractKindlet rather than java.applet.Applet.
or do the same for the LUAcraft and see where that gets us?
One step forward and two back probably. but that is what is next up...
Any takers?
REFS:
http://mcp.ocean-labs.de/index.php/MCP_Releases
https://wiki.mobileread.com/wiki/Kindlet_Developer_HowTo
http://www.oracle.com/technetwork/sy...dc-155908.html
http://mcp.ocean-labs.de/files/jd132/client/
http://crowdin.net/profile/jeb_
http://mcp.ocean-labs.de/index.php/S...p_Eclipse_MCP4
some seriously helpful stuff there...
EDIT:
Okay, just me then? hmm...
well
Quote:
package net.minecraft.client;
import java.applet.Applet;
import java.awt.BorderLayout;
import java.awt.Canvas;
import net.minecraft.src.CanvasMinecraftApplet;
import net.minecraft.src.MinecraftAppletImpl;
import net.minecraft.src.Session;
public class MinecraftApplet extends Applet
{
/** Reference to the applet canvas. */
private Canvas mcCanvas;
/** Reference to the Minecraft object. */
private Minecraft mc;
/** Reference to the Minecraft main thread. */
private Thread mcThread = null;
|
Looks a likely place to start. Ill get cracking.