mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-22 23:42:48 +02:00
Cleaned GP2X-specific code that was built on all platforms.
There was a lot of gp2x-specific code which was built for all platform. For instance, the code was compiled for all the platforms with the constant "TARGET_GP2X" defined. This obviously had to be fixed.
This commit is contained in:
parent
e066050c11
commit
5f77e3baf7
@ -29,7 +29,7 @@ noinst_HEADERS = asfont.h button.h cpu.h dirdialog.h FastDelegate.h \
|
||||
|
||||
AM_CFLAGS= @CFLAGS@ @SDL_CFLAGS@
|
||||
|
||||
AM_CXXFLAGS = @CXXFLAGS@ @SDL_CFLAGS@ -DTARGET_GP2X \
|
||||
AM_CXXFLAGS = @CXXFLAGS@ @SDL_CFLAGS@ \
|
||||
-fno-exceptions \
|
||||
-Wall -Wextra -Wundef -Wunused-macros
|
||||
|
||||
|
@ -58,7 +58,7 @@ bool BrowseDialog::exec()
|
||||
selected = 0;
|
||||
close = false;
|
||||
while (!close) {
|
||||
if (gmenu2x->f200) gmenu2x->ts.poll();
|
||||
if (gmenu2x->ts.initialized()) gmenu2x->ts.poll();
|
||||
|
||||
paint();
|
||||
|
||||
@ -127,7 +127,7 @@ void BrowseDialog::handleInput()
|
||||
action = getAction(&event);
|
||||
}
|
||||
|
||||
if (gmenu2x->f200 && gmenu2x->ts.pressed() && !gmenu2x->ts.inRect(touchRect)) ts_pressed = false;
|
||||
if (gmenu2x->ts.initialized() && gmenu2x->ts.pressed() && !gmenu2x->ts.inRect(touchRect)) ts_pressed = false;
|
||||
|
||||
if (action == BrowseDialog::ACT_SELECT && (*fl)[selected] == "..")
|
||||
action = BrowseDialog::ACT_GOUP;
|
||||
@ -262,7 +262,7 @@ void BrowseDialog::paint()
|
||||
icon->blit(gmenu2x->s, 5, offsetY);
|
||||
gmenu2x->s->write(gmenu2x->font, (*fl)[i], 24, offsetY + 8, ASFont::HAlignLeft, ASFont::VAlignMiddle);
|
||||
|
||||
if (gmenu2x->f200 && gmenu2x->ts.pressed() && gmenu2x->ts.inRect(touchRect.x, offsetY + 3, touchRect.w, rowHeight)) {
|
||||
if (gmenu2x->ts.initialized() && gmenu2x->ts.pressed() && gmenu2x->ts.inRect(touchRect.x, offsetY + 3, touchRect.w, rowHeight)) {
|
||||
ts_pressed = true;
|
||||
selected = i;
|
||||
}
|
||||
|
121
src/gmenu2x.cpp
121
src/gmenu2x.cpp
@ -79,7 +79,7 @@
|
||||
|
||||
#include <sys/mman.h>
|
||||
|
||||
#ifdef TARGET_PANDORA
|
||||
#ifdef PLATFORM_PANDORA
|
||||
//#include <pnd_container.h>
|
||||
//#include <pnd_conf.h>
|
||||
//#include <pnd_discovery.h>
|
||||
@ -207,8 +207,8 @@ int main(int /*argc*/, char * /*argv*/[]) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void GMenu2X::gp2x_init() {
|
||||
#ifdef TARGET_GP2X
|
||||
void GMenu2X::init() {
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* gp2x_mem = open("/dev/mem", O_RDWR);
|
||||
gp2x_memregs=(unsigned short *)mmap(0, 0x10000, PROT_READ|PROT_WRITE, MAP_SHARED, gp2x_mem, 0xc0000000);
|
||||
MEM_REG=&gp2x_memregs[0];
|
||||
@ -216,6 +216,7 @@ void GMenu2X::gp2x_init() {
|
||||
//if wm97xx fails to open, set f200 to false to prevent any further access to the touchscreen
|
||||
f200 = ts.init();
|
||||
}*/
|
||||
#else
|
||||
batteryHandle = fopen("/sys/class/power_supply/battery/capacity", "r");
|
||||
usbHandle = fopen("/sys/class/power_supply/USB/online", "r");
|
||||
acHandle = fopen("/sys/class/power_supply/ac/online", "r");
|
||||
@ -224,8 +225,8 @@ void GMenu2X::gp2x_init() {
|
||||
#endif
|
||||
}
|
||||
|
||||
void GMenu2X::gp2x_deinit() {
|
||||
#ifdef TARGET_GP2X
|
||||
void GMenu2X::deinit() {
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (gp2x_mem!=0) {
|
||||
gp2x_memregs[0x28DA>>1]=0x4AB;
|
||||
gp2x_memregs[0x290C>>1]=640;
|
||||
@ -233,15 +234,16 @@ void GMenu2X::gp2x_deinit() {
|
||||
}
|
||||
|
||||
if (f200) ts.deinit();*/
|
||||
#endif
|
||||
#else
|
||||
if (batteryHandle) fclose(batteryHandle);
|
||||
if (backlightHandle) fclose(backlightHandle);
|
||||
if (usbHandle) fclose(usbHandle);
|
||||
if (acHandle) fclose(acHandle);
|
||||
#endif
|
||||
}
|
||||
|
||||
void GMenu2X::gp2x_tvout_on(bool /*pal*/) {
|
||||
#ifdef TARGET_GP2X
|
||||
void GMenu2X::tvout_on(bool /*pal*/) {
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (gp2x_mem!=0) {
|
||||
// Ioctl_Dummy_t *msg;
|
||||
// int TVHandle = ioctl(SDL_videofd, FBMMSP2CTRL, msg);
|
||||
@ -257,8 +259,8 @@ void GMenu2X::gp2x_tvout_on(bool /*pal*/) {
|
||||
#endif
|
||||
}
|
||||
|
||||
void GMenu2X::gp2x_tvout_off() {
|
||||
#ifdef TARGET_GP2X
|
||||
void GMenu2X::tvout_off() {
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (gp2x_mem!=0) {
|
||||
close(cx25874);
|
||||
cx25874 = 0;
|
||||
@ -268,7 +270,9 @@ void GMenu2X::gp2x_tvout_off() {
|
||||
}
|
||||
|
||||
|
||||
GMenu2X::GMenu2X() {
|
||||
GMenu2X::GMenu2X()
|
||||
{
|
||||
#ifdef PLATFORM_GP2X
|
||||
//Detect firmware version and type
|
||||
if (fileExists("/etc/open2x")) {
|
||||
fwType = "open2x";
|
||||
@ -277,11 +281,6 @@ GMenu2X::GMenu2X() {
|
||||
fwType = "gph";
|
||||
fwVersion = "";
|
||||
}
|
||||
#ifdef TARGET_GP2X
|
||||
f200 = fileExists("/dev/touchscreen/wm97xx");
|
||||
#else
|
||||
f200 = true;
|
||||
#endif
|
||||
|
||||
//open2x
|
||||
savedVolumeMode = 0;
|
||||
@ -297,12 +296,15 @@ GMenu2X::GMenu2X() {
|
||||
o2x_usb_host_on_boot = false;
|
||||
o2x_usb_hid_on_boot = false;
|
||||
o2x_usb_storage_on_boot = false;
|
||||
#endif
|
||||
|
||||
usbnet = samba = inet = web = false;
|
||||
useSelectionPng = false;
|
||||
|
||||
//load config data
|
||||
readConfig();
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (fwType=="open2x") {
|
||||
readConfigOpen2x();
|
||||
// VOLUME MODIFIER
|
||||
@ -313,6 +315,7 @@ GMenu2X::GMenu2X() {
|
||||
}
|
||||
} else
|
||||
readCommonIni();
|
||||
#endif
|
||||
|
||||
halfX = resX/2;
|
||||
halfY = resY/2;
|
||||
@ -327,11 +330,10 @@ GMenu2X::GMenu2X() {
|
||||
usbHandle = 0;
|
||||
acHandle = 0;
|
||||
|
||||
init();
|
||||
|
||||
#ifdef TARGET_GP2X
|
||||
gp2x_mem = 0;
|
||||
#ifdef PLATFORM_GP2X
|
||||
cx25874 = 0;
|
||||
gp2x_init();
|
||||
|
||||
//Fix tv-out
|
||||
/* if (gp2x_mem!=0) {
|
||||
@ -403,7 +405,10 @@ GMenu2X::GMenu2X() {
|
||||
|
||||
GMenu2X::~GMenu2X() {
|
||||
writeConfig();
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (fwType=="open2x") writeConfigOpen2x();
|
||||
#endif
|
||||
|
||||
quit();
|
||||
|
||||
@ -420,7 +425,7 @@ void GMenu2X::quit() {
|
||||
|
||||
unsetenv("SDL_FBCON_DONT_CLEAR");
|
||||
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (gp2x_mem!=0) {
|
||||
//Fix tv-out
|
||||
if (gp2x_memregs[0x2800>>1]&0x100) {
|
||||
@ -521,11 +526,11 @@ void GMenu2X::initMenu() {
|
||||
//Add virtual links in the setting section
|
||||
else if (menu->getSections()[i]=="settings") {
|
||||
menu->addActionLink(i,"GMenu2X",MakeDelegate(this,&GMenu2X::options),tr["Configure GMenu2X's options"],"skin:icons/configure.png");
|
||||
if (fwType=="open2x")
|
||||
menu->addActionLink(i,"Open2x",MakeDelegate(this,&GMenu2X::settingsOpen2x),tr["Configure Open2x system settings"],"skin:icons/o2xconfigure.png");
|
||||
menu->addActionLink(i,tr["Skin"],MakeDelegate(this,&GMenu2X::skinMenu),tr["Configure skin"],"skin:icons/skin.png");
|
||||
menu->addActionLink(i,tr["Wallpaper"],MakeDelegate(this,&GMenu2X::changeWallpaper),tr["Change GMenu2X wallpaper"],"skin:icons/wallpaper.png");
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (fwType=="open2x")
|
||||
menu->addActionLink(i,"Open2x",MakeDelegate(this,&GMenu2X::settingsOpen2x),tr["Configure Open2x system settings"],"skin:icons/o2xconfigure.png");
|
||||
/* menu->addActionLink(i,"TV",MakeDelegate(this,&GMenu2X::toggleTvOut),tr["Activate/deactivate tv-out"],"skin:icons/tv.png");
|
||||
menu->addActionLink(i,"USB Sd",MakeDelegate(this,&GMenu2X::activateSdUsb),tr["Activate Usb on SD"],"skin:icons/usb.png");
|
||||
if (fwType=="gph" && !f200)
|
||||
@ -686,7 +691,7 @@ void GMenu2X::writeConfig() {
|
||||
ledOff();
|
||||
}
|
||||
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
void GMenu2X::readConfigOpen2x() {
|
||||
string conffile = "/etc/config/open2x.conf";
|
||||
if (fileExists(conffile)) {
|
||||
@ -735,6 +740,7 @@ void GMenu2X::writeConfigOpen2x() {
|
||||
}
|
||||
ledOff();
|
||||
}
|
||||
#endif
|
||||
|
||||
void GMenu2X::writeSkinConfig() {
|
||||
ledOn();
|
||||
@ -776,6 +782,7 @@ void GMenu2X::writeSkinConfig() {
|
||||
ledOff();
|
||||
}
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
void GMenu2X::readCommonIni() {
|
||||
if (fileExists("/usr/gp2x/common.ini")) {
|
||||
ifstream inf("/usr/gp2x/common.ini", ios_base::in);
|
||||
@ -813,6 +820,7 @@ void GMenu2X::readCommonIni() {
|
||||
}
|
||||
|
||||
void GMenu2X::writeCommonIni() {}
|
||||
#endif
|
||||
|
||||
void GMenu2X::readTmp() {
|
||||
lastSelectorElement = -1;
|
||||
@ -856,7 +864,7 @@ void GMenu2X::writeTmp(int selelem, const string &selectordir) {
|
||||
}
|
||||
|
||||
void GMenu2X::initServices() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (usbnet) {
|
||||
string services = "scripts/services.sh "+ip+" "+(inet?"on":"off")+" "+(samba?"on":"off")+" "+(web?"on":"off")+" &";
|
||||
system(services.c_str());
|
||||
@ -865,14 +873,14 @@ void GMenu2X::initServices() {
|
||||
}
|
||||
|
||||
void GMenu2X::ledOn() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
// if (gp2x_mem!=0 && !f200) gp2x_memregs[0x106E >> 1] ^= 16;
|
||||
//SDL_SYS_JoystickGp2xSys(joy.joystick, BATT_LED_ON);
|
||||
#endif
|
||||
}
|
||||
|
||||
void GMenu2X::ledOff() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
// if (gp2x_mem!=0 && !f200) gp2x_memregs[0x106E >> 1] ^= 16;
|
||||
//SDL_SYS_JoystickGp2xSys(joy.joystick, BATT_LED_OFF);
|
||||
#endif
|
||||
@ -906,7 +914,12 @@ void GMenu2X::main() {
|
||||
uint sectionLinkPadding = (skinConfInt["topBarHeight"] - 32 - font->getLineHeight()) / 3;
|
||||
|
||||
bool quit = false;
|
||||
int x,y, offset = menu->sectionLinks()->size()>linksPerPage ? 2 : 6, helpBoxHeight = fwType=="open2x" ? 154 : 139;
|
||||
int x,y, offset = menu->sectionLinks()->size()>linksPerPage ? 2 : 6;
|
||||
#ifdef PLATFORM_GP2X
|
||||
int helpBoxHeight = fwType=="open2x" ? 154 : 139;
|
||||
#else
|
||||
int helpBoxHeight = 154;
|
||||
#endif
|
||||
uint i;
|
||||
long tickBattery = -60000, tickNow;
|
||||
string batteryIcon = "imgs/battery/0.png";
|
||||
@ -994,7 +1007,7 @@ void GMenu2X::main() {
|
||||
}
|
||||
}
|
||||
|
||||
if (f200) {
|
||||
if (ts.initialized()) {
|
||||
btnContextMenu.paint();
|
||||
}
|
||||
//check battery status every 60 seconds
|
||||
@ -1027,8 +1040,9 @@ void GMenu2X::main() {
|
||||
s->write( font, tr["A+VOLUP, A+VOLDOWN: Change volume"], 20, 140 );
|
||||
s->write( font, tr["SELECT: Show contextual menu"], 20, 155 );
|
||||
s->write( font, tr["START: Show options menu"], 20, 170 );
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (fwType=="open2x") s->write( font, tr["X: Toggle speaker mode"], 20, 185 );
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef WITH_DEBUG
|
||||
@ -1047,7 +1061,7 @@ void GMenu2X::main() {
|
||||
s->flip();
|
||||
|
||||
//touchscreen
|
||||
if (f200) {
|
||||
if (ts.initialized()) {
|
||||
ts.poll();
|
||||
btnContextMenu.handleTS();
|
||||
re.x = 0; re.y = 0; re.h = skinConfInt["topBarHeight"]; re.w = resX;
|
||||
@ -1074,8 +1088,6 @@ void GMenu2X::main() {
|
||||
}
|
||||
}
|
||||
|
||||
//#ifdef TARGET_GP2X
|
||||
|
||||
switch (input.waitForPressedButton()) {
|
||||
case ACCEPT:
|
||||
if (menu->selLink() != NULL) menu->selLink()->run();
|
||||
@ -1183,8 +1195,10 @@ void GMenu2X::explorer() {
|
||||
if (fd.exec()) {
|
||||
if (confInt["saveSelection"] && (confInt["section"]!=menu->selSectionIndex() || confInt["link"]!=menu->selLinkIndex()))
|
||||
writeConfig();
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (fwType == "open2x" && savedVolumeMode != volumeMode)
|
||||
writeConfigOpen2x();
|
||||
#endif
|
||||
|
||||
//string command = cmdclean(fd.path()+"/"+fd.file) + "; sync & cd "+cmdclean(getExePath())+"; exec ./gmenu2x";
|
||||
string command = cmdclean(fd.getPath()+"/"+fd.getFile());
|
||||
@ -1253,6 +1267,7 @@ void GMenu2X::options() {
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
void GMenu2X::settingsOpen2x() {
|
||||
SettingsDialog sd(this, input, ts, tr["Open2x Settings"]);
|
||||
sd.addSetting(new MenuSettingBool(this,tr["USB net on boot"],tr["Allow USB networking to be started at boot time"],&o2x_usb_net_on_boot));
|
||||
@ -1277,6 +1292,7 @@ void GMenu2X::settingsOpen2x() {
|
||||
setVolume(confInt["globalVolume"]);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void GMenu2X::skinMenu() {
|
||||
FileLister fl_sk(getHome() + "/skins", true, false);
|
||||
@ -1307,7 +1323,7 @@ void GMenu2X::skinMenu() {
|
||||
}
|
||||
|
||||
void GMenu2X::toggleTvOut() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (cx25874!=0)
|
||||
gp2x_tvout_off();
|
||||
else
|
||||
@ -1501,7 +1517,7 @@ void GMenu2X::contextMenu() {
|
||||
s->flip();
|
||||
|
||||
//touchscreen
|
||||
if (f200) {
|
||||
if (ts.initialized()) {
|
||||
ts.poll();
|
||||
if (ts.released()) {
|
||||
if (!ts.inRect(box))
|
||||
@ -1763,7 +1779,7 @@ void GMenu2X::scanner() {
|
||||
|
||||
uint lineY = 42;
|
||||
|
||||
#ifdef _TARGET_PANDORA
|
||||
#ifdef PLATFORM_PANDORA
|
||||
//char *configpath = pnd_conf_query_searchpath();
|
||||
#else
|
||||
if (confInt["menuClock"]<430) {
|
||||
@ -1782,15 +1798,24 @@ void GMenu2X::scanner() {
|
||||
vector<string> files;
|
||||
scanPath(CARD_ROOT, &files);
|
||||
|
||||
const char *nandpath = NULL;
|
||||
|
||||
#if defined(PLATFORM_GP2X)
|
||||
//Onyl gph firmware has nand
|
||||
/* if (fwType=="gph" && !f200) {
|
||||
if (fwType=="gph" && !isF200())
|
||||
nandpath = "/boot/local/nand";
|
||||
#elif defined(PLATFORM_DINGUX)
|
||||
nandpath = "/media/ccnandb1";
|
||||
#endif
|
||||
|
||||
if (nandpath) {
|
||||
scanbg.write(font,tr["Scanning NAND filesystem..."],5,lineY);
|
||||
scanbg.blit(s,0,0);
|
||||
s->flip();
|
||||
lineY += 26;
|
||||
scanPath("/boot/local/nand",&files);
|
||||
scanPath(nandpath, &files);
|
||||
}
|
||||
*/
|
||||
|
||||
stringstream ss;
|
||||
ss << files.size();
|
||||
string str = "";
|
||||
@ -1873,8 +1898,10 @@ void GMenu2X::scanPath(string path, vector<string> *files) {
|
||||
scanPath(filepath, files);
|
||||
if (statRet != -1) {
|
||||
ext = filepath.substr(filepath.length()-4,4);
|
||||
#ifdef TARGET_GP2X
|
||||
if (ext==".gpu" || ext==".dge")
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (ext==".gpu")
|
||||
#elif defined(PLATFORM_DINGUX) || defined(PLATFORM_NANONOTE)
|
||||
if (ext==".dge")
|
||||
#else
|
||||
if (ext==".pxml")
|
||||
#endif
|
||||
@ -1886,7 +1913,7 @@ void GMenu2X::scanPath(string path, vector<string> *files) {
|
||||
}
|
||||
|
||||
unsigned short GMenu2X::getBatteryLevel() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* if (batteryHandle<=0) return 0;
|
||||
|
||||
if (f200) {
|
||||
@ -1919,6 +1946,8 @@ unsigned short GMenu2X::getBatteryLevel() {
|
||||
if (battval>690) return 2;
|
||||
if (battval>680) return 1;
|
||||
}*/
|
||||
|
||||
#else
|
||||
if (!batteryHandle) return 0;
|
||||
int battval = 0;
|
||||
char battvalcstr[5];
|
||||
@ -1964,7 +1993,7 @@ void GMenu2X::setInputSpeed() {
|
||||
}
|
||||
|
||||
void GMenu2X::applyRamTimings() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
// 6 4 1 1 1 2 2
|
||||
/* if (gp2x_mem!=0) {
|
||||
int tRC = 5, tRAS = 3, tWR = 0, tMRD = 0, tRFC = 0, tRP = 1, tRCD = 1;
|
||||
@ -1975,7 +2004,7 @@ void GMenu2X::applyRamTimings() {
|
||||
}
|
||||
|
||||
void GMenu2X::applyDefaultTimings() {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
// 8 16 3 8 8 8 8
|
||||
/* if (gp2x_mem!=0) {
|
||||
int tRC = 7, tRAS = 15, tWR = 2, tMRD = 7, tRFC = 7, tRP = 7, tRCD = 7;
|
||||
@ -1989,13 +2018,13 @@ void GMenu2X::applyDefaultTimings() {
|
||||
|
||||
void GMenu2X::setClock(unsigned mhz) {
|
||||
mhz = constrain(mhz, 30, confInt["maxClock"]);
|
||||
#ifdef TARGET_GP2X
|
||||
#if defined(PLATFORM_DINGUX) || defined(PLATFORM_NANONOTE)
|
||||
jz_cpuspeed(mhz);
|
||||
#endif
|
||||
}
|
||||
|
||||
void GMenu2X::setGamma(int /*gamma*/) {
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
/* float fgamma = (float)constrain(gamma,1,100)/10;
|
||||
fgamma = 1 / fgamma;
|
||||
MEM_REG[0x2880>>1]&=~(1<<12);
|
||||
|
@ -136,25 +136,27 @@ private:
|
||||
string ip, defaultgw, lastSelectorDir;
|
||||
int lastSelectorElement;
|
||||
void readConfig();
|
||||
void readConfigOpen2x();
|
||||
void readTmp();
|
||||
void readCommonIni();
|
||||
void writeCommonIni();
|
||||
|
||||
void initServices();
|
||||
void initFont();
|
||||
void initMenu();
|
||||
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
void readConfigOpen2x();
|
||||
void readCommonIni();
|
||||
void writeCommonIni();
|
||||
|
||||
unsigned long gp2x_mem;
|
||||
unsigned short *gp2x_memregs;
|
||||
volatile unsigned short *MEM_REG;
|
||||
int cx25874; //tv-out
|
||||
#endif
|
||||
void gp2x_tvout_on(bool pal);
|
||||
void gp2x_tvout_off();
|
||||
void gp2x_init();
|
||||
void gp2x_deinit();
|
||||
|
||||
void tvout_on(bool pal);
|
||||
void tvout_off();
|
||||
void init();
|
||||
void deinit();
|
||||
void toggleTvOut();
|
||||
|
||||
public:
|
||||
@ -191,15 +193,18 @@ public:
|
||||
//Configuration settings
|
||||
bool useSelectionPng;
|
||||
void setSkin(const string &skin, bool setWallpaper = true);
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
//firmware type and version
|
||||
string fwType, fwVersion;
|
||||
//gp2x type
|
||||
bool f200;
|
||||
|
||||
bool isF200() { return ts.initialized(); }
|
||||
|
||||
// Open2x settings ---------------------------------------------------------
|
||||
bool o2x_usb_net_on_boot, o2x_ftp_on_boot, o2x_telnet_on_boot, o2x_gp2xjoy_on_boot, o2x_usb_host_on_boot, o2x_usb_hid_on_boot, o2x_usb_storage_on_boot;
|
||||
string o2x_usb_net_ip;
|
||||
int volumeMode, savedVolumeMode; // just use the const int scale values at top of source
|
||||
#endif
|
||||
|
||||
// Volume scaling values to store from config files
|
||||
int volumeScalerPhones;
|
||||
@ -214,11 +219,15 @@ public:
|
||||
//Status functions
|
||||
void main();
|
||||
void options();
|
||||
#ifdef PLATFORM_GP2X
|
||||
void settingsOpen2x();
|
||||
#endif
|
||||
void skinMenu();
|
||||
/*
|
||||
void activateSdUsb();
|
||||
void activateNandUsb();
|
||||
void activateRootUsb();
|
||||
*/
|
||||
void about();
|
||||
void viewLog();
|
||||
void contextMenu();
|
||||
@ -241,7 +250,9 @@ public:
|
||||
void setInputSpeed();
|
||||
|
||||
void writeConfig();
|
||||
#ifdef PLATFORM_GP2X
|
||||
void writeConfigOpen2x();
|
||||
#endif
|
||||
void writeSkinConfig();
|
||||
void writeTmp(int selelem=-1, const string &selectordir="");
|
||||
|
||||
|
@ -160,7 +160,7 @@ bool InputDialog::exec() {
|
||||
|
||||
if (caretOn) gmenu2x->s->box(box.x+box.w-12, box.y+3, 8, box.h-6, gmenu2x->skinConfColors[COLOR_SELECTION_BG]);
|
||||
|
||||
if (gmenu2x->f200) ts.poll();
|
||||
if (ts.initialized()) ts.poll();
|
||||
action = drawVirtualKeyboard();
|
||||
gmenu2x->s->flip();
|
||||
|
||||
@ -311,7 +311,7 @@ int InputDialog::drawVirtualKeyboard() {
|
||||
SDL_Rect re = {kbLeft+xc*KEY_WIDTH-1, KB_TOP+l*KEY_HEIGHT, KEY_WIDTH-1, KEY_HEIGHT-2};
|
||||
|
||||
//if ts on rect, change selection
|
||||
if (gmenu2x->f200 && ts.pressed() && ts.inRect(re)) {
|
||||
if (ts.initialized() && ts.pressed() && ts.inRect(re)) {
|
||||
selCol = xc;
|
||||
selRow = l;
|
||||
}
|
||||
@ -325,7 +325,7 @@ int InputDialog::drawVirtualKeyboard() {
|
||||
//Ok/Cancel
|
||||
SDL_Rect re = {kbLeft-1, KB_TOP+kb->size()*KEY_HEIGHT, kbLength*KEY_WIDTH/2-1, KEY_HEIGHT-1};
|
||||
gmenu2x->s->rectangle(re, gmenu2x->skinConfColors[COLOR_SELECTION_BG]);
|
||||
if (gmenu2x->f200 && ts.pressed() && ts.inRect(re)) {
|
||||
if (ts.initialized() && ts.pressed() && ts.inRect(re)) {
|
||||
selCol = 0;
|
||||
selRow = kb->size();
|
||||
}
|
||||
@ -333,14 +333,14 @@ int InputDialog::drawVirtualKeyboard() {
|
||||
|
||||
re.x = kbLeft+kbLength*KEY_WIDTH/2-1;
|
||||
gmenu2x->s->rectangle(re, gmenu2x->skinConfColors[COLOR_SELECTION_BG]);
|
||||
if (gmenu2x->f200 && ts.pressed() && ts.inRect(re)) {
|
||||
if (ts.initialized() && ts.pressed() && ts.inRect(re)) {
|
||||
selCol = 1;
|
||||
selRow = kb->size();
|
||||
}
|
||||
gmenu2x->s->write(gmenu2x->font, gmenu2x->tr["OK"], (int)(160+kbLength*KEY_WIDTH/4), KB_TOP+kb->size()*KEY_HEIGHT+KEY_HEIGHT/2, ASFont::HAlignCenter, ASFont::VAlignMiddle);
|
||||
|
||||
//if ts released
|
||||
if (gmenu2x->f200 && ts.released() && ts.inRect(kbRect)) {
|
||||
if (ts.initialized() && ts.released() && ts.inRect(kbRect)) {
|
||||
action = ID_ACTION_SELECT;
|
||||
}
|
||||
|
||||
|
@ -215,11 +215,8 @@ void LinkApp::setGamma(int gamma) {
|
||||
}
|
||||
// /G
|
||||
|
||||
bool LinkApp::targetExists() {
|
||||
#ifndef TARGET_GP2X
|
||||
return true; //For displaying elements during testing on pc
|
||||
#endif
|
||||
|
||||
bool LinkApp::targetExists()
|
||||
{
|
||||
string target = exec;
|
||||
if (!exec.empty() && exec[0]!='/' && !workdir.empty())
|
||||
target = workdir + "/" + exec;
|
||||
@ -417,10 +414,6 @@ void LinkApp::selector(int startSelection, const string &selectorDir) {
|
||||
void LinkApp::launch(const string &selectedFile, const string &selectedDir) {
|
||||
drawRun();
|
||||
save();
|
||||
#ifndef TARGET_GP2X
|
||||
//delay for testing
|
||||
SDL_Delay(1000);
|
||||
#endif
|
||||
|
||||
//Set correct working directory
|
||||
string wd = workdir;
|
||||
@ -491,8 +484,12 @@ void LinkApp::launch(const string &selectedFile, const string &selectedDir) {
|
||||
} else {
|
||||
if (gmenu2x->confInt["saveSelection"] && (gmenu2x->confInt["section"]!=gmenu2x->menu->selSectionIndex() || gmenu2x->confInt["link"]!=gmenu2x->menu->selLinkIndex()))
|
||||
gmenu2x->writeConfig();
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
if (gmenu2x->fwType == "open2x" && gmenu2x->savedVolumeMode != gmenu2x->volumeMode)
|
||||
gmenu2x->writeConfigOpen2x();
|
||||
#endif
|
||||
|
||||
if (selectedFile=="")
|
||||
gmenu2x->writeTmp();
|
||||
gmenu2x->quit();
|
||||
|
@ -111,7 +111,7 @@ int MenuSettingInt::value()
|
||||
|
||||
void MenuSettingInt::adjustInput()
|
||||
{
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
// gmenu2x->input.setInterval(30, ACTION_LEFT );
|
||||
// gmenu2x->input.setInterval(30, ACTION_RIGHT);
|
||||
#endif
|
||||
|
@ -191,7 +191,7 @@ unsigned short MenuSettingRGBA::getSelPart()
|
||||
|
||||
void MenuSettingRGBA::adjustInput()
|
||||
{
|
||||
#ifdef TARGET_GP2X
|
||||
#ifdef PLATFORM_GP2X
|
||||
/*
|
||||
gmenu2x->input.setInterval(30, ACTION_Y );
|
||||
gmenu2x->input.setInterval(30, ACTION_X );
|
||||
|
@ -105,6 +105,8 @@ int MessageBox::exec() {
|
||||
|
||||
bevent_t event;
|
||||
while (result<0) {
|
||||
|
||||
#ifdef PLATFORM_GP2X
|
||||
//touchscreen
|
||||
if (gmenu2x->f200) {
|
||||
if (gmenu2x->ts.poll()) {
|
||||
@ -115,6 +117,8 @@ int MessageBox::exec() {
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
gmenu2x->input.update();
|
||||
for (uint i=0; i<buttons.size(); i++)
|
||||
|
@ -59,7 +59,7 @@ bool SettingsDialog::exec() {
|
||||
|
||||
while (!close) {
|
||||
action = SD_NO_ACTION;
|
||||
if (gmenu2x->f200) ts.poll();
|
||||
if (ts.initialized()) ts.poll();
|
||||
|
||||
bg.blit(gmenu2x->s,0,0);
|
||||
|
||||
@ -86,11 +86,11 @@ bool SettingsDialog::exec() {
|
||||
|
||||
gmenu2x->s->setClipRect(clipRect);
|
||||
if (ts_pressed && !ts.pressed()) ts_pressed = false;
|
||||
if (gmenu2x->f200 && ts.pressed() && !ts.inRect(touchRect)) ts_pressed = false;
|
||||
if (ts.initialized() && ts.pressed() && !ts.inRect(touchRect)) ts_pressed = false;
|
||||
for (i=firstElement; i<voices.size() && i<firstElement+numRows; i++) {
|
||||
iY = i-firstElement;
|
||||
voices[i]->draw(iY*rowHeight+gmenu2x->skinConfInt["topBarHeight"]+2);
|
||||
if (gmenu2x->f200 && ts.pressed() && ts.inRect(touchRect.x, touchRect.y+(iY*rowHeight), touchRect.w, rowHeight)) {
|
||||
if (ts.initialized() && ts.pressed() && ts.inRect(touchRect.x, touchRect.y+(iY*rowHeight), touchRect.w, rowHeight)) {
|
||||
ts_pressed = true;
|
||||
sel = i;
|
||||
}
|
||||
|
@ -26,7 +26,7 @@
|
||||
using namespace std;
|
||||
|
||||
Touchscreen::Touchscreen() {
|
||||
wm97xx = 0;
|
||||
ts_fd = 0;
|
||||
calibrated = false;
|
||||
wasPressed = false;
|
||||
_handled = false;
|
||||
@ -40,29 +40,20 @@ Touchscreen::Touchscreen() {
|
||||
}
|
||||
|
||||
Touchscreen::~Touchscreen() {
|
||||
if (wm97xx) deinit();
|
||||
deinit();
|
||||
}
|
||||
|
||||
bool Touchscreen::init() {
|
||||
#ifdef TARGET_GP2X
|
||||
wm97xx = open("/dev/touchscreen/wm97xx", O_RDONLY|O_NOCTTY);
|
||||
#ifdef PLATFORM_GP2X
|
||||
ts_fd = open("/dev/touchscreen/wm97xx", O_RDONLY|O_NOCTTY);
|
||||
#endif
|
||||
return initialized();
|
||||
}
|
||||
|
||||
bool Touchscreen::initialized() {
|
||||
#ifdef TARGET_GP2X
|
||||
return wm97xx>0;
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
void Touchscreen::deinit() {
|
||||
#ifdef TARGET_GP2X
|
||||
close(wm97xx);
|
||||
wm97xx = 0;
|
||||
#endif
|
||||
void Touchscreen::deinit()
|
||||
{
|
||||
if (ts_fd) close(ts_fd);
|
||||
ts_fd = 0;
|
||||
}
|
||||
|
||||
void Touchscreen::calibrate() {
|
||||
@ -75,8 +66,8 @@ void Touchscreen::calibrate() {
|
||||
|
||||
bool Touchscreen::poll() {
|
||||
wasPressed = pressed();
|
||||
#ifdef TARGET_GP2X
|
||||
read(wm97xx, &event, sizeof(TS_EVENT));
|
||||
#ifdef PLATFORM_GP2X
|
||||
read(ts_fd, &event, sizeof(TS_EVENT));
|
||||
if (!calibrated) calibrate();
|
||||
|
||||
if (event.pressure>0) {
|
||||
|
@ -36,7 +36,7 @@ typedef struct {
|
||||
|
||||
class Touchscreen {
|
||||
private:
|
||||
int wm97xx;
|
||||
int ts_fd;
|
||||
bool calibrated, _handled;
|
||||
TS_EVENT event;
|
||||
int calibX, calibY;
|
||||
@ -50,9 +50,15 @@ public:
|
||||
~Touchscreen();
|
||||
|
||||
bool init();
|
||||
bool initialized();
|
||||
void deinit();
|
||||
|
||||
bool initialized() {
|
||||
#ifdef PLATFORM_GP2X
|
||||
return ts_fd>0;
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
||||
bool poll();
|
||||
bool pressed();
|
||||
bool released();
|
||||
|
Loading…
Reference in New Issue
Block a user