In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "Libosk"

From WiiBrew
Jump to navigation Jump to search
(New page: ==Overview== '''libosk (OnScreenKeyboard Library) for the wii''' libosk is an easy to use, 100% configurable on screen keyboard for applications written using libwiisprite, written by bea...)
 
m (Fixed links)
 
(18 intermediate revisions by 9 users not shown)
Line 1: Line 1:
==Overview==
+
{{lowercase title}}
'''libosk (OnScreenKeyboard Library) for the wii'''
+
{{Infobox development tools
 +
| title      = libosk
 +
| image      =
 +
| type        = library
 +
| author      = [[User:beardface|beardface]]
 +
| maintainer  =
 +
| contributor =  
 +
| portedby    =  
 +
| version    = 0.4.4
 +
| licence    =  
 +
| download    = https://code.google.com/archive/p/wiichat/downloads
 +
| website    =
 +
| discussion  =
 +
| source      = https://code.google.com/archive/p/wiichat
 +
}}
 +
'''libosk''' (OnScreenKeyboard Library) is an easy to use, 100% configurable on screen keyboard for Wii applications written by [[User:beardface|beardface]]. Language, look and feel, etc can all be easily changed simply by modifying a config file.
  
libosk is an easy to use, 100% configurable on screen keyboard for applications written using libwiisprite, written by beardface.  Changing language, look and feel, etc... can all be accomplished simply by modifying a config file.
+
A demo application showing how to use libosk is included in the release.
  
A demo application showing how to use libosk is included in the release.
+
== Development Guide ==
 +
=== Development libraries used ===
 +
*[[Mini-XML|libmxml]] (included in release)
 +
*[[libwiisprite]]
 +
*[[libfat]]
  
==Development Guide==
+
=== Coding with libosk ===
===Development libraries used===
 
libmxml (included in release)
 
libwiisprite
 
libfat
 
===Coding with libosk===
 
 
Steps to using an OnScreenKeyboard in your application:
 
Steps to using an OnScreenKeyboard in your application:
#Init fat, libwiisprite (GameWindow) and Wiimote
+
 
 +
'''In Header'''
 +
#include "OnScreenKeyboard.h"
 +
#include "wiisprite.h"
 +
'''Init fat, libwiisprite (GameWindow) and Wiimote'''
 
  //... in main
 
  //... in main
 
  fatInitDefault();
 
  fatInitDefault();
 
+
 
  wsp::GameWindow gwd;
 
  wsp::GameWindow gwd;
 
  gwd.InitVideo();
 
  gwd.InitVideo();
 
+
 
  WPAD_Init();
 
  WPAD_Init();
 
  WPAD_SetDataFormat(WPAD_CHAN_0, WPAD_FMT_BTNS_ACC_IR);
 
  WPAD_SetDataFormat(WPAD_CHAN_0, WPAD_FMT_BTNS_ACC_IR);
#Construct OnScreenKeyboard
+
'''Construct OnScreenKeyboard'''
 
  OnScreenKeyboard* osk = new OnScreenKeyboard(&gwd, "/config/key_config.xml");
 
  OnScreenKeyboard* osk = new OnScreenKeyboard(&gwd, "/config/key_config.xml");
#Make as many calls to the library as you'd like, getting a new string, or editting strings
+
'''Make as many calls to the library as you'd like, getting a new string, or editting strings'''
 
  char* ret_string = osk->GetString();
 
  char* ret_string = osk->GetString();
 
  //Or edit your string
 
  //Or edit your string
 
  ret_string = osk->EditString(ret_string);
 
  ret_string = osk->EditString(ret_string);
 +
=== Building your app that uses libosk ===
 +
Change your makefile to include the following libraries
 +
-losk -lmxml -lwiisprite
  
==Custom Keyboard Configuration==
+
== Custom Keyboard Configuration ==
 
'''Images:''' To change look and feel, simply change the images your keyboard config file (xml) references.
 
'''Images:''' To change look and feel, simply change the images your keyboard config file (xml) references.
 +
 
'''Font:''' Simply change the font file your app references, (Must be a bitmap font (see included font for example)), converted to png. (TIP, use alpha channel)
 
'''Font:''' Simply change the font file your app references, (Must be a bitmap font (see included font for example)), converted to png. (TIP, use alpha channel)
 +
 
'''Language:''' To change language, simply modify the keys used in the config file.
 
'''Language:''' To change language, simply modify the keys used in the config file.
  
==Releases==
+
[[Category:Homebrew using libwiisprite]]
[http://wiichat.googlecode.com/files/libosk-0.4.4.zip libosk-0.4.4]
+
[[Category:Libraries]]

Latest revision as of 12:00, 29 October 2017

libosk
General
Author(s)beardface
TypeLibrary
Version0.4.4
Links
Download
Source

libosk (OnScreenKeyboard Library) is an easy to use, 100% configurable on screen keyboard for Wii applications written by beardface. Language, look and feel, etc can all be easily changed simply by modifying a config file.

A demo application showing how to use libosk is included in the release.

Development Guide

Development libraries used

Coding with libosk

Steps to using an OnScreenKeyboard in your application:

In Header

#include "OnScreenKeyboard.h"
#include "wiisprite.h"

Init fat, libwiisprite (GameWindow) and Wiimote

//... in main
fatInitDefault();

wsp::GameWindow gwd;
gwd.InitVideo();

WPAD_Init();
WPAD_SetDataFormat(WPAD_CHAN_0, WPAD_FMT_BTNS_ACC_IR);

Construct OnScreenKeyboard

OnScreenKeyboard* osk = new OnScreenKeyboard(&gwd, "/config/key_config.xml");

Make as many calls to the library as you'd like, getting a new string, or editting strings

char* ret_string = osk->GetString();
//Or edit your string
ret_string = osk->EditString(ret_string);

Building your app that uses libosk

Change your makefile to include the following libraries

-losk -lmxml -lwiisprite

Custom Keyboard Configuration

Images: To change look and feel, simply change the images your keyboard config file (xml) references.

Font: Simply change the font file your app references, (Must be a bitmap font (see included font for example)), converted to png. (TIP, use alpha channel)

Language: To change language, simply modify the keys used in the config file.