src/test.cpp
author sl
Thu, 22 May 2014 21:32:45 +0200
changeset 23 d4e164906a1b
parent 22 efa6ff02287c
child 24 c6b5c552980a
permissions -rw-r--r--
Fixing our multiple report pixel transfer.
Implementing support for off screen mode which is now the default.
On screen mode is there for debug pruposes.
sl@0
     1
/*******************************************************
sl@0
     2
 Demo Program for HIDAPI
sl@3
     3
sl@0
     4
 Alan Ott
sl@0
     5
 Signal 11 Software
sl@0
     6
sl@0
     7
 2010-07-20
sl@0
     8
sl@0
     9
 Copyright 2010, All Rights Reserved
sl@3
    10
sl@0
    11
 This contents of this file may be used by anyone
sl@0
    12
 for any reason without any conditions and may be
sl@0
    13
 used as a starting point for your own applications
sl@0
    14
 which use HIDAPI.
sl@0
    15
********************************************************/
sl@0
    16
sl@6
    17
#include "MainWindow.h"
sl@0
    18
sl@0
    19
sl@0
    20
// FOX 1.7 changes the timeouts to all be nanoseconds.
sl@0
    21
// Fox 1.6 had all timeouts as milliseconds.
sl@0
    22
#if (FOX_MINOR >= 7)
sl@0
    23
	const int timeout_scalar = 1000*1000;
sl@0
    24
#else
sl@0
    25
	const int timeout_scalar = 1;
sl@0
    26
#endif
sl@0
    27
sl@0
    28
sl@0
    29
FXDEFMAP(MainWindow) MainWindowMap [] = {
sl@0
    30
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_CONNECT, MainWindow::onConnect ),
sl@0
    31
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_DISCONNECT, MainWindow::onDisconnect ),
sl@15
    32
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_RESCAN, MainWindow::onScan ),
sl@0
    33
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_SEND_OUTPUT_REPORT, MainWindow::onSendOutputReport ),
sl@0
    34
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_SEND_FEATURE_REPORT, MainWindow::onSendFeatureReport ),
sl@0
    35
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_GET_FEATURE_REPORT, MainWindow::onGetFeatureReport ),
sl@0
    36
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_CLEAR, MainWindow::onClear ),
sl@2
    37
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_CLEAR_DISPLAY, MainWindow::onFutabaClearDisplay ),
sl@2
    38
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_DIMMING, MainWindow::onFutabaDimming ),
sl@2
    39
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_DISPLAY_DATA_INPUT, MainWindow::onFutabaDisplayDataInput ),
sl@2
    40
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_READ_ID, MainWindow::onFutabaReadId ),
sl@2
    41
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_READ_FIRMWARE_REVISION, MainWindow::onFutabaReadFirmwareRevision ),
sl@2
    42
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_POWER_SUPPLY_MONITOR, MainWindow::onFutabaPowerSupplyMonitor ),
sl@3
    43
    FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_SET_PIXEL, MainWindow::onFutabaSetPixel ),
sl@4
    44
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_RESET_PIXEL, MainWindow::onFutabaResetPixel ),
sl@3
    45
    FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_SET_ALL_PIXELS, MainWindow::onFutabaSetAllPixels ),
sl@22
    46
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_SET_DISPLAY_POSITION, MainWindow::onFutabaSetDisplayPosition ),
sl@23
    47
	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_TOGGLE_OFF_SCREEN_MODE, MainWindow::onFutabaToggleOffScreenMode ),	
sl@6
    48
    FXMAPFUNC(SEL_COMMAND, MainWindow::ID_SELECT_FONT, MainWindow::onSelectFont ),
sl@0
    49
	FXMAPFUNC(SEL_TIMEOUT, MainWindow::ID_TIMER, MainWindow::onTimeout ),
sl@0
    50
	FXMAPFUNC(SEL_TIMEOUT, MainWindow::ID_MAC_TIMER, MainWindow::onMacTimeout ),
sl@0
    51
};
sl@0
    52
sl@0
    53
FXIMPLEMENT(MainWindow, FXMainWindow, MainWindowMap, ARRAYNUMBER(MainWindowMap));
sl@0
    54
sl@0
    55
MainWindow::MainWindow(FXApp *app)
sl@7
    56
	: FXMainWindow(app, "HIDAPI Test Application", NULL, NULL, DECOR_ALL, 200,100, 600,900),
sl@8
    57
    iCurrentFont(NULL),
sl@8
    58
    iFontImage(NULL)
sl@0
    59
{
sl@18
    60
	iBrightness=iVfd01.MaxBrightness();
sl@0
    61
	devices = NULL;
sl@0
    62
	connected_device = NULL;
sl@0
    63
sl@0
    64
	FXVerticalFrame *vf = new FXVerticalFrame(this, LAYOUT_FILL_Y|LAYOUT_FILL_X);
sl@0
    65
sl@0
    66
	FXLabel *label = new FXLabel(vf, "HIDAPI Test Tool");
sl@0
    67
	title_font = new FXFont(getApp(), "Arial", 14, FXFont::Bold);
sl@0
    68
	label->setFont(title_font);
sl@3
    69
sl@0
    70
	new FXLabel(vf,
sl@0
    71
		"Select a device and press Connect.", NULL, JUSTIFY_LEFT);
sl@0
    72
	new FXLabel(vf,
sl@0
    73
		"Output data bytes can be entered in the Output section, \n"
sl@0
    74
		"separated by space, comma or brackets. Data starting with 0x\n"
sl@0
    75
		"is treated as hex. Data beginning with a 0 is treated as \n"
sl@0
    76
		"octal. All other data is treated as decimal.", NULL, JUSTIFY_LEFT);
sl@0
    77
	new FXLabel(vf,
sl@0
    78
		"Data received from the device appears in the Input section.",
sl@0
    79
		NULL, JUSTIFY_LEFT);
sl@0
    80
	new FXLabel(vf,
sl@0
    81
		"Optionally, a report length may be specified. Extra bytes are\n"
sl@0
    82
		"padded with zeros. If no length is specified, the length is \n"
sl@0
    83
		"inferred from the data.",
sl@0
    84
		NULL, JUSTIFY_LEFT);
sl@0
    85
	new FXLabel(vf, "");
sl@0
    86
sl@0
    87
	// Device List and Connect/Disconnect buttons
sl@0
    88
	FXHorizontalFrame *hf = new FXHorizontalFrame(vf, LAYOUT_FILL_X);
sl@0
    89
	//device_list = new FXList(new FXHorizontalFrame(hf,FRAME_SUNKEN|FRAME_THICK, 0,0,0,0, 0,0,0,0), NULL, 0, LISTBOX_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_Y|LAYOUT_FIX_WIDTH|LAYOUT_FIX_HEIGHT, 0,0,300,200);
sl@0
    90
	device_list = new FXList(new FXHorizontalFrame(hf,FRAME_SUNKEN|FRAME_THICK|LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,0,0, 0,0,0,0), NULL, 0, LISTBOX_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,300,200);
sl@0
    91
	FXVerticalFrame *buttonVF = new FXVerticalFrame(hf);
sl@0
    92
	connect_button = new FXButton(buttonVF, "Connect", NULL, this, ID_CONNECT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@0
    93
	disconnect_button = new FXButton(buttonVF, "Disconnect", NULL, this, ID_DISCONNECT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@0
    94
	disconnect_button->disable();
sl@17
    95
	rescan_button = new FXButton(buttonVF, "Scan devices", NULL, this, ID_RESCAN, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@0
    96
	new FXHorizontalFrame(buttonVF, 0, 0,0,0,0, 0,0,50,0);
sl@0
    97
sl@0
    98
	connected_label = new FXLabel(vf, "Disconnected");
sl@3
    99
sl@6
   100
    //Font group
sl@6
   101
    new FXHorizontalFrame(vf);
sl@6
   102
    FXGroupBox *gb = new FXGroupBox(vf, "Fonts", FRAME_GROOVE|LAYOUT_FILL_X);
sl@6
   103
    FXMatrix *matrix = new FXMatrix(gb, 3, MATRIX_BY_COLUMNS|LAYOUT_FILL_X);
sl@6
   104
    iButtonSelectFont = new FXButton(matrix, "Select Font", NULL, this, ID_SELECT_FONT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@6
   105
sl@2
   106
	//Futaba VFD commands
sl@0
   107
	new FXHorizontalFrame(vf);
sl@6
   108
	gb = new FXGroupBox(vf, "Futaba GP1212A01A", FRAME_GROOVE|LAYOUT_FILL_X);
sl@6
   109
	matrix = new FXMatrix(gb, 3, MATRIX_BY_COLUMNS|LAYOUT_FILL_X);
sl@2
   110
	iButtonClearDisplay = new FXButton(matrix, "Clear Display", NULL, this, ID_FUTABA_CLEAR_DISPLAY, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@22
   111
	iButtonBrightness = new FXButton(matrix, "Brightness", NULL, this, ID_FUTABA_DIMMING, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@2
   112
	iButtonDisplayDataInput = new FXButton(matrix, "Display Data Input", NULL, this, ID_FUTABA_DISPLAY_DATA_INPUT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@2
   113
	iButtonReadId = new FXButton(matrix, "Read Id", NULL, this, ID_FUTABA_READ_ID, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@2
   114
	iButtonReadFirmwareRevision =  new FXButton(matrix, "Read Firmware Revision", NULL, this, ID_FUTABA_READ_FIRMWARE_REVISION, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@2
   115
	iButtonPowerSupplyMonitor = new FXButton(matrix, "Power Supply Monitor", NULL, this, ID_FUTABA_POWER_SUPPLY_MONITOR, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@3
   116
    new FXLabel(matrix, "X",NULL,LABEL_NORMAL|LAYOUT_FILL_X);
sl@3
   117
    new FXLabel(matrix, "Y",NULL,LABEL_NORMAL|LAYOUT_FILL_X);
sl@3
   118
    new FXLabel(matrix, "",NULL,LABEL_NORMAL|LAYOUT_FILL_X);
sl@3
   119
    iTextFieldX = new FXTextField(matrix, 3, NULL, 0, TEXTFIELD_NORMAL|TEXTFIELD_INTEGER|LAYOUT_FILL_X);
sl@3
   120
    iTextFieldY = new FXTextField(matrix, 3, NULL, 0, TEXTFIELD_NORMAL|TEXTFIELD_INTEGER|LAYOUT_FILL_X);
sl@4
   121
    iButtonSetPixel = new FXButton(matrix, "Set Pixel", NULL, this, ID_FUTABA_SET_PIXEL, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@4
   122
	iButtonResetPixel = new FXButton(matrix, "Reset Pixel", NULL, this, ID_FUTABA_RESET_PIXEL, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@3
   123
    //
sl@3
   124
    iButtonSetAllPixels = new FXButton(matrix, "Set All Pixels", NULL, this, ID_FUTABA_SET_ALL_PIXELS, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@22
   125
    iButtonSetDisplayPosition = new FXButton(matrix, "Set Display Position", NULL, this, ID_FUTABA_SET_DISPLAY_POSITION, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@23
   126
	iButtonToggleOffScreenMode = new FXButton(matrix, "Switch to on-screen", NULL, this, ID_FUTABA_TOGGLE_OFF_SCREEN_MODE, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@6
   127
    //
sl@6
   128
sl@0
   129
	// Output Group Box
sl@3
   130
	new FXHorizontalFrame(vf);
sl@2
   131
	gb = new FXGroupBox(vf, "Output", FRAME_GROOVE|LAYOUT_FILL_X);
sl@2
   132
	matrix = new FXMatrix(gb, 3, MATRIX_BY_COLUMNS|LAYOUT_FILL_X);
sl@0
   133
	new FXLabel(matrix, "Data");
sl@0
   134
	new FXLabel(matrix, "Length");
sl@0
   135
	new FXLabel(matrix, "");
sl@0
   136
sl@0
   137
	//hf = new FXHorizontalFrame(gb, LAYOUT_FILL_X);
sl@0
   138
	output_text = new FXTextField(matrix, 30, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
sl@0
   139
	output_text->setText("1 0x81 0");
sl@0
   140
	output_len = new FXTextField(matrix, 5, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
sl@0
   141
	output_button = new FXButton(matrix, "Send Output Report", NULL, this, ID_SEND_OUTPUT_REPORT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@0
   142
	output_button->disable();
sl@0
   143
	//new FXHorizontalFrame(matrix, LAYOUT_FILL_X);
sl@0
   144
sl@0
   145
	//hf = new FXHorizontalFrame(gb, LAYOUT_FILL_X);
sl@0
   146
	feature_text = new FXTextField(matrix, 30, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
sl@0
   147
	feature_len = new FXTextField(matrix, 5, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
sl@0
   148
	feature_button = new FXButton(matrix, "Send Feature Report", NULL, this, ID_SEND_FEATURE_REPORT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@0
   149
	feature_button->disable();
sl@0
   150
sl@0
   151
	get_feature_text = new FXTextField(matrix, 30, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
sl@0
   152
	new FXWindow(matrix);
sl@0
   153
	get_feature_button = new FXButton(matrix, "Get Feature Report", NULL, this, ID_GET_FEATURE_REPORT, BUTTON_NORMAL|LAYOUT_FILL_X);
sl@0
   154
	get_feature_button->disable();
sl@0
   155
sl@0
   156
sl@0
   157
	// Input Group Box
sl@0
   158
	gb = new FXGroupBox(vf, "Input", FRAME_GROOVE|LAYOUT_FILL_X|LAYOUT_FILL_Y);
sl@0
   159
	FXVerticalFrame *innerVF = new FXVerticalFrame(gb, LAYOUT_FILL_X|LAYOUT_FILL_Y);
sl@0
   160
	input_text = new FXText(new FXHorizontalFrame(innerVF,LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_SUNKEN|FRAME_THICK, 0,0,0,0, 0,0,0,0), NULL, 0, LAYOUT_FILL_X|LAYOUT_FILL_Y);
sl@0
   161
	input_text->setEditable(false);
sl@0
   162
	new FXButton(innerVF, "Clear", NULL, this, ID_CLEAR, BUTTON_NORMAL|LAYOUT_RIGHT);
sl@3
   163
sl@15
   164
    SetConnectedStates();
sl@0
   165
sl@0
   166
}
sl@0
   167
sl@0
   168
MainWindow::~MainWindow()
sl@0
   169
{
sl@7
   170
    delete iCurrentFont;
sl@7
   171
    iCurrentFont = NULL;
sl@7
   172
sl@8
   173
    delete iFontImage;
sl@8
   174
    iFontImage = NULL;
sl@8
   175
sl@0
   176
	if (connected_device)
sl@0
   177
		hid_close(connected_device);
sl@0
   178
	hid_exit();
sl@0
   179
	delete title_font;
sl@0
   180
}
sl@0
   181
sl@0
   182
void
sl@0
   183
MainWindow::create()
sl@0
   184
{
sl@0
   185
	FXMainWindow::create();
sl@0
   186
	show();
sl@0
   187
sl@15
   188
	onScan(NULL, 0, NULL);
sl@3
   189
sl@15
   190
	//Try to connect to our VFD from start-up
sl@13
   191
	if (iVfd01.Open())
sl@13
   192
        {
sl@22
   193
	    //iVfd01.SetAllPixels(true);
sl@22
   194
	    //iVfd01.Close();
sl@15
   195
        SetConnectedStates();
sl@13
   196
        }
sl@0
   197
sl@0
   198
#ifdef __APPLE__
sl@0
   199
	init_apple_message_system();
sl@0
   200
#endif
sl@3
   201
sl@0
   202
	getApp()->addTimeout(this, ID_MAC_TIMER,
sl@0
   203
		50 * timeout_scalar /*50ms*/);
sl@0
   204
}
sl@0
   205
sl@0
   206
long
sl@0
   207
MainWindow::onConnect(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   208
{
sl@0
   209
	if (connected_device != NULL)
sl@0
   210
		return 1;
sl@3
   211
sl@0
   212
	FXint cur_item = device_list->getCurrentItem();
sl@0
   213
	if (cur_item < 0)
sl@0
   214
		return -1;
sl@0
   215
	FXListItem *item = device_list->getItem(cur_item);
sl@0
   216
	if (!item)
sl@0
   217
		return -1;
sl@0
   218
	struct hid_device_info *device_info = (struct hid_device_info*) item->getData();
sl@0
   219
	if (!device_info)
sl@0
   220
		return -1;
sl@3
   221
sl@0
   222
	connected_device =  hid_open_path(device_info->path);
sl@3
   223
sl@0
   224
	if (!connected_device) {
sl@0
   225
		FXMessageBox::error(this, MBOX_OK, "Device Error", "Unable To Connect to Device");
sl@0
   226
		return -1;
sl@0
   227
	}
sl@3
   228
sl@0
   229
	hid_set_nonblocking(connected_device, 1);
sl@0
   230
sl@2
   231
	//
sl@15
   232
	iOutputReportBuffer=new unsigned char[KFutabaMaxHidReportSize];
sl@0
   233
sl@17
   234
    SetConnectedStates();
sl@17
   235
sl@0
   236
	return 1;
sl@0
   237
}
sl@0
   238
sl@15
   239
/**
sl@15
   240
Tell whether or not we are currently connected to an HID device.
sl@15
   241
*/
sl@15
   242
bool MainWindow::IsConnected()
sl@15
   243
    {
sl@15
   244
    return (connected_device||iVfd01.IsOpen());
sl@15
   245
    }
sl@15
   246
sl@15
   247
/**
sl@15
   248
Update our UI states depending on whether or not we are connected to a device
sl@15
   249
*/
sl@15
   250
void MainWindow::SetConnectedStates()
sl@15
   251
    {
sl@15
   252
    if (IsConnected())
sl@15
   253
        {
sl@15
   254
        //Start pulling for input report
sl@15
   255
        getApp()->addTimeout(this, ID_TIMER, 5 * timeout_scalar /*5ms*/);
sl@15
   256
sl@15
   257
        FXString s;
sl@15
   258
        //s.format("Connected to: %04hx:%04hx -", device_info->vendor_id, device_info->product_id);
sl@15
   259
        s.format("Connected to: ");
sl@15
   260
        if (connected_device)
sl@15
   261
            {
sl@15
   262
            wchar_t string[256];
sl@15
   263
            hid_get_manufacturer_string(connected_device,string,sizeof(string));
sl@15
   264
            s += FXString(" ") + string;
sl@15
   265
            hid_get_product_string(connected_device,string,sizeof(string));
sl@15
   266
            s += FXString(" ") + string;
sl@15
   267
            }
sl@15
   268
        else
sl@15
   269
            {
sl@22
   270
            s += iVfd01.Vendor();
sl@22
   271
			s += iVfd01.Product();
sl@22
   272
			s += iVfd01.SerialNumber();
sl@15
   273
            }
sl@15
   274
        connected_label->setText(s);
sl@15
   275
        output_button->enable();
sl@15
   276
        feature_button->enable();
sl@15
   277
        get_feature_button->enable();
sl@15
   278
        connect_button->disable();
sl@15
   279
        disconnect_button->enable();
sl@15
   280
        input_text->setText("");
sl@15
   281
        //
sl@17
   282
        if (iVfd01.IsOpen())
sl@17
   283
            {
sl@17
   284
            //Those widgets are specific to our VFD
sl@17
   285
            iButtonClearDisplay->enable();
sl@22
   286
            iButtonBrightness->enable();
sl@17
   287
            iButtonDisplayDataInput->enable();
sl@17
   288
            iButtonReadId->enable();
sl@17
   289
            iButtonReadFirmwareRevision->enable();
sl@17
   290
            iButtonPowerSupplyMonitor->enable();
sl@17
   291
            iTextFieldX->enable();
sl@17
   292
            iTextFieldY->enable();
sl@17
   293
            iButtonSetPixel->enable();
sl@17
   294
            iButtonResetPixel->enable();
sl@17
   295
            iButtonSetAllPixels->enable();
sl@21
   296
            iButtonSetDisplayPosition->enable();
sl@23
   297
			iButtonToggleOffScreenMode->enable();
sl@17
   298
            }
sl@15
   299
        }
sl@15
   300
    else
sl@15
   301
        {
sl@15
   302
        //Stop pulling for input report
sl@15
   303
        getApp()->removeTimeout(this, ID_TIMER);
sl@15
   304
        //
sl@15
   305
        connected_label->setText("Disconnected");
sl@15
   306
        output_button->disable();
sl@15
   307
        feature_button->disable();
sl@15
   308
        get_feature_button->disable();
sl@15
   309
        connect_button->enable();
sl@15
   310
        disconnect_button->disable();
sl@17
   311
sl@15
   312
        iButtonClearDisplay->disable();
sl@22
   313
        iButtonBrightness->disable();
sl@15
   314
        iButtonDisplayDataInput->disable();
sl@15
   315
        iButtonReadId->disable();
sl@15
   316
        iButtonReadFirmwareRevision->disable();
sl@15
   317
        iButtonPowerSupplyMonitor->disable();
sl@15
   318
        iTextFieldX->disable();
sl@15
   319
        iTextFieldY->disable();
sl@15
   320
        iButtonSetPixel->disable();
sl@15
   321
        iButtonResetPixel->disable();
sl@15
   322
        iButtonSetAllPixels->disable();
sl@21
   323
        iButtonSetDisplayPosition->disable();
sl@23
   324
		iButtonToggleOffScreenMode->disable();
sl@15
   325
        //
sl@15
   326
        }
sl@15
   327
sl@15
   328
    }
sl@15
   329
sl@0
   330
long
sl@0
   331
MainWindow::onDisconnect(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   332
{
sl@17
   333
    //Close all our devices.
sl@17
   334
    //Closing devices which are not open won't harm.
sl@0
   335
	hid_close(connected_device);
sl@0
   336
	connected_device = NULL;
sl@15
   337
    iVfd01.Close();
sl@2
   338
sl@2
   339
	delete iOutputReportBuffer;
sl@2
   340
	iOutputReportBuffer=NULL;
sl@3
   341
sl@15
   342
    SetConnectedStates();
sl@15
   343
sl@0
   344
	return 1;
sl@0
   345
}
sl@0
   346
sl@0
   347
long
sl@15
   348
MainWindow::onScan(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   349
{
sl@0
   350
	struct hid_device_info *cur_dev;
sl@0
   351
sl@0
   352
	device_list->clearItems();
sl@3
   353
sl@0
   354
	// List the Devices
sl@0
   355
	hid_free_enumeration(devices);
sl@0
   356
	devices = hid_enumerate(0x0, 0x0);
sl@3
   357
	cur_dev = devices;
sl@0
   358
	while (cur_dev) {
sl@2
   359
		// Add it to the List Box only if it is a Futaba device
sl@17
   360
		//if (cur_dev->vendor_id == KFutabaVendorId)
sl@2
   361
			{
sl@2
   362
			FXString s;
sl@2
   363
			FXString usage_str;
sl@2
   364
			s.format("%04hx:%04hx -", cur_dev->vendor_id, cur_dev->product_id);
sl@2
   365
			s += FXString(" ") + cur_dev->manufacturer_string;
sl@2
   366
			s += FXString(" ") + cur_dev->product_string;
sl@2
   367
			usage_str.format(" (usage: %04hx:%04hx) ", cur_dev->usage_page, cur_dev->usage);
sl@2
   368
			s += usage_str;
sl@2
   369
			FXListItem *li = new FXListItem(s, NULL, cur_dev);
sl@2
   370
			device_list->appendItem(li);
sl@2
   371
			}
sl@3
   372
sl@0
   373
		cur_dev = cur_dev->next;
sl@0
   374
	}
sl@0
   375
sl@0
   376
	if (device_list->getNumItems() == 0)
sl@0
   377
		device_list->appendItem("*** No Devices Connected ***");
sl@0
   378
	else {
sl@0
   379
		device_list->selectItem(0);
sl@0
   380
	}
sl@0
   381
sl@0
   382
	return 1;
sl@0
   383
}
sl@0
   384
sl@0
   385
size_t
sl@0
   386
MainWindow::getDataFromTextField(FXTextField *tf, char *buf, size_t len)
sl@0
   387
{
sl@0
   388
	const char *delim = " ,{}\t\r\n";
sl@0
   389
	FXString data = tf->getText();
sl@0
   390
	const FXchar *d = data.text();
sl@0
   391
	size_t i = 0;
sl@3
   392
sl@0
   393
	// Copy the string from the GUI.
sl@0
   394
	size_t sz = strlen(d);
sl@0
   395
	char *str = (char*) malloc(sz+1);
sl@0
   396
	strcpy(str, d);
sl@3
   397
sl@0
   398
	// For each token in the string, parse and store in buf[].
sl@0
   399
	char *token = strtok(str, delim);
sl@0
   400
	while (token) {
sl@0
   401
		char *endptr;
sl@0
   402
		long int val = strtol(token, &endptr, 0);
sl@0
   403
		buf[i++] = val;
sl@0
   404
		token = strtok(NULL, delim);
sl@0
   405
	}
sl@3
   406
sl@0
   407
	free(str);
sl@0
   408
	return i;
sl@0
   409
}
sl@0
   410
sl@0
   411
/* getLengthFromTextField()
sl@0
   412
   Returns length:
sl@0
   413
	 0: empty text field
sl@0
   414
	>0: valid length
sl@0
   415
	-1: invalid length */
sl@0
   416
int
sl@0
   417
MainWindow::getLengthFromTextField(FXTextField *tf)
sl@0
   418
{
sl@0
   419
	long int len;
sl@0
   420
	FXString str = tf->getText();
sl@0
   421
	size_t sz = str.length();
sl@0
   422
sl@0
   423
	if (sz > 0) {
sl@0
   424
		char *endptr;
sl@0
   425
		len = strtol(str.text(), &endptr, 0);
sl@0
   426
		if (endptr != str.text() && *endptr == '\0') {
sl@0
   427
			if (len <= 0) {
sl@0
   428
				FXMessageBox::error(this, MBOX_OK, "Invalid length", "Enter a length greater than zero.");
sl@0
   429
				return -1;
sl@0
   430
			}
sl@0
   431
			return len;
sl@0
   432
		}
sl@0
   433
		else
sl@0
   434
			return -1;
sl@0
   435
	}
sl@0
   436
sl@0
   437
	return 0;
sl@0
   438
}
sl@0
   439
sl@0
   440
long
sl@0
   441
MainWindow::onSendOutputReport(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   442
{
sl@0
   443
	char buf[256];
sl@0
   444
	size_t data_len, len;
sl@0
   445
	int textfield_len;
sl@0
   446
sl@0
   447
	memset(buf, 0x0, sizeof(buf));
sl@0
   448
	textfield_len = getLengthFromTextField(output_len);
sl@0
   449
	data_len = getDataFromTextField(output_text, buf, sizeof(buf));
sl@0
   450
sl@0
   451
	if (textfield_len < 0) {
sl@0
   452
		FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is invalid. Please enter a number in hex, octal, or decimal.");
sl@0
   453
		return 1;
sl@0
   454
	}
sl@0
   455
sl@0
   456
	if (textfield_len > sizeof(buf)) {
sl@0
   457
		FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is too long.");
sl@0
   458
		return 1;
sl@0
   459
	}
sl@0
   460
sl@0
   461
	len = (textfield_len)? textfield_len: data_len;
sl@0
   462
sl@0
   463
	int res = hid_write(connected_device, (const unsigned char*)buf, len);
sl@0
   464
	if (res < 0) {
sl@0
   465
		FXMessageBox::error(this, MBOX_OK, "Error Writing", "Could not write to device. Error reported was: %ls", hid_error(connected_device));
sl@0
   466
	}
sl@3
   467
sl@0
   468
	return 1;
sl@0
   469
}
sl@0
   470
sl@0
   471
long
sl@0
   472
MainWindow::onSendFeatureReport(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   473
{
sl@0
   474
	char buf[256];
sl@0
   475
	size_t data_len, len;
sl@0
   476
	int textfield_len;
sl@0
   477
sl@0
   478
	memset(buf, 0x0, sizeof(buf));
sl@0
   479
	textfield_len = getLengthFromTextField(feature_len);
sl@0
   480
	data_len = getDataFromTextField(feature_text, buf, sizeof(buf));
sl@0
   481
sl@0
   482
	if (textfield_len < 0) {
sl@0
   483
		FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is invalid. Please enter a number in hex, octal, or decimal.");
sl@0
   484
		return 1;
sl@0
   485
	}
sl@0
   486
sl@0
   487
	if (textfield_len > sizeof(buf)) {
sl@0
   488
		FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is too long.");
sl@0
   489
		return 1;
sl@0
   490
	}
sl@0
   491
sl@0
   492
	len = (textfield_len)? textfield_len: data_len;
sl@0
   493
sl@3
   494
	int res = hid_send_feature_report(connected_device, (const unsigned char*)buf, len);
sl@0
   495
	if (res < 0) {
sl@0
   496
		FXMessageBox::error(this, MBOX_OK, "Error Writing", "Could not send feature report to device. Error reported was: %ls", hid_error(connected_device));
sl@0
   497
	}
sl@0
   498
sl@0
   499
	return 1;
sl@0
   500
}
sl@0
   501
sl@0
   502
long
sl@0
   503
MainWindow::onGetFeatureReport(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   504
{
sl@0
   505
	char buf[256];
sl@0
   506
	size_t len;
sl@0
   507
sl@0
   508
	memset(buf, 0x0, sizeof(buf));
sl@0
   509
	len = getDataFromTextField(get_feature_text, buf, sizeof(buf));
sl@0
   510
sl@0
   511
	if (len != 1) {
sl@0
   512
		FXMessageBox::error(this, MBOX_OK, "Too many numbers", "Enter only a single report number in the text field");
sl@0
   513
	}
sl@0
   514
sl@0
   515
	int res = hid_get_feature_report(connected_device, (unsigned char*)buf, sizeof(buf));
sl@0
   516
	if (res < 0) {
sl@0
   517
		FXMessageBox::error(this, MBOX_OK, "Error Getting Report", "Could not get feature report from device. Error reported was: %ls", hid_error(connected_device));
sl@0
   518
	}
sl@0
   519
sl@0
   520
	if (res > 0) {
sl@0
   521
		FXString s;
sl@0
   522
		s.format("Returned Feature Report. %d bytes:\n", res);
sl@0
   523
		for (int i = 0; i < res; i++) {
sl@0
   524
			FXString t;
sl@0
   525
			t.format("%02hhx ", buf[i]);
sl@0
   526
			s += t;
sl@0
   527
			if ((i+1) % 4 == 0)
sl@0
   528
				s += " ";
sl@0
   529
			if ((i+1) % 16 == 0)
sl@0
   530
				s += "\n";
sl@0
   531
		}
sl@0
   532
		s += "\n";
sl@0
   533
		input_text->appendText(s);
sl@0
   534
		input_text->setBottomLine(INT_MAX);
sl@0
   535
	}
sl@3
   536
sl@0
   537
	return 1;
sl@0
   538
}
sl@0
   539
sl@0
   540
long
sl@0
   541
MainWindow::onClear(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   542
{
sl@0
   543
	input_text->setText("");
sl@0
   544
	return 1;
sl@0
   545
}
sl@0
   546
sl@2
   547
sl@2
   548
long
sl@2
   549
MainWindow::onFutabaClearDisplay(FXObject *sender, FXSelector sel, void *ptr)
sl@2
   550
{
sl@18
   551
    iVfd01.Clear();
sl@23
   552
	iVfd01.SwapBuffers();
sl@2
   553
	return 1;
sl@2
   554
}
sl@2
   555
sl@2
   556
long
sl@2
   557
MainWindow::onFutabaDimming(FXObject *sender, FXSelector sel, void *ptr)
sl@2
   558
{
sl@18
   559
    iBrightness = (iBrightness==iVfd01.MaxBrightness()?iVfd01.MinBrightness():++iBrightness);
sl@18
   560
    iVfd01.SetBrightness(iBrightness);
sl@2
   561
	return 1;
sl@2
   562
}
sl@2
   563
sl@2
   564
long
sl@2
   565
MainWindow::onFutabaDisplayDataInput(FXObject *sender, FXSelector sel, void *ptr)
sl@2
   566
{
sl@2
   567
	//@1B 5B F0 00 00 07 00 01 FF
sl@2
   568
sl@10
   569
	memset(iOutputReportBuffer, 0x0, KFutabaMaxHidReportSize);
sl@2
   570
	iOutputReportBuffer[0]=0x00; //Report ID
sl@2
   571
	iOutputReportBuffer[1]=0x09; //Report length
sl@2
   572
	iOutputReportBuffer[2]=0x1B; //
sl@2
   573
	iOutputReportBuffer[3]=0x5B; //
sl@2
   574
	iOutputReportBuffer[4]=0xF0; //
sl@4
   575
	iOutputReportBuffer[5]=0x00; //X
sl@4
   576
	iOutputReportBuffer[6]=0x00; //Y
sl@2
   577
	iOutputReportBuffer[7]=0x07; //
sl@2
   578
	iOutputReportBuffer[8]=0x00; //
sl@2
   579
	iOutputReportBuffer[9]=0x01; //
sl@2
   580
	iOutputReportBuffer[10]=0xFF; //
sl@10
   581
	int res = hid_write(connected_device, iOutputReportBuffer, KFutabaMaxHidReportSize);
sl@2
   582
sl@3
   583
sl@2
   584
	return 1;
sl@2
   585
}
sl@2
   586
sl@4
   587
/**
sl@4
   588
*/
sl@4
   589
long MainWindow::onFutabaSetPixel(FXObject *sender, FXSelector sel, void *ptr)
sl@4
   590
{
sl@4
   591
	int x=0;
sl@4
   592
	int y=0;
sl@4
   593
	iTextFieldX->getText().scan("%d",&x);
sl@4
   594
	iTextFieldY->getText().scan("%d",&y);
sl@18
   595
    //SetPixel(x,y,0x01);
sl@18
   596
    iVfd01.SetPixel(x,y,true);
sl@23
   597
	iVfd01.SwapBuffers();
sl@4
   598
	return 1;
sl@4
   599
}
sl@4
   600
sl@4
   601
/**
sl@4
   602
*/
sl@4
   603
long MainWindow::onFutabaResetPixel(FXObject *sender, FXSelector sel, void *ptr)
sl@4
   604
{
sl@4
   605
	int x=0;
sl@4
   606
	int y=0;
sl@4
   607
	iTextFieldX->getText().scan("%d",&x);
sl@4
   608
	iTextFieldY->getText().scan("%d",&y);
sl@18
   609
    //SetPixel(x,y,0x00);
sl@18
   610
    iVfd01.SetPixel(x,y,false);
sl@23
   611
	iVfd01.SwapBuffers();
sl@4
   612
    return 1;
sl@4
   613
}
sl@4
   614
sl@4
   615
long MainWindow::onFutabaSetAllPixels(FXObject *sender, FXSelector sel, void *ptr)
sl@4
   616
	{
sl@23
   617
    iVfd01.SetAllPixels(0xFF);
sl@23
   618
	iVfd01.SwapBuffers();
sl@4
   619
    return 1;
sl@4
   620
	}
sl@4
   621
sl@21
   622
sl@21
   623
/**
sl@21
   624
sl@21
   625
*/
sl@21
   626
long MainWindow::onFutabaSetDisplayPosition(FXObject *sender, FXSelector sel, void *ptr)
sl@21
   627
    {
sl@21
   628
    int x=0;
sl@21
   629
    int y=0;
sl@21
   630
    iTextFieldX->getText().scan("%d",&x);
sl@21
   631
    iTextFieldY->getText().scan("%d",&y);
sl@22
   632
    iVfd01.SetDisplayPosition(x,y);
sl@21
   633
    return 1;
sl@21
   634
    }
sl@21
   635
sl@21
   636
sl@23
   637
/**
sl@23
   638
sl@23
   639
*/
sl@23
   640
long MainWindow::onFutabaToggleOffScreenMode(FXObject *sender, FXSelector sel, void *ptr)
sl@23
   641
    {
sl@23
   642
    iVfd01.ToggleOffScreenMode();
sl@23
   643
	if (iVfd01.OffScreenMode())
sl@23
   644
		{
sl@23
   645
		iButtonToggleOffScreenMode->setText("Switch to on-screen");
sl@23
   646
		}
sl@23
   647
	else
sl@23
   648
		{
sl@23
   649
		iButtonToggleOffScreenMode->setText("Switch to off-screen");
sl@23
   650
		}
sl@23
   651
    return 1;
sl@23
   652
    }
sl@23
   653
sl@23
   654
sl@23
   655
sl@23
   656
sl@2
   657
long
sl@2
   658
MainWindow::onFutabaReadId(FXObject *sender, FXSelector sel, void *ptr)
sl@2
   659
{
sl@19
   660
    iVfd01.RequestId();
sl@2
   661
	return 1;
sl@2
   662
}
sl@2
   663
sl@2
   664
long
sl@2
   665
MainWindow::onFutabaReadFirmwareRevision(FXObject *sender, FXSelector sel, void *ptr)
sl@2
   666
{
sl@19
   667
    iVfd01.RequestFirmwareRevision();
sl@2
   668
	return 1;
sl@2
   669
}
sl@2
   670
sl@2
   671
long
sl@2
   672
MainWindow::onFutabaPowerSupplyMonitor(FXObject *sender, FXSelector sel, void *ptr)
sl@2
   673
{
sl@19
   674
    iVfd01.RequestPowerSupplyStatus();
sl@2
   675
	return 1;
sl@2
   676
}
sl@2
   677
sl@2
   678
sl@2
   679
sl@0
   680
long
sl@0
   681
MainWindow::onTimeout(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   682
{
sl@17
   683
    FutabaVfdReport report;
sl@17
   684
	unsigned char buffer[256];
sl@17
   685
    unsigned char* buf=NULL;
sl@17
   686
    int res = 0;
sl@17
   687
sl@17
   688
    //Use either our display or our generic device depending which one is connected
sl@17
   689
    if (connected_device)
sl@17
   690
        {
sl@17
   691
	    res = hid_read(connected_device, buffer, sizeof(buffer));
sl@17
   692
        buf=buffer;
sl@17
   693
        }
sl@17
   694
    else
sl@17
   695
        {
sl@17
   696
        res=iVfd01.Read(report);
sl@17
   697
        buf=report.Buffer();
sl@17
   698
        }
sl@3
   699
sl@0
   700
	if (res > 0) {
sl@0
   701
		FXString s;
sl@0
   702
		s.format("Received %d bytes:\n", res);
sl@0
   703
		for (int i = 0; i < res; i++) {
sl@0
   704
			FXString t;
sl@0
   705
			t.format("%02hhx ", buf[i]);
sl@0
   706
			s += t;
sl@0
   707
			if ((i+1) % 4 == 0)
sl@0
   708
				s += " ";
sl@0
   709
			if ((i+1) % 16 == 0)
sl@0
   710
				s += "\n";
sl@0
   711
		}
sl@0
   712
		s += "\n";
sl@0
   713
		input_text->appendText(s);
sl@0
   714
		input_text->setBottomLine(INT_MAX);
sl@0
   715
	}
sl@0
   716
	if (res < 0) {
sl@0
   717
		input_text->appendText("hid_read() returned error\n");
sl@0
   718
		input_text->setBottomLine(INT_MAX);
sl@0
   719
	}
sl@0
   720
sl@17
   721
    //Keep on reading
sl@0
   722
	getApp()->addTimeout(this, ID_TIMER,
sl@0
   723
		5 * timeout_scalar /*5ms*/);
sl@0
   724
	return 1;
sl@0
   725
}
sl@0
   726
sl@0
   727
long
sl@0
   728
MainWindow::onMacTimeout(FXObject *sender, FXSelector sel, void *ptr)
sl@0
   729
{
sl@0
   730
#ifdef __APPLE__
sl@0
   731
	check_apple_events();
sl@3
   732
sl@0
   733
	getApp()->addTimeout(this, ID_MAC_TIMER,
sl@0
   734
		50 * timeout_scalar /*50ms*/);
sl@0
   735
#endif
sl@0
   736
sl@0
   737
	return 1;
sl@0
   738
}
sl@0
   739
sl@6
   740
/**
sl@6
   741
sl@6
   742
*/
sl@6
   743
long MainWindow::onSelectFont(FXObject *sender, FXSelector sel, void *ptr)
sl@7
   744
    {
sl@6
   745
    FXFontDialog* dlg=new FXFontDialog(this,"Pick a font");
sl@7
   746
    if (dlg->execute())
sl@7
   747
        {
sl@7
   748
        dlg->getFontSelection(iCurrentFontDesc);
sl@7
   749
        delete iCurrentFont;
sl@7
   750
        iCurrentFont = NULL;
sl@7
   751
        iCurrentFont = new FXFont(getApp(),iCurrentFontDesc);
sl@8
   752
        iCurrentFont->create();
sl@8
   753
        //
sl@8
   754
        delete iFontImage;
sl@8
   755
        iFontImage = NULL;
sl@8
   756
        //
sl@8
   757
        FXString text="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-[]{}();%$£&~#|_";
sl@8
   758
        //Create an image the proper size for our text
sl@8
   759
        iFontImage = new FXTGAImage(getApp(),NULL,IMAGE_SHMI|IMAGE_SHMP,iCurrentFont->getTextWidth(text),iCurrentFont->getFontHeight());
sl@8
   760
        iFontImage->create();
sl@8
   761
        //Perform our drawing
sl@8
   762
            {
sl@8
   763
            FXDCWindow dc(iFontImage);
sl@8
   764
            //dc.begin(iFontImage);
sl@8
   765
            dc.setFont(iCurrentFont);
sl@8
   766
            dc.setForeground(0xFFFFFFFF);
sl@8
   767
            //dc.setBackground(0xFF000000);
sl@8
   768
            //dc.setFillStyle(FILL_SOLID);
sl@8
   769
            dc.fillRectangle(0,0,iFontImage->getWidth(),iFontImage->getHeight());
sl@8
   770
            dc.setForeground(0xFF000000);
sl@8
   771
            dc.drawText(0,iCurrentFont->getFontAscent(),text);
sl@8
   772
            //dc.end();
sl@8
   773
            }
sl@8
   774
        FXFileStream file;
sl@8
   775
        file.open("fonttest.tga",FXStreamSave);
sl@8
   776
        iFontImage->restore();
sl@8
   777
        iFontImage->savePixels(file);
sl@8
   778
        file.close();
sl@8
   779
sl@8
   780
        //
sl@7
   781
sl@7
   782
        }
sl@7
   783
sl@6
   784
    delete dlg;
sl@6
   785
    return 1;
sl@7
   786
    }
sl@6
   787
sl@6
   788
sl@6
   789