Wednesday, June 30, 2010

How to draw text field on canvas

public class CustomInputCanvas extends Canvas implements Runnable,CommandListener
{

int clearKeyCode = Integer.MIN_VALUE;

StringBuffer currentText = new StringBuffer();
String currentString = new String();

int lastPressedKey = Integer.MIN_VALUE;
int currentKeyStep = 0;

Font inputFont = null;
int inputWidth = 0;
int inputHeight = 0;
int inputTranslationX = 0;

long lastKeyTimestamp = 0;
long maxKeyDelay = 500L;

int caretIndex = 0;
int caretLeft = 9;
boolean caretBlinkOn = true;
long caretBlinkDelay = 500L;
long lastCaretBlink = 0;

boolean goToNextChar = true;

static final char[] KEY_NUM1_CHARS = {'.', '?', '!'};
static final char[] KEY_NUM2_CHARS = {'a', 'b', 'c'};
static final char[] KEY_NUM3_CHARS = {'d', 'e', 'f'};
static final char[] KEY_NUM4_CHARS = {'g', 'h', 'i'};
static final char[] KEY_NUM5_CHARS = {'j', 'k', 'l'};
static final char[] KEY_NUM6_CHARS = {'m', 'n', 'o'};
static final char[] KEY_NUM7_CHARS = {'p', 'q', 'r', 's'};
static final char[] KEY_NUM8_CHARS = {'t', 'u', 'v'};
static final char[] KEY_NUM9_CHARS = {'w', 'x', 'y', 'z'};
static final char[] KEY_NUM0_CHARS = {' '};

public static final int[] styles = {Font.STYLE_PLAIN, Font.STYLE_BOLD, Font.STYLE_ITALIC}; //For Todays Schedule
public static final int[] sizes = {Font.SIZE_SMALL, Font.SIZE_MEDIUM, Font.SIZE_LARGE}; //For Todays Schedule
public static final int[] faces = {Font.FACE_SYSTEM, Font.FACE_MONOSPACE, Font.FACE_PROPORTIONAL}; //For Todays Schedule


Font m_font = Font.getFont(faces[2], styles[2], sizes[2]);


public CustomInputCanvas()
{
this.setTitle("VocabGuru");
new Thread(this).start();
inputFont = Font.getDefaultFont();
inputWidth = getWidth();
inputHeight = inputFont.getHeight();
//this.addCommand(OK_SEARCH);
//this.addCommand(BACK_TODAYS);
setCommandListener(this);
//this.e = e;

}

public void commandAction(Command c, Displayable d) {

}

public char[] getChars(int key)
{
switch(key)
{
case Canvas.KEY_NUM1: return KEY_NUM1_CHARS;
case Canvas.KEY_NUM2: return KEY_NUM2_CHARS;
case Canvas.KEY_NUM3: return KEY_NUM3_CHARS;
case Canvas.KEY_NUM4: return KEY_NUM4_CHARS;
case Canvas.KEY_NUM5: return KEY_NUM5_CHARS;
case Canvas.KEY_NUM6: return KEY_NUM6_CHARS;
case Canvas.KEY_NUM7: return KEY_NUM7_CHARS;
case Canvas.KEY_NUM8: return KEY_NUM8_CHARS;
case Canvas.KEY_NUM9: return KEY_NUM9_CHARS;
case Canvas.KEY_NUM0: return KEY_NUM0_CHARS;
}
return null;
}
boolean isClearKey(int key)
{
return key == -8;
}

void clearChar()
{
if(currentText.length() > 0 && caretIndex > 0)
{
caretIndex--;

currentText.deleteCharAt(caretIndex);

currentString = currentText.toString();
}
}
void updateCaretPosition()
{
caretLeft = inputFont.substringWidth(currentString, 0, caretIndex)+9;

if(caretLeft + inputTranslationX < 0)
{
inputTranslationX = - caretLeft;
}
else if(caretLeft + inputTranslationX > inputWidth)
{
inputTranslationX = inputWidth - caretLeft;
}
}
public void keyPressed(int key)
{
int gameAction = getGameAction(key);

System.out.println("KEY: " + key + ", " + gameAction);

if(isClearKey(key))
{
clearChar();

updateCaretPosition();

goToNextChar = true;
}
else if(key >= KEY_NUM0 && key <= KEY_NUM9)
{
if(currentString.length()<20)
writeKeyPressed(key);
}
else if(gameAction == Canvas.LEFT)
{
if(caretIndex > 0)
{
caretIndex--;

updateCaretPosition();

goToNextChar = true;
}
}
else if(gameAction == Canvas.RIGHT)
{
if(caretIndex < currentText.length())
{
if(goToNextChar)
caretIndex++;

updateCaretPosition();

goToNextChar = true;
}
}
}
public void writeKeyPressed(int key)
{
if(goToNextChar || key != lastPressedKey)
{
goToNextChar = true;

lastPressedKey = key;

currentKeyStep = 0;
}
else
{
currentKeyStep++;
}

char[] chars = getChars(key);

if(chars != null)
{
if(currentKeyStep >= chars.length)
{
currentKeyStep -= chars.length;
}
if(goToNextChar)
{
currentText.insert(caretIndex, chars[currentKeyStep]);

caretIndex++;
}
else
{
currentText.setCharAt(caretIndex - 1, chars[currentKeyStep]);
}
currentString = currentText.toString();

updateCaretPosition();

lastKeyTimestamp = System.currentTimeMillis();

goToNextChar = false;
}
}

public void checkTimestamps()
{
long currentTime = System.currentTimeMillis();

if(lastCaretBlink + caretBlinkDelay < currentTime)
{
caretBlinkOn = !caretBlinkOn;

lastCaretBlink = currentTime;
}

if(!goToNextChar && lastKeyTimestamp + maxKeyDelay < currentTime)
{
goToNextChar = true;
}
}

public void run()
{
while(true)
{
checkTimestamps();

repaint();

try
{
synchronized(this)
{
wait(50L);
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
}

public void paint(Graphics g)
{

g.setColor(255,0,255);

g.fillRect(0, 0, getWidth(), getHeight());

g.setColor(0,0,255);

g.setFont(m_font);

g.drawString("Search:", 5, 10, Graphics.LEFT | Graphics.TOP);

g.setColor(0x000000);

g.drawRect(5,35, 120,20);

g.setColor(0x000000);

g.translate(inputTranslationX, 0);

g.setFont(inputFont);

System.out.println("****currentString****"+currentString);

g.drawString(currentString, 8, 38, Graphics.LEFT | Graphics.TOP);

//System.out.println("***currentString***"+currentString);

//System.out.println("***inputHeight***"+inputHeight);

//g.drawLine(5,60,5, 50);

if(caretBlinkOn && goToNextChar)
{
g.drawLine(caretLeft, 50,caretLeft, inputHeight+25);
}

g.translate(- inputTranslationX, 0);
}
}