2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2010-02-26 05:57:35 +08:00
|
|
|
// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
|
|
|
|
//
|
2010-02-21 08:47:22 +08:00
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// GUI functions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
#include "proxgui.h"
|
|
|
|
#include "proxguiqt.h"
|
2017-07-28 03:32:15 +08:00
|
|
|
#include "proxmark3.h"
|
2009-04-09 14:43:20 +08:00
|
|
|
|
|
|
|
static ProxGuiQT *gui = NULL;
|
2017-07-28 03:32:15 +08:00
|
|
|
static WorkerThread *main_loop_thread = NULL;
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
WorkerThread::WorkerThread(char *script_cmds_file, char *script_cmd, bool usb_present) : script_cmds_file(script_cmds_file), script_cmd(script_cmd), usb_present(usb_present) {
|
2017-07-28 03:32:15 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
WorkerThread::~WorkerThread() {
|
2017-07-28 03:32:15 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
void WorkerThread::run() {
|
2019-03-10 06:35:06 +08:00
|
|
|
main_loop(script_cmds_file, script_cmd, usb_present);
|
2017-07-28 03:32:15 +08:00
|
|
|
}
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
extern "C" void ShowGraphWindow(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
if (!gui)
|
|
|
|
return;
|
2017-10-21 02:39:57 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
gui->ShowGraphWindow();
|
2009-04-09 14:43:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
extern "C" void HideGraphWindow(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
if (!gui)
|
|
|
|
return;
|
2017-10-21 02:39:57 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
gui->HideGraphWindow();
|
2009-04-09 14:43:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
extern "C" void RepaintGraphWindow(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
if (!gui)
|
|
|
|
return;
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
gui->RepaintGraphWindow();
|
2009-04-09 14:43:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
extern "C" void MainGraphics(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
if (!gui)
|
|
|
|
return;
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
gui->MainLoop();
|
2009-04-09 14:43:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool usb_present) {
|
2009-04-09 14:43:20 +08:00
|
|
|
#ifdef Q_WS_X11
|
2019-03-10 06:35:06 +08:00
|
|
|
if (getenv("DISPLAY") == NULL)
|
|
|
|
return;
|
2018-06-04 05:32:02 +08:00
|
|
|
#endif
|
2019-03-10 06:35:06 +08:00
|
|
|
main_loop_thread = new WorkerThread(script_cmds_file, script_cmd, usb_present);
|
|
|
|
gui = new ProxGuiQT(argc, argv, main_loop_thread);
|
2009-04-09 14:43:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
extern "C" void ExitGraphics(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
if (!gui)
|
|
|
|
return;
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
gui->Exit();
|
|
|
|
gui = NULL;
|
2009-04-09 14:43:20 +08:00
|
|
|
}
|