View Single Post
Old 11-12-2012, 08:06 PM   #57
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Týr
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299993
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
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.

Last edited by twobob; 11-12-2012 at 08:41 PM. Reason: refs
twobob is offline   Reply With Quote