]> git.saurik.com Git - wxWidgets.git/blame - samples/joytest/joytest.cpp
Fixed mismatch in amount of format specifiers in Japanese translation for i18n sample.
[wxWidgets.git] / samples / joytest / joytest.cpp
CommitLineData
bbf1f0e5
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: joytest.cpp
3// Purpose: Joystick sample
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6aa89a22 8// Copyright: (c) Julian Smart
526954c5 9// Licence: wxWindows licence
bbf1f0e5
KB
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx/wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
20#include "wx/wx.h"
21#endif
22
9832ce0b 23#if !wxUSE_JOYSTICK
aec18ff7
MB
24# error You must set wxUSE_JOYSTICK to 1 in setup.h
25#endif
26
d93966b9 27#include "wx/sound.h"
9832ce0b 28#include "wx/joystick.h"
bbf1f0e5
KB
29
30#include "joytest.h"
31
807902f1
PC
32// the application icon (under Windows and OS/2 it is in resources and even
33// though we could still include the XPM here it would be unused)
34#if !defined(__WXMSW__) && !defined(__WXPM__)
35 #include "../sample.xpm"
36#endif
37
bbf1f0e5
KB
38MyFrame *frame = NULL;
39
40IMPLEMENT_APP(MyApp)
41
42// For drawing lines in a canvas
43long xpos = -1;
44long ypos = -1;
45
46int winNumber = 1;
47
65442ab6 48int nButtons = 0;
bbf1f0e5 49// Initialise this in OnInit, not statically
aec18ff7 50bool MyApp::OnInit()
bbf1f0e5 51{
45e6e6f8
VZ
52 if ( !wxApp::OnInit() )
53 return false;
54
aec18ff7
MB
55 wxJoystick stick(wxJOYSTICK1);
56 if (!stick.IsOk())
57 {
9a83f860 58 wxMessageBox(wxT("No joystick detected!"));
45cbbbb3 59 return false;
aec18ff7
MB
60 }
61
d93966b9 62#if wxUSE_SOUND
9a83f860 63 m_fire.Create(wxT("buttonpress.wav"));
d93966b9 64#endif // wxUSE_SOUND
bbf1f0e5 65
a800dc50
RD
66 m_minX = stick.GetXMin();
67 m_minY = stick.GetYMin();
aec18ff7
MB
68 m_maxX = stick.GetXMax();
69 m_maxY = stick.GetYMax();
bbf1f0e5 70
aec18ff7 71 // Create the main frame window
bbf1f0e5 72
9a83f860 73 frame = new MyFrame(NULL, wxT("Joystick Demo"), wxDefaultPosition,
aec18ff7 74 wxSize(500, 400), wxDEFAULT_FRAME_STYLE | wxHSCROLL | wxVSCROLL);
bbf1f0e5 75
3cb332c1 76 frame->SetIcon(wxICON(sample));
bbf1f0e5 77
aec18ff7
MB
78 // Make a menubar
79 wxMenu *file_menu = new wxMenu;
bbf1f0e5 80
9a83f860 81 file_menu->Append(JOYTEST_QUIT, wxT("&Exit"));
bbf1f0e5 82
aec18ff7 83 wxMenuBar *menu_bar = new wxMenuBar;
bbf1f0e5 84
9a83f860 85 menu_bar->Append(file_menu, wxT("&File"));
bbf1f0e5 86
aec18ff7
MB
87 // Associate the menu bar with the frame
88 frame->SetMenuBar(menu_bar);
bbf1f0e5 89
8520f137 90#if wxUSE_STATUSBAR
aec18ff7 91 frame->CreateStatusBar();
da9e9563 92 frame->SetStatusText(wxString::Format(wxT("Device [%s] (PID:[%i] MID:[%i]) Ready... # of joysticks:[%i]"), stick.GetProductName().c_str(), stick.GetProductId(), stick.GetManufacturerId(), wxJoystick::GetNumberJoysticks()));
8520f137 93#endif // wxUSE_STATUSBAR
bbf1f0e5 94
aec18ff7 95 frame->CenterOnScreen();
45cbbbb3 96 frame->Show(true);
bbf1f0e5 97
45cbbbb3 98 return true;
bbf1f0e5
KB
99}
100
101BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
2f6c54eb 102 EVT_JOYSTICK_EVENTS(MyCanvas::OnJoystickEvent)
bbf1f0e5
KB
103END_EVENT_TABLE()
104
105// Define a constructor for my canvas
106MyCanvas::MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size):
45cbbbb3 107 wxScrolledWindow(parent, wxID_ANY, pos, size, wxSUNKEN_BORDER)
bbf1f0e5 108{
a800dc50 109 m_stick = new wxJoystick(wxJOYSTICK1);
65442ab6 110 nButtons = m_stick->GetNumberButtons();
a800dc50 111 m_stick->SetCapture(this, 10);
bbf1f0e5
KB
112}
113
aec18ff7 114MyCanvas::~MyCanvas()
bbf1f0e5 115{
a800dc50
RD
116 m_stick->ReleaseCapture();
117 delete m_stick;
bbf1f0e5
KB
118}
119
120void MyCanvas::OnJoystickEvent(wxJoystickEvent& event)
121{
3b2f80c2
VZ
122 // We don't have valid (x, y) coordinates for z-move events.
123 if ( !event.IsZMove() )
aec18ff7 124 {
3b2f80c2
VZ
125 wxClientDC dc(this);
126
127 wxPoint pt(event.GetPosition());
128
129 // if negative positions are possible then shift everything up
130 int xmin = wxGetApp().m_minX;
131 int xmax = wxGetApp().m_maxX;
132 int ymin = wxGetApp().m_minY;
133 int ymax = wxGetApp().m_maxY;
134 if (xmin < 0) {
135 xmax += abs(xmin);
136 pt.x += abs(xmin);
137 }
138 if (ymin < 0) {
139 ymax += abs(ymin);
140 pt.y += abs(ymin);
141 }
142
143 // Scale to canvas size
144 int cw, ch;
145 GetSize(&cw, &ch);
146
147 pt.x = (long) (((double)pt.x/(double)xmax) * cw);
148 pt.y = (long) (((double)pt.y/(double)ymax) * ch);
149
150 if (xpos > -1 && ypos > -1 && event.IsMove() && event.ButtonIsDown())
151 {
152 dc.SetPen(*wxBLACK_PEN);
153 dc.DrawLine(xpos, ypos, pt.x, pt.y);
154 }
bbf1f0e5 155
22f772f8
VZ
156 xpos = pt.x;
157 ypos = pt.y;
158 }
bbf1f0e5 159
8520f137 160#if wxUSE_STATUSBAR
600683ca 161 wxString buf;
aec18ff7 162 if (event.ButtonDown())
3b2f80c2 163 buf.Printf(wxT("Joystick (%d, %d) #%i Fire!"), xpos, ypos, event.GetButtonChange());
aec18ff7 164 else
3b2f80c2 165 buf.Printf(wxT("Joystick (%d, %d) "), xpos, ypos);
bbf1f0e5 166
65442ab6
RN
167/*
168 for(int i = 0; i < nButtons; ++i)
169 {
196785e6 170 buf += wxString(wxT("[")) +
65442ab6
RN
171 ((event.GetButtonState() & (1 << i)) ? wxT("Y") : wxT("N")) + wxString(wxT("]"));
172 }
173*/
196785e6 174
aec18ff7 175 frame->SetStatusText(buf);
8520f137 176#endif // wxUSE_STATUSBAR
bbf1f0e5 177
d93966b9 178#if wxUSE_SOUND
aec18ff7
MB
179 if (event.ButtonDown() && wxGetApp().m_fire.IsOk())
180 {
181 wxGetApp().m_fire.Play();
182 }
d93966b9 183#endif // wxUSE_SOUND
bbf1f0e5
KB
184}
185
186BEGIN_EVENT_TABLE(MyFrame, wxFrame)
aec18ff7 187 EVT_MENU(JOYTEST_QUIT, MyFrame::OnQuit)
bbf1f0e5
KB
188END_EVENT_TABLE()
189
aec18ff7
MB
190MyFrame::MyFrame(wxFrame *parent, const wxString& title, const wxPoint& pos,
191 const wxSize& size, const long style)
45cbbbb3 192 : wxFrame(parent, wxID_ANY, title, pos, size, style)
bbf1f0e5 193{
aec18ff7 194 canvas = new MyCanvas(this);
bbf1f0e5
KB
195}
196
87728739 197void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 198{
45cbbbb3 199 Close(true);
bbf1f0e5
KB
200}
201
202void MyFrame::OnActivate(wxActivateEvent& event)
203{
aec18ff7
MB
204 if (event.GetActive() && canvas)
205 canvas->SetFocus();
bbf1f0e5 206}