Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52da65bc0d | ||
|
|
91420b5cb2 | ||
|
|
fd61316a40 | ||
|
|
dce8818273 | ||
|
|
a1f9c0e3c0 | ||
|
|
bfd5fa163e | ||
|
|
a52fec80a9 | ||
|
|
40b00ddde1 | ||
|
|
16ce4dfbea | ||
|
|
2a23ec0923 |
@@ -40,6 +40,11 @@ ipch/
|
||||
*.log
|
||||
rpl4.log
|
||||
|
||||
# Where the game window and the exploded view's panes were last dragged
|
||||
# to (RP412MFDLAYOUT). Per-machine by nature - it is screen coordinates
|
||||
# on somebody's desk.
|
||||
mfd_layout.cfg
|
||||
|
||||
# Build-output static libs that land in lib/ (the two committed dependency
|
||||
# libs, OpenAL32.lib and libsndfile-1.lib, stay tracked).
|
||||
/lib/Munga_L4.lib
|
||||
|
||||
+1052
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,85 @@
|
||||
//===========================================================================//
|
||||
// File: l4joy.h //
|
||||
// Project: MUNGA Brick: generic joystick reader //
|
||||
// Contents: DirectInput 8 sticks, HOTAS throttles and pedals //
|
||||
//---------------------------------------------------------------------------//
|
||||
// Copyright (C) 1994-1995, Virtual World Entertainment, Inc. //
|
||||
// PROPRIETARY AND CONFIDENTIAL //
|
||||
//===========================================================================//
|
||||
|
||||
#pragma once
|
||||
|
||||
//########################################################################
|
||||
//
|
||||
// L4JOY - the generic-joystick reader.
|
||||
//
|
||||
// PadRIO reads XInput, which covers Xbox-class pads and nothing else.
|
||||
// This layer adds every OTHER game device Windows knows - flight sticks,
|
||||
// HOTAS throttles, twist grips, rudder pedals, wheels - through
|
||||
// DirectInput 8, the standard generic-HID game API. It exposes up to
|
||||
// joyMaxDevices attached devices as normalized state blocks; the PadRIO
|
||||
// poll maps them onto the pod's control channels through the joydev /
|
||||
// joyaxis / joybutton / joyhat rows of bindings.txt (L4PADBINDINGS.h),
|
||||
// the same binding machinery the pad and keyboard already use.
|
||||
//
|
||||
// XInput-class devices are EXCLUDED here, or they would double-feed
|
||||
// through both APIs and every input would count twice. A DirectInput
|
||||
// device whose VID/PID also appears in a RawInput device path containing
|
||||
// the "IG_" marker is an XInput device - the documented detection that
|
||||
// does not drag in WMI.
|
||||
//
|
||||
// This is distinct from the legacy L4DINPUT.cpp DIJoystick, the 1995-era
|
||||
// single-device `Joystick` engine interface reachable only through the
|
||||
// old L4CONTROLS=DIJOYSTICK profile. That path is untouched.
|
||||
//
|
||||
// RP412JOYCONFIG=1 runs the interactive setup wizard at boot: it asks
|
||||
// the player to move each control, works out which device and axis moved
|
||||
// and which way, and writes the joystick section of bindings.txt.
|
||||
// RP412JOYLOG=1 logs device attach/detach.
|
||||
//
|
||||
// Ported from BT411, whose glass cockpit needed the same thing.
|
||||
//
|
||||
//########################################################################
|
||||
|
||||
enum
|
||||
{
|
||||
joyMaxDevices = 4,
|
||||
joyAxisCount = 8, // X Y Z RX RY RZ SL0 SL1 (DIJOYSTATE2 order)
|
||||
joyButtonCount = 32, // buttons exposed to bindings (DI carries 128)
|
||||
joyHatCount = 4
|
||||
};
|
||||
|
||||
struct RPJoyDeviceState
|
||||
{
|
||||
int attached;
|
||||
float axis[joyAxisCount]; // normalized -1..1, raw: deadzones
|
||||
// are the binding layer's business
|
||||
unsigned buttons; // bit n = button n held
|
||||
int hat[joyHatCount]; // POV in centidegrees, -1 = centered
|
||||
char name[64]; // product name ("T.16000M", ...)
|
||||
};
|
||||
|
||||
//
|
||||
// Lifecycle. Init is lazy-safe (Poll calls it) and returns the attached
|
||||
// non-XInput device count. Re-enumeration for hot-plug happens inside
|
||||
// Poll on a ~3 s cadence whenever nothing is attached.
|
||||
//
|
||||
int RPJoyInit(void);
|
||||
void RPJoyShutdown(void);
|
||||
void RPJoyPoll(void);
|
||||
|
||||
int RPJoyDeviceCount(void);
|
||||
const RPJoyDeviceState *RPJoyDevice(int index); // NULL out of range/detached
|
||||
|
||||
//
|
||||
// Case-insensitive product-name substring match to a device index, -1 for
|
||||
// no match. This is what a named joydev slot resolves through.
|
||||
//
|
||||
int RPJoyFindDevice(const char *name_substring);
|
||||
|
||||
//
|
||||
// The RP412JOYCONFIG capture wizard (console UI; called from RPL4.CPP
|
||||
// before the front end). Returns 0 if it wrote a config, non-zero on
|
||||
// abort or no device.
|
||||
//
|
||||
int RPJoyConfigWizard(void);
|
||||
@@ -10,6 +10,74 @@ namespace
|
||||
|
||||
const int buttonGap = 4;
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// Sticky placement for the exploded view. See L4MFDVIEW.h; ported
|
||||
// from BT411's BT_GLASS_LAYOUT.
|
||||
//---------------------------------------------------------------
|
||||
enum { LayoutOff = 0, LayoutLoad, LayoutSave };
|
||||
|
||||
const char layoutFileName[] = "mfd_layout.cfg";
|
||||
|
||||
// every window taking part, so Save can walk them
|
||||
enum { maxLayoutWindows = 12 };
|
||||
struct LayoutWindow
|
||||
{
|
||||
void *window;
|
||||
const char *title;
|
||||
Logical withSize;
|
||||
Logical bare; // frame stripped, per the file
|
||||
};
|
||||
LayoutWindow layoutWindows[maxLayoutWindows];
|
||||
int layoutWindowCount = 0;
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// Take a window's frame off: no title bar, no border, nothing to
|
||||
// drag it by. WS_SYSMENU stays - it draws nothing once the caption
|
||||
// is gone, but without one DefWindowProc will not honour Alt+F4,
|
||||
// and a bare window with no way to close it is a trap.
|
||||
//---------------------------------------------------------------
|
||||
void StripWindowFrame(HWND window)
|
||||
{
|
||||
LONG_PTR style = GetWindowLongPtrA(window, GWL_STYLE);
|
||||
style &= ~(WS_CAPTION | WS_THICKFRAME | WS_MINIMIZEBOX |
|
||||
WS_MAXIMIZEBOX | WS_BORDER | WS_DLGFRAME);
|
||||
style |= WS_POPUP;
|
||||
SetWindowLongPtrA(window, GWL_STYLE, style);
|
||||
}
|
||||
|
||||
int LayoutMode()
|
||||
{
|
||||
static int mode = -1;
|
||||
if (mode < 0)
|
||||
{
|
||||
const char *setting = getenv("RP412MFDLAYOUT");
|
||||
if (setting == NULL || setting[0] == '\0')
|
||||
{
|
||||
mode = LayoutOff;
|
||||
}
|
||||
else if (!stricmp(setting, "off") || !stricmp(setting, "0"))
|
||||
{
|
||||
mode = LayoutOff;
|
||||
}
|
||||
else if (!stricmp(setting, "load") || !stricmp(setting, "restore"))
|
||||
{
|
||||
mode = LayoutLoad;
|
||||
}
|
||||
else // save / adjust / on / 1
|
||||
{
|
||||
mode = LayoutSave;
|
||||
}
|
||||
|
||||
if (mode != LayoutOff)
|
||||
{
|
||||
DEBUG_STREAM << "MFDLayout: RP412MFDLAYOUT="
|
||||
<< ((mode == LayoutSave) ? "save" : "load")
|
||||
<< " (" << layoutFileName << ")\n" << std::flush;
|
||||
}
|
||||
}
|
||||
return mode;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// Button banks run UNDER the glass: a button reaches this far in
|
||||
// from the display edge, but only the indicator strip clears that
|
||||
@@ -108,6 +176,15 @@ namespace
|
||||
}
|
||||
break;
|
||||
|
||||
case WM_EXITSIZEMOVE:
|
||||
//
|
||||
// A drag just finished. Write the whole arrangement now rather
|
||||
// than trusting teardown, so a hard kill still leaves the
|
||||
// layout that was on screen. No-op unless the mode is save.
|
||||
//
|
||||
RPWindowLayout_Save();
|
||||
return 0;
|
||||
|
||||
case WM_CLOSE:
|
||||
// Part of the cockpit; just hide it.
|
||||
ShowWindow(hwnd, SW_HIDE);
|
||||
@@ -148,6 +225,8 @@ MFDSplitView::MFDSplitView(
|
||||
sourceHeight = source_height;
|
||||
buttonCount = 0;
|
||||
pressedIndex = -1;
|
||||
paneTitle = title;
|
||||
ownWindow = (parent == NULL) ? True : False;
|
||||
|
||||
pixels = new unsigned long[source_width * source_height];
|
||||
memset(pixels, 0, source_width * source_height * sizeof(unsigned long));
|
||||
@@ -230,6 +309,14 @@ MFDSplitView::MFDSplitView(
|
||||
{
|
||||
SetWindowLongPtrA((HWND) window, GWLP_USERDATA, (LONG_PTR) this);
|
||||
ShowWindow((HWND) window, SW_SHOWNOACTIVATE);
|
||||
|
||||
// only the exploded view's own windows can be dragged, so only
|
||||
// those have a placement worth remembering. Position only - see
|
||||
// RPWindowLayout_Register.
|
||||
if (ownWindow)
|
||||
{
|
||||
RPWindowLayout_Register(window, paneTitle, False);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -241,6 +328,9 @@ MFDSplitView::~MFDSplitView()
|
||||
{
|
||||
Check_Pointer(this);
|
||||
|
||||
// out of the layout registry before the window goes
|
||||
RPWindowLayout_Forget(window);
|
||||
|
||||
if (window != NULL)
|
||||
{
|
||||
SetWindowLongPtrA((HWND) window, GWLP_USERDATA, 0);
|
||||
@@ -259,6 +349,272 @@ Logical
|
||||
return pixels != NULL;
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Join the saved layout. Registering twice just refreshes the entry, so
|
||||
// a window re-registering after being rebuilt is harmless.
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
void
|
||||
RPWindowLayout_Register(void *window, const char *title, Logical with_size)
|
||||
{
|
||||
if (window == NULL || title == NULL)
|
||||
{
|
||||
return;
|
||||
}
|
||||
for (int i = 0; i < layoutWindowCount; ++i)
|
||||
{
|
||||
if (layoutWindows[i].window == window)
|
||||
{
|
||||
layoutWindows[i].title = title;
|
||||
layoutWindows[i].withSize = with_size;
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (layoutWindowCount >= maxLayoutWindows)
|
||||
{
|
||||
return;
|
||||
}
|
||||
layoutWindows[layoutWindowCount].window = window;
|
||||
layoutWindows[layoutWindowCount].title = title;
|
||||
layoutWindows[layoutWindowCount].withSize = with_size;
|
||||
layoutWindows[layoutWindowCount].bare = False;
|
||||
++layoutWindowCount;
|
||||
}
|
||||
|
||||
void
|
||||
RPWindowLayout_Forget(void *window)
|
||||
{
|
||||
for (int i = 0; i < layoutWindowCount; ++i)
|
||||
{
|
||||
if (layoutWindows[i].window == window)
|
||||
{
|
||||
layoutWindows[i] = layoutWindows[--layoutWindowCount];
|
||||
layoutWindows[layoutWindowCount].window = NULL;
|
||||
layoutWindows[layoutWindowCount].title = NULL;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Sticky placement: restore the saved placement over the computed one.
|
||||
//
|
||||
// Called once everything has been built and placed, so a window the file
|
||||
// does not mention simply keeps where it was put. Size comes back only
|
||||
// for windows registered with it - see the header.
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
void
|
||||
RPWindowLayout_Load()
|
||||
{
|
||||
if (LayoutMode() == LayoutOff || layoutWindowCount == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
FILE *file = fopen(layoutFileName, "rt");
|
||||
if (file == NULL)
|
||||
{
|
||||
DEBUG_STREAM << "MFDLayout: no " << layoutFileName
|
||||
<< " yet (using the computed arrangement)\n" << std::flush;
|
||||
return;
|
||||
}
|
||||
|
||||
int restored = 0;
|
||||
char line[256];
|
||||
while (fgets(line, sizeof(line), file) != NULL)
|
||||
{
|
||||
char *cursor = line;
|
||||
while (*cursor == ' ' || *cursor == '\t')
|
||||
{
|
||||
++cursor;
|
||||
}
|
||||
if (*cursor == '#' || *cursor == '\r' || *cursor == '\n' || *cursor == '\0')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// titles carry no '=', so the first one splits the line
|
||||
char *equals = strchr(cursor, '=');
|
||||
if (equals == NULL)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
*equals = '\0';
|
||||
char *end = equals;
|
||||
while (end > cursor && (end[-1] == ' ' || end[-1] == '\t'))
|
||||
{
|
||||
--end;
|
||||
}
|
||||
*end = '\0';
|
||||
|
||||
int x = 0, y = 0, w = 0, h = 0;
|
||||
if (sscanf(equals + 1, "%d,%d,%d,%d", &x, &y, &w, &h) < 2)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
//
|
||||
// Optional trailing keyword, "x,y,w,h,noframe". Searched for
|
||||
// rather than parsed in place so a hand-edited line survives a
|
||||
// stray space or a missing comma.
|
||||
//
|
||||
Logical bare = (strstr(equals + 1, "noframe") != NULL) ? True : False;
|
||||
|
||||
for (int i = 0; i < layoutWindowCount; ++i)
|
||||
{
|
||||
LayoutWindow &entry = layoutWindows[i];
|
||||
if (entry.title == NULL || strcmp(entry.title, cursor) != 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
HWND target = (HWND) entry.window;
|
||||
if (target == NULL || !IsWindow(target))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
// a saved size of nothing is a corrupt line, not an instruction
|
||||
Logical size_it = (entry.withSize && w > 0 && h > 0) ? True : False;
|
||||
|
||||
//
|
||||
// Saved coordinates belong to whatever monitors were plugged
|
||||
// in that day. If the placement lands on none of today's, drop
|
||||
// it and keep the computed one - restoring the game window
|
||||
// somewhere invisible would leave nothing to drag back.
|
||||
//
|
||||
RECT landing;
|
||||
landing.left = x;
|
||||
landing.top = y;
|
||||
if (size_it)
|
||||
{
|
||||
landing.right = x + w;
|
||||
landing.bottom = y + h;
|
||||
}
|
||||
else
|
||||
{
|
||||
RECT current;
|
||||
if (!GetWindowRect(target, ¤t))
|
||||
{
|
||||
break;
|
||||
}
|
||||
landing.right = x + (current.right - current.left);
|
||||
landing.bottom = y + (current.bottom - current.top);
|
||||
}
|
||||
if (MonitorFromRect(&landing, MONITOR_DEFAULTTONULL) == NULL)
|
||||
{
|
||||
DEBUG_STREAM << "MFDLayout: " << cursor << " was saved at "
|
||||
<< x << "," << y << " - off every monitor now, ignoring\n"
|
||||
<< std::flush;
|
||||
break;
|
||||
}
|
||||
|
||||
//
|
||||
// Frame off, if the line asked. A bare window's rect IS its
|
||||
// client rect, so whatever client area it has now is the size
|
||||
// to hand back - which also makes the round trip stable: once
|
||||
// bare, what Save records is already the client.
|
||||
//
|
||||
entry.bare = bare;
|
||||
if (bare)
|
||||
{
|
||||
if (!size_it)
|
||||
{
|
||||
RECT client;
|
||||
if (GetClientRect(target, &client))
|
||||
{
|
||||
w = client.right;
|
||||
h = client.bottom;
|
||||
size_it = True;
|
||||
}
|
||||
}
|
||||
StripWindowFrame(target);
|
||||
}
|
||||
|
||||
SetWindowPos(target, NULL, x, y, w, h,
|
||||
SWP_NOZORDER | SWP_NOACTIVATE |
|
||||
(size_it ? 0 : SWP_NOSIZE) | (bare ? SWP_FRAMECHANGED : 0));
|
||||
++restored;
|
||||
break;
|
||||
}
|
||||
}
|
||||
fclose(file);
|
||||
|
||||
DEBUG_STREAM << "MFDLayout: restored " << restored << " window placement(s) from "
|
||||
<< layoutFileName << "\n" << std::flush;
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Write where every registered window currently is. The whole file each
|
||||
// time - it is a handful of lines, and a rewrite leaves nothing
|
||||
// half-written for a hard kill to catch.
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
void
|
||||
RPWindowLayout_Save()
|
||||
{
|
||||
if (LayoutMode() != LayoutSave || layoutWindowCount == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
FILE *file = fopen(layoutFileName, "wt");
|
||||
if (file == NULL)
|
||||
{
|
||||
DEBUG_STREAM << "MFDLayout: could not write " << layoutFileName
|
||||
<< "\n" << std::flush;
|
||||
return;
|
||||
}
|
||||
|
||||
fputs("# RP412 window placement. RP412MFDLAYOUT=save writes this on each\n"
|
||||
"# finished drag and on exit; =load restores it.\n"
|
||||
"# <title>=<x>,<y>,<w>,<h>. The game window gets its size back too;\n"
|
||||
"# for the display panes the size is reference only, since theirs\n"
|
||||
"# follows their content.\n"
|
||||
"# Append ,noframe to take that window's title bar and border off.\n"
|
||||
"# Put it where you want it first - a bare window has nothing to\n"
|
||||
"# drag by, so its line stops changing once the frame is gone.\n", file);
|
||||
|
||||
int wrote = 0;
|
||||
for (int i = 0; i < layoutWindowCount; ++i)
|
||||
{
|
||||
LayoutWindow &entry = layoutWindows[i];
|
||||
if (entry.title == NULL)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
HWND entry_window = (HWND) entry.window;
|
||||
if (entry_window == NULL || !IsWindow(entry_window))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
//
|
||||
// rcNormalPosition rather than GetWindowRect: a minimised window
|
||||
// reports a nonsense rect and a maximised one reports the screen,
|
||||
// and neither is what to come back to. This is the restored
|
||||
// placement whatever state the window is in, so quitting from
|
||||
// maximised still records where the window will reappear.
|
||||
//
|
||||
WINDOWPLACEMENT placement;
|
||||
memset(&placement, 0, sizeof(placement));
|
||||
placement.length = sizeof(placement);
|
||||
if (!GetWindowPlacement(entry_window, &placement))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
RECT bounds = placement.rcNormalPosition;
|
||||
// the flag is the player's instruction, not something measured off
|
||||
// the window, so a rewrite has to carry it back out
|
||||
fprintf(file, "%s=%ld,%ld,%ld,%ld%s\n", entry.title,
|
||||
(long) bounds.left, (long) bounds.top,
|
||||
(long) (bounds.right - bounds.left),
|
||||
(long) (bounds.bottom - bounds.top),
|
||||
entry.bare ? ",noframe" : "");
|
||||
++wrote;
|
||||
}
|
||||
fclose(file);
|
||||
|
||||
DEBUG_STREAM << "MFDLayout: saved " << wrote << " window placement(s) to "
|
||||
<< layoutFileName << "\n" << std::flush;
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Compute the display rectangle and the button rectangles, growing the
|
||||
// client area to make room for the strips.
|
||||
|
||||
@@ -77,6 +77,14 @@ public:
|
||||
void
|
||||
Hide();
|
||||
|
||||
// caption and HWND, for the sticky-placement file
|
||||
const char *
|
||||
Title() const
|
||||
{ return paneTitle; }
|
||||
void *
|
||||
Window()
|
||||
{ return window; }
|
||||
|
||||
~MFDSplitView();
|
||||
|
||||
Logical
|
||||
@@ -147,4 +155,79 @@ protected:
|
||||
int
|
||||
buttonAnchorA,
|
||||
buttonAnchorB;
|
||||
|
||||
// the window caption, and the key this pane is saved under
|
||||
const char
|
||||
*paneTitle;
|
||||
// True for a pane of its own on the desktop (the exploded view); the
|
||||
// composited cockpit's panes are chrome-less children and cannot be
|
||||
// dragged, so there is nothing to remember for them.
|
||||
Logical
|
||||
ownWindow;
|
||||
};
|
||||
|
||||
//########################################################################
|
||||
// Sticky window placement.
|
||||
//
|
||||
// The game window and, in the exploded view, each display pane are all
|
||||
// draggable, but their placement is recomputed on every launch - so
|
||||
// putting a window somewhere useful never survived the menu-race-menu
|
||||
// loop. RP412MFDLAYOUT remembers it, in mfd_layout.cfg beside
|
||||
// bindings.txt:
|
||||
//
|
||||
// off / 0 / unset computed placement only, no file (default)
|
||||
// load / restore restore saved placement at startup, never write
|
||||
// save / adjust restore, then rewrite on each finished drag and
|
||||
// on teardown - the round trip
|
||||
//
|
||||
// One "<title>=x,y,w,h" line per window, plus an optional ",noframe"
|
||||
// that takes that window's title bar and border off - for a cockpit that
|
||||
// fills a monitor edge to edge without -fit's all-or-nothing, or an
|
||||
// exploded pane photographed without chrome. A bare window has nothing
|
||||
// to drag by, so place it first and add the flag after; Save carries the
|
||||
// flag back out, since it is an instruction rather than something
|
||||
// measured off the window. Windows are always built framed, so deleting
|
||||
// the flag is all it takes to get the frame back.
|
||||
//
|
||||
// Whether the size comes back depends on the window, which is why
|
||||
// Register takes it as a flag:
|
||||
//
|
||||
// display panes position only. A pane's size follows its content and
|
||||
// its button banks, so an old size from a different
|
||||
// build must not distort it. The plasma glass registers
|
||||
// the same way - its size is L4PLASMASCALE's business.
|
||||
// the game window position and size. Nothing derives that size - -res
|
||||
// only decides how sharp the scene is, and the cockpit
|
||||
// fits itself to whatever client area it is given - so
|
||||
// a window sized to suit a monitor should come back
|
||||
// that way, and half-restoring it would be the strange
|
||||
// behaviour. RPL4.CPP registers it before the console
|
||||
// screen, so the saved placement is there from the
|
||||
// first frame rather than arriving when a race starts.
|
||||
//
|
||||
// A placement that lands on none of the monitors currently plugged in is
|
||||
// ignored rather than applied - restoring the game window off screen
|
||||
// would leave nothing to drag back.
|
||||
//
|
||||
// Lives here because the display panes were the first to need it; the
|
||||
// game window joined later rather than grow a second copy of the same
|
||||
// file format.
|
||||
//
|
||||
// Ported from BT411's BT_GLASS_LAYOUT.
|
||||
//########################################################################
|
||||
|
||||
// Take part in the saved layout. title is the key in the file and must
|
||||
// outlive the window (the callers pass string literals).
|
||||
void
|
||||
RPWindowLayout_Register(void *window, const char *title, Logical with_size);
|
||||
void
|
||||
RPWindowLayout_Forget(void *window);
|
||||
|
||||
// Apply the saved placement over the computed one. Call once everything
|
||||
// has been built and placed.
|
||||
void
|
||||
RPWindowLayout_Load();
|
||||
|
||||
// Write every registered window's placement. No-op unless mode is save.
|
||||
void
|
||||
RPWindowLayout_Save();
|
||||
|
||||
+197
-26
@@ -2,6 +2,7 @@
|
||||
#pragma hdrstop
|
||||
|
||||
#include "l4padbindings.h"
|
||||
#include "l4joy.h" // joyButtonCount / joyHatCount, the parse limits
|
||||
|
||||
#include <XInput.h>
|
||||
#include <stdio.h>
|
||||
@@ -79,6 +80,20 @@ namespace
|
||||
{ "Throttle", BindAxisThrottle },
|
||||
{ "LeftPedal", BindAxisLeftPedal }, { "RightPedal", BindAxisRightPedal },
|
||||
{ "JoystickY", BindAxisJoystickY }, { "JoystickX", BindAxisJoystickX },
|
||||
{ "Pedals", BindAxisPedals },
|
||||
};
|
||||
|
||||
// DirectInput's axis order, which is what the joy* rows name
|
||||
const NameValue kJoyAxisNames[] =
|
||||
{
|
||||
{ "X", BindJoyAxisX }, { "Y", BindJoyAxisY }, { "Z", BindJoyAxisZ },
|
||||
{ "RX", BindJoyAxisRX }, { "RY", BindJoyAxisRY }, { "RZ", BindJoyAxisRZ },
|
||||
{ "SL0", BindJoyAxisSL0 }, { "SL1", BindJoyAxisSL1 },
|
||||
};
|
||||
|
||||
const NameValue kJoyHatNames[] =
|
||||
{
|
||||
{ "up", 0 }, { "right", 1 }, { "down", 2 }, { "left", 3 },
|
||||
};
|
||||
|
||||
Logical NameEquals(const char *a, const char *b)
|
||||
@@ -185,10 +200,83 @@ namespace
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// One line of the profile grammar
|
||||
// Shared tail of the two axis-source rows: [invert] [deadzone <d>]
|
||||
// [rate <n>], in any order.
|
||||
//---------------------------------------------------------------
|
||||
Logical ParseLine(char *tokens[], int token_count, PadBindingProfile *profile)
|
||||
Logical ParseAxisOptions(
|
||||
char *tokens[], int token_count, int first,
|
||||
Logical *invert, Scalar *deadzone, Scalar *rate)
|
||||
{
|
||||
for (int i = first; i < token_count; ++i)
|
||||
{
|
||||
if (NameEquals(tokens[i], "invert"))
|
||||
{
|
||||
*invert = True;
|
||||
}
|
||||
else if (NameEquals(tokens[i], "deadzone") && i + 1 < token_count)
|
||||
{
|
||||
if (!ParseNumber(tokens[++i], deadzone))
|
||||
{
|
||||
return False;
|
||||
}
|
||||
}
|
||||
else if (NameEquals(tokens[i], "rate") && i + 1 < token_count)
|
||||
{
|
||||
if (!ParseNumber(tokens[++i], rate))
|
||||
{
|
||||
return False;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return False;
|
||||
}
|
||||
}
|
||||
return True;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// One line of the profile grammar. joy_slot carries the joydev
|
||||
// state forward from line to line - joy rows attach to the slot
|
||||
// most recently declared.
|
||||
//---------------------------------------------------------------
|
||||
Logical ParseLine(
|
||||
char *tokens[], int token_count, PadBindingProfile *profile,
|
||||
int *joy_slot)
|
||||
{
|
||||
//
|
||||
// joydev is the one row that can be two tokens long ("joydev 1"),
|
||||
// so it is answered before the four-token floor below.
|
||||
//
|
||||
if (NameEquals(tokens[0], "joydev") && token_count >= 2)
|
||||
{
|
||||
int slot = -1;
|
||||
if (sscanf(tokens[1], "%d", &slot) != 1 ||
|
||||
slot < 0 || slot >= BindJoyDeviceSlots)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
*joy_slot = slot;
|
||||
//
|
||||
// The rest of the line is a product-name substring, rejoined
|
||||
// with single spaces ("Saitek Pro Flight" is four tokens).
|
||||
//
|
||||
profile->joyDeviceMatch[slot][0] = '\0';
|
||||
for (int i = 2; i < token_count; ++i)
|
||||
{
|
||||
if (i > 2)
|
||||
{
|
||||
strncat(profile->joyDeviceMatch[slot], " ",
|
||||
sizeof(profile->joyDeviceMatch[slot]) -
|
||||
strlen(profile->joyDeviceMatch[slot]) - 1);
|
||||
}
|
||||
strncat(profile->joyDeviceMatch[slot], tokens[i],
|
||||
sizeof(profile->joyDeviceMatch[slot]) -
|
||||
strlen(profile->joyDeviceMatch[slot]) - 1);
|
||||
}
|
||||
return True;
|
||||
}
|
||||
|
||||
if (token_count < 4)
|
||||
{
|
||||
return False;
|
||||
@@ -271,31 +359,75 @@ namespace
|
||||
memset(binding, 0, sizeof(*binding));
|
||||
binding->source = source;
|
||||
binding->axis = axis;
|
||||
for (int i = 4; i < token_count; ++i)
|
||||
return ParseAxisOptions(tokens, token_count, 4,
|
||||
&binding->invert, &binding->deadzone, &binding->rate);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// Generic joystick rows, all attaching to the current joydev slot
|
||||
//---------------------------------------------------------------
|
||||
if (NameEquals(tokens[0], "joyaxis") && NameEquals(tokens[2], "axis"))
|
||||
{
|
||||
int source = LookupTable(kJoyAxisNames,
|
||||
sizeof(kJoyAxisNames) / sizeof(kJoyAxisNames[0]), tokens[1]);
|
||||
int axis = LookupTable(kRioAxisNames,
|
||||
sizeof(kRioAxisNames) / sizeof(kRioAxisNames[0]), tokens[3]);
|
||||
if (source < 0 || axis < 0 ||
|
||||
profile->joyAxisCount >= PadBindingProfile::maxJoyAxes)
|
||||
{
|
||||
if (NameEquals(tokens[i], "invert"))
|
||||
{
|
||||
binding->invert = True;
|
||||
}
|
||||
else if (NameEquals(tokens[i], "deadzone") && i + 1 < token_count)
|
||||
{
|
||||
if (!ParseNumber(tokens[++i], &binding->deadzone))
|
||||
{
|
||||
return False;
|
||||
}
|
||||
}
|
||||
else if (NameEquals(tokens[i], "rate") && i + 1 < token_count)
|
||||
{
|
||||
if (!ParseNumber(tokens[++i], &binding->rate))
|
||||
{
|
||||
return False;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return False;
|
||||
}
|
||||
return False;
|
||||
}
|
||||
PadJoyAxisBinding *binding = &profile->joyAxes[profile->joyAxisCount++];
|
||||
memset(binding, 0, sizeof(*binding));
|
||||
binding->device = *joy_slot;
|
||||
binding->source = source;
|
||||
binding->axis = axis;
|
||||
return ParseAxisOptions(tokens, token_count, 4,
|
||||
&binding->invert, &binding->deadzone, &binding->rate);
|
||||
}
|
||||
|
||||
if (NameEquals(tokens[0], "joybutton") && NameEquals(tokens[2], "button"))
|
||||
{
|
||||
int button = -1;
|
||||
int address;
|
||||
if (sscanf(tokens[1], "%d", &button) != 1 ||
|
||||
button < 0 || button >= joyButtonCount ||
|
||||
!ParseAddress(tokens[3], &address) ||
|
||||
profile->joyButtonCount >= PadBindingProfile::maxJoyButtons)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
Logical toggle = (token_count > 4 && NameEquals(tokens[4], "toggle"));
|
||||
PadJoyButtonBinding *binding =
|
||||
&profile->joyButtons[profile->joyButtonCount++];
|
||||
memset(binding, 0, sizeof(*binding));
|
||||
binding->device = *joy_slot;
|
||||
binding->button = button;
|
||||
binding->address = address;
|
||||
binding->toggle = toggle;
|
||||
return True;
|
||||
}
|
||||
|
||||
if (NameEquals(tokens[0], "joyhat") && token_count >= 5 &&
|
||||
NameEquals(tokens[3], "button"))
|
||||
{
|
||||
int hat = -1;
|
||||
int direction = LookupTable(kJoyHatNames,
|
||||
sizeof(kJoyHatNames) / sizeof(kJoyHatNames[0]), tokens[2]);
|
||||
int address;
|
||||
if (sscanf(tokens[1], "%d", &hat) != 1 ||
|
||||
hat < 0 || hat >= joyHatCount || direction < 0 ||
|
||||
!ParseAddress(tokens[4], &address) ||
|
||||
profile->joyHatCount >= PadBindingProfile::maxJoyHats)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
PadJoyHatBinding *binding = &profile->joyHats[profile->joyHatCount++];
|
||||
memset(binding, 0, sizeof(*binding));
|
||||
binding->device = *joy_slot;
|
||||
binding->hat = hat;
|
||||
binding->direction = direction;
|
||||
binding->address = address;
|
||||
return True;
|
||||
}
|
||||
|
||||
@@ -320,10 +452,17 @@ namespace
|
||||
"# key <name> axis <axis> rate <n-per-second>\n"
|
||||
"# pad <button> button <addr> [toggle]\n"
|
||||
"# padaxis <src> axis <axis> [invert] [deadzone <d>] [rate <n-per-second>]\n"
|
||||
"# joydev <slot> [product-name substring]\n"
|
||||
"# joyaxis <src> axis <axis> [invert] [deadzone <d>] [rate <n-per-second>]\n"
|
||||
"# joybutton <n> button <addr> [toggle]\n"
|
||||
"# joyhat <n> <up|down|left|right> button <addr>\n"
|
||||
"#\n"
|
||||
"# <addr> RIO input address: lamp buttons 0x00-0x47, internal keypad\n"
|
||||
"# 0x50-0x5F, external keypad 0x60-0x6F (hex or decimal).\n"
|
||||
"# <axis> Throttle | LeftPedal | RightPedal | JoystickY | JoystickX\n"
|
||||
"# | Pedals - a signed axis that works the pedal PAIR, positive\n"
|
||||
"# for the right pedal and negative for the left, so one rudder\n"
|
||||
"# bar or twist grip drives both.\n"
|
||||
"# <name> Keys name: A-Z, D0-D9 (digit row), F1-F12, NumPad0-NumPad9,\n"
|
||||
"# Up, Down, Left, Right, Space, Enter, PageUp, PageDown,\n"
|
||||
"# OemMinus, Oemplus, Oemcomma, OemPeriod, ...\n"
|
||||
@@ -336,6 +475,31 @@ namespace
|
||||
"# back on release; 'rate' walks the axis by <n> per second and the\n"
|
||||
"# position sticks (the throttle). Every lamp button is also clickable\n"
|
||||
"# on the on-screen cockpit, so unbound addresses are never stranded.\n"
|
||||
"#\n"
|
||||
"# ---- Flight sticks, HOTAS throttles and rudder pedals --------------\n"
|
||||
"#\n"
|
||||
"# EASIEST: run joyconfig.bat once. It asks you to move each control,\n"
|
||||
"# works out which device and axis you moved and which way round it\n"
|
||||
"# reads, and writes the joy* rows below a marker line at the end of\n"
|
||||
"# this file. Everything you have written yourself is kept. Xbox-class\n"
|
||||
"# pads need none of this - they are the pad* rows above.\n"
|
||||
"#\n"
|
||||
"# By hand: joydev picks the device for the rows that follow it - a\n"
|
||||
"# name substring binds that product, a bare slot number binds the Nth\n"
|
||||
"# stick Windows lists. <src> for joyaxis is the DirectInput axis name,\n"
|
||||
"# X Y Z RX RY RZ SL0 SL1: a twist grip is usually RZ and a HOTAS\n"
|
||||
"# throttle usually Z or SL0. A joyaxis on Throttle with no 'rate' is\n"
|
||||
"# treated as a real lever and OWNS the channel - its full travel is\n"
|
||||
"# the full throttle range, rather than nudging the position the way a\n"
|
||||
"# spring-centred pad stick has to.\n"
|
||||
"#\n"
|
||||
"# joydev 0 T.16000M\n"
|
||||
"# joyaxis X axis JoystickX invert deadzone 0.08\n"
|
||||
"# joyaxis Y axis JoystickY invert deadzone 0.08\n"
|
||||
"# joyaxis RZ axis Pedals deadzone 0.08\n"
|
||||
"# joyaxis SL0 axis Throttle deadzone 0\n"
|
||||
"# joybutton 0 button 0x40\n"
|
||||
"# joyhat 0 up button 0x42\n"
|
||||
"\n"
|
||||
"# ---- Flight: number pad + modifiers -------------------------------\n"
|
||||
"# The whole letter board stays free for the MFD banks; flight lives\n"
|
||||
@@ -499,6 +663,7 @@ void
|
||||
char line[256];
|
||||
int line_number = 0;
|
||||
int error_count = 0;
|
||||
int joy_slot = 0; // joy rows before any joydev belong to slot 0
|
||||
const char *cursor = source;
|
||||
while (*cursor != '\0')
|
||||
{
|
||||
@@ -523,7 +688,7 @@ void
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (!ParseLine(tokens, token_count, profile))
|
||||
if (!ParseLine(tokens, token_count, profile, &joy_slot))
|
||||
{
|
||||
++error_count;
|
||||
DEBUG_STREAM << "PadBindings: " << kBindingsFileName << " line "
|
||||
@@ -542,4 +707,10 @@ void
|
||||
<< profile->padAxisCount << " pad axes"
|
||||
<< (error_count ? " (with rejected lines)" : "")
|
||||
<< "\n" << std::flush;
|
||||
if (profile->joyAxisCount || profile->joyButtonCount || profile->joyHatCount)
|
||||
{
|
||||
DEBUG_STREAM << "PadBindings: joystick - " << profile->joyAxisCount
|
||||
<< " axes, " << profile->joyButtonCount << " buttons, "
|
||||
<< profile->joyHatCount << " hat directions\n" << std::flush;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,12 +18,25 @@
|
||||
// key <name> axis <axis> deflect <n> | rate <n>
|
||||
// pad <button> button <addr> [toggle]
|
||||
// padaxis <src> axis <axis> [invert] [deadzone <d>] [rate <n>]
|
||||
// joydev <slot> [product-name substring...]
|
||||
// joyaxis <src> axis <axis> [invert] [deadzone <d>] [rate <n>]
|
||||
// joybutton <n> button <addr> [toggle]
|
||||
// joyhat <n> <up|down|left|right> button <addr>
|
||||
//
|
||||
// <addr> is a RIO input address: lamp buttons 0x00-0x47, internal
|
||||
// keypad 0x50-0x5F, external keypad 0x60-0x6F. Loaded from
|
||||
// bindings.txt beside the exe; written there (self-documenting, with
|
||||
// the full default profile) on first run. Bad lines are logged and
|
||||
// skipped, good lines always win.
|
||||
//
|
||||
// The joy* rows drive generic DirectInput devices - flight sticks,
|
||||
// HOTAS throttles, twist grips, rudder pedals (L4JOY.h). They attach to
|
||||
// the most recent joydev slot, or slot 0 if no joydev came first. A slot
|
||||
// naming a product substring binds THAT device; a bare slot binds the
|
||||
// Nth attached non-XInput device. Source names follow the DirectInput
|
||||
// layout - X Y Z RX RY RZ SL0 SL1 - where a twist grip is usually RZ
|
||||
// and a HOTAS throttle usually Z or SL0. RP412JOYCONFIG=1 writes these
|
||||
// rows for you by asking the player to move each control.
|
||||
//########################################################################
|
||||
|
||||
enum PadBindRioAxis
|
||||
@@ -33,6 +46,14 @@ enum PadBindRioAxis
|
||||
BindAxisRightPedal,
|
||||
BindAxisJoystickY,
|
||||
BindAxisJoystickX,
|
||||
//
|
||||
// A signed composite, not a channel the pod has: positive presses
|
||||
// the right pedal, negative the left. One physical control - a
|
||||
// rudder bar, a twist grip, a stick axis - works the pedal pair the
|
||||
// way a foot never could, one or the other and never both. It
|
||||
// decomposes into the real pair when the poll applies it.
|
||||
//
|
||||
BindAxisPedals,
|
||||
BindAxisCount
|
||||
};
|
||||
|
||||
@@ -89,6 +110,54 @@ struct PadPadAxisBinding
|
||||
Scalar rate; // 0 = direct position, >0 = speed integrate
|
||||
};
|
||||
|
||||
//
|
||||
// Generic joystick (DirectInput - L4JOY.h). device is a joydev SLOT,
|
||||
// resolved to a live device at poll time by the slot's name substring or
|
||||
// by its ordinal, so unplugging and replugging does not rewrite the file.
|
||||
//
|
||||
enum { BindJoyDeviceSlots = 4 };
|
||||
|
||||
enum PadBindJoyAxis
|
||||
{
|
||||
BindJoyAxisX = 0,
|
||||
BindJoyAxisY,
|
||||
BindJoyAxisZ,
|
||||
BindJoyAxisRX,
|
||||
BindJoyAxisRY,
|
||||
BindJoyAxisRZ,
|
||||
BindJoyAxisSL0,
|
||||
BindJoyAxisSL1,
|
||||
BindJoyAxisCount
|
||||
};
|
||||
|
||||
struct PadJoyAxisBinding
|
||||
{
|
||||
int device; // joydev slot
|
||||
int source; // PadBindJoyAxis
|
||||
int axis; // PadBindRioAxis
|
||||
Logical invert;
|
||||
Scalar deadzone; // normalized 0..1
|
||||
Scalar rate; // 0 = direct position, >0 = speed integrate
|
||||
};
|
||||
|
||||
struct PadJoyButtonBinding
|
||||
{
|
||||
int device; // joydev slot
|
||||
int button; // 0-31
|
||||
int address;
|
||||
Logical toggle;
|
||||
Logical wasDown;
|
||||
Logical latched;
|
||||
};
|
||||
|
||||
struct PadJoyHatBinding
|
||||
{
|
||||
int device; // joydev slot
|
||||
int hat; // 0-3
|
||||
int direction; // 0 up, 1 right, 2 down, 3 left
|
||||
int address;
|
||||
};
|
||||
|
||||
struct PadBindingProfile
|
||||
{
|
||||
enum
|
||||
@@ -96,7 +165,10 @@ struct PadBindingProfile
|
||||
maxKeyButtons = 128,
|
||||
maxKeyAxes = 32,
|
||||
maxPadButtons = 32,
|
||||
maxPadAxes = 16
|
||||
maxPadAxes = 16,
|
||||
maxJoyAxes = 24,
|
||||
maxJoyButtons = 48,
|
||||
maxJoyHats = 16
|
||||
};
|
||||
|
||||
PadKeyButtonBinding keyButtons[maxKeyButtons];
|
||||
@@ -107,6 +179,15 @@ struct PadBindingProfile
|
||||
int padButtonCount;
|
||||
PadPadAxisBinding padAxes[maxPadAxes];
|
||||
int padAxisCount;
|
||||
|
||||
PadJoyAxisBinding joyAxes[maxJoyAxes];
|
||||
int joyAxisCount;
|
||||
PadJoyButtonBinding joyButtons[maxJoyButtons];
|
||||
int joyButtonCount;
|
||||
PadJoyHatBinding joyHats[maxJoyHats];
|
||||
int joyHatCount;
|
||||
// "" = take the slot's ordinal attached device
|
||||
char joyDeviceMatch[BindJoyDeviceSlots][64];
|
||||
};
|
||||
|
||||
// Load bindings.txt from the working directory into the profile,
|
||||
|
||||
+214
-1
@@ -3,6 +3,7 @@
|
||||
|
||||
#include "l4padrio.h"
|
||||
#include "l4keylight.h"
|
||||
#include "l4joy.h"
|
||||
|
||||
#include <XInput.h>
|
||||
#pragma comment(lib, "xinput9_1_0.lib")
|
||||
@@ -41,6 +42,51 @@ namespace
|
||||
return (GetAsyncKeyState(virtual_key) & 0x8000) != 0;
|
||||
}
|
||||
|
||||
//
|
||||
// A generic stick axis is already normalized -1..1, so the deadzone
|
||||
// is a plain cut about centre with the remainder rescaled - press
|
||||
// just past the edge and you get just past zero, not a step.
|
||||
//
|
||||
Scalar JoyAxisValue(Scalar raw, Scalar deadzone)
|
||||
{
|
||||
if (deadzone <= 0.0f)
|
||||
{
|
||||
return raw;
|
||||
}
|
||||
if (raw > -deadzone && raw < deadzone)
|
||||
{
|
||||
return (Scalar) 0;
|
||||
}
|
||||
Scalar value = (raw > 0.0f)
|
||||
? (raw - deadzone) / (1.0f - deadzone)
|
||||
: (raw + deadzone) / (1.0f - deadzone);
|
||||
if (value > 1.0f) value = 1.0f;
|
||||
if (value < -1.0f) value = -1.0f;
|
||||
return value;
|
||||
}
|
||||
|
||||
//
|
||||
// A POV hat reports centidegrees clockwise from up, or -1 centered.
|
||||
// The 45-degree window each way is what makes the diagonals press
|
||||
// both of their neighbours, which is how a four-way hat is read.
|
||||
//
|
||||
Logical JoyHatHeld(int centidegrees, int direction)
|
||||
{
|
||||
if (centidegrees < 0)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
int degrees = (centidegrees / 100) % 360;
|
||||
switch (direction)
|
||||
{
|
||||
case 0: return (degrees >= 315 || degrees <= 45) ? True : False;
|
||||
case 1: return (degrees >= 45 && degrees <= 135) ? True : False;
|
||||
case 2: return (degrees >= 135 && degrees <= 225) ? True : False;
|
||||
case 3: return (degrees >= 225 && degrees <= 315) ? True : False;
|
||||
}
|
||||
return False;
|
||||
}
|
||||
|
||||
void KeyLightLog(const char *line)
|
||||
{
|
||||
DEBUG_STREAM << line << "\n" << std::flush;
|
||||
@@ -166,6 +212,29 @@ PadRIO::PadRIO()
|
||||
activeInstance = this;
|
||||
|
||||
DEBUG_STREAM << "PadRIO: virtual RIO active (XInput pad + keyboard)\n" << std::flush;
|
||||
|
||||
//
|
||||
// Only open DirectInput when the profile actually asks for it. A
|
||||
// player on keyboard and pad should not pay for an enumeration of
|
||||
// every HID on the machine, and joyconfig.bat is what writes the
|
||||
// rows that turn this on.
|
||||
//
|
||||
if (profile.joyAxisCount > 0 || profile.joyButtonCount > 0 ||
|
||||
profile.joyHatCount > 0)
|
||||
{
|
||||
int found = RPJoyInit();
|
||||
DEBUG_STREAM << "PadRIO: joystick bindings present, " << found
|
||||
<< " generic device(s) attached\n" << std::flush;
|
||||
for (int d = 0; d < found; ++d)
|
||||
{
|
||||
const RPJoyDeviceState *state = RPJoyDevice(d);
|
||||
if (state != NULL)
|
||||
{
|
||||
DEBUG_STREAM << "PadRIO: [" << d << "] " << state->name
|
||||
<< "\n" << std::flush;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
PadRIO::~PadRIO()
|
||||
@@ -244,6 +313,11 @@ void
|
||||
profile.padButtons[i].latched = False;
|
||||
profile.padButtons[i].wasDown = False;
|
||||
}
|
||||
for (int i = 0; i < profile.joyButtonCount; ++i)
|
||||
{
|
||||
profile.joyButtons[i].latched = False;
|
||||
profile.joyButtons[i].wasDown = False;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
@@ -391,6 +465,81 @@ void
|
||||
}
|
||||
}
|
||||
}
|
||||
//---------------------------------------------------------------
|
||||
// Generic joysticks. The slots are resolved every poll rather than
|
||||
// cached, so a stick unplugged mid-race simply stops answering and
|
||||
// one plugged back in picks up where it left off.
|
||||
//---------------------------------------------------------------
|
||||
int joyDevice[BindJoyDeviceSlots];
|
||||
Logical joyLive = False;
|
||||
for (int slot = 0; slot < BindJoyDeviceSlots; ++slot)
|
||||
{
|
||||
joyDevice[slot] = -1;
|
||||
}
|
||||
if (profile.joyAxisCount > 0 || profile.joyButtonCount > 0 ||
|
||||
profile.joyHatCount > 0)
|
||||
{
|
||||
RPJoyPoll();
|
||||
for (int slot = 0; slot < BindJoyDeviceSlots; ++slot)
|
||||
{
|
||||
joyDevice[slot] = (profile.joyDeviceMatch[slot][0] != '\0')
|
||||
? RPJoyFindDevice(profile.joyDeviceMatch[slot])
|
||||
: ((RPJoyDevice(slot) != NULL) ? slot : -1);
|
||||
if (joyDevice[slot] >= 0)
|
||||
{
|
||||
joyLive = True;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < profile.joyButtonCount; ++i)
|
||||
{
|
||||
PadJoyButtonBinding *binding = &profile.joyButtons[i];
|
||||
const RPJoyDeviceState *state =
|
||||
(binding->device >= 0 && binding->device < BindJoyDeviceSlots)
|
||||
? RPJoyDevice(joyDevice[binding->device]) : NULL;
|
||||
Logical down = (state != NULL) &&
|
||||
(state->buttons & (1u << binding->button)) != 0;
|
||||
if (binding->toggle && down && !binding->wasDown)
|
||||
{
|
||||
binding->latched = !binding->latched;
|
||||
}
|
||||
binding->wasDown = down;
|
||||
|
||||
if (binding->toggle ? binding->latched : down)
|
||||
{
|
||||
if (binding->address < buttonUnits)
|
||||
{
|
||||
desired[binding->address] = 1;
|
||||
}
|
||||
else if (binding->address >= 0x50 &&
|
||||
binding->address < 0x50 + keypadUnits)
|
||||
{
|
||||
keypadDesired[binding->address - 0x50] = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < profile.joyHatCount; ++i)
|
||||
{
|
||||
const PadJoyHatBinding *binding = &profile.joyHats[i];
|
||||
const RPJoyDeviceState *state =
|
||||
(binding->device >= 0 && binding->device < BindJoyDeviceSlots)
|
||||
? RPJoyDevice(joyDevice[binding->device]) : NULL;
|
||||
if (state != NULL &&
|
||||
JoyHatHeld(state->hat[binding->hat], binding->direction))
|
||||
{
|
||||
if (binding->address < buttonUnits)
|
||||
{
|
||||
desired[binding->address] = 1;
|
||||
}
|
||||
else if (binding->address >= 0x50 &&
|
||||
binding->address < 0x50 + keypadUnits)
|
||||
{
|
||||
keypadDesired[binding->address - 0x50] = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < buttonUnits; ++i)
|
||||
{
|
||||
if (screenButton[i])
|
||||
@@ -502,6 +651,68 @@ void
|
||||
}
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------
|
||||
// Joystick axes. A physical throttle lever is the one source that
|
||||
// does not add into the pile: it has an absolute position, so its
|
||||
// full travel IS the channel and it takes ownership rather than
|
||||
// nudging an accumulator that a spring-centred pad stick has to.
|
||||
//---------------------------------------------------------------
|
||||
Logical throttleLever = False;
|
||||
Scalar throttleLeverValue = (Scalar) 0;
|
||||
|
||||
if (joyLive)
|
||||
{
|
||||
for (int i = 0; i < profile.joyAxisCount; ++i)
|
||||
{
|
||||
const PadJoyAxisBinding *binding = &profile.joyAxes[i];
|
||||
if (binding->device < 0 || binding->device >= BindJoyDeviceSlots)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
const RPJoyDeviceState *state = RPJoyDevice(joyDevice[binding->device]);
|
||||
if (state == NULL)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
Scalar raw = (Scalar) state->axis[binding->source];
|
||||
if (binding->invert)
|
||||
{
|
||||
raw = -raw;
|
||||
}
|
||||
if (binding->axis == BindAxisThrottle && binding->rate == 0.0f)
|
||||
{
|
||||
// -1..1 of lever travel onto the 0..1 the pod runs on
|
||||
throttleLeverValue = (raw + 1.0f) * 0.5f;
|
||||
throttleLever = True;
|
||||
continue;
|
||||
}
|
||||
Scalar value = JoyAxisValue(raw, binding->deadzone);
|
||||
if (binding->rate > 0.0f)
|
||||
{
|
||||
rate[binding->axis] += value * binding->rate;
|
||||
}
|
||||
else
|
||||
{
|
||||
deflect[binding->axis] += value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// The composite pedal axis becomes the pair the pod actually has.
|
||||
// One signed source presses one pedal or the other, never both,
|
||||
// which is what a rudder bar or a twist grip does.
|
||||
//
|
||||
Scalar pedals = deflect[BindAxisPedals];
|
||||
if (pedals > 0.0f)
|
||||
{
|
||||
deflect[BindAxisRightPedal] += pedals;
|
||||
}
|
||||
else if (pedals < 0.0f)
|
||||
{
|
||||
deflect[BindAxisLeftPedal] += -pedals;
|
||||
}
|
||||
|
||||
throttleAccum = Clamp01(throttleAccum + rate[BindAxisThrottle] * delta_t);
|
||||
|
||||
Scalar x = deflect[BindAxisJoystickX];
|
||||
@@ -511,7 +722,9 @@ void
|
||||
if (y > 1.0f) y = 1.0f;
|
||||
if (y < -1.0f) y = -1.0f;
|
||||
|
||||
Throttle = Clamp01(throttleAccum + deflect[BindAxisThrottle]);
|
||||
Throttle = throttleLever
|
||||
? Clamp01(throttleLeverValue)
|
||||
: Clamp01(throttleAccum + deflect[BindAxisThrottle]);
|
||||
LeftPedal = Clamp01(deflect[BindAxisLeftPedal]);
|
||||
RightPedal = Clamp01(deflect[BindAxisRightPedal]);
|
||||
// The profile encodes the pod's stick sign convention; L4PADFLIP
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
#include "l4plasmascreen.h"
|
||||
#include "l4app.h"
|
||||
#include "l4mfdview.h" // RPWindowLayout_*
|
||||
|
||||
namespace
|
||||
{
|
||||
@@ -45,6 +46,15 @@ namespace
|
||||
}
|
||||
break;
|
||||
|
||||
case WM_EXITSIZEMOVE:
|
||||
//
|
||||
// Dragged to a new spot. Write the whole arrangement now rather
|
||||
// than trusting teardown, so a hard kill still leaves what was
|
||||
// on screen. No-op unless RP412MFDLAYOUT is save.
|
||||
//
|
||||
RPWindowLayout_Save();
|
||||
return 0;
|
||||
|
||||
case WM_CLOSE:
|
||||
// The glass is part of the cockpit; just hide it.
|
||||
ShowWindow(hwnd, SW_HIDE);
|
||||
@@ -176,6 +186,7 @@ PlasmaScreen::~PlasmaScreen()
|
||||
}
|
||||
if (window != NULL)
|
||||
{
|
||||
RPWindowLayout_Forget(window);
|
||||
RemovePropA((HWND) window, "PlasmaBitmapInfo");
|
||||
RemovePropA((HWND) window, "PlasmaPixels");
|
||||
DestroyWindow((HWND) window);
|
||||
@@ -275,6 +286,22 @@ void
|
||||
SetPropA((HWND) window, "PlasmaPixels", pixelBuffer->Data.MapPointer);
|
||||
ShowWindow((HWND) window, SW_SHOWNOACTIVATE);
|
||||
activeInstance = this;
|
||||
|
||||
//
|
||||
//-----------------------------------------------------------
|
||||
// Join the saved layout. Position only, like the display
|
||||
// panes: the glass is 128x32 at L4PLASMASCALE, so its size
|
||||
// is a setting rather than something to drag.
|
||||
//
|
||||
// Loading here rather than leaving it to SVGA16 keeps this
|
||||
// independent of which is built first - the glass comes from
|
||||
// the gauge renderer, the panes from the video mode, and
|
||||
// whichever runs second re-applies a placement the first
|
||||
// already has.
|
||||
//-----------------------------------------------------------
|
||||
//
|
||||
RPWindowLayout_Register(window, "Plasma Display", False);
|
||||
RPWindowLayout_Load();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -3839,6 +3839,11 @@ static LRESULT CALLBACK
|
||||
cockpit->LayoutCockpit(LOWORD(lParam), HIWORD(lParam));
|
||||
}
|
||||
}
|
||||
//
|
||||
// WM_EXITSIZEMOVE is not handled here: RPL4.CPP's own WndProc takes
|
||||
// it, and this chains straight through to that, so the shell saves on
|
||||
// every finished drag whether or not a cockpit has been built.
|
||||
//
|
||||
return CallWindowProcA(gCockpitBaseProc, hwnd, message, wParam, lParam);
|
||||
}
|
||||
|
||||
@@ -4457,6 +4462,15 @@ SVGA16::SVGA16(
|
||||
splitView[SplitMFDLowerRight]->SetPosition(
|
||||
work.left + right_x, work.top + bottom_y);
|
||||
splitView[SplitMap]->SetPosition(work.left + map_x, work.top + map_y);
|
||||
|
||||
//
|
||||
// ...and then let RP412MFDLAYOUT put everything back where it was
|
||||
// dragged to last time. Windows the file does not mention keep the
|
||||
// arrangement just computed above. The game window is registered
|
||||
// already - RPL4.CPP does that before the console screen ever
|
||||
// shows - so this picks it up alongside the panes.
|
||||
//
|
||||
RPWindowLayout_Load();
|
||||
}
|
||||
else if (splitViews)
|
||||
{
|
||||
@@ -4668,6 +4682,23 @@ SVGA16::SVGA16(
|
||||
// catch maximise / restore / drag-resize and re-fit
|
||||
gCockpitBaseProc = (WNDPROC) SetWindowLongPtrA(
|
||||
cockpit, GWLP_WNDPROC, (LONG_PTR) CockpitShellProc);
|
||||
|
||||
//
|
||||
// Sticky placement for the shell. Position AND size: nothing
|
||||
// derives that size here - -res only decides how sharp the
|
||||
// scene is - so a window sized to suit a monitor should come
|
||||
// back that way. RPL4.CPP registered it before the console
|
||||
// screen; this reload undoes the sizing just done above, and
|
||||
// runs after the subclass on purpose so its WM_SIZE puts
|
||||
// LayoutCockpit over the restored client area.
|
||||
//
|
||||
// -fit sits it borderless over the whole monitor, so there is
|
||||
// no placement of the player's to remember.
|
||||
//
|
||||
if (!fit_display)
|
||||
{
|
||||
RPWindowLayout_Load();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -4863,6 +4894,14 @@ SVGA16::~SVGA16()
|
||||
//---------------------------------------------------------
|
||||
//SVGASetSplitterClock(False);
|
||||
|
||||
//
|
||||
// Backstop for the sticky placement: every finished drag has already
|
||||
// been written, but a window moved and then closed straight away would
|
||||
// otherwise be missed. Must run before the panes go - it reads their
|
||||
// live window rects, and the game window's.
|
||||
//
|
||||
RPWindowLayout_Save();
|
||||
|
||||
for (int view = 0; view < SplitViewCount; ++view)
|
||||
{
|
||||
delete splitView[view];
|
||||
|
||||
@@ -263,6 +263,7 @@
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
</ClCompile>
|
||||
<ClCompile Include=".\L4PADBINDINGS.cpp" />
|
||||
<ClCompile Include=".\L4JOY.cpp" />
|
||||
<ClCompile Include=".\L4PADRIO.cpp" />
|
||||
<ClCompile Include=".\L4PCSPAK.cpp" />
|
||||
<ClCompile Include=".\L4PLASMA.cpp" />
|
||||
@@ -454,6 +455,7 @@
|
||||
<ClInclude Include=".\L4NETTRANSPORT.h" />
|
||||
<ClInclude Include=".\L4KEYLIGHT.h" />
|
||||
<ClInclude Include=".\L4PADBINDINGS.h" />
|
||||
<ClInclude Include=".\L4JOY.h" />
|
||||
<ClInclude Include=".\L4STEAMTRANSPORT.h" />
|
||||
<ClInclude Include=".\L4PARTICLES.h" />
|
||||
<ClInclude Include=".\L4MFDVIEW.h" />
|
||||
|
||||
@@ -61,6 +61,32 @@ cockpit glass cleared away, held for a few seconds before the results screen.
|
||||
Three pieces of it had been stubbed out in the D3D9 port and are working
|
||||
again.
|
||||
|
||||
[v4.12.6](https://gitea.mysticmachines.com/VWE/RP412/releases/tag/v4.12.6)
|
||||
is about the windows. Where you put them now survives the
|
||||
menu-race-menu loop: `RP412MFDLAYOUT` remembers the game window, the
|
||||
exploded view's display panes and the plasma glass in `mfd_layout.cfg`
|
||||
beside `bindings.txt`. Append `,noframe` to a line to take that
|
||||
window's title bar and border off — a cockpit filling the monitor edge
|
||||
to edge at a rect you chose, rather than `-fit` taking the whole
|
||||
screen — and the setup screen carries its own **EXIT GAME** button,
|
||||
since a window with no title bar needs a way out. The Steam buttons
|
||||
now dim and say *STEAM NOT RUNNING* instead of disappearing. And the
|
||||
Winners Circle camera is framed off the award stand itself rather than
|
||||
off whoever is standing on it, so the shot is the same one for every
|
||||
player at every head count.
|
||||
|
||||
[v4.12.7](https://gitea.mysticmachines.com/VWE/RP412/releases/tag/v4.12.7)
|
||||
is about sticks. Anything that is not an Xbox-class pad — a flight stick,
|
||||
a HOTAS throttle, a twist grip, rudder pedals, a wheel — comes in through
|
||||
DirectInput rather than XInput, and the game could not see any of it.
|
||||
Now it can, and `joyconfig.bat` sets it up: the wizard asks you to move
|
||||
each control in turn, works out which device and axis answered and which
|
||||
way round it reads, and writes the joystick rows of `bindings.txt`,
|
||||
leaving anything you have edited yourself alone. A twist grip or rudder
|
||||
bar drives both pedals through one signed `Pedals` axis, and a real
|
||||
throttle lever owns its channel outright rather than nudging a position
|
||||
the way a spring-centred stick has to. Ported from the sibling BT411.
|
||||
|
||||
## Playing
|
||||
|
||||
Grab the release zip (or run `pack-dist.ps1` on a build). Single player:
|
||||
|
||||
+62
-1
@@ -26,6 +26,8 @@
|
||||
#include "rpl4lobby.h"
|
||||
#include "..\munga_l4\l4steamtransport.h"
|
||||
#include "..\munga_l4\l4splr.h"
|
||||
#include "..\munga_l4\l4mfdview.h" // RPWindowLayout_*
|
||||
#include "..\munga_l4\l4joy.h" // RPJoyConfigWizard
|
||||
#include "rpl4ver.h"
|
||||
#include "..\munga\resver.h"
|
||||
#include "..\munga\resource.h"
|
||||
@@ -123,6 +125,15 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||
return 0;
|
||||
}
|
||||
break;
|
||||
case WM_EXITSIZEMOVE:
|
||||
//
|
||||
// A drag or resize just finished. Here rather than in the
|
||||
// cockpit's subclass so it also covers the console screen, which
|
||||
// is where the window gets moved before there is any cockpit to
|
||||
// subclass. No-op unless RP412MFDLAYOUT is save.
|
||||
//
|
||||
RPWindowLayout_Save();
|
||||
return 0;
|
||||
}
|
||||
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
||||
}
|
||||
@@ -177,7 +188,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
fclose(file);
|
||||
}
|
||||
|
||||
DEBUG_STREAM << "Red Planet 4.12.5" << std::endl << std::flush;
|
||||
DEBUG_STREAM << "Red Planet 4.12.7" << std::endl << std::flush;
|
||||
DEBUG_STREAM << "L4CONTROLS=" << getenv("L4CONTROLS") << std::endl << std::flush;
|
||||
|
||||
#ifdef RP412_STEAM
|
||||
@@ -254,6 +265,43 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
return FALSE;
|
||||
|
||||
ShowWindow(hWnd, nShowCmd);
|
||||
|
||||
//
|
||||
// Sticky placement, from the first frame the player sees. SVGA16 also
|
||||
// registers and reloads when it builds the cockpit, but that is not
|
||||
// until a mission starts - without this the console screen would come
|
||||
// up at the default rect with its title bar still on, and only jump
|
||||
// to the saved placement once a race began. -fit takes the whole
|
||||
// monitor and has no placement of the player's to restore.
|
||||
//
|
||||
if (!L4Application::GetFitDisplay() && !L4Application::GetFullscreen())
|
||||
{
|
||||
RPWindowLayout_Register(hWnd, "RPL4", True);
|
||||
RPWindowLayout_Load();
|
||||
}
|
||||
|
||||
//
|
||||
//-------------------------------------------------------------------------
|
||||
// RP412JOYCONFIG=1 (joyconfig.bat): the joystick setup wizard, before
|
||||
// anything else claims the screen. It asks the player to move each
|
||||
// control on their stick, HOTAS or pedals and writes the joy* rows of
|
||||
// bindings.txt, then falls through into the game so they can try them
|
||||
// straight away.
|
||||
//
|
||||
// One shot: the variable is cleared from this process so a rebuilt
|
||||
// PadRIO later in the session cannot run the wizard a second time.
|
||||
//-------------------------------------------------------------------------
|
||||
//
|
||||
{
|
||||
const char *joyconfig = getenv("RP412JOYCONFIG");
|
||||
if (joyconfig != NULL && *joyconfig != '\0' && atoi(joyconfig) != 0)
|
||||
{
|
||||
RPJoyConfigWizard();
|
||||
SetEnvironmentVariableA("RP412JOYCONFIG", NULL);
|
||||
_putenv("RP412JOYCONFIG=");
|
||||
}
|
||||
}
|
||||
|
||||
#if !_DEBUG
|
||||
// Arcade pods have no mouse - but desktop/windowed play needs the
|
||||
// cursor for the on-screen cockpit buttons, so hide it only when
|
||||
@@ -475,6 +523,19 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Last word on the window's placement. Every finished drag has already
|
||||
// written it and SVGA16 writes again as the cockpit comes down, but a
|
||||
// session that never started a race has neither - and quitting from
|
||||
// the console screen is exactly how somebody would leave after moving
|
||||
// the window to where they want it. No-op unless the mode is save.
|
||||
//
|
||||
if (IsWindow(hWnd))
|
||||
{
|
||||
RPWindowLayout_Save();
|
||||
}
|
||||
RPWindowLayout_Forget(hWnd);
|
||||
|
||||
#if !_DEBUG
|
||||
// symmetric with the fullscreen-only hide at startup
|
||||
if (L4Application::GetFullscreen())
|
||||
|
||||
+95
-39
@@ -133,20 +133,27 @@ void
|
||||
// meaningful in both.
|
||||
//---------------------------------------------------------------------
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------------
|
||||
// The stand's own geometry first, before anybody stands on it.
|
||||
//
|
||||
// The eight spots are fixed furniture on every map, so reading them up
|
||||
// front gives one set of numbers to both jobs below: where to stand
|
||||
// the finishers, and where to put the camera. Only the first is
|
||||
// allowed to care who finished.
|
||||
//---------------------------------------------------------------------
|
||||
//
|
||||
enum { winnersSpotCount = 8 };
|
||||
DropZone *spot[winnersSpotCount];
|
||||
int spots_found = 0;
|
||||
|
||||
char winners_spot[] = "win?";
|
||||
char *place = winners_spot + 3;
|
||||
int placed = 0;
|
||||
Point3D standFront(0.0f, 0.0f, 0.0f);
|
||||
Point3D standCentre(0.0f, 0.0f, 0.0f);
|
||||
|
||||
Player *p;
|
||||
for (int rank = 0; (p = CameraDirector::FindPlayerByRank(rank)) != NULL; ++rank)
|
||||
for (int i = 0; i < winnersSpotCount; ++i)
|
||||
{
|
||||
if (rank > 7)
|
||||
{
|
||||
break; // only eight spots exist on the stand
|
||||
}
|
||||
*place = (char) ('1' + rank);
|
||||
*place = (char) ('1' + i);
|
||||
spot[i] = NULL;
|
||||
|
||||
ChainIteratorOf<Node*> iterator(dropzones->groupMembers);
|
||||
DropZone *dropzone;
|
||||
@@ -154,10 +161,36 @@ void
|
||||
{
|
||||
if (!strcmp(dropzone->GetDropZoneName(), winners_spot))
|
||||
{
|
||||
spot[i] = dropzone;
|
||||
++spots_found;
|
||||
Point3D at = dropzone->localOrigin.linearPosition;
|
||||
DEBUG_STREAM << "WinnersCircle: " << winners_spot << " at "
|
||||
<< at.x << "," << at.y << "," << at.z << "\n" << std::flush;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (dropzone == NULL)
|
||||
}
|
||||
|
||||
if (spot[0] == NULL)
|
||||
{
|
||||
DEBUG_STREAM << "WinnersCircle: no win1 spot on this map\n" << std::flush;
|
||||
return;
|
||||
}
|
||||
|
||||
//
|
||||
//---------------------------------------------------------------------
|
||||
// Stand the finishers up, in finishing order.
|
||||
//---------------------------------------------------------------------
|
||||
//
|
||||
int placed = 0;
|
||||
Player *p;
|
||||
for (int rank = 0; (p = CameraDirector::FindPlayerByRank(rank)) != NULL; ++rank)
|
||||
{
|
||||
if (rank >= winnersSpotCount)
|
||||
{
|
||||
break; // only eight spots exist on the stand
|
||||
}
|
||||
if (spot[rank] == NULL)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
@@ -168,20 +201,9 @@ void
|
||||
continue;
|
||||
}
|
||||
VTV *vtv = (VTV*) vehicle;
|
||||
vtv->Reset(dropzone->localOrigin, VTV::MissionReviewReset);
|
||||
vtv->Reset(spot[rank]->localOrigin, VTV::MissionReviewReset);
|
||||
vtv->SetPerformance(&VTV::DoNothing);
|
||||
vtv->FlushEvents();
|
||||
|
||||
Point3D spot = dropzone->localOrigin.linearPosition;
|
||||
if (placed == 0)
|
||||
{
|
||||
// remember where the front of the stand is - the shot is framed
|
||||
// off it rather than off hardcoded map coordinates
|
||||
standFront = spot;
|
||||
}
|
||||
standCentre += spot;
|
||||
DEBUG_STREAM << "WinnersCircle: " << winners_spot << " at "
|
||||
<< spot.x << "," << spot.y << "," << spot.z << "\n" << std::flush;
|
||||
++placed;
|
||||
}
|
||||
|
||||
@@ -239,25 +261,52 @@ void
|
||||
// line-up frames up. The stand runs from z~3 (rank 1, low) to z~39
|
||||
// (ranks 4-8, high) and x~1180..1219; at 45 degrees that needs roughly
|
||||
// 30 units of standoff. Eye is above the top tier looking slightly
|
||||
// down at the middle of the group.
|
||||
// down at the winner's spot.
|
||||
//
|
||||
// Framed off the stand, NOT off who is standing on it. This used to
|
||||
// average the filled spots and anchor on the first one filled, which
|
||||
// meant the camera moved with the head count: eight finishers put the
|
||||
// anchor in the middle of the tiers and the eye about 58 units out,
|
||||
// one finisher collapsed it onto the winner's spot and brought the eye
|
||||
// in to 36. Same stand, different shot per race - and per machine, if
|
||||
// a remote player's vehicle was not there to be placed. The furniture
|
||||
// does not move, so the camera does not either.
|
||||
//---------------------------------------------------------------------
|
||||
//
|
||||
standCentre.x /= (Scalar) placed;
|
||||
standCentre.y /= (Scalar) placed;
|
||||
standCentre.z /= (Scalar) placed;
|
||||
Point3D standFront = spot[0]->localOrigin.linearPosition;
|
||||
|
||||
//
|
||||
// Stand off along the line from the middle of the group out through the
|
||||
// front spot, so the shot faces the stand however the map has it turned,
|
||||
// and lift the eye above the top tier to look down on the line-up.
|
||||
// The stand's own axis: back rows to the winner's spot, which points
|
||||
// out of the front however the map has the stand turned. Taken from
|
||||
// the geometry rather than assumed, so a map that mounts its stand at
|
||||
// another angle still gets photographed from the front.
|
||||
//
|
||||
Point3D standBack(0.0f, 0.0f, 0.0f);
|
||||
int back_count = 0;
|
||||
for (int i = 1; i < winnersSpotCount; ++i)
|
||||
{
|
||||
if (spot[i] != NULL)
|
||||
{
|
||||
standBack += spot[i]->localOrigin.linearPosition;
|
||||
++back_count;
|
||||
}
|
||||
}
|
||||
if (back_count > 0)
|
||||
{
|
||||
standBack.x /= (Scalar) back_count;
|
||||
standBack.y /= (Scalar) back_count;
|
||||
standBack.z /= (Scalar) back_count;
|
||||
}
|
||||
|
||||
Vector3D facing;
|
||||
facing.x = standFront.x - standCentre.x;
|
||||
facing.x = standFront.x - standBack.x;
|
||||
facing.y = 0.0f;
|
||||
facing.z = standFront.z - standCentre.z;
|
||||
facing.z = standFront.z - standBack.z;
|
||||
Scalar reach = (Scalar) sqrt(facing.x * facing.x + facing.z * facing.z);
|
||||
if (reach < 0.01f)
|
||||
{
|
||||
// a one-spot stand, or all eight stacked: nothing to take a
|
||||
// direction from, so fall back to the way the shipped stands face
|
||||
facing.x = 0.0f; facing.z = -1.0f; reach = 1.0f;
|
||||
}
|
||||
//
|
||||
@@ -285,10 +334,12 @@ void
|
||||
if (tune != NULL) aim_lift = (Scalar) atof(tune);
|
||||
|
||||
Point3D eye;
|
||||
eye.x = standCentre.x + (facing.x / reach) * standoff;
|
||||
eye.y = standCentre.y + height;
|
||||
eye.z = standCentre.z + (facing.z / reach) * standoff;
|
||||
standCentre.y += aim_lift;
|
||||
eye.x = standFront.x + (facing.x / reach) * standoff;
|
||||
eye.y = standFront.y + height;
|
||||
eye.z = standFront.z + (facing.z / reach) * standoff;
|
||||
|
||||
Point3D aim = standFront;
|
||||
aim.y += aim_lift;
|
||||
|
||||
//
|
||||
// RP412PODIUMCAM=0 leaves the view in the cockpit, which is also the
|
||||
@@ -315,7 +366,7 @@ void
|
||||
if (camera_mode == NULL || atoi(camera_mode) != 0)
|
||||
{
|
||||
dpl_renderer->SetViewAngle(Degree(45.0f));
|
||||
dpl_renderer->SetPresentationCamera(eye, standCentre);
|
||||
dpl_renderer->SetPresentationCamera(eye, aim);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -340,8 +391,13 @@ void
|
||||
}
|
||||
dpl_renderer->StartPresentationFadeIn(fade_in);
|
||||
|
||||
DEBUG_STREAM << "WinnersCircle: " << placed << " placed; centre "
|
||||
<< standCentre.x << "," << standCentre.y << "," << standCentre.z
|
||||
//
|
||||
// placed is reported for diagnosis only - the camera numbers beside it
|
||||
// must not move when it does.
|
||||
//
|
||||
DEBUG_STREAM << "WinnersCircle: " << placed << " placed on "
|
||||
<< spots_found << " spots; aim "
|
||||
<< aim.x << "," << aim.y << "," << aim.z
|
||||
<< " eye " << eye.x << "," << eye.y << "," << eye.z
|
||||
<< "\n" << std::flush;
|
||||
}
|
||||
|
||||
+61
-5
@@ -177,6 +177,7 @@ namespace
|
||||
GroupLaunch,
|
||||
GroupSteamHost, // buttons, not selections (Steam builds only)
|
||||
GroupSteamJoin,
|
||||
GroupExit,
|
||||
GroupCount
|
||||
};
|
||||
|
||||
@@ -413,8 +414,9 @@ namespace
|
||||
launch->rect.right = col3 + col_w;
|
||||
launch->rect.bottom = client_h - row_h;
|
||||
|
||||
// Steam lobby buttons (only when the Steam wire is live)
|
||||
if (RPL4Lobby_Available())
|
||||
// Steam lobby buttons, offered whenever environ.ini asked for Steam.
|
||||
// Painting greys them out and says so if the wire never came up.
|
||||
if (RPL4Lobby_Configured())
|
||||
{
|
||||
FEItem *host = &fe->items[fe->itemCount++];
|
||||
host->group = GroupSteamHost;
|
||||
@@ -433,6 +435,23 @@ namespace
|
||||
join->rect.bottom = client_h - (7 * row_h) / 2;
|
||||
}
|
||||
|
||||
//
|
||||
// Exit, bottom left. Diagonally opposite LAUNCH on purpose: it is
|
||||
// the one button on this screen you cannot undo, so it does not go
|
||||
// next to the one people are aiming for. Half width for the same
|
||||
// reason - it is a way out, not a peer of LAUNCH.
|
||||
//
|
||||
// The window frame used to be the way out, and mfd_layout.cfg's
|
||||
// ,noframe takes it away, so the screen has to offer its own.
|
||||
//
|
||||
FEItem *quit = &fe->items[fe->itemCount++];
|
||||
quit->group = GroupExit;
|
||||
quit->index = 0;
|
||||
quit->rect.left = col1;
|
||||
quit->rect.top = client_h - 2 * row_h;
|
||||
quit->rect.right = col1 + col_w / 2;
|
||||
quit->rect.bottom = client_h - row_h;
|
||||
|
||||
// pilot name edit sits at the top of column 3
|
||||
if (fe->nameEdit != NULL)
|
||||
{
|
||||
@@ -484,6 +503,7 @@ namespace
|
||||
case GroupLaunch: return "L A U N C H G A M E";
|
||||
case GroupSteamHost: return "HOST STEAM GAME";
|
||||
case GroupSteamJoin: return "JOIN STEAM GAME";
|
||||
case GroupExit: return "EXIT GAME";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
@@ -544,12 +564,38 @@ namespace
|
||||
RECT row = item->rect;
|
||||
if (item->group >= GroupLaunch)
|
||||
{
|
||||
HBRUSH launch_brush = CreateSolidBrush(kGreenBright);
|
||||
//
|
||||
// The lobby buttons are offered whenever environ.ini asked
|
||||
// for Steam, but they only work once the client is actually
|
||||
// there. Dim them and say why rather than leaving them out -
|
||||
// two buttons quietly missing looks like a broken build.
|
||||
//
|
||||
Logical steam_button =
|
||||
(item->group == GroupSteamHost || item->group == GroupSteamJoin);
|
||||
Logical dead = steam_button && !RPL4Lobby_Available();
|
||||
|
||||
COLORREF ink = dead ? kGreenDim : kGreenBright;
|
||||
HBRUSH launch_brush = CreateSolidBrush(ink);
|
||||
FrameRect(mem, &row, launch_brush);
|
||||
DeleteObject(launch_brush);
|
||||
SetTextColor(mem, kGreenBright);
|
||||
SetTextColor(mem, ink);
|
||||
DrawTextA(mem, ItemName(item->group, item->index), -1, &row,
|
||||
DT_CENTER | DT_VCENTER | DT_SINGLELINE);
|
||||
|
||||
//
|
||||
// The reason, on its own line above the pair. It does not
|
||||
// fit inside a button - they are about sixteen characters
|
||||
// wide and this is more than twice that.
|
||||
//
|
||||
if (dead && item->group == GroupSteamHost)
|
||||
{
|
||||
RECT notice = row;
|
||||
notice.bottom = row.top;
|
||||
notice.top = row.top - (row.bottom - row.top);
|
||||
SetTextColor(mem, kGreenDim);
|
||||
DrawTextA(mem, "STEAM NOT RUNNING", -1, ¬ice,
|
||||
DT_CENTER | DT_VCENTER | DT_SINGLELINE);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -613,7 +659,17 @@ namespace
|
||||
}
|
||||
else if (item->group == GroupSteamHost || item->group == GroupSteamJoin)
|
||||
{
|
||||
fe->steamAction = (item->group == GroupSteamHost) ? 1 : 2;
|
||||
// dead until the Steam client is there; the button says so
|
||||
if (RPL4Lobby_Available())
|
||||
{
|
||||
fe->steamAction = (item->group == GroupSteamHost) ? 1 : 2;
|
||||
PostMessageA(fe->menuWindow, WM_NULL, 0, 0);
|
||||
}
|
||||
}
|
||||
else if (item->group == GroupExit)
|
||||
{
|
||||
// the same door closing the window goes through
|
||||
fe->closed = True;
|
||||
PostMessageA(fe->menuWindow, WM_NULL, 0, 0);
|
||||
}
|
||||
else
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
//########################################################################
|
||||
|
||||
Logical RPL4Lobby_Available() { return False; }
|
||||
Logical RPL4Lobby_Configured() { return False; }
|
||||
Logical RPL4Lobby_InRoom() { return False; }
|
||||
int RPL4Lobby_Host(HINSTANCE, HWND) { return LobbyRoomLeft; }
|
||||
int RPL4Lobby_Join(HINSTANCE, HWND) { return LobbyRoomLeft; }
|
||||
@@ -919,6 +920,18 @@ Logical
|
||||
return SteamNetTransport_GetFakeAddressString()[0] != '\0';
|
||||
}
|
||||
|
||||
//
|
||||
// The environ.ini switch, read the same way RPL4.CPP reads it to decide
|
||||
// whether to install the transport at all. Says nothing about whether the
|
||||
// Steam client was actually there.
|
||||
//
|
||||
Logical
|
||||
RPL4Lobby_Configured()
|
||||
{
|
||||
const char *steam_switch = getenv("RP412STEAM");
|
||||
return (steam_switch != NULL && atoi(steam_switch) != 0) ? True : False;
|
||||
}
|
||||
|
||||
Logical
|
||||
RPL4Lobby_InRoom()
|
||||
{
|
||||
|
||||
@@ -33,6 +33,15 @@ enum RPL4LobbyOutcome
|
||||
Logical
|
||||
RPL4Lobby_Available();
|
||||
|
||||
// True when this build has Steam and environ.ini asked for it, whether
|
||||
// or not it actually came up. The menu offers the lobby buttons on this
|
||||
// and greys them out on Available() - a player who turned Steam on and
|
||||
// then launched without the client running should be told so, not left
|
||||
// looking at a menu that quietly has two fewer buttons than the last
|
||||
// time they saw it.
|
||||
Logical
|
||||
RPL4Lobby_Configured();
|
||||
|
||||
// True while we sit in a lobby (races return to the room).
|
||||
Logical
|
||||
RPL4Lobby_InRoom();
|
||||
|
||||
+37
-1
@@ -144,6 +144,42 @@ it off.
|
||||
|
||||
---
|
||||
|
||||
## Flight sticks, HOTAS and rudder pedals
|
||||
|
||||
Anything that is not an Xbox-class pad — a flight stick, a HOTAS
|
||||
throttle, a twist grip, rudder pedals, a wheel — comes in through
|
||||
DirectInput rather than XInput, and needs to be told which axis is
|
||||
which. **Run `joyconfig.bat` once.** It asks you to move each control in
|
||||
turn, works out which device and axis you moved and which way round it
|
||||
reads, and writes the joystick rows of `bindings.txt`. Then it carries
|
||||
on into the setup screen so you can try them straight away.
|
||||
|
||||
It only writes its own section, between two marker lines, so anything
|
||||
you have edited yourself survives re-running it. Xbox-class controllers
|
||||
need none of this — they are the pad rows above and work out of the box.
|
||||
|
||||
By hand, the rows look like this:
|
||||
|
||||
```
|
||||
joydev 0 T.16000M # or a bare slot number
|
||||
joyaxis X axis JoystickX invert deadzone 0.08
|
||||
joyaxis Y axis JoystickY invert deadzone 0.08
|
||||
joyaxis RZ axis Pedals deadzone 0.08 # twist grip works both pedals
|
||||
joyaxis SL0 axis Throttle deadzone 0 # a real lever owns the channel
|
||||
joybutton 0 button 0x40 # trigger
|
||||
joyhat 0 up button 0x42
|
||||
```
|
||||
|
||||
Axis names are DirectInput's — `X Y Z RX RY RZ SL0 SL1` — where a twist
|
||||
grip is usually `RZ` and a HOTAS throttle usually `Z` or `SL0`.
|
||||
|
||||
Two things are worth knowing. `Pedals` is a signed axis that drives the
|
||||
pedal *pair*, positive for the right pedal and negative for the left, so
|
||||
one rudder bar or twist grip works both the way a foot never could. And
|
||||
a `joyaxis` on `Throttle` with no `rate` is treated as a real lever: its
|
||||
full travel *is* the throttle range, rather than nudging a position the
|
||||
way a spring-centred pad stick has to.
|
||||
|
||||
## Rebinding
|
||||
|
||||
`bindings.txt` sits beside the exe, written with the full default layout
|
||||
@@ -163,7 +199,7 @@ padaxis LeftStickX axis JoystickX deadzone 0.15 # drop 'invert' to flip X
|
||||
|
||||
Addresses: `0x00`–`0x47` are the lamp buttons above, `0x50`–`0x6F` the
|
||||
keypads. Axis names: `Throttle`, `LeftPedal`, `RightPedal`, `JoystickX`,
|
||||
`JoystickY`. Key names follow the .NET `Keys` naming (`A`–`Z`, `D0`–`D9`
|
||||
`JoystickY`, `Pedals`. Key names follow the .NET `Keys` naming (`A`–`Z`, `D0`–`D9`
|
||||
for the digit row, `F1`–`F12`, `NumPad0`–`NumPad9`, `Up`, `Down`,
|
||||
`Left`, `Right`, `Space`, `Return`, `Shift`, `Ctrl`, `Alt`,
|
||||
`OemMinus`, `Oemplus`, `Oemcomma`, `OemPeriod`, `OemOpenBrackets`,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<title>Red Planet 4.12.3 — Controls</title>
|
||||
<title>Red Planet 4.12.7 — Controls</title>
|
||||
|
||||
<style>
|
||||
:root {
|
||||
@@ -754,7 +754,7 @@
|
||||
<div class="wrap">
|
||||
|
||||
<header class="masthead">
|
||||
<p class="eyebrow">Virtual World Entertainment · Tesla pod · RP 4.12.3</p>
|
||||
<p class="eyebrow">Virtual World Entertainment · Tesla pod · RP 4.12.7</p>
|
||||
<h1>Red Planet<br>Controls Map</h1>
|
||||
<p class="lede">
|
||||
Every input the pod answers to, on the gamepad and the keyboard. The
|
||||
@@ -1197,7 +1197,7 @@
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<span>Red Planet 4.12.3</span>
|
||||
<span>Red Planet 4.12.7</span>
|
||||
<span>gitea.mysticmachines.com/VWE/RP412</span>
|
||||
<span>docs/CONTROLS.md · CONTROLS.txt ships with the game</span>
|
||||
<span>RGB keyboards mirror the pod lamps · RP412KEYLIGHT=0 to disable</span>
|
||||
|
||||
+46
-2
@@ -166,6 +166,28 @@ L4PLASMA=SCREEN
|
||||
# 480x640 - decoded exactly as the pod's VDB split them, no downscale).
|
||||
L4MFDSPLIT=1
|
||||
|
||||
# The game window - and in the exploded view (L4MFDSPLIT=2) each display
|
||||
# window - is placed fresh every launch, so moving one somewhere useful
|
||||
# never survived the menu-race-menu loop. This remembers where you put
|
||||
# them, in mfd_layout.cfg beside this file:
|
||||
# off / 0 / unset computed placement only, no file (default)
|
||||
# load put the windows back where they were saved
|
||||
# save the same, and re-save on every finished drag
|
||||
# The game window gets its size back too, so you can size the cockpit to
|
||||
# suit your monitor once and keep it. The display windows get position
|
||||
# only: their size follows their content and their button banks, so an
|
||||
# old one is never restored over them. Arrange everything once with
|
||||
# save, then leave it on load.
|
||||
#
|
||||
# The plasma display window takes part too, under "Plasma Display".
|
||||
#
|
||||
# Each line in mfd_layout.cfg reads <title>=<x>,<y>,<w>,<h>, and you can
|
||||
# append ,noframe to take that window's title bar and border off - a
|
||||
# cockpit that fills the monitor edge to edge without -fit taking the
|
||||
# whole screen. Put the window where you want it first: a bare window
|
||||
# has nothing to drag by. Delete the flag to get the frame back.
|
||||
#RP412MFDLAYOUT=off
|
||||
|
||||
# Size of the six secondary displays in the glass cockpit, as a
|
||||
# percentage of their pod size. The pod bolted them down at one size;
|
||||
# on a big panel there is room to trade viewscreen for instrument, so
|
||||
@@ -356,14 +378,36 @@ cd /d "%~dp0"
|
||||
start rpl4opt.exe -fit
|
||||
"@
|
||||
|
||||
Set-Content -Path "$dist\joyconfig.bat" -Encoding ascii -Value @"
|
||||
@echo off
|
||||
rem Red Planet 4.12 - one-time JOYSTICK / HOTAS / rudder-pedal setup.
|
||||
rem A console wizard asks you to move each control (stick, twist or
|
||||
rem rudder, throttle lever, fire buttons); it works out what you moved
|
||||
rem and which way it reads, and writes the joystick section of
|
||||
rem bindings.txt. When it finishes the game carries on into the setup
|
||||
rem screen so you can try the bindings straight away.
|
||||
rem Xbox-class controllers need NO setup - they work out of the box.
|
||||
rem Re-run this any time to redo the bindings; anything you have edited
|
||||
rem yourself in bindings.txt is kept.
|
||||
cd /d "%~dp0"
|
||||
set RP412JOYCONFIG=1
|
||||
start /wait rpl4opt.exe -windowed -res 1920 1080
|
||||
set RP412JOYCONFIG=
|
||||
"@
|
||||
|
||||
Set-Content -Path "$dist\README.txt" -Encoding ascii -Value @"
|
||||
Red Planet 4.12.5
|
||||
Red Planet 4.12.7
|
||||
=================
|
||||
|
||||
Run start-fullscreen.bat for borderless over the whole monitor, or
|
||||
start-windowed.bat to keep a title bar. No cockpit hardware needed.
|
||||
If there is no sound, run oalinst.exe once.
|
||||
|
||||
Got a flight stick, HOTAS or rudder pedals? Run joyconfig.bat once. It
|
||||
asks you to move each control, works out which axis you moved and which
|
||||
way round it reads, and writes the joystick rows of bindings.txt. Xbox-
|
||||
class controllers need none of that - they work out of the box.
|
||||
|
||||
Controls (XInput controller and/or keyboard) - EVERY input is
|
||||
rebindable: edit bindings.txt beside the exe (written with the full
|
||||
documented default layout on first run; delete it to restore).
|
||||
@@ -422,7 +466,7 @@ $size = (Get-ChildItem $dist -Recurse | Measure-Object Length -Sum).Sum
|
||||
Write-Host ("dist ready: {0:N1} MB" -f ($size / 1MB))
|
||||
|
||||
if ($Zip) {
|
||||
$zipPath = Join-Path $root 'RedPlanet-4.12.5.zip'
|
||||
$zipPath = Join-Path $root 'RedPlanet-4.12.7.zip'
|
||||
Write-Host "zipping to $zipPath..."
|
||||
|
||||
# Everything lives under a single RP412\ folder inside the zip, so
|
||||
|
||||
Reference in New Issue
Block a user