diff --git a/404.html b/404.html index af8da8c..b2ebbef 100644 --- a/404.html +++ b/404.html @@ -1,2 +1,2 @@ -404 Page not found :: Densha de GO! controller documentation -

Error

Woops. Looks like this page doesn't exist ¯\_(ツ)_/¯.

Go to homepage

Page not found!

\ No newline at end of file +404 Page not found :: Densha de GO! controller documentation +

Error

Woops. Looks like this page doesn't exist ¯\_(ツ)_/¯.

Go to homepage

Page not found!

\ No newline at end of file diff --git a/acknowledgements/index.html b/acknowledgements/index.html index 1735315..ada86f5 100644 --- a/acknowledgements/index.html +++ b/acknowledgements/index.html @@ -1,7 +1,7 @@ -Acknowledgements :: Densha de GO! controller documentation -

Acknowledgements

  • GMMan, who has provided the internal details of the DGOC-44U and has conducted extensive research on the Densha de GO! Plug and Play.
  • TheYamanote, who has helped with the TCPP-20009.
+ + + \ No newline at end of file diff --git a/adapters/autotraintas/index.html b/adapters/autotraintas/index.html new file mode 100644 index 0000000..ef18ad4 --- /dev/null +++ b/adapters/autotraintas/index.html @@ -0,0 +1,7 @@ +Converter tool by Autotraintas :: Densha de GO! controller documentation +

Converter tool by Autotraintas

Autotraintas has created a tool that makes it possible to use nearly any Densha de GO! controller with the PC versions of the games. This includes classic console controllers (USB adapter required) and USB controllers. The tool patches the game memory on the fly to reflect the input from the controller.

+ + + \ No newline at end of file diff --git a/adapters/autotraintas/index.xml b/adapters/autotraintas/index.xml new file mode 100644 index 0000000..31b325d --- /dev/null +++ b/adapters/autotraintas/index.xml @@ -0,0 +1 @@ +Converter tool by Autotraintas on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/adapters/autotraintas/Recent content in Converter tool by Autotraintas on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/adapters/cheats/index.html b/adapters/cheats/index.html new file mode 100644 index 0000000..0eb9665 --- /dev/null +++ b/adapters/cheats/index.html @@ -0,0 +1,108 @@ +PlayStation 2 cheat codes :: Densha de GO! controller documentation +

PlayStation 2 cheat codes

Overview

While Densha de GO! 3 and Densha de GO! Shinkansen officially support the original (non-USB) PlayStation controllers, other games are only compatible with USB controllers. Via cheat codes, it is possible to use the original PlayStation controllers on real hardware, either with retail discs or via OPL.

The codes emulate a Type 2 controller. You will need to connect the controller as follows:

  • Port 1: Dualshock or Dualshock 2 (D-pad, SELECT)
  • Port 2: PlayStation controller (handles and buttons, SELECT is mapped to D)
Note

Other controllers may be used like this with an adapter (Titan One/Two + Brook/PADEMU). In this case, buttons are not remapped and the Dualshock on port 1 is not needed. More information

Each game requires a specific cheat code:

There are also cheat codes available for games in the Train Simulator series, emulating a Multi Train Controller (MTC):

For retail discs, the codes can be loaded with ps2rd or Cheat Device. If you are using OPL, it already includes ps2rd and you just need to copy the codes and enable cheats.

Technical description

These cheat codes have become possible after disassembling and inspecting each game with Ghidra and the ghidra-emotionengine plugin. The format of cheat codes is described here.

Here you can find a commented version of the cheat code for Densha de GO! Professional 2 (Taito Best). Input data is copied to 0xFE000 (two bytes for button data and one byte for D-pad data) before processing.

202D3CAC 00000000 // By default, set number of connected USB devices to 0
+D02DBA32 58010001 // If there's a controller connected to P2, run the following 0x58 lines (everything)
+502DB9C2 00000002 // Copy button data to 0xFE000
+000FE000 00000000
+D00FE000 55400050 // If the controller in P2 has UP+DOWN pressed, run the following 0x55 lines (everything)
+203790F0 40000202 // Set USB controller model to Type 2
+202D3CAC 00000001 // Set number of connected USB devices to 1
+
+// Remapping
+D02DB9C1 07010041 // If the controller in P2 is a digital gamepad (PS1 mascon), run the following 0x7 lines
+D00FE000 01400001 // Remap SELECT to L3 (for use as "D")
+700FE000 00500002
+700FE000 00100001 // Clear SELECT
+D02DBAC2 01400001 // Remap P1 SELECT to SELECT
+700FE000 00500001
+502DBAC2 00000001 // Remap P1 D-pad to D-pad
+000FE002 00000000
+D02DB9C1 09010073 // If the controller in P2 is a Dualshock (mascon connected via adapter or PADEMU), run the following 0x9 lines
+000FE002 000000FF // Clear D-pad data
+D02DB9C6 01010000 // LEFT
+700FE002 00400080
+D02DB9C6 010100FF // RIGHT
+700FE002 00400020
+D02DB9C7 01010000 // UP
+700FE002 00400010
+D02DB9C7 010100FF // DOWN
+700FE002 00400040
+
+// Buttons
+2012BDC0 34420000 // ASM patch (disables game function that reads input from P2)
+003794C6 00000000 // Clear button data for Type 2 controller
+D00FE000 01408000 // A
+703794C6 00000002
+D00FE000 01404000 // B
+703794C6 00000001
+D00FE000 01402000 // C
+703794C6 00000004
+D00FE000 01400002 // D (L3)
+703794C6 00000008
+D00FE000 01400008 // START
+703794C6 00000020
+D00FE000 01400001 // SELECT
+703794C6 00000010
+
+// D-Pad
+D00FE002 010100EF // N
+003794C5 00000000
+D00FE002 010100CF // NE
+003794C5 00000001
+D00FE002 010100DF // E
+003794C5 00000002
+D00FE002 0101009F // SE
+003794C5 00000003
+D00FE002 010100BF // S
+003794C5 00000004
+D00FE002 0101003F // SW
+003794C5 00000005
+D00FE002 0101007F // W
+003794C5 00000006
+D00FE002 0101006F // NW
+003794C5 00000007
+D00FE002 010100FF // CENTER
+003794C5 00000008
+
+// Power handle
+D00FE000 01401000 // P5
+003794C3 00000005
+D00FE000 01400080 // P4
+003794C3 00000004
+D00FE000 01401080 // P3
+003794C3 00000003
+D00FE000 01400020 // P2
+003794C3 00000002
+D00FE000 01401020 // P1
+003794C3 00000001
+D00FE000 014000A0 // P0
+003794C3 00000000
+
+// Brake handle
+700FE000 00300F00 // Bitmask: discard all button data besides the 4 bits for brake notches
+D00FE000 01000F00 // EB
+003794C2 00000009
+D00FE000 01000600 // B8
+003794C2 00000008
+D00FE000 01000200 // B7
+003794C2 00000007
+D00FE000 01000D00 // B6
+003794C2 00000006
+D00FE000 01000900 // B5
+003794C2 00000005
+D00FE000 01000C00 // B4
+003794C2 00000004
+D00FE000 01000800 // B3
+003794C2 00000003
+D00FE000 01000500 // B2
+003794C2 00000002
+D00FE000 01000100 // B1
+003794C2 00000001
+D00FE000 01000400 // B0
+003794C2 00000000
+

Memory addresses

Professional 2 (Taito Best)Professional 2RyojōhenFinalNotes
USB mascon count (int32)0x2D3CAC0x2C852C0x24B6DC0x2C1464
USB mascon model (int32)0x3790F00x36EAF00x2F24E00x3DEA100x40000202=Type 2
Type 2 brake notch (byte)0x3794C20x36EEC20x2F28C20x3DF242Preprocessed, 0 to 9
Type 2 power notch (byte)0x3794C30x36EEC30x2F28C30x3DF243Preprocessed, 0 to 5
Type 2 D-pad data (byte)0x3794C50x36EEC50x2F28C50x3DF245Raw USB data
Type 2 button data (byte)0x3794C60x36EEC60x2F28C60x3DF246Raw USB data
P2 controller connected (byte)0x2DBA320x2D14F20x2548F20x2C81720x00=Disconnected, 0x01=Connected
P2 controller type (byte)0x2DB9C10x2D14810x2548810x2C81010x41=Digital, 0x73=Dualshock
P2 button input (int16)0x2DB9C20x2D14820x2548820x2C8102
P2 L-stick input (int16)0x2DB9C60x2D14860x2548860x2C8106
P1 button input (int16)0x2DBAC20x2D15820x2549820x2C8202
ASM patch0x12BDC00x12CB600x135B900x148928Leftover game code binds the C button to the horn and needs to be disabled.
+ + + \ No newline at end of file diff --git a/adapters/cheats/index.xml b/adapters/cheats/index.xml new file mode 100644 index 0000000..7284b98 --- /dev/null +++ b/adapters/cheats/index.xml @@ -0,0 +1 @@ +PlayStation 2 cheat codes on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/adapters/cheats/Recent content in PlayStation 2 cheat codes on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/adapters/index.html b/adapters/index.html index e9df028..ab643ee 100644 --- a/adapters/index.html +++ b/adapters/index.html @@ -1,8 +1,7 @@ -Adapters and hacks :: Densha de GO! controller documentation -

Adapters and hacks

Besides the official compatibility, it is possible to use unofficial adapters, tools and hacks to use controllers with games which is unsupported officially.

Converter tool by Autotraintas

Autotraintas has created a tool that makes it possible to use nearly any Densha de GO! controller with the PC versions of the games. This includes the classic console controllers (USB adapter required) and the USB controllers for the PlayStation 2. The tool patches the game memory on the fly to reflect the input from the controller.

PlayStation 2 cheat codes for PlayStation controllers

While Densha de GO! 3 and Densha de GO! Shinkansen officially support the original (non-USB) PlayStation controllers, other games are only compatible with USB controllers. Via cheat codes, it is possible to use the original PlayStation controllers on real hardware, either with retail discs or via OPL.

The codes emulate a Type 2 controller. You will need to connect the controller as follows:

  • Port 1: Dualshock or Dualshock 2 (D-pad, SELECT)
  • Port 2: PlayStation controller (handles and buttons, SELECT is mapped to D)

Note: Other controllers may be used like this with an adapter (Titan One/Two + Brook/PADEMU). In this case, buttons are not remapped and the Dualshock on port 1 is not needed. More information

Each game requires a specific cheat code:

There are also cheat codes available for games in the Train Simulator series, emulating a Multi Train Controller (MTC):

For retail discs, the codes can be loaded with ps2rd or Cheat Device. If you are using OPL, it already includes ps2rd and you just need to copy the codes and enable cheats.

Input plugins for BVE Trainsim/OpenBVE

BVE Trainsim and OpenBVE both support input plugins, which allow expanding the controllers compatible with the program.

BVE Trainsim requires installing external input plugins, depending on the controller:

OpenBVE includes built-in input plugins for all classic and USB Densha de GO! controllers, the MTC with P5/B8 cassette and the OHC-PC01. They can be enabled and configured in the program’s settings. Note that a USB adapter is required for classic controllers.

+ + + \ No newline at end of file diff --git a/adapters/index.xml b/adapters/index.xml index cf304e9..a951cb5 100644 --- a/adapters/index.xml +++ b/adapters/index.xml @@ -1 +1,6 @@ -Adapters and hacks on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/adapters/Recent content in Adapters and hacks on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file +Adapters and hacks on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/adapters/Recent content in Adapters and hacks on Densha de GO! controller documentationHugo -- gohugo.ioen-usConverter tool by Autotraintashttps://marcriera.github.io/ddgo-controller-docs/adapters/autotraintas/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/adapters/autotraintas/Autotraintas has created a tool that makes it possible to use nearly any Densha de GO! controller with the PC versions of the games. This includes classic console controllers (USB adapter required) and USB controllers. The tool patches the game memory on the fly to reflect the input from the controller.Input plugins for BVE Trainsim/OpenBVEhttps://marcriera.github.io/ddgo-controller-docs/adapters/plugins/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/adapters/plugins/BVE Trainsim and OpenBVE both support input plugins, which allow expanding the controllers compatible with the program. +BVE Trainsim requires installing external input plugins, depending on the controller: +Classic console controllers (電GO PS - JC_PS101Uインターフェイス/電GO PS - JC_PS201Uインターフェイス by saha209, USB adapter required) DGC-255/DGOC-44U/DRC-184 (電GO PCインターフェイス by saha209) TCPP-20009/TCPP-20014/MTC with P5/B8 cassette (電GO PS2インターフェイス by saha209) MTC (other cassettes) (TrainSimulator PS2 MultiTrainController(MTC)インターフェイス by saha209) ZKNS-001 (電GO SWインターフェイス by saha209) OHC-PC01 OpenBVE includes built-in input plugins for all classic and USB Densha de GO!PlayStation 2 cheat codeshttps://marcriera.github.io/ddgo-controller-docs/adapters/cheats/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/adapters/cheats/Overview While Densha de GO! 3 and Densha de GO! Shinkansen officially support the original (non-USB) PlayStation controllers, other games are only compatible with USB controllers. Via cheat codes, it is possible to use the original PlayStation controllers on real hardware, either with retail discs or via OPL. +The codes emulate a Type 2 controller. You will need to connect the controller as follows: +Port 1: Dualshock or Dualshock 2 (D-pad, SELECT) Port 2: PlayStation controller (handles and buttons, SELECT is mapped to D) Note Other controllers may be used like this with an adapter (Titan One/Two + Brook/PADEMU).Titan One/Two adaptershttps://marcriera.github.io/ddgo-controller-docs/adapters/titan/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/adapters/titan/ConsoleTuner sells the Titan One and Titan Two USB devices. They support scripts to remap buttons or change the behaviour of a controller entirely. There are many repositories available with scripts to make a Densha de GO! controller behave like a different one: +tylau0/DenGo arnauos/densha-de-go mikaeltarquin/densha-de-go thmalex/DenshaDeGoPS1toPS4 MarcRiera/ddgo-scripts Before using a script, check whether it was designed for the Titan One or the Titan Two. They share the same extension (. \ No newline at end of file diff --git a/adapters/plugins/index.html b/adapters/plugins/index.html new file mode 100644 index 0000000..4c6918a --- /dev/null +++ b/adapters/plugins/index.html @@ -0,0 +1,7 @@ +Input plugins for BVE Trainsim/OpenBVE :: Densha de GO! controller documentation +

Input plugins for BVE Trainsim/OpenBVE

BVE Trainsim and OpenBVE both support input plugins, which allow expanding the controllers compatible with the program.

BVE Trainsim requires installing external input plugins, depending on the controller:

OpenBVE includes built-in input plugins for all classic and USB Densha de GO! controllers, the MTC with P5/B8 cassette and the OHC-PC01. They can be enabled and configured in the program’s settings. Note that a USB adapter is required for classic console controllers.

+ + + \ No newline at end of file diff --git a/adapters/plugins/index.xml b/adapters/plugins/index.xml new file mode 100644 index 0000000..7da55ef --- /dev/null +++ b/adapters/plugins/index.xml @@ -0,0 +1 @@ +Input plugins for BVE Trainsim/OpenBVE on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/adapters/plugins/Recent content in Input plugins for BVE Trainsim/OpenBVE on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/adapters/titan/index.html b/adapters/titan/index.html new file mode 100644 index 0000000..ae2a42c --- /dev/null +++ b/adapters/titan/index.html @@ -0,0 +1,7 @@ +Titan One/Two adapters :: Densha de GO! controller documentation +

Titan One/Two adapters

ConsoleTuner sells the Titan One and Titan Two USB devices. They support scripts to remap buttons or change the behaviour of a controller entirely. There are many repositories available with scripts to make a Densha de GO! controller behave like a different one:

Before using a script, check whether it was designed for the Titan One or the Titan Two. They share the same extension (.GPC) but are different. The Titan Two is backwards compatible with many Titan One scripts, but not viceversa.

+ + + \ No newline at end of file diff --git a/adapters/titan/index.xml b/adapters/titan/index.xml new file mode 100644 index 0000000..13e2d8a --- /dev/null +++ b/adapters/titan/index.xml @@ -0,0 +1 @@ +Titan One/Two adapters on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/adapters/titan/Recent content in Titan One/Two adapters on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/categories/index.html b/categories/index.html index 1f2c66c..3dabbe8 100644 --- a/categories/index.html +++ b/categories/index.html @@ -1,7 +1,7 @@ -Categories :: Densha de GO! controller documentation -

Categories

    + + + \ No newline at end of file diff --git a/compatibility/index.html b/compatibility/index.html index 550334c..52363b6 100644 --- a/compatibility/index.html +++ b/compatibility/index.html @@ -1,7 +1,7 @@ -Software compatibility (WIP) :: Densha de GO! controller documentation -

    Software compatibility (WIP)

    The following table lists the compatibility between each controller (first row) and each software (first column). Additional software compatible with the controllers is also listed. The column for the Multi Train Controller (MTC) specifies the supported cassettes. Scroll to the right to see the full table.

    SoftwareClassic
    console
    controller
    DGOC-44DGC-255
    DGOC-44U
    DRC-184
    DYC-288
    TCPP-20009
    TCPP-20012
    TCPP-20011TCPP-20014TCPP-20017MTCZKNS-001OHC-PC01
    Densha de GO!
    (Microsoft Windows)
    UnofficialYesYes (1)NoUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO!
    (Sony PlayStation)
    YesNoNoNoNoNoNoNoNoNoNo
    Densha de GO! EX
    (Sega Saturn)
    YesNoNoNoNoNoNoNoNoNoNo
    Densha de GO! 2
    (Microsoft Windows)
    UnofficialYesYes (1)NoUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! 2
    (Sega Dreamcast)
    YesNoNoNoNoNoNoNoNoNoNo
    Densha de GO! 2
    (Sony PlayStation)
    YesNoNoNoNoNoNoNoNoNoNo
    Densha de GO! 64
    (Nintendo 64)
    YesNoNoNoNoNoNoNoNoNoNo
    Kisha de GO!
    (Microsoft Windows)
    UnofficialYesYes (1)NoUnofficialUnofficialNoNoNoUnofficialYes
    Kisha de GO!
    (Sony PlayStation)
    YesNoNoNoNoNoNoNoNoNoNo
    Densha de GO! Professional
    (Microsoft Windows)
    UnofficialYesYes (1)NoUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! Professional
    (Sony PlayStation)
    YesNoNoNoNoNoNoNoNoNoNo
    Densha de GO! Nagoya Tetsudōhen
    (Microsoft Windows)
    UnofficialYesYes (1)NoUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! Nagoya Tetsudōhen
    (Sony PlayStation)
    YesNoNoNoNoNoNoNoP5/B8NoNo
    Densha de GO! 3
    (Microsoft Windows)
    UnofficialYesYes (1)NoUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! 3
    (Sony PlayStation 2)
    Yes (2)NoNoNoYesNoNoNoP5/B8NoNo
    Densha de GO! Shinkansen
    (Microsoft Windows)
    UnofficialUnknownYesNoUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! Shinkansen
    (Sony PlayStation 2)
    Yes (2)NoNoNoYesYesNoNoP5/B8NoNo
    Densha de GO! Shinkansen
    (Nintendo Wii)
    NoNoNoNoNoNoNoYesNoNoNo
    Densha de GO! Ryojōhen
    (Microsoft Windows)
    UnofficialUnknownUnknownYesUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! Ryojōhen
    (Sony PlayStation 2)
    Unofficial (2)NoNoNoYesYesYesNoP5/B8NoNo
    Densha de GO! Professional 2
    (Microsoft Windows)
    UnofficialUnknownYesYesUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! Professional 2
    (Sony PlayStation 2)
    Unofficial (2)NoNoNoYesYesYesNoP5/B8NoNo
    Densha de GO! Final
    (Microsoft Windows)
    UnofficialUnknownYesYesUnofficialUnofficialNoNoNoUnofficialYes
    Densha de GO! Final
    (Sony PlayStation 2)
    Unofficial (2)NoNoNoYesYesYesNoP5/B8NoNo
    Densha de GO! Hashirō Yamanote‑sen
    (Sony PlayStation 4)
    Yes (3)NoYes (4)Untested (4)NoNoNoNoNoNoYes
    Densha de GO! Hashirō Yamanote‑sen
    (Nintendo Switch)
    Yes (3)NoYes (4)Untested (4)NoNoNoNoNoYesYes
    Train Simulator Real:
    THE Yamanote Line

    (Sony PlayStation 2)
    NoNoNoNoYesNoNoNoP5/B8NoNo
    Train Simulator Real:
    THE Keihin Electric Express Railway

    (Sony PlayStation 2)
    NoNoNoNoNoNoNoNoP5/B5NoNo
    Train Simulator: Midosuji Line
    (Sony PlayStation 2)
    Unofficial (2)NoNoNoNoNoNoNoP4/B7
    (without B1)
    NoNo
    Train Simulator + Densha de GO!
    Tokyu Line

    (Sony PlayStation 2)
    Unofficial (2)NoNoNoNoNoNoNoP4/B7NoNo
    Train Simulator:
    Keisei, Toei Asakusa, Keikyu Lines

    (Sony PlayStation 2)
    NoNoNoNoNoNoNoNoP5/B5
    P13/B7
    NoNo
    Train Simulator:
    Kyūshū Shinkansen

    (Sony PlayStation 2)
    NoNoNoNoNoYesNoNoP5/B7
    P13/B7
    NoNo
    BVE TrainsimYesNoYesYesYesNoYesNoYesYesYes
    OpenBVEYesNoYesYesYesYesYesNoP5/B8YesYes
    1. Only republished versions.
    2. Only the classic controllers for the Sony PlayStation.
    3. Requires USB adapter and USB remapper: https://github.com/tylau0/DenGo
    4. Requires a USB remapper: https://github.com/tylau0/DenGo
    + + + \ No newline at end of file diff --git a/compatibility/index.xml b/compatibility/index.xml index 33c053a..7541c52 100644 --- a/compatibility/index.xml +++ b/compatibility/index.xml @@ -1 +1 @@ -Software compatibility (WIP) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/compatibility/Recent content in Software compatibility (WIP) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file +Compatibility chart on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/compatibility/Recent content in Compatibility chart on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/index.html b/controllers/classic/index.html index c29b467..ca85d51 100644 --- a/controllers/classic/index.html +++ b/controllers/classic/index.html @@ -1,8 +1,7 @@ -Classic consoles :: Densha de GO! controller documentation -

    Classic consoles

    The information in this section applies to the following controllers:

    • SLPH-00051: two-handle controller (Sony PlayStation)
    • TC-5175290: two-handle controller (Sega Saturn)
    • TCPP-20001: single-handle controller (Sony PlayStation)
    • TCPP-20002: gamepad controller (Sony PlayStation)
    • TCPP-20003: two-handle controller (Nintendo 64)
    • TCPP-20004: two-handle controller (Sega Dreamcast)
    • TCPP-20008: two-handle controller, golden (Sony PlayStation)

    These controllers all have five physical buttons (SELECT, START, A, B, C) and two handles (with the TCPP-20001 combining them into one). Internally, they use the same protocol as a standard controller for the corresponding console and input is reported in the data bytes corresponding to buttons (where each bit reports the state of a single button). Only the regular physical buttons have dedicated bits for them; the handles combine three and four bits for the power notches and brake notches, respectively (you can find an example with the Nintendo 64 here).

    Power handle bit usage

    The power handle uses a combination of three bits (buttons) to represent each notch. When using the TCPP-20001 controller, the equivalent of N is reported for power whenever a brake notch is applied.

    PositionPOWER 1POWER 2POWER 3
    N-XX
    P1X-X
    P2--X
    P3XX-
    P4-X-
    P5X--
    Transition---

    Brake handle bit usage

    The brake handle uses a combination of four bits (buttons) to represent each notch. When using the TCPP-20001 controller, the equivalent of Released is reported for brake whenever a power notch is applied.

    PositionBRAKE 1BRAKE 2BRAKE 3BRAKE 4
    Released-XXX
    B1X-XX
    B2--XX
    B3XX-X
    B4-X-X
    B5X--X
    B6---X
    B7XXX-
    B8-XX-
    Unmarked 1X-X-
    Unmarked 2--X-
    Unmarked 3XX--
    Unmarked 4-X--
    Unmarked 5X---
    Emergency----
    TransitionXXXX

    The unmarked positions can be found between B8 and Emergency and produce no click when moving the handle. When using the TCPP-20001 or the TCPP-20002, only the first and fourth unmarked positions are available.

    Button mapping to a standard controller

    Because they use the same data bytes, the input between a Densha de GO! controller and a standard controller for each console can be matched as follows:

    Densha de GO!Nintendo 64Sony PlayStation 1Sega DreamcastSega Saturn
    SELECTRSELECTD??
    STARTSTARTSTARTSTARTSTART
    ABSQUAREAA
    BACROSS??B
    CLCIRCLECC
    POWER 1RIGHTTRIANGLEZX
    POWER 2UPLEFTYY
    POWER 3ZRIGHTXZ
    BRAKE 1C RIGHTL1UPL
    BRAKE 2C LEFTL2DOWNR
    BRAKE 3C DOWNR1LEFTDOWN
    BRAKE 4C UPR2RIGHTLEFT

    This is useful when using a USB adapter to read the controller input from a PC.

    PlayStation-specific information

    The controllers report the same data amount and structure as a standard digital PlayStation controller. UP and DOWN are pressed permanently. The games detect the controllers with these two buttons, as it is an impossible combination with a standard digital controller.

    + + + \ No newline at end of file diff --git a/controllers/classic/index.xml b/controllers/classic/index.xml index 463909c..0022bdb 100644 --- a/controllers/classic/index.xml +++ b/controllers/classic/index.xml @@ -1 +1 @@ -Classic consoles on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/Recent content in Classic consoles on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file +Classic consoles on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/Recent content in Classic consoles on Densha de GO! controller documentationHugo -- gohugo.ioen-usMamecon (Sony PlayStation)https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20002/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20002/Overview Name Mamecon (Sony PlayStation) Release date March 11, 1999 Serial code TCPP-20002 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Requires USB adapter. Supported via input plugin. Densha de GO! (Sony PlayStation 1) Native Densha de GO! 2 Kōsoku-hen (Sony PlayStation 1) Native Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2) Native Densha de GO! Final (Sony PlayStation 2) Unofficial Requires use of cheat codes. Densha de GO!One handle controller (Sony PlayStation)https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20001/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20001/Overview Name One handle controller (Sony PlayStation) Release date March 18, 1999 Serial code TCPP-20001 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Requires USB adapter. Supported via input plugin. Densha de GO! (Sony PlayStation 1) Native Densha de GO! 2 Kōsoku-hen (Sony PlayStation 1) Native Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2) Native Densha de GO! Final (Sony PlayStation 2) Unofficial Requires use of cheat codes.Two handle controller (Nintendo 64)https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20003/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20003/Overview Name Two handle controller (Nintendo 64) Release date July 30, 1999 Serial code TCPP-20003 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Requires USB adapter. Supported via input plugin. Densha de GO! 64 (Nintendo 64) Native Connect standard controller to P1 and train controller to P3. OpenBVE (PC) Native Requires USB adapter and calibration. Supported via input plugin. Technical details The controller follows the same standard internal operation as other classic controllers.Two handle controller (Sega Dreamcast)https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20004/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20004/Overview Name Two handle controller (Sega Dreamcast) Release date January 20, 2000 Serial code TCPP-20004 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Requires USB adapter. Supported via input plugin. Densha de GO! 2 Kōsoku-hen 3000 Bandai (Sega Dreamcast) Native OpenBVE (PC) Native Requires USB adapter and calibration. Supported via input plugin. Technical details The controller follows the same standard internal operation as other classic controllers.Two handle controller (Sega Saturn)https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tc5175290/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tc5175290/Overview Name Two handle controller (Sega Saturn) Release date October 1, 1998 Serial code TC-5175290 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Requires USB adapter. Supported via input plugin. Densha de GO! EX (Sega Saturn) Native Select controller on game startup. OpenBVE (PC) Native Requires USB adapter and calibration. Supported via input plugin. Technical details The controller follows the same standard internal operation as other classic controllers.Two handle controller (Sony PlayStation)https://marcriera.github.io/ddgo-controller-docs/controllers/classic/slph00051/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/slph00051/Overview Name Two handle controller (Sony PlayStation) Release date December 18, 1997 Serial code SLPH-00051 Notes Also available in golden colour (TCPP-20008). Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Requires USB adapter. Supported via input plugin. Densha de GO! (Sony PlayStation 1) Native Densha de GO! 2 Kōsoku-hen (Sony PlayStation 1) Native Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2) Native Densha de GO! Final (Sony PlayStation 2) Unofficial Requires use of cheat codes.Classic controllers - Technical detailshttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/tech/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tech/Internally, these controllers use the same protocol as a standard controller for the corresponding console and input is reported in the data bytes corresponding to buttons (where each bit reports the state of a single button). Only the regular physical buttons have dedicated bits for them; the handles combine three and four bits for the power notches and brake notches, respectively (you can find an example with the Nintendo 64 here). \ No newline at end of file diff --git a/controllers/classic/slph00051/index.html b/controllers/classic/slph00051/index.html new file mode 100644 index 0000000..838aa46 --- /dev/null +++ b/controllers/classic/slph00051/index.html @@ -0,0 +1,8 @@ +Two handle controller (Sony PlayStation) :: Densha de GO! controller documentation +

    Two handle controller (Sony PlayStation)

    Overview

    NameTwo handle controller (Sony PlayStation)
    Release dateDecember 18, 1997
    Serial codeSLPH-00051
    NotesAlso available in golden colour (TCPP-20008).

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeRequires USB adapter. Supported via input plugin.
    Densha de GO! (Sony PlayStation 1)Native
    Densha de GO! 2 Kōsoku-hen (Sony PlayStation 1)Native
    Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2)Native
    Densha de GO! Final (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Densha de GO! Nagoya Tetsudō-hen (Sony PlayStation 1)Native
    Densha de GO! Professional (Sony PlayStation 1)Native
    Densha de GO! Professional 2 (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Ryojōhen (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2)Native
    Japanese Rail Sim: Akechi Railway (Nintendo Switch)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Japanese Rail Sim: Journey to Kyoto (Sony PlayStation 4)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Kisha de GO! (Sony PlayStation 1)Native
    OpenBVE (PC)NativeRequires USB adapter and calibration. Supported via input plugin.

    Technical details

    The controller follows the same standard internal operation as other classic controllers.

    To allow PlayStation software to distinguish the controller from a standard controller, UP and DOWN on the D-pad are pressed permanently. This combination is impossible on an unmodified digital gamepad or Dualshock.

    + + + \ No newline at end of file diff --git a/controllers/classic/slph00051/index.xml b/controllers/classic/slph00051/index.xml new file mode 100644 index 0000000..e09a28b --- /dev/null +++ b/controllers/classic/slph00051/index.xml @@ -0,0 +1 @@ +Two handle controller (Sony PlayStation) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/slph00051/Recent content in Two handle controller (Sony PlayStation) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/tc5175290/index.html b/controllers/classic/tc5175290/index.html new file mode 100644 index 0000000..f162ff4 --- /dev/null +++ b/controllers/classic/tc5175290/index.html @@ -0,0 +1,8 @@ +Two handle controller (Sega Saturn) :: Densha de GO! controller documentation +

    Two handle controller (Sega Saturn)

    Overview

    NameTwo handle controller (Sega Saturn)
    Release dateOctober 1, 1998
    Serial codeTC-5175290
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeRequires USB adapter. Supported via input plugin.
    Densha de GO! EX (Sega Saturn)NativeSelect controller on game startup.
    OpenBVE (PC)NativeRequires USB adapter and calibration. Supported via input plugin.

    Technical details

    The controller follows the same standard internal operation as other classic controllers.

    + + + \ No newline at end of file diff --git a/controllers/classic/tc5175290/index.xml b/controllers/classic/tc5175290/index.xml new file mode 100644 index 0000000..2f0c6f1 --- /dev/null +++ b/controllers/classic/tc5175290/index.xml @@ -0,0 +1 @@ +Two handle controller (Sega Saturn) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/tc5175290/Recent content in Two handle controller (Sega Saturn) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/tcpp20001/index.html b/controllers/classic/tcpp20001/index.html new file mode 100644 index 0000000..8e2b342 --- /dev/null +++ b/controllers/classic/tcpp20001/index.html @@ -0,0 +1,8 @@ +One handle controller (Sony PlayStation) :: Densha de GO! controller documentation +

    One handle controller (Sony PlayStation)

    Overview

    NameOne handle controller (Sony PlayStation)
    Release dateMarch 18, 1999
    Serial codeTCPP-20001
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeRequires USB adapter. Supported via input plugin.
    Densha de GO! (Sony PlayStation 1)Native
    Densha de GO! 2 Kōsoku-hen (Sony PlayStation 1)Native
    Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2)Native
    Densha de GO! Final (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Densha de GO! Nagoya Tetsudō-hen (Sony PlayStation 1)Native
    Densha de GO! Professional (Sony PlayStation 1)Native
    Densha de GO! Professional 2 (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Ryojōhen (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2)Native
    Japanese Rail Sim: Akechi Railway (Nintendo Switch)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Japanese Rail Sim: Journey to Kyoto (Sony PlayStation 4)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Kisha de GO! (Sony PlayStation 1)Native
    OpenBVE (PC)NativeRequires USB adapter and calibration. Supported via input plugin.

    Technical details

    The controller follows the same standard internal operation as other classic controllers. As the controller only has one handle, brake and power cannot be set separately. In addition, only the first and fourth unmarked positions are available.

    To allow PlayStation software to distinguish the controller from a standard controller, UP and DOWN on the D-pad are pressed permanently. This combination is impossible on an unmodified digital gamepad or Dualshock.

    + + + \ No newline at end of file diff --git a/controllers/classic/tcpp20001/index.xml b/controllers/classic/tcpp20001/index.xml new file mode 100644 index 0000000..ab5fb1c --- /dev/null +++ b/controllers/classic/tcpp20001/index.xml @@ -0,0 +1 @@ +One handle controller (Sony PlayStation) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20001/Recent content in One handle controller (Sony PlayStation) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/tcpp20002/index.html b/controllers/classic/tcpp20002/index.html new file mode 100644 index 0000000..7d49ac7 --- /dev/null +++ b/controllers/classic/tcpp20002/index.html @@ -0,0 +1,8 @@ +Mamecon (Sony PlayStation) :: Densha de GO! controller documentation +

    Mamecon (Sony PlayStation)

    Overview

    NameMamecon (Sony PlayStation)
    Release dateMarch 11, 1999
    Serial codeTCPP-20002
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeRequires USB adapter. Supported via input plugin.
    Densha de GO! (Sony PlayStation 1)Native
    Densha de GO! 2 Kōsoku-hen (Sony PlayStation 1)Native
    Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2)Native
    Densha de GO! Final (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Densha de GO! Nagoya Tetsudō-hen (Sony PlayStation 1)Native
    Densha de GO! Professional (Sony PlayStation 1)Native
    Densha de GO! Professional 2 (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Ryojōhen (Sony PlayStation 2)UnofficialRequires use of cheat codes.
    Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2)Native
    Japanese Rail Sim: Akechi Railway (Nintendo Switch)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Japanese Rail Sim: Journey to Kyoto (Sony PlayStation 4)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Kisha de GO! (Sony PlayStation 1)Native
    OpenBVE (PC)NativeRequires USB adapter and calibration. Supported via input plugin.

    Technical details

    The controller follows the same standard internal operation as other classic controllers. In addition, only the first and fourth unmarked positions are available.

    To allow PlayStation software to distinguish the controller from a standard controller, UP and DOWN on the D-pad are pressed permanently. This combination is impossible on an unmodified digital gamepad or Dualshock.

    + + + \ No newline at end of file diff --git a/controllers/classic/tcpp20002/index.xml b/controllers/classic/tcpp20002/index.xml new file mode 100644 index 0000000..d11b801 --- /dev/null +++ b/controllers/classic/tcpp20002/index.xml @@ -0,0 +1 @@ +Mamecon (Sony PlayStation) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20002/Recent content in Mamecon (Sony PlayStation) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/tcpp20003/index.html b/controllers/classic/tcpp20003/index.html new file mode 100644 index 0000000..12a283b --- /dev/null +++ b/controllers/classic/tcpp20003/index.html @@ -0,0 +1,8 @@ +Two handle controller (Nintendo 64) :: Densha de GO! controller documentation +

    Two handle controller (Nintendo 64)

    Overview

    NameTwo handle controller (Nintendo 64)
    Release dateJuly 30, 1999
    Serial codeTCPP-20003
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeRequires USB adapter. Supported via input plugin.
    Densha de GO! 64 (Nintendo 64)NativeConnect standard controller to P1 and train controller to P3.
    OpenBVE (PC)NativeRequires USB adapter and calibration. Supported via input plugin.

    Technical details

    The controller follows the same standard internal operation as other classic controllers.

    + + + \ No newline at end of file diff --git a/controllers/classic/tcpp20003/index.xml b/controllers/classic/tcpp20003/index.xml new file mode 100644 index 0000000..a39d01c --- /dev/null +++ b/controllers/classic/tcpp20003/index.xml @@ -0,0 +1 @@ +Two handle controller (Nintendo 64) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20003/Recent content in Two handle controller (Nintendo 64) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/tcpp20004/index.html b/controllers/classic/tcpp20004/index.html new file mode 100644 index 0000000..c723fc2 --- /dev/null +++ b/controllers/classic/tcpp20004/index.html @@ -0,0 +1,8 @@ +Two handle controller (Sega Dreamcast) :: Densha de GO! controller documentation +

    Two handle controller (Sega Dreamcast)

    Overview

    NameTwo handle controller (Sega Dreamcast)
    Release dateJanuary 20, 2000
    Serial codeTCPP-20004
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeRequires USB adapter. Supported via input plugin.
    Densha de GO! 2 Kōsoku-hen 3000 Bandai (Sega Dreamcast)Native
    OpenBVE (PC)NativeRequires USB adapter and calibration. Supported via input plugin.

    Technical details

    The controller follows the same standard internal operation as other classic controllers.

    + + + \ No newline at end of file diff --git a/controllers/classic/tcpp20004/index.xml b/controllers/classic/tcpp20004/index.xml new file mode 100644 index 0000000..3d029f5 --- /dev/null +++ b/controllers/classic/tcpp20004/index.xml @@ -0,0 +1 @@ +Two handle controller (Sega Dreamcast) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20004/Recent content in Two handle controller (Sega Dreamcast) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/classic/tech/index.html b/controllers/classic/tech/index.html new file mode 100644 index 0000000..12ea466 --- /dev/null +++ b/controllers/classic/tech/index.html @@ -0,0 +1,8 @@ +Classic controllers - Technical details :: Densha de GO! controller documentation +

    Classic controllers - Technical details

    Internally, these controllers use the same protocol as a standard controller for the corresponding console and input is reported in the data bytes corresponding to buttons (where each bit reports the state of a single button). Only the regular physical buttons have dedicated bits for them; the handles combine three and four bits for the power notches and brake notches, respectively (you can find an example with the Nintendo 64 here).

    Power handle bit usage

    The power handle uses a combination of three bits (buttons) to represent each notch.

    PositionPOWER 1POWER 2POWER 3
    N-XX
    P1X-X
    P2--X
    P3XX-
    P4-X-
    P5X--
    Transition---

    Brake handle bit usage

    The brake handle uses a combination of four bits (buttons) to represent each notch.

    PositionBRAKE 1BRAKE 2BRAKE 3BRAKE 4
    Released-XXX
    B1X-XX
    B2--XX
    B3XX-X
    B4-X-X
    B5X--X
    B6---X
    B7XXX-
    B8-XX-
    Unmarked 1X-X-
    Unmarked 2--X-
    Unmarked 3XX--
    Unmarked 4-X--
    Unmarked 5X---
    Emergency----
    TransitionXXXX

    The unmarked positions can be found between B8 and Emergency and produce no click when moving the handle.

    Button mapping to a standard controller

    Because they use the same data bytes, the input between a Densha de GO! controller and a standard controller for each console can be matched as follows:

    Densha de GO!Nintendo 64Sony PlayStation 1Sega DreamcastSega Saturn
    SELECTRSELECTD??
    STARTSTARTSTARTSTARTSTART
    ABSQUAREAA
    BACROSS??B
    CLCIRCLECC
    POWER 1RIGHTTRIANGLEZX
    POWER 2UPLEFTYY
    POWER 3ZRIGHTXZ
    BRAKE 1C RIGHTL1UPL
    BRAKE 2C LEFTL2DOWNR
    BRAKE 3C DOWNR1LEFTDOWN
    BRAKE 4C UPR2RIGHTLEFT

    This can be used with a USB adapter to read the controller input from a PC.

    + + + \ No newline at end of file diff --git a/controllers/gameport/dgoc44/index.html b/controllers/gameport/dgoc44/index.html new file mode 100644 index 0000000..03e387c --- /dev/null +++ b/controllers/gameport/dgoc44/index.html @@ -0,0 +1,8 @@ +Two handle controller, game port (PC) :: Densha de GO! controller documentation +

    Two handle controller, game port (PC)

    Overview

    NameTwo handle controller, game port (PC)
    Release dateMarch 18, 1999
    Serial codeDGOC-44
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    Densha de GO! (PC)Native
    Densha de GO! 2 Kōsoku-hen (PC)Native
    Densha de GO! 3 Tsūkin-hen Daiya Kaisei (PC)Native
    Densha de GO! Nagoya Tetsudō-hen (PC)Native
    Densha de GO! Professional (PC)Native
    Densha de GO! Shinkansen San'yō Shinkansen-hen (PC)Native
    Kisha de GO! (PC)Native

    Technical details

    This is the original controller for the Microsoft Windows releases. This controller has two handles (5 power notches and 8+emergency brake notches) and 3 buttons (A, B, C).

    The buttons and handles are mapped to game port buttons and axes, respectively, as follows:

    Game portController
    B1B
    B2A
    B3Unused
    B4C
    X1Brake
    Y1Power
    X2Unused
    Y2Unused

    The controller needs to be calibrated before it can be used.

    + + + \ No newline at end of file diff --git a/controllers/gameport/dgoc44/index.xml b/controllers/gameport/dgoc44/index.xml new file mode 100644 index 0000000..e35cc06 --- /dev/null +++ b/controllers/gameport/dgoc44/index.xml @@ -0,0 +1 @@ +Two handle controller, game port (PC) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/gameport/dgoc44/Recent content in Two handle controller, game port (PC) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/gameport/index.html b/controllers/gameport/index.html new file mode 100644 index 0000000..ded5b3b --- /dev/null +++ b/controllers/gameport/index.html @@ -0,0 +1,7 @@ +Game port :: Densha de GO! controller documentation +

    Game port controllers

    This section includes controllers for Microsoft Windows which use a game port.

    + + + \ No newline at end of file diff --git a/controllers/gameport/index.xml b/controllers/gameport/index.xml new file mode 100644 index 0000000..43f05ea --- /dev/null +++ b/controllers/gameport/index.xml @@ -0,0 +1 @@ +Game port on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/gameport/Recent content in Game port on Densha de GO! controller documentationHugo -- gohugo.ioen-usTwo handle controller, game port (PC)https://marcriera.github.io/ddgo-controller-docs/controllers/gameport/dgoc44/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/gameport/dgoc44/Overview Name Two handle controller, game port (PC) Release date March 18, 1999 Serial code DGOC-44 Notes Supported software (WIP) Software Support Notes Densha de GO! (PC) Native Densha de GO! 2 Kōsoku-hen (PC) Native Densha de GO! 3 Tsūkin-hen Daiya Kaisei (PC) Native Densha de GO! Nagoya Tetsudō-hen (PC) Native Densha de GO! Professional (PC) Native Densha de GO! Shinkansen San'yō Shinkansen-hen (PC) Native Kisha de GO! (PC) Native Technical details This is the original controller for the Microsoft Windows releases. \ No newline at end of file diff --git a/controllers/index.html b/controllers/index.html index 4622855..b312727 100644 --- a/controllers/index.html +++ b/controllers/index.html @@ -1,7 +1,7 @@ -Controllers :: Densha de GO! controller documentation -

    Controllers

    + + + \ No newline at end of file diff --git a/controllers/index.xml b/controllers/index.xml index cb55eaf..57e36bf 100644 --- a/controllers/index.xml +++ b/controllers/index.xml @@ -1,6 +1 @@ -Controllers on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/Recent content in Controllers on Densha de GO! controller documentationHugo -- gohugo.ioen-usClassic consoleshttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/The information in this section applies to the following controllers: -SLPH-00051: two-handle controller (Sony PlayStation) TC-5175290: two-handle controller (Sega Saturn) TCPP-20001: single-handle controller (Sony PlayStation) TCPP-20002: gamepad controller (Sony PlayStation) TCPP-20003: two-handle controller (Nintendo 64) TCPP-20004: two-handle controller (Sega Dreamcast) TCPP-20008: two-handle controller, golden (Sony PlayStation) These controllers all have five physical buttons (SELECT, START, A, B, C) and two handles (with the TCPP-20001 combining them into one). Internally, they use the same protocol as a standard controller for the corresponding console and input is reported in the data bytes corresponding to buttons (where each bit reports the state of a single button).Serial porthttps://marcriera.github.io/ddgo-controller-docs/controllers/serial/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/serial/The information in this section applies to the following controllers: -DGOC-44: two-handle controller (Microsoft Windows) This is the original controller for the Microsoft Windows releases. No details are available regarding internal functioning.USBhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/The information in this section applies to the following controllers: -DGC-255: one-handle controller (Microsoft Windows) DGOC-44U: two-handle controller (Microsoft Windows) DRC-184/DYC-288: Ryojōhen controller (Microsoft Windows) TCPP-20009: two-handle controller “Type 2” (Sony PlayStation 2) TCPP-20011: Shinkansen controller (Sony PlayStation 2) TCPP-20012: two-handle controller “Type 2”, purple skeleton (Sony PlayStation 2) TCPP-20014: Ryojōhen controller (Sony PlayStation 2) MTC: Multi Train Controller (Sony PlayStation 2) ZKNS-001: one-handle controller (Nintendo Switch) DGC-255 This controller has one handle (5 power notches and 8+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D).Nintendo Wiihttps://marcriera.github.io/ddgo-controller-docs/controllers/wii/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/wii/The information in this section applies to the following controllers: -TCPP-20017: Shinkansen controller This controller is similar externally to the PlayStation 2 version of the Shinkansen controller. However, the screen has been replaced by a sticker and there is no pedal, so the only functioning parts are the handles, the buttons and the door lamp. In addition, instead of USB, it connects to a Wiimote using its extension port, like other accessories made for the console.Standalonehttps://marcriera.github.io/ddgo-controller-docs/controllers/standalone/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/standalone/The information in this section applies to the following controllers: -Densha de GO! Plug and Play This controller is different from traditional controllers in the sense that it contains the game (an improved version of Densha de GO! Final) and does not connect to a PC or console. Externally, it looks similar to a TCPP-20009, except it does not include a pedal connection. Internally, it contains an ARM board running Linux. \ No newline at end of file +Controllers on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/Recent content in Controllers on Densha de GO! controller documentationHugo -- gohugo.ioen-usClassic consoleshttps://marcriera.github.io/ddgo-controller-docs/controllers/classic/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/classic/Classic console controllers This section includes controllers for consoles which use a non-USB connector and usually pose as standard controllers from their corresponding console.Game porthttps://marcriera.github.io/ddgo-controller-docs/controllers/gameport/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/gameport/Game port controllers This section includes controllers for Microsoft Windows which use a game port.USBhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/USB controllers This section includes controllers for Microsoft Windows and consoles which use a USB-A connector.Nintendo Wiihttps://marcriera.github.io/ddgo-controller-docs/controllers/wii/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/wii/Wii controllers This section includes controllers for the Nintendo Wii which use a Wii expansion cable and connect to a Wiimote’s extension port.Standalonehttps://marcriera.github.io/ddgo-controller-docs/controllers/standalone/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/standalone/Standalone controllers This section includes self-contained controllers with software included in them. Instead of connecting to a PC or console, they can be connected directly to a TV via HDMI. \ No newline at end of file diff --git a/controllers/serial/index.html b/controllers/serial/index.html deleted file mode 100644 index de6aef3..0000000 --- a/controllers/serial/index.html +++ /dev/null @@ -1,7 +0,0 @@ -Serial port :: Densha de GO! controller documentation -

    Serial port

    The information in this section applies to the following controllers:

    • DGOC-44: two-handle controller (Microsoft Windows)

    This is the original controller for the Microsoft Windows releases. No details are available regarding internal functioning.

    - - - \ No newline at end of file diff --git a/controllers/serial/index.xml b/controllers/serial/index.xml deleted file mode 100644 index 0ade773..0000000 --- a/controllers/serial/index.xml +++ /dev/null @@ -1 +0,0 @@ -Serial port on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/serial/Recent content in Serial port on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/standalone/index.html b/controllers/standalone/index.html index f01401d..4f6bbee 100644 --- a/controllers/standalone/index.html +++ b/controllers/standalone/index.html @@ -1,7 +1,7 @@ -Standalone :: Densha de GO! controller documentation -

    Standalone

    The information in this section applies to the following controllers:

    • Densha de GO! Plug and Play

    This controller is different from traditional controllers in the sense that it contains the game (an improved version of Densha de GO! Final) and does not connect to a PC or console. Externally, it looks similar to a TCPP-20009, except it does not include a pedal connection. Internally, it contains an ARM board running Linux. It requires a micro USB cable for power and a HDMI cable for video output.

    The micro USB port supports USB OTG with a powered adapter and is used by Taito to install software updates.

    It is possible to update the Linux kernel on the board to enable USB gadget mode and emulate traditional controllers, such as the DGOC-44U. This makes it possible to control other software. You can find more information here.

    + + + \ No newline at end of file diff --git a/controllers/standalone/index.xml b/controllers/standalone/index.xml index e79cad3..e841469 100644 --- a/controllers/standalone/index.xml +++ b/controllers/standalone/index.xml @@ -1 +1 @@ -Standalone on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/standalone/Recent content in Standalone on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file +Standalone on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/standalone/Recent content in Standalone on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! Plug and Playhttps://marcriera.github.io/ddgo-controller-docs/controllers/standalone/pnp/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/standalone/pnp/Overview Name Densha de GO! Plug and Play Release date February 8, 2018 Serial code Notes Technical details This controller is different from traditional controllers in the sense that it contains the game (an improved version of Densha de GO! Final) and does not connect to a PC or console. Externally, it looks similar to a TCPP-20009, except it does not include a pedal connection. Internally, it contains an ARM board running Linux. \ No newline at end of file diff --git a/controllers/standalone/pnp/index.html b/controllers/standalone/pnp/index.html new file mode 100644 index 0000000..ce0ee15 --- /dev/null +++ b/controllers/standalone/pnp/index.html @@ -0,0 +1,8 @@ +Densha de GO! Plug and Play :: Densha de GO! controller documentation +

    Densha de GO! Plug and Play

    Overview

    NameDensha de GO! Plug and Play
    Release dateFebruary 8, 2018
    Serial code
    Notes

    Technical details

    This controller is different from traditional controllers in the sense that it contains the game (an improved version of Densha de GO! Final) and does not connect to a PC or console. Externally, it looks similar to a TCPP-20009, except it does not include a pedal connection. Internally, it contains an ARM board running Linux. It requires a micro USB cable for power and a HDMI cable for video output.

    The micro USB port supports USB OTG with a powered adapter and is used by Taito to install software updates.

    It is possible to update the Linux kernel on the board to enable USB gadget mode and emulate traditional controllers, such as the DGOC-44U. This makes it possible to control other software. You can find more information here.

    + + + \ No newline at end of file diff --git a/controllers/standalone/pnp/index.xml b/controllers/standalone/pnp/index.xml new file mode 100644 index 0000000..4061210 --- /dev/null +++ b/controllers/standalone/pnp/index.xml @@ -0,0 +1 @@ +Densha de GO! Plug and Play on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/standalone/pnp/Recent content in Densha de GO! Plug and Play on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/cotm02001/index.html b/controllers/usb/cotm02001/index.html new file mode 100644 index 0000000..e09df27 --- /dev/null +++ b/controllers/usb/cotm02001/index.html @@ -0,0 +1,8 @@ +Train Mascon (Sony PlayStation 2) :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/controllers/usb/cotm02001/index.xml b/controllers/usb/cotm02001/index.xml new file mode 100644 index 0000000..46b5c71 --- /dev/null +++ b/controllers/usb/cotm02001/index.xml @@ -0,0 +1 @@ +Train Mascon (Sony PlayStation 2) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/cotm02001/Recent content in Train Mascon (Sony PlayStation 2) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/dgc255/index.html b/controllers/usb/dgc255/index.html new file mode 100644 index 0000000..b343d23 --- /dev/null +++ b/controllers/usb/dgc255/index.html @@ -0,0 +1,8 @@ +One handle controller (PC) :: Densha de GO! controller documentation +

    One handle controller (PC)

    Overview

    NameOne handle controller (PC)
    Release dateDecember 17, 2004
    Serial codeDGC-255
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! (PC)NativeOnly republished version.
    Densha de GO! 2 Kōsoku-hen (PC)NativeOnly republished version.
    Densha de GO! 3 Tsūkin-hen Daiya Kaisei (PC)Native
    Densha de GO! Final (PC)Native
    Densha de GO! Nagoya Tetsudō-hen (PC)NativeOnly republished version.
    Densha de GO! Professional (PC)Native
    Densha de GO! Professional 2 (PC)Native
    Densha de GO! Ryojōhen (PC)Native
    Densha de GO! Shinkansen San'yō Shinkansen-hen (PC)Native
    Kisha de GO! (PC)NativeOnly republished version.
    OpenBVE (PC)NativeSupported via input plugin.

    Technical details

    This controller has one handle (5 power notches and 8+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D).

    Internally, it is a HID-compliant joystick with two axes, 6 buttons and a PoV hat switch (the handle positions are reported via axes).

    Besides the PoV hat switch, it reports the same data as a DGOC-44U controller. The games check if the controller has a PoV hat switch to distinguish between a DGC-255 and a DGOC-44U.

    + + + \ No newline at end of file diff --git a/controllers/usb/dgc255/index.xml b/controllers/usb/dgc255/index.xml new file mode 100644 index 0000000..0bce7e0 --- /dev/null +++ b/controllers/usb/dgc255/index.xml @@ -0,0 +1 @@ +One handle controller (PC) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgc255/Recent content in One handle controller (PC) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/dgoc44u/index.html b/controllers/usb/dgoc44u/index.html new file mode 100644 index 0000000..55c2290 --- /dev/null +++ b/controllers/usb/dgoc44u/index.html @@ -0,0 +1,8 @@ +Two handle controller (PC) :: Densha de GO! controller documentation +

    Two handle controller (PC)

    Overview

    NameTwo handle controller (PC)
    Release dateJune 15, 2001
    Serial codeDGOC-44U
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! (PC)NativeOnly republished version.
    Densha de GO! 2 Kōsoku-hen (PC)NativeOnly republished version.
    Densha de GO! 3 Tsūkin-hen Daiya Kaisei (PC)Native
    Densha de GO! Final (PC)Native
    Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch)UnofficialRequires use of Titan One/Two device.
    Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4)UnofficialRequires use of Titan One/Two device.
    Densha de GO! Nagoya Tetsudō-hen (PC)NativeOnly republished version.
    Densha de GO! Professional (PC)Native
    Densha de GO! Professional 2 (PC)Native
    Densha de GO! Ryojōhen (PC)Native
    Densha de GO! Shinkansen San'yō Shinkansen-hen (PC)Native
    Japanese Rail Sim: Akechi Railway (Nintendo Switch)UnofficialRequires use of Titan One/Two device.
    Japanese Rail Sim: Journey to Kyoto (Sony PlayStation 4)UnofficialRequires use of Titan One/Two device.
    Kisha de GO! (PC)NativeOnly republished version.
    OpenBVE (PC)NativeSupported via input plugin.
    Train Crew (PC)UnofficialRequires use of Titan One/Two device.

    Technical details

    This controller has two handles (5 power notches and 8+emergency brake notches) and 6 buttons (Select, Start, A, B, C, D).

    Internally, it is a HID-compliant joystick with two axes and 6 buttons (the handle positions are reported via axes).

    Product name電車でGO! コントローラ USB版
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0003
    Serial numberTCPP20009
    USB standard descriptorUnavailable
    HID report descriptorLink

    The controller sends reports to the host (PC) formed by 6 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
    BrakePowerNullButtonsNullNull

    The values for the brake notch byte are the following. There are 5 unmarked positions between B8 and Emergency, but unlike classic controllers, they are all report the value for Emergency.

    ReleasedB1B2B3B4B5B6B7B8EmergencyTransition
    0x790x8A0x940x9A0xA20xA80xAF0xB20xB50xB90xFF

    The values for the power notch byte are listed below.

    NP1P2P3P4P5Transition
    0x810x6D0x540x3F0x210x000xFF

    The button byte uses six bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed.

    Button 1Button 2Button 3Button 4Button 5Button 6
    BACDSELECTSTART
    + + + \ No newline at end of file diff --git a/controllers/usb/dgoc44u/index.xml b/controllers/usb/dgoc44u/index.xml new file mode 100644 index 0000000..41da856 --- /dev/null +++ b/controllers/usb/dgoc44u/index.xml @@ -0,0 +1 @@ +Two handle controller (PC) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgoc44u/Recent content in Two handle controller (PC) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/dyc288/index.html b/controllers/usb/dyc288/index.html new file mode 100644 index 0000000..8845692 --- /dev/null +++ b/controllers/usb/dyc288/index.html @@ -0,0 +1,8 @@ +Ryojōhen controller (PC) :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/controllers/usb/dyc288/index.xml b/controllers/usb/dyc288/index.xml new file mode 100644 index 0000000..f06d885 --- /dev/null +++ b/controllers/usb/dyc288/index.xml @@ -0,0 +1 @@ +Ryojōhen controller (PC) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/dyc288/Recent content in Ryojōhen controller (PC) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/index.html b/controllers/usb/index.html index 85f1a34..b0b9078 100644 --- a/controllers/usb/index.html +++ b/controllers/usb/index.html @@ -1,8 +1,7 @@ -USB :: Densha de GO! controller documentation -

    USB

    The information in this section applies to the following controllers:

    • DGC-255: one-handle controller (Microsoft Windows)
    • DGOC-44U: two-handle controller (Microsoft Windows)
    • DRC-184/DYC-288: Ryojōhen controller (Microsoft Windows)
    • TCPP-20009: two-handle controller “Type 2” (Sony PlayStation 2)
    • TCPP-20011: Shinkansen controller (Sony PlayStation 2)
    • TCPP-20012: two-handle controller “Type 2”, purple skeleton (Sony PlayStation 2)
    • TCPP-20014: Ryojōhen controller (Sony PlayStation 2)
    • MTC: Multi Train Controller (Sony PlayStation 2)
    • ZKNS-001: one-handle controller (Nintendo Switch)

    DGC-255

    This controller has one handle (5 power notches and 8+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D).

    Internally, it is a HID-compliant joystick with two axes, 6 buttons and a PoV hat switch (the handle positions are reported via axes).

    Besides the PoV hat switch, it reports the same data as a DGOC-44U controller. The games check if the controller has a PoV hat switch to distinguish between a DGC-255 and a DGOC-44U.

    DGOC-44U

    This controller has two handles (5 power notches and 8+emergency brake notches) and 6 buttons (Select, Start, A, B, C, D).

    Internally, it is a HID-compliant joystick with two axes and 6 buttons (the handle positions are reported via axes).

    Product name電車でGO! コントローラ USB版
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0003
    Serial numberTCPP20009
    USB standard descriptorUnavailable
    HID report descriptorLink

    The controller sends reports to the host (PC) formed by 6 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
    BrakePowerNullButtonsNullNull

    The values for the brake notch byte are the following. There are 5 unmarked positions between B8 and Emergency, but unlike classic controllers, they are all report the value for Emergency.

    ReleasedB1B2B3B4B5B6B7B8EmergencyTransition
    0x790x8A0x940x9A0xA20xA80xAF0xB20xB50xB90xFF

    The values for the power notch byte are listed below.

    NP1P2P3P4P5Transition
    0x810x6D0x540x3F0x210x000xFF

    The button byte uses six bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed.

    Button 1Button 2Button 3Button 4Button 5Button 6
    BACDSELECTSTART

    DRC-184/DYC-288

    No details are available regarding internal functioning.

    TCPP-20009/TCPP-20012

    This controller has two handles (5 power notches and 8+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D). In addition, it provides a door lamp and a 3.5 mm jack connector to plug a horn pedal. There are two rumble motors, one in each handle.

    Internally, it is a HID device with a vendor-specific class.

    Product nameTAITO_DENSYA_CON_T01
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0004
    Serial numberTCPP20010
    USB standard descriptorLink
    HID report descriptorUnavailable

    Input

    The controller sends reports to the host (PS2) formed by 6 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
    0x01BrakePowerPedalD-PadButtons

    The values for the brake notch byte are the following.

    ReleasedB1B2B3B4B5B6B7B8EmergencyTransition
    0x790x8A0x940x9A0xA20xA80xAF0xB20xB50xB90xFF

    The values for the power notch byte are listed below.

    NP1P2P3P4P5Transition
    0x810x6D0x540x3F0x210x000xFF

    The pedal byte has two possible values depending on the state of the pedal.

    ReleasedPressed
    0xFF0x00

    The D-pad byte represents the state of the arrow buttons. If two opposite directions are pressed simultaneously, the result is Center unless a third button is pressed.

    NNEESESSWWNWNone/Center
    0x000x010x020x030x040x050x060x070x08

    The button byte uses six bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed. A bitmask can be used to retrieve the buttons.

    Button 1Button 2Button 3Button 4Button 5Button 6
    BACDSELECTSTART

    Output

    The controller supports receiving data via a control transfer to turn on/off the door lamp and provide rumble. The setup packet is as follows:

    bmRequestTypebRequestwValuewIndexwLength
    0x400x090x03010x00000x0002

    The data sent to the controller follows the structure below.

    Byte 1Byte 2
    StatusFunction
    • Status: defines whether the function specified in byte 2 is Off (0x00) or On (0x01).
    • Function: 0x01 is Left rumble, 0x02 is Right rumble, 0x03 is Door lamp.

    TCPP-20011

    This controller has two handles (13 power notches and 7+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D). In addition, it provides a simple display, a door lamp and a 3.5 mm jack connector to plug a horn pedal. There are two rumble motors, one in each handle.

    Internally, it is a HID device with a vendor-specific class.

    Product nameTAITO_DENSYA_CON_T02
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0005
    Serial numberTCPP20011
    USB standard descriptorLink
    HID report descriptorUnavailable

    Input

    The controller sends reports to the host (PS2) formed by 6 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
    BrakePowerPedalD-PadButtonsNull

    The values for the brake notch byte are the following.

    ReleasedB1B2B3B4B5B6B7EmergencyTransition
    0x1C0x380x540x700x8B0xA70xC30xDF0xFB0xFF

    The values for the power notch byte are listed below.

    NP1P2P3P4P5P6P7P8P9P10P11P12P13Transition
    0x120x240x360x480x5A0x6C0x7E0x900xA20xB40xC60xD70xE90xFB0xFF

    The pedal byte has two possible values depending on the state of the pedal.

    ReleasedPressed
    0xFF0x00

    The D-pad byte represents the state of the arrow buttons. If two opposite directions are pressed simultaneously, the result is Center unless a third button is pressed.

    NNEESESSWWNWNone/Center
    0x000x010x020x030x040x050x060x070x08

    The button byte uses six bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed. A bitmask can be used to retrieve the buttons.

    Button 1Button 2Button 3Button 4Button 5Button 6
    DCBASELECTSTART

    Output

    The controller supports receiving data via a control transfer to update the screen, turn on/off the door lamp and provide rumble. The setup packet is as follows:

    bmRequestTypebRequestwValuewIndexwLength
    0x400x090x03010x00000x0008

    The data sent to the controller follows the structure below.

    Byte 1Byte 2Byte 3Byte 4Bytes 5-6Bytes 7-8
    Left rumbleRight rumbleDoor lamp + Limit approachSpeed gaugeSpeedometerATC limit
    • Left/right rumble: 0x00 is Off, 0x01 is On.
    • Door lamp: 0x0? is Off, 0x8? is On.
    • Limit approach: values between 0x?0 and 0x?A representing the number of LEDs lit above the speedometer. In-game, these mark the 10 km/h right below the speed limit.
    • Speed gauge: values between 0x00 and 0x16 representing the number of LEDs lit on the speed gauge. LED #23 cannot be lit. In-game, these mark 15 km/h increments in the current speed, with one lit when speed is 1-15 km/h, two when 16-30 km/h, etc.
    • Speedometer: values between 0x0000 and 0x0999 representing the current speed. Values are encoded with BCD 8421 (i.e. 120 km/h should be represented as 0x0120, NOT 0x0078).
    • ATC limit: values between 0x0000 and 0x0999 representing the ATC speed limit. Values are encoded with BCD 8421 (i.e. 120 km/h should be represented as 0x0120, NOT 0x0078).

    Multi-byte values should be stored in Little Endian.

    TCPP-20014

    This controller has two handles (4 power notches and an analogue brake handle with three areas), a D-Pad and 7 buttons (Select, Start, Horn, Announce, Camera, Left doors, Right doors). In addition, it provides a 3.5 mm jack connector to plug a horn pedal.

    Internally, it is a HID device with a vendor-specific class.

    Product nameTAITO_DENSYA_CON_T03
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0007
    Serial numberTCPP20014
    USB standard descriptorLink
    HID report descriptorUnavailable

    Input

    The controller sends reports to the host (PS2) formed by 8 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Bytes 6-8
    BrakePowerPedalD-PadButtonsUnused

    Unlike traditional controllers, the brake handle is analogue and the brake byte reflects the position of the handle precisely. There are three areas with the ranges listed below, plus the emergency notch.

    Reduce pressureKeep pressureIncrease pressureEmergency
    0x23-0x640x65-0x890x8A-0xD60xD7

    When using the controller with Densha de GO! Professional 2 or Densha de GO! Final, the brake handle is interpreted as having 6 brake notches + emergency. The aproximate byte range for each notch is listed below (taken from Densha de GO! Professional 2).

    ReleasedB1B2B3B4B5B6Emergency
    0x23-0x2A0x2B-0x3C0x3D-0x4E0x4F-0x630x64-0x8A0x8B-0xB00xB1-0xD60xD7

    The values for the power notch byte are listed below.

    NP1P2P3P4Transition
    0x000x3C0x780xB40xF00xFF

    The pedal byte has two possible values depending on the state of the pedal.

    ReleasedPressed
    0xFF0x00

    The D-pad byte represents the state of the arrow buttons. If two opposite directions are pressed simultaneously, the result is Center unless a third button is pressed.

    NNEESESSWWNWNone/Center
    0x000x010x020x030x040x050x060x070x08

    The button byte uses seven bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed. A bitmask can be used to retrieve the buttons.

    Button 1Button 2Button 3Button 4Button 5Button 6Button 7
    HornAnnounceCameraRight doorsLeft doorsSELECTSTART

    MTC

    No details are available regarding internal functioning.

    ZKNS-001

    This controller has one handle (5 power notches and 8+emergency brake notches) and 16 buttons (the same as a Nintendo Switch Pro Controller, except the stick buttons).

    Internally, it is a HID-compliant joystick mimicking a Nintendo Switch Pro Controller. The stick buttons and the right stick are unused, and only the Y axis of the left stick is used.

    Product nameOne Handle MasCon for Nintendo Switch
    ManufacturerNone
    Vendor ID0x0F0D
    Product ID0x00C1
    Serial numberNone
    USB standard descriptorLink
    HID report descriptorLink

    The power/brake handle notches are reported in the Y axis of the left stick. There are no transition values between notches. In addition, when the handle is set to Emergency, ZL is pressed.

    EmergencyB8B7B6B5B4B3B2B1NP1P2P3P4P5
    0x000x050x130x200x2E0x3C0x490x570x650x800x9F0xB70xCE0xE60xFF
    + + + \ No newline at end of file diff --git a/controllers/usb/index.xml b/controllers/usb/index.xml index 5bfda1a..af45bd2 100644 --- a/controllers/usb/index.xml +++ b/controllers/usb/index.xml @@ -1 +1 @@ -USB on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/Recent content in USB on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file +USB on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/Recent content in USB on Densha de GO! controller documentationHugo -- gohugo.ioen-usMulti Train Controller (Sony PlayStation 2)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/sotp031201/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/sotp031201/Overview Name Multi Train Controller (Sony PlayStation 2) Release date December 18, 2003 Serial code SOTP-031201 Notes Released with 4 cassettes: P4-B7, P4-B7 (without B1), P5-B5 and P5-B8. Additional cassettes sold separately: P5-B7 and P13-B7. Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2) Native P5/B8 cassette. Densha de GO! Final (Sony PlayStation 2) Native P5/B8 cassette. Densha de GO!One handle controller (Nintendo Switch)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/zkns001/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/zkns001/Overview Name One handle controller (Nintendo Switch) Release date August 5, 2021 Serial code ZKNS-001 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch) Native Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4) Unofficial Requires use of Titan One/Two device. Japanese Rail Sim: Akechi Railway (Nintendo Switch) Native Japanese Rail Sim: Journey to Kyoto (Sony PlayStation 4) Unofficial Requires use of Titan One/Two device.One handle controller (PC)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgc255/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgc255/Overview Name One handle controller (PC) Release date December 17, 2004 Serial code DGC-255 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! (PC) Native Only republished version. Densha de GO! 2 Kōsoku-hen (PC) Native Only republished version. Densha de GO! 3 Tsūkin-hen Daiya Kaisei (PC) Native Densha de GO! Final (PC) Native Densha de GO! Nagoya Tetsudō-hen (PC) Native Only republished version.Ryojōhen controller (PC)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dyc288/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dyc288/Overview Name Ryojōhen controller (PC) Release date June 5, 2003 Serial code DYC-288 Notes Also packaged with serial code DRC-184. Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! Final (PC) Native Densha de GO! Professional 2 (PC) Native Densha de GO! Ryojōhen (PC) Native OpenBVE (PC) Native Supported via input plugin. Technical details No details are available regarding internal functioning.Ryojōhen controller (Sony PlayStation 2)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20014/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20014/Overview Name Ryojōhen controller (Sony PlayStation 2) Release date July 25, 2002 Serial code TCPP-20014 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! Final (Sony PlayStation 2) Native Densha de GO! Professional 2 (Sony PlayStation 2) Native Densha de GO! Ryojōhen (Sony PlayStation 2) Native OpenBVE (PC) Native Supported via input plugin. Technical details This controller has two handles (4 power notches and an analogue brake handle with three areas), a D-Pad and 7 buttons (Select, Start, Horn, Announce, Camera, Left doors, Right doors).Sangying one handle controller (PC)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/ohcpc01/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/ohcpc01/Overview Name Sangying one handle controller (PC) Release date February 28, 2018 Serial code OHC-PC01 Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4) Unofficial Requires use of Titan One/Two device. Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch) Unofficial Requires use of Titan One/Two device. Japanese Rail Sim: Akechi Railway (Nintendo Switch) Unofficial Requires use of Titan One/Two device.Shinkansen controller (Sony PlayStation 2)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20011/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20011/Overview Name Shinkansen controller (Sony PlayStation 2) Release date September 20, 2001 Serial code TCPP-20011 Notes Supported software (WIP) Software Support Notes Densha de GO! Final (Sony PlayStation 2) Native Densha de GO! Professional 2 (Sony PlayStation 2) Native Densha de GO! Ryojōhen (Sony PlayStation 2) Native Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2) Native OpenBVE (PC) Native Supported via input plugin. Technical details This controller has two handles (13 power notches and 7+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D).Train Mascon (Sony PlayStation 2)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/cotm02001/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/cotm02001/Overview Name Train Mascon (Sony PlayStation 2) Release date October 31, 2002 Serial code COTM-02001 Notes Supported software (WIP) Software Support Notes Train Simulator Real: THE Keihin Electric Express Railway (Sony PlayStation 2) Native Train Simulator: Keisei, Toei Asakusa, Keikyu Lines (Sony PlayStation 2) Native Technical details No details are available regarding internal functioning.Two handle controller "Type 2" (Sony PlayStation 2)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20009/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20009/Overview Name Two handle controller "Type 2" (Sony PlayStation 2) Release date March 15, 2001 Serial code TCPP-20009 Notes Also available in purple skeleton colour (TCPP-20012). Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2) Native Densha de GO! Final (Sony PlayStation 2) Native Densha de GO! Professional 2 (Sony PlayStation 2) Native Densha de GO! Ryojōhen (Sony PlayStation 2) Native Densha de GO!Two handle controller (PC)https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgoc44u/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgoc44u/Overview Name Two handle controller (PC) Release date June 15, 2001 Serial code DGOC-44U Notes Supported software (WIP) Software Support Notes BVE Trainsim (PC) Native Supported via input plugin. Densha de GO! (PC) Native Only republished version. Densha de GO! 2 Kōsoku-hen (PC) Native Only republished version. Densha de GO! 3 Tsūkin-hen Daiya Kaisei (PC) Native Densha de GO! Final (PC) Native Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch) Unofficial Requires use of Titan One/Two device. \ No newline at end of file diff --git a/controllers/usb/ohcpc01/index.html b/controllers/usb/ohcpc01/index.html new file mode 100644 index 0000000..e9673a7 --- /dev/null +++ b/controllers/usb/ohcpc01/index.html @@ -0,0 +1,8 @@ +Sangying one handle controller (PC) :: Densha de GO! controller documentation +

    Sangying one handle controller (PC)

    Overview

    NameSangying one handle controller (PC)
    Release dateFebruary 28, 2018
    Serial codeOHC-PC01
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4)UnofficialRequires use of Titan One/Two device.
    Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch)UnofficialRequires use of Titan One/Two device.
    Japanese Rail Sim: Akechi Railway (Nintendo Switch)UnofficialRequires use of Titan One/Two device.
    OpenBVE (PC)NativeSupported via input plugin.
    Train Crew (PC)Native

    Technical details

    No details are available regarding internal functioning.

    + + + \ No newline at end of file diff --git a/controllers/usb/ohcpc01/index.xml b/controllers/usb/ohcpc01/index.xml new file mode 100644 index 0000000..d09acef --- /dev/null +++ b/controllers/usb/ohcpc01/index.xml @@ -0,0 +1 @@ +Sangying one handle controller (PC) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/ohcpc01/Recent content in Sangying one handle controller (PC) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/sotp031201/index.html b/controllers/usb/sotp031201/index.html new file mode 100644 index 0000000..0c28be2 --- /dev/null +++ b/controllers/usb/sotp031201/index.html @@ -0,0 +1,8 @@ +Multi Train Controller (Sony PlayStation 2) :: Densha de GO! controller documentation +

    Multi Train Controller (Sony PlayStation 2)

    Overview

    NameMulti Train Controller (Sony PlayStation 2)
    Release dateDecember 18, 2003
    Serial codeSOTP-031201
    NotesReleased with 4 cassettes: P4-B7, P4-B7 (without B1), P5-B5 and P5-B8. Additional cassettes sold separately: P5-B7 and P13-B7.

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2)NativeP5/B8 cassette.
    Densha de GO! Final (Sony PlayStation 2)NativeP5/B8 cassette.
    Densha de GO! Professional 2 (Sony PlayStation 2)NativeP5/B8 cassette.
    Densha de GO! Ryojōhen (Sony PlayStation 2)NativeP5/B8 cassette.
    Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2)NativeP5/B8 cassette.
    OpenBVE (PC)PartialOnly P5/B8 cassette. Supported via input plugin.
    Train Simulator + Densha de GO!: Tokyu Line (Sony PlayStation 2)NativeP4/B7 cassette.
    Train Simulator Real: THE Keihin Electric Express Railway (Sony PlayStation 2)NativeP5/B5 cassette.
    Train Simulator Real: THE Yamanote Line (Sony PlayStation 2)NativeP5/B8 cassette.
    Train Simulator: Keisei, Toei Asakusa, Keikyu Lines (Sony PlayStation 2)NativeP5/B5, P13-B7 cassettes.
    Train Simulator: Kyūshū Shinkansen (Sony PlayStation 2)NativeP5/B7, P13-B7 cassettes.
    Train Simulator: Midosuji Line (Sony PlayStation 2)NativeP4/B7 (without B1) cassette.

    Technical details

    No details are available regarding internal functioning.

    + + + \ No newline at end of file diff --git a/controllers/usb/sotp031201/index.xml b/controllers/usb/sotp031201/index.xml new file mode 100644 index 0000000..b3993cc --- /dev/null +++ b/controllers/usb/sotp031201/index.xml @@ -0,0 +1 @@ +Multi Train Controller (Sony PlayStation 2) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/sotp031201/Recent content in Multi Train Controller (Sony PlayStation 2) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/tcpp20009/index.html b/controllers/usb/tcpp20009/index.html new file mode 100644 index 0000000..ff0f90f --- /dev/null +++ b/controllers/usb/tcpp20009/index.html @@ -0,0 +1,8 @@ +Two handle controller "Type 2" (Sony PlayStation 2) :: Densha de GO! controller documentation +

    Two handle controller "Type 2" (Sony PlayStation 2)

    Overview

    NameTwo handle controller "Type 2" (Sony PlayStation 2)
    Release dateMarch 15, 2001
    Serial codeTCPP-20009
    NotesAlso available in purple skeleton colour (TCPP-20012).

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! 3 Tsūkin-hen (Sony PlayStation 2)Native
    Densha de GO! Final (Sony PlayStation 2)Native
    Densha de GO! Professional 2 (Sony PlayStation 2)Native
    Densha de GO! Ryojōhen (Sony PlayStation 2)Native
    Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2)Native
    OpenBVE (PC)NativeSupported via input plugin.
    Train Simulator Real: THE Yamanote Line (Sony PlayStation 2)Native

    Technical details

    This controller has two handles (5 power notches and 8+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D). In addition, it provides a door lamp and a 3.5 mm jack connector to plug a horn pedal. There are two rumble motors, one in each handle.

    Internally, it is a HID device with a vendor-specific class.

    Product nameTAITO_DENSYA_CON_T01
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0004
    Serial numberTCPP20010
    USB standard descriptorLink
    HID report descriptorUnavailable

    Input

    The controller sends reports to the host (PS2) formed by 6 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
    0x01BrakePowerPedalD-PadButtons

    The values for the brake notch byte are the following.

    ReleasedB1B2B3B4B5B6B7B8EmergencyTransition
    0x790x8A0x940x9A0xA20xA80xAF0xB20xB50xB90xFF

    The values for the power notch byte are listed below.

    NP1P2P3P4P5Transition
    0x810x6D0x540x3F0x210x000xFF

    The pedal byte has two possible values depending on the state of the pedal.

    ReleasedPressed
    0xFF0x00

    The D-pad byte represents the state of the arrow buttons. If two opposite directions are pressed simultaneously, the result is Center unless a third button is pressed.

    NNEESESSWWNWNone/Center
    0x000x010x020x030x040x050x060x070x08

    The button byte uses six bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed. A bitmask can be used to retrieve the buttons.

    Button 1Button 2Button 3Button 4Button 5Button 6
    BACDSELECTSTART

    Output

    The controller supports receiving data via a control transfer to turn on/off the door lamp and provide rumble. The setup packet is as follows:

    bmRequestTypebRequestwValuewIndexwLength
    0x400x090x03010x00000x0002

    The data sent to the controller follows the structure below.

    Byte 1Byte 2
    StatusFunction
    • Status: defines whether the function specified in byte 2 is Off (0x00) or On (0x01).
    • Function: 0x01 is Left rumble, 0x02 is Right rumble, 0x03 is Door lamp.
    + + + \ No newline at end of file diff --git a/controllers/usb/tcpp20009/index.xml b/controllers/usb/tcpp20009/index.xml new file mode 100644 index 0000000..74dae34 --- /dev/null +++ b/controllers/usb/tcpp20009/index.xml @@ -0,0 +1 @@ +Two handle controller "Type 2" (Sony PlayStation 2) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20009/Recent content in Two handle controller "Type 2" (Sony PlayStation 2) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/tcpp20011/index.html b/controllers/usb/tcpp20011/index.html new file mode 100644 index 0000000..d80e7a1 --- /dev/null +++ b/controllers/usb/tcpp20011/index.html @@ -0,0 +1,8 @@ +Shinkansen controller (Sony PlayStation 2) :: Densha de GO! controller documentation +

    Shinkansen controller (Sony PlayStation 2)

    Overview

    NameShinkansen controller (Sony PlayStation 2)
    Release dateSeptember 20, 2001
    Serial codeTCPP-20011
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    Densha de GO! Final (Sony PlayStation 2)Native
    Densha de GO! Professional 2 (Sony PlayStation 2)Native
    Densha de GO! Ryojōhen (Sony PlayStation 2)Native
    Densha de GO! Shinkansen San'yō Shinkansen-hen (Sony PlayStation 2)Native
    OpenBVE (PC)NativeSupported via input plugin.

    Technical details

    This controller has two handles (13 power notches and 7+emergency brake notches), a D-Pad and 6 buttons (Select, Start, A, B, C, D). In addition, it provides a simple display, a door lamp and a 3.5 mm jack connector to plug a horn pedal. There are two rumble motors, one in each handle.

    Internally, it is a HID device with a vendor-specific class.

    Product nameTAITO_DENSYA_CON_T02
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0005
    Serial numberTCPP20011
    USB standard descriptorLink
    HID report descriptorUnavailable

    Input

    The controller sends reports to the host (PS2) formed by 6 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
    BrakePowerPedalD-PadButtonsNull

    The values for the brake notch byte are the following.

    ReleasedB1B2B3B4B5B6B7EmergencyTransition
    0x1C0x380x540x700x8B0xA70xC30xDF0xFB0xFF

    The values for the power notch byte are listed below.

    NP1P2P3P4P5P6P7P8P9P10P11P12P13Transition
    0x120x240x360x480x5A0x6C0x7E0x900xA20xB40xC60xD70xE90xFB0xFF

    The pedal byte has two possible values depending on the state of the pedal.

    ReleasedPressed
    0xFF0x00

    The D-pad byte represents the state of the arrow buttons. If two opposite directions are pressed simultaneously, the result is Center unless a third button is pressed.

    NNEESESSWWNWNone/Center
    0x000x010x020x030x040x050x060x070x08

    The button byte uses six bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed. A bitmask can be used to retrieve the buttons.

    Button 1Button 2Button 3Button 4Button 5Button 6
    DCBASELECTSTART

    Output

    The controller supports receiving data via a control transfer to update the screen, turn on/off the door lamp and provide rumble. The setup packet is as follows:

    bmRequestTypebRequestwValuewIndexwLength
    0x400x090x03010x00000x0008

    The data sent to the controller follows the structure below.

    Byte 1Byte 2Byte 3Byte 4Bytes 5-6Bytes 7-8
    Left rumbleRight rumbleDoor lamp + Limit approachSpeed gaugeSpeedometerATC limit
    • Left/right rumble: 0x00 is Off, 0x01 is On.
    • Door lamp: 0x0? is Off, 0x8? is On.
    • Limit approach: values between 0x?0 and 0x?A representing the number of LEDs lit above the speedometer. In-game, these mark the 10 km/h right below the speed limit.
    • Speed gauge: values between 0x00 and 0x16 representing the number of LEDs lit on the speed gauge. LED #23 cannot be lit. In-game, these mark 15 km/h increments in the current speed, with one lit when speed is 1-15 km/h, two when 16-30 km/h, etc.
    • Speedometer: values between 0x0000 and 0x0999 representing the current speed. Values are encoded with BCD 8421 (i.e. 120 km/h should be represented as 0x0120, NOT 0x0078).
    • ATC limit: values between 0x0000 and 0x0999 representing the ATC speed limit. Values are encoded with BCD 8421 (i.e. 120 km/h should be represented as 0x0120, NOT 0x0078).

    Multi-byte values should be stored in Little Endian.

    + + + \ No newline at end of file diff --git a/controllers/usb/tcpp20011/index.xml b/controllers/usb/tcpp20011/index.xml new file mode 100644 index 0000000..80214ed --- /dev/null +++ b/controllers/usb/tcpp20011/index.xml @@ -0,0 +1 @@ +Shinkansen controller (Sony PlayStation 2) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20011/Recent content in Shinkansen controller (Sony PlayStation 2) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/tcpp20014/index.html b/controllers/usb/tcpp20014/index.html new file mode 100644 index 0000000..9a67dde --- /dev/null +++ b/controllers/usb/tcpp20014/index.html @@ -0,0 +1,8 @@ +Ryojōhen controller (Sony PlayStation 2) :: Densha de GO! controller documentation +

    Ryojōhen controller (Sony PlayStation 2)

    Overview

    NameRyojōhen controller (Sony PlayStation 2)
    Release dateJuly 25, 2002
    Serial codeTCPP-20014
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! Final (Sony PlayStation 2)Native
    Densha de GO! Professional 2 (Sony PlayStation 2)Native
    Densha de GO! Ryojōhen (Sony PlayStation 2)Native
    OpenBVE (PC)NativeSupported via input plugin.

    Technical details

    This controller has two handles (4 power notches and an analogue brake handle with three areas), a D-Pad and 7 buttons (Select, Start, Horn, Announce, Camera, Left doors, Right doors). In addition, it provides a 3.5 mm jack connector to plug a horn pedal.

    Internally, it is a HID device with a vendor-specific class.

    Product nameTAITO_DENSYA_CON_T03
    ManufacturerTAITO
    Vendor ID0x0AE4
    Product ID0x0007
    Serial numberTCPP20014
    USB standard descriptorLink
    HID report descriptorUnavailable

    Input

    The controller sends reports to the host (PS2) formed by 8 bytes:

    Byte 1Byte 2Byte 3Byte 4Byte 5Bytes 6-8
    BrakePowerPedalD-PadButtonsUnused

    Unlike traditional controllers, the brake handle is analogue and the brake byte reflects the position of the handle precisely. There are three areas with the ranges listed below, plus the emergency notch.

    Reduce pressureKeep pressureIncrease pressureEmergency
    0x23-0x640x65-0x890x8A-0xD60xD7

    When using the controller with Densha de GO! Professional 2 or Densha de GO! Final, the brake handle is interpreted as having 6 brake notches + emergency. The aproximate byte range for each notch is listed below (taken from Densha de GO! Professional 2).

    ReleasedB1B2B3B4B5B6Emergency
    0x23-0x2A0x2B-0x3C0x3D-0x4E0x4F-0x630x64-0x8A0x8B-0xB00xB1-0xD60xD7

    The values for the power notch byte are listed below.

    NP1P2P3P4Transition
    0x000x3C0x780xB40xF00xFF

    The pedal byte has two possible values depending on the state of the pedal.

    ReleasedPressed
    0xFF0x00

    The D-pad byte represents the state of the arrow buttons. If two opposite directions are pressed simultaneously, the result is Center unless a third button is pressed.

    NNEESESSWWNWNone/Center
    0x000x010x020x030x040x050x060x070x08

    The button byte uses seven bits to represent the state of the physical buttons. 0 means that the button is released and 1 that it is pressed. A bitmask can be used to retrieve the buttons.

    Button 1Button 2Button 3Button 4Button 5Button 6Button 7
    HornAnnounceCameraRight doorsLeft doorsSELECTSTART
    + + + \ No newline at end of file diff --git a/controllers/usb/tcpp20014/index.xml b/controllers/usb/tcpp20014/index.xml new file mode 100644 index 0000000..322e942 --- /dev/null +++ b/controllers/usb/tcpp20014/index.xml @@ -0,0 +1 @@ +Ryojōhen controller (Sony PlayStation 2) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20014/Recent content in Ryojōhen controller (Sony PlayStation 2) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/usb/zkns001/index.html b/controllers/usb/zkns001/index.html new file mode 100644 index 0000000..9b359c6 --- /dev/null +++ b/controllers/usb/zkns001/index.html @@ -0,0 +1,8 @@ +One handle controller (Nintendo Switch) :: Densha de GO! controller documentation +

    One handle controller (Nintendo Switch)

    Overview

    NameOne handle controller (Nintendo Switch)
    Release dateAugust 5, 2021
    Serial codeZKNS-001
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    BVE Trainsim (PC)NativeSupported via input plugin.
    Densha de GO! Hashirō Yamanote‑sen (Nintendo Switch)Native
    Densha de GO! Hashirō Yamanote‑sen (Sony PlayStation 4)UnofficialRequires use of Titan One/Two device.
    Japanese Rail Sim: Akechi Railway (Nintendo Switch)Native
    Japanese Rail Sim: Journey to Kyoto (Sony PlayStation 4)UnofficialRequires use of Titan One/Two device.
    OpenBVE (PC)NativeSupported via input plugin.
    Train Crew (PC)Native

    Technical details

    This controller has one handle (5 power notches and 8+emergency brake notches) and 16 buttons (the same as a Nintendo Switch Pro Controller, except the stick buttons). Internally, it is a HID-compliant joystick mimicking a Nintendo Switch Pro Controller. The stick buttons and the right stick are unused, and only the Y axis of the left stick is used.

    Product nameOne Handle MasCon for Nintendo Switch
    ManufacturerNone
    Vendor ID0x0F0D
    Product ID0x00C1
    Serial numberNone
    USB standard descriptorLink
    HID report descriptorLink

    The power/brake handle notches are reported in the Y axis of the left stick. There are no transition values between notches. In addition, when the handle is set to Emergency, ZL is pressed.

    EmergencyB8B7B6B5B4B3B2B1NP1P2P3P4P5
    0x000x050x130x200x2E0x3C0x490x570x650x800x9F0xB70xCE0xE60xFF
    + + + \ No newline at end of file diff --git a/controllers/usb/zkns001/index.xml b/controllers/usb/zkns001/index.xml new file mode 100644 index 0000000..f5f8d75 --- /dev/null +++ b/controllers/usb/zkns001/index.xml @@ -0,0 +1 @@ +One handle controller (Nintendo Switch) on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/usb/zkns001/Recent content in One handle controller (Nintendo Switch) on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/controllers/wii/index.html b/controllers/wii/index.html index cb129af..334b8e8 100644 --- a/controllers/wii/index.html +++ b/controllers/wii/index.html @@ -1,7 +1,7 @@ -Nintendo Wii :: Densha de GO! controller documentation -

    Nintendo Wii

    The information in this section applies to the following controllers:

    • TCPP-20017: Shinkansen controller

    This controller is similar externally to the PlayStation 2 version of the Shinkansen controller. However, the screen has been replaced by a sticker and there is no pedal, so the only functioning parts are the handles, the buttons and the door lamp. In addition, instead of USB, it connects to a Wiimote using its extension port, like other accessories made for the console. No details are available regarding internal functioning.

    + + + \ No newline at end of file diff --git a/controllers/wii/index.xml b/controllers/wii/index.xml index 0f191d1..b8fcf98 100644 --- a/controllers/wii/index.xml +++ b/controllers/wii/index.xml @@ -1 +1 @@ -Nintendo Wii on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/wii/Recent content in Nintendo Wii on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file +Nintendo Wii on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/wii/Recent content in Nintendo Wii on Densha de GO! controller documentationHugo -- gohugo.ioen-usShinkansen controllerhttps://marcriera.github.io/ddgo-controller-docs/controllers/wii/tcpp20017/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/wii/tcpp20017/Overview Name Shinkansen controller (Nintendo Wii) Release date March 1, 2007 Serial code TCPP-20017 Notes Supported software (WIP) Software Support Notes Densha de GO! Shinkansen EX San'yō Shinkansen-hen (Nintendo Wii) Native Technical details This controller is similar externally to the PlayStation 2 version of the Shinkansen controller. However, the screen has been replaced by a sticker and there is no pedal, so the only functioning parts are the handles, the buttons and the door lamp. \ No newline at end of file diff --git a/controllers/wii/tcpp20017/index.html b/controllers/wii/tcpp20017/index.html new file mode 100644 index 0000000..8a0c2c6 --- /dev/null +++ b/controllers/wii/tcpp20017/index.html @@ -0,0 +1,8 @@ +Shinkansen controller :: Densha de GO! controller documentation +

    Shinkansen controller

    Overview

    NameShinkansen controller (Nintendo Wii)
    Release dateMarch 1, 2007
    Serial codeTCPP-20017
    Notes

    Supported software (WIP)

    SoftwareSupportNotes
    Densha de GO! Shinkansen EX San'yō Shinkansen-hen (Nintendo Wii)Native

    Technical details

    This controller is similar externally to the PlayStation 2 version of the Shinkansen controller. However, the screen has been replaced by a sticker and there is no pedal, so the only functioning parts are the handles, the buttons and the door lamp. In addition, instead of USB, it connects to a Wiimote using its extension port, like other accessories made for the console. No details are available regarding internal functioning.

    + + + \ No newline at end of file diff --git a/controllers/wii/tcpp20017/index.xml b/controllers/wii/tcpp20017/index.xml new file mode 100644 index 0000000..1735829 --- /dev/null +++ b/controllers/wii/tcpp20017/index.xml @@ -0,0 +1 @@ +Shinkansen controller on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/controllers/wii/tcpp20017/Recent content in Shinkansen controller on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/css/custom.css b/css/custom.css deleted file mode 100644 index 311cb80..0000000 --- a/css/custom.css +++ /dev/null @@ -1,9 +0,0 @@ -#body .flex-block-wrapper { - max-width: 100%; -} - -.flex-block-wrapper table { - overflow-x: auto; - white-space: wrap; - width: 100%; -} diff --git a/images/controllers/cotm02001.jpg b/images/controllers/cotm02001.jpg new file mode 100644 index 0000000..21689df Binary files /dev/null and b/images/controllers/cotm02001.jpg differ diff --git a/images/controllers/pnp.jpg b/images/controllers/pnp.jpg new file mode 100644 index 0000000..dc1fa97 Binary files /dev/null and b/images/controllers/pnp.jpg differ diff --git a/images/controllers/sotp031201.jpg b/images/controllers/sotp031201.jpg new file mode 100644 index 0000000..f7bc19f Binary files /dev/null and b/images/controllers/sotp031201.jpg differ diff --git a/images/controllers/tcpp20017.jpg b/images/controllers/tcpp20017.jpg new file mode 100644 index 0000000..64b1f3b Binary files /dev/null and b/images/controllers/tcpp20017.jpg differ diff --git a/images/controllers/zkns001.jpg b/images/controllers/zkns001.jpg new file mode 100644 index 0000000..add2cdc Binary files /dev/null and b/images/controllers/zkns001.jpg differ diff --git a/images/software/ps2_densha3.jpg b/images/software/ps2_densha3.jpg new file mode 100644 index 0000000..bd02643 Binary files /dev/null and b/images/software/ps2_densha3.jpg differ diff --git a/images/software/ps2_final.jpg b/images/software/ps2_final.jpg new file mode 100644 index 0000000..3d552df Binary files /dev/null and b/images/software/ps2_final.jpg differ diff --git a/images/software/ps2_nagoya.jpg b/images/software/ps2_nagoya.jpg new file mode 100644 index 0000000..2fb65d3 Binary files /dev/null and b/images/software/ps2_nagoya.jpg differ diff --git a/images/software/ps2_pro2.jpg b/images/software/ps2_pro2.jpg new file mode 100644 index 0000000..be76c21 Binary files /dev/null and b/images/software/ps2_pro2.jpg differ diff --git a/images/software/ps2_ryojouhen.jpg b/images/software/ps2_ryojouhen.jpg new file mode 100644 index 0000000..4a947a2 Binary files /dev/null and b/images/software/ps2_ryojouhen.jpg differ diff --git a/images/software/ps2_shinkansen.jpg b/images/software/ps2_shinkansen.jpg new file mode 100644 index 0000000..f2a4bc3 Binary files /dev/null and b/images/software/ps2_shinkansen.jpg differ diff --git a/images/software/ps2_traindensha.jpg b/images/software/ps2_traindensha.jpg new file mode 100644 index 0000000..3be7606 Binary files /dev/null and b/images/software/ps2_traindensha.jpg differ diff --git a/images/software/ps2_trainkeitokei.jpg b/images/software/ps2_trainkeitokei.jpg new file mode 100644 index 0000000..4273667 Binary files /dev/null and b/images/software/ps2_trainkeitokei.jpg differ diff --git a/images/software/ps2_trainshinkansen.jpg b/images/software/ps2_trainshinkansen.jpg new file mode 100644 index 0000000..e48b5da Binary files /dev/null and b/images/software/ps2_trainshinkansen.jpg differ diff --git a/images/software/ps2_trainyamanote.jpg b/images/software/ps2_trainyamanote.jpg new file mode 100644 index 0000000..189fa46 Binary files /dev/null and b/images/software/ps2_trainyamanote.jpg differ diff --git a/images/software/ps4_japankyoto.jpg b/images/software/ps4_japankyoto.jpg new file mode 100644 index 0000000..d2203a5 Binary files /dev/null and b/images/software/ps4_japankyoto.jpg differ diff --git a/images/software/ps4_yamanote.jpg b/images/software/ps4_yamanote.jpg new file mode 100644 index 0000000..de7a47f Binary files /dev/null and b/images/software/ps4_yamanote.jpg differ diff --git a/images/software/switch_japanakechi.jpg b/images/software/switch_japanakechi.jpg new file mode 100644 index 0000000..9781c3a Binary files /dev/null and b/images/software/switch_japanakechi.jpg differ diff --git a/images/software/switch_japankyoto.jpg b/images/software/switch_japankyoto.jpg new file mode 100644 index 0000000..14c288f Binary files /dev/null and b/images/software/switch_japankyoto.jpg differ diff --git a/images/software/switch_japansangi.jpg b/images/software/switch_japansangi.jpg new file mode 100644 index 0000000..c71a80d Binary files /dev/null and b/images/software/switch_japansangi.jpg differ diff --git a/images/software/switch_yamanote.jpg b/images/software/switch_yamanote.jpg new file mode 100644 index 0000000..a834fe7 Binary files /dev/null and b/images/software/switch_yamanote.jpg differ diff --git a/images/software/wii_shinkansen.jpg b/images/software/wii_shinkansen.jpg new file mode 100644 index 0000000..98390c7 Binary files /dev/null and b/images/software/wii_shinkansen.jpg differ diff --git a/index.html b/index.html index fde6dbc..2c1f49d 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ -Densha de GO! controller documentation -

    Welcome!

    Here you will find a collection of technical information for the various controllers of the Densha de GO! series of games. The information has been gathered from my actual experience and the references mentioned on this site.

    + + + \ No newline at end of file diff --git a/index.xml b/index.xml index f7c19dc..41a807a 100644 --- a/index.xml +++ b/index.xml @@ -1,8 +1,8 @@ -Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/Recent content on Densha de GO! controller documentationHugo -- gohugo.ioen-usControllershttps://marcriera.github.io/ddgo-controller-docs/controllers/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/Software compatibility (WIP)https://marcriera.github.io/ddgo-controller-docs/compatibility/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/compatibility/The following table lists the compatibility between each controller (first row) and each software (first column). Additional software compatible with the controllers is also listed. The column for the Multi Train Controller (MTC) specifies the supported cassettes. Scroll to the right to see the full table. +Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/Recent content on Densha de GO! controller documentationHugo -- gohugo.ioen-usControllershttps://marcriera.github.io/ddgo-controller-docs/controllers/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/controllers/Controllers This section lists all the controllers compatible with software in the Densha de GO! series or other software. The controllers are grouped by type. You will also find technical details, if they are known.Main series softwarehttps://marcriera.github.io/ddgo-controller-docs/software/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/Main series software This section lists software from the main Densha de GO! series compatible with dedicated controllers. Software is grouped by platform and sorted by release date.Other softwarehttps://marcriera.github.io/ddgo-controller-docs/software_other/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/Other software This section lists other software compatible with dedicated controllers in some way. Software is grouped by platform and sorted by release date.Adapters and hackshttps://marcriera.github.io/ddgo-controller-docs/adapters/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/adapters/Adapters and hacks Besides official compatibility, it is possible to use unofficial adapters, tools and hacks to use controllers with software which does not normally support controllers.Compatibility charthttps://marcriera.github.io/ddgo-controller-docs/compatibility/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/compatibility/The following table lists the compatibility between each controller (first row) and each software (first column). Additional software compatible with the controllers is also listed. The column for the Multi Train Controller (MTC) specifies the supported cassettes. Scroll to the right to see the full table. Software Classic console controller DGOC-44 DGC-255 DGOC-44U DRC-184 DYC-288 TCPP-20009 -TCPP-20012 TCPP-20011 TCPP-20014 TCPP-20017 MTC ZKNS-001 OHC-PC01 Densha de GO!Adapters and hackshttps://marcriera.github.io/ddgo-controller-docs/adapters/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/adapters/Besides the official compatibility, it is possible to use unofficial adapters, tools and hacks to use controllers with games which is unsupported officially. -Converter tool by Autotraintas Autotraintas has created a tool that makes it possible to use nearly any Densha de GO! controller with the PC versions of the games. This includes the classic console controllers (USB adapter required) and the USB controllers for the PlayStation 2. The tool patches the game memory on the fly to reflect the input from the controller.Acknowledgementshttps://marcriera.github.io/ddgo-controller-docs/acknowledgements/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/acknowledgements/ GMMan, who has provided the internal details of the DGOC-44U and has conducted extensive research on the Densha de GO! Plug and Play. TheYamanote, who has helped with the TCPP-20009.Referenceshttps://marcriera.github.io/ddgo-controller-docs/references/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/references/ General information: http://autotraintas.hariko.com Microsoft Windows: http://zarala.g2.xrea.com/koneta/dengo/dengo_win.html Microsoft Windows: http://typematic.blog.shinobi.jp/%E3%83%97%E3%83%AC%E3%82%B9%E3%83%86%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%A9%E5%A4%89%E6%8F%9B%E5%99%A8/%E3%82%A2%E3%83%B3%E3%83%90%E3%83%A9%E3%83%B3%E3%82%B9%E3%81%AE%E9%9B%BB%E8%BB%8A%E3%81%A7go-%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%A9%E3%81%AE%E8%A7%A3%E6%9E%90 Nintendo 64: https://sites.google.com/site/consoleprotocols/home/nintendo-joy-bus-documentation/n64-specific/train-controller Sega Dreamcast: https://modelrail.otenko.com/arduino/arduino-dreamcast-densha-de-go-controller \ No newline at end of file +TCPP-20012 TCPP-20011 TCPP-20014 TCPP-20017 MTC ZKNS-001 OHC-PC01 Densha de GO! +(Microsoft Windows) Unofficial Yes Yes (1) No Unofficial Unofficial No No No Unofficial Yes Densha de GO! \ No newline at end of file diff --git a/references/index.html b/references/index.html index 363e4ea..222bc93 100644 --- a/references/index.html +++ b/references/index.html @@ -1,7 +1,7 @@ -References :: Densha de GO! controller documentation -
    + + + \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index 59f4ebb..c68f06a 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1 +1 @@ -https://marcriera.github.io/ddgo-controller-docs/controllers/classic/https://marcriera.github.io/ddgo-controller-docs/controllers/https://marcriera.github.io/ddgo-controller-docs/controllers/serial/https://marcriera.github.io/ddgo-controller-docs/compatibility/https://marcriera.github.io/ddgo-controller-docs/adapters/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/https://marcriera.github.io/ddgo-controller-docs/controllers/wii/https://marcriera.github.io/ddgo-controller-docs/controllers/standalone/https://marcriera.github.io/ddgo-controller-docs/acknowledgements/https://marcriera.github.io/ddgo-controller-docs/references/https://marcriera.github.io/ddgo-controller-docs/categories/https://marcriera.github.io/ddgo-controller-docs/tags/ \ No newline at end of file +https://marcriera.github.io/ddgo-controller-docs/software_other/pc/bve/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tech/https://marcriera.github.io/ddgo-controller-docs/controllers/https://marcriera.github.io/ddgo-controller-docs/adapters/autotraintas/https://marcriera.github.io/ddgo-controller-docs/software/pc/densha/https://marcriera.github.io/ddgo-controller-docs/software/ps1/densha/https://marcriera.github.io/ddgo-controller-docs/software/dc/densha2/https://marcriera.github.io/ddgo-controller-docs/software/ps2/densha3/https://marcriera.github.io/ddgo-controller-docs/software/n64/densha2/https://marcriera.github.io/ddgo-controller-docs/software/ss/densha/https://marcriera.github.io/ddgo-controller-docs/software/ps4/yamanote/https://marcriera.github.io/ddgo-controller-docs/software/switch/yamanote/https://marcriera.github.io/ddgo-controller-docs/controllers/standalone/pnp/https://marcriera.github.io/ddgo-controller-docs/software/wii/shinkansen/https://marcriera.github.io/ddgo-controller-docs/software_other/ps4/japankyoto/https://marcriera.github.io/ddgo-controller-docs/software_other/switch/japankyoto/https://marcriera.github.io/ddgo-controller-docs/controllers/wii/tcpp20017/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainyamanote/https://marcriera.github.io/ddgo-controller-docs/software/pc/densha2/https://marcriera.github.io/ddgo-controller-docs/software/ps1/densha2/https://marcriera.github.io/ddgo-controller-docs/software/ps2/shinkansen/https://marcriera.github.io/ddgo-controller-docs/controllers/gameport/https://marcriera.github.io/ddgo-controller-docs/adapters/plugins/https://marcriera.github.io/ddgo-controller-docs/software_other/switch/japansangi/https://marcriera.github.io/ddgo-controller-docs/software/https://marcriera.github.io/ddgo-controller-docs/software_other/pc/openbve/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeihin/https://marcriera.github.io/ddgo-controller-docs/software/pc/pro/https://marcriera.github.io/ddgo-controller-docs/software/ps1/pro/https://marcriera.github.io/ddgo-controller-docs/software/ps2/ryojouhen/https://marcriera.github.io/ddgo-controller-docs/software_other/switch/japanakechi/https://marcriera.github.io/ddgo-controller-docs/software_other/https://marcriera.github.io/ddgo-controller-docs/adapters/cheats/https://marcriera.github.io/ddgo-controller-docs/software_other/pc/traincrew/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainmidosuji/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/https://marcriera.github.io/ddgo-controller-docs/adapters/https://marcriera.github.io/ddgo-controller-docs/compatibility/https://marcriera.github.io/ddgo-controller-docs/software/pc/nagoya/https://marcriera.github.io/ddgo-controller-docs/software/ps1/nagoya/https://marcriera.github.io/ddgo-controller-docs/software/ps2/pro2/https://marcriera.github.io/ddgo-controller-docs/controllers/wii/https://marcriera.github.io/ddgo-controller-docs/adapters/titan/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/traindensha/https://marcriera.github.io/ddgo-controller-docs/software/ps2/final/https://marcriera.github.io/ddgo-controller-docs/software/pc/kisha/https://marcriera.github.io/ddgo-controller-docs/software/ps1/kisha/https://marcriera.github.io/ddgo-controller-docs/controllers/standalone/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainshinkansen/https://marcriera.github.io/ddgo-controller-docs/software/pc/densha3/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeitokei/https://marcriera.github.io/ddgo-controller-docs/software/pc/shinkansen/https://marcriera.github.io/ddgo-controller-docs/software/pc/ryojouhen/https://marcriera.github.io/ddgo-controller-docs/software/pc/pro2/https://marcriera.github.io/ddgo-controller-docs/software/pc/final/https://marcriera.github.io/ddgo-controller-docs/categories/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20002/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/sotp031201/https://marcriera.github.io/ddgo-controller-docs/software/n64/https://marcriera.github.io/ddgo-controller-docs/software/switch/https://marcriera.github.io/ddgo-controller-docs/software_other/switch/https://marcriera.github.io/ddgo-controller-docs/software/wii/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/zkns001/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgc255/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20001/https://marcriera.github.io/ddgo-controller-docs/software/pc/https://marcriera.github.io/ddgo-controller-docs/software_other/pc/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dyc288/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20014/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/ohcpc01/https://marcriera.github.io/ddgo-controller-docs/software/dc/https://marcriera.github.io/ddgo-controller-docs/software/ss/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20011/https://marcriera.github.io/ddgo-controller-docs/software/ps1/https://marcriera.github.io/ddgo-controller-docs/software/ps2/https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/https://marcriera.github.io/ddgo-controller-docs/software/ps4/https://marcriera.github.io/ddgo-controller-docs/software_other/ps4/https://marcriera.github.io/ddgo-controller-docs/tags/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/cotm02001/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/tcpp20009/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20003/https://marcriera.github.io/ddgo-controller-docs/controllers/usb/dgoc44u/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tcpp20004/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/tc5175290/https://marcriera.github.io/ddgo-controller-docs/controllers/classic/slph00051/https://marcriera.github.io/ddgo-controller-docs/controllers/gameport/dgoc44/ \ No newline at end of file diff --git a/software/dc/densha2/index.html b/software/dc/densha2/index.html new file mode 100644 index 0000000..3f9b1b7 --- /dev/null +++ b/software/dc/densha2/index.html @@ -0,0 +1,8 @@ +Densha de GO! 2 Kōsoku-hen 3000 Bandai :: Densha de GO! controller documentation +

    Densha de GO! 2 Kōsoku-hen 3000 Bandai

    Overview

    NameDensha de GO! 2 Kōsoku-hen 3000 Bandai
    Japanese name電車でGO!2高速編3000番台
    Release dateJanuary 20, 2000
    Serial codeT-1102M
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (Sega Dreamcast)Native
    + + + \ No newline at end of file diff --git a/software/dc/densha2/index.xml b/software/dc/densha2/index.xml new file mode 100644 index 0000000..0ae013b --- /dev/null +++ b/software/dc/densha2/index.xml @@ -0,0 +1 @@ +Densha de GO! 2 Kōsoku-hen 3000 Bandai on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/dc/densha2/Recent content in Densha de GO! 2 Kōsoku-hen 3000 Bandai on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/dc/index.html b/software/dc/index.html new file mode 100644 index 0000000..f77b6a3 --- /dev/null +++ b/software/dc/index.html @@ -0,0 +1,7 @@ +Sega Dreamcast :: Densha de GO! controller documentation +

    Sega Dreamcast

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/dc/index.xml b/software/dc/index.xml new file mode 100644 index 0000000..62b5b0d --- /dev/null +++ b/software/dc/index.xml @@ -0,0 +1 @@ +Sega Dreamcast on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/dc/Recent content in Sega Dreamcast on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! 2 Kōsoku-hen 3000 Bandaihttps://marcriera.github.io/ddgo-controller-docs/software/dc/densha2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/dc/densha2/Overview Name Densha de GO! 2 Kōsoku-hen 3000 Bandai Japanese name 電車でGO!2高速編3000番台 Release date January 20, 2000 Serial code T-1102M Notes Supported controllers Model Support Notes Two handle controller (Sega Dreamcast) Native \ No newline at end of file diff --git a/software/index.html b/software/index.html new file mode 100644 index 0000000..46b3f5c --- /dev/null +++ b/software/index.html @@ -0,0 +1,7 @@ +Main series software :: Densha de GO! controller documentation +

    Main series software

    This section lists software from the main Densha de GO! series compatible with dedicated controllers. Software is grouped by platform and sorted by release date.

    + + + \ No newline at end of file diff --git a/software/index.xml b/software/index.xml new file mode 100644 index 0000000..87c9f0d --- /dev/null +++ b/software/index.xml @@ -0,0 +1 @@ +Main series software on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/Recent content in Main series software on Densha de GO! controller documentationHugo -- gohugo.ioen-usNintendo 64https://marcriera.github.io/ddgo-controller-docs/software/n64/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/n64/Select a software from the menu on the left to view its details and controller compatibility.Nintendo Switchhttps://marcriera.github.io/ddgo-controller-docs/software/switch/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/switch/Select a software from the menu on the left to view its details and controller compatibility.Nintendo Wiihttps://marcriera.github.io/ddgo-controller-docs/software/wii/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/wii/Select a software from the menu on the left to view its details and controller compatibility.PChttps://marcriera.github.io/ddgo-controller-docs/software/pc/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/Select a software from the menu on the left to view its details and controller compatibility.Sega Dreamcasthttps://marcriera.github.io/ddgo-controller-docs/software/dc/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/dc/Select a software from the menu on the left to view its details and controller compatibility.Sega Saturnhttps://marcriera.github.io/ddgo-controller-docs/software/ss/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ss/Select a software from the menu on the left to view its details and controller compatibility.Sony PlayStationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps1/Select a software from the menu on the left to view its details and controller compatibility.Sony PlayStation 2https://marcriera.github.io/ddgo-controller-docs/software/ps2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps2/Select a software from the menu on the left to view its details and controller compatibility.Sony PlayStation 4https://marcriera.github.io/ddgo-controller-docs/software/ps4/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps4/Select a software from the menu on the left to view its details and controller compatibility. \ No newline at end of file diff --git a/software/n64/densha2/index.html b/software/n64/densha2/index.html new file mode 100644 index 0000000..60a403a --- /dev/null +++ b/software/n64/densha2/index.html @@ -0,0 +1,8 @@ +Densha de GO! 64 :: Densha de GO! controller documentation +

    Densha de GO! 64

    Overview

    NameDensha de GO! 64
    Japanese name電車でGO!64
    Release dateJuly 23, 1999
    Serial codeNUS-ND6J-JPN
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (Nintendo 64)NativeConnect standard controller to P1 and train controller to P3.
    + + + \ No newline at end of file diff --git a/software/n64/densha2/index.xml b/software/n64/densha2/index.xml new file mode 100644 index 0000000..3e3e582 --- /dev/null +++ b/software/n64/densha2/index.xml @@ -0,0 +1 @@ +Densha de GO! 64 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/n64/densha2/Recent content in Densha de GO! 64 on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/n64/index.html b/software/n64/index.html new file mode 100644 index 0000000..e9412e0 --- /dev/null +++ b/software/n64/index.html @@ -0,0 +1,7 @@ +Nintendo 64 :: Densha de GO! controller documentation +

    Nintendo 64

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/n64/index.xml b/software/n64/index.xml new file mode 100644 index 0000000..0cbda00 --- /dev/null +++ b/software/n64/index.xml @@ -0,0 +1 @@ +Nintendo 64 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/n64/Recent content in Nintendo 64 on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! 64https://marcriera.github.io/ddgo-controller-docs/software/n64/densha2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/n64/densha2/Overview Name Densha de GO! 64 Japanese name 電車でGO!64 Release date July 23, 1999 Serial code NUS-ND6J-JPN Notes Supported controllers Model Support Notes Two handle controller (Nintendo 64) Native Connect standard controller to P1 and train controller to P3. \ No newline at end of file diff --git a/software/pc/densha/index.html b/software/pc/densha/index.html new file mode 100644 index 0000000..80a9457 --- /dev/null +++ b/software/pc/densha/index.html @@ -0,0 +1,8 @@ +Densha de GO! :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/densha/index.xml b/software/pc/densha/index.xml new file mode 100644 index 0000000..9c43ca2 --- /dev/null +++ b/software/pc/densha/index.xml @@ -0,0 +1 @@ +Densha de GO! on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/densha/Recent content in Densha de GO! on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/densha2/index.html b/software/pc/densha2/index.html new file mode 100644 index 0000000..bd0da76 --- /dev/null +++ b/software/pc/densha2/index.html @@ -0,0 +1,8 @@ +Densha de GO! 2 :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/densha2/index.xml b/software/pc/densha2/index.xml new file mode 100644 index 0000000..21008f3 --- /dev/null +++ b/software/pc/densha2/index.xml @@ -0,0 +1 @@ +Densha de GO! 2 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/densha2/Recent content in Densha de GO! 2 on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/densha3/index.html b/software/pc/densha3/index.html new file mode 100644 index 0000000..4dd3cdd --- /dev/null +++ b/software/pc/densha3/index.html @@ -0,0 +1,8 @@ +Densha de GO! 3 Tsūkin-hen :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/densha3/index.xml b/software/pc/densha3/index.xml new file mode 100644 index 0000000..110c6f2 --- /dev/null +++ b/software/pc/densha3/index.xml @@ -0,0 +1 @@ +Densha de GO! 3 Tsūkin-hen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/densha3/Recent content in Densha de GO! 3 Tsūkin-hen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/final/index.html b/software/pc/final/index.html new file mode 100644 index 0000000..c2f556f --- /dev/null +++ b/software/pc/final/index.html @@ -0,0 +1,8 @@ +Densha de GO! Final :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/final/index.xml b/software/pc/final/index.xml new file mode 100644 index 0000000..5fd7732 --- /dev/null +++ b/software/pc/final/index.xml @@ -0,0 +1 @@ +Densha de GO! Final on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/final/Recent content in Densha de GO! Final on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/index.html b/software/pc/index.html new file mode 100644 index 0000000..c63dd43 --- /dev/null +++ b/software/pc/index.html @@ -0,0 +1,7 @@ +PC :: Densha de GO! controller documentation +

    PC

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/pc/index.xml b/software/pc/index.xml new file mode 100644 index 0000000..cd62dde --- /dev/null +++ b/software/pc/index.xml @@ -0,0 +1 @@ +PC on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/Recent content in PC on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO!https://marcriera.github.io/ddgo-controller-docs/software/pc/densha/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/densha/Overview Name Densha de GO! Japanese name 電車でGO! Release date April 23, 1999 Notes Supported controllers Model Support Notes One handle controller (PC) Native Only republished version. Two handle controller (PC) Native Only republished version. Two handle controller, game port (PC) NativeDensha de GO! 2https://marcriera.github.io/ddgo-controller-docs/software/pc/densha2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/densha2/Overview Name Densha de GO! 2 Kōsoku-hen Japanese name 電車でGO!2高速編 Release date March 18, 1999 Notes Supported controllers Model Support Notes One handle controller (PC) Native Only republished version. Two handle controller (PC) Native Only republished version. Two handle controller, game port (PC) NativeDensha de GO! Professionalhttps://marcriera.github.io/ddgo-controller-docs/software/pc/pro/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/pro/Overview Name Densha de GO! Professional Japanese name 電車でGO!プロフェッショナル仕様 Release date June 15, 2001 Notes Supported controllers Model Support Notes One handle controller (PC) Native Two handle controller (PC) Native Two handle controller, game port (PC) NativeDensha de GO! Nagoya Tetsudōhenhttps://marcriera.github.io/ddgo-controller-docs/software/pc/nagoya/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/nagoya/Overview Name Densha de GO! Nagoya Tetsudō-hen Japanese name 電車でGO!名古屋鉄道編 Release date December 1, 2000 Notes Supported controllers Model Support Notes One handle controller (PC) Native Only republished version. Two handle controller (PC) Native Only republished version. Two handle controller, game port (PC) NativeKisha de GO!https://marcriera.github.io/ddgo-controller-docs/software/pc/kisha/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/kisha/Overview Name Kisha de GO! Japanese name 汽車でGO! Release date February 9, 2001 Notes Supported controllers Model Support Notes One handle controller (PC) Native Only republished version. Two handle controller (PC) Native Only republished version. Two handle controller, game port (PC) NativeDensha de GO! 3 Tsūkin-henhttps://marcriera.github.io/ddgo-controller-docs/software/pc/densha3/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/densha3/Overview Name Densha de GO! 3 Tsūkin-hen Daiya Kaisei Japanese name 電車でGO!3通勤編 ダイヤ改正 Release date March 21, 2002 Notes Supported controllers Model Support Notes One handle controller (PC) Native Two handle controller (PC) Native Two handle controller, game port (PC) NativeDensha de GO! Shinkansen San'yō Shinkansen-henhttps://marcriera.github.io/ddgo-controller-docs/software/pc/shinkansen/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/shinkansen/Overview Name Densha de GO! Shinkansen San'yō Shinkansen-hen Japanese name 電車でGO!新幹線 山陽新幹線編 Release date December 13, 2002 Notes Supported controllers Model Support Notes One handle controller (PC) Native Two handle controller (PC) Native Two handle controller, game port (PC) NativeDensha de GO! Ryojōhenhttps://marcriera.github.io/ddgo-controller-docs/software/pc/ryojouhen/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/ryojouhen/Overview Name Densha de GO! Ryojōhen Japanese name 電車でGO!旅情編 Release date June 5, 2003 Notes Supported controllers Model Support Notes One handle controller (PC) Native Ryojōhen controller (PC) Native Two handle controller (PC) NativeDensha de GO! Professional 2https://marcriera.github.io/ddgo-controller-docs/software/pc/pro2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/pro2/Overview Name Densha de GO! Professional 2 Japanese name 電車でGO!プロフェッショナル2 Release date April 30, 2003 Notes Supported controllers Model Support Notes One handle controller (PC) Native Ryojōhen controller (PC) Native Two handle controller (PC) NativeDensha de GO! Finalhttps://marcriera.github.io/ddgo-controller-docs/software/pc/final/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/pc/final/Overview Name Densha de GO! Final Japanese name 電車でGO! FINAL Release date December 17, 2004 Notes Supported controllers Model Support Notes One handle controller (PC) Native Ryojōhen controller (PC) Native Two handle controller (PC) Native \ No newline at end of file diff --git a/software/pc/kisha/index.html b/software/pc/kisha/index.html new file mode 100644 index 0000000..4d39be4 --- /dev/null +++ b/software/pc/kisha/index.html @@ -0,0 +1,8 @@ +Kisha de GO! :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/kisha/index.xml b/software/pc/kisha/index.xml new file mode 100644 index 0000000..c325ddf --- /dev/null +++ b/software/pc/kisha/index.xml @@ -0,0 +1 @@ +Kisha de GO! on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/kisha/Recent content in Kisha de GO! on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/nagoya/index.html b/software/pc/nagoya/index.html new file mode 100644 index 0000000..2a55bbc --- /dev/null +++ b/software/pc/nagoya/index.html @@ -0,0 +1,8 @@ +Densha de GO! Nagoya Tetsudōhen :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/nagoya/index.xml b/software/pc/nagoya/index.xml new file mode 100644 index 0000000..8f20665 --- /dev/null +++ b/software/pc/nagoya/index.xml @@ -0,0 +1 @@ +Densha de GO! Nagoya Tetsudōhen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/nagoya/Recent content in Densha de GO! Nagoya Tetsudōhen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/pro/index.html b/software/pc/pro/index.html new file mode 100644 index 0000000..784147a --- /dev/null +++ b/software/pc/pro/index.html @@ -0,0 +1,8 @@ +Densha de GO! Professional :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/pro/index.xml b/software/pc/pro/index.xml new file mode 100644 index 0000000..f539a07 --- /dev/null +++ b/software/pc/pro/index.xml @@ -0,0 +1 @@ +Densha de GO! Professional on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/pro/Recent content in Densha de GO! Professional on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/pro2/index.html b/software/pc/pro2/index.html new file mode 100644 index 0000000..d3b11eb --- /dev/null +++ b/software/pc/pro2/index.html @@ -0,0 +1,8 @@ +Densha de GO! Professional 2 :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/pro2/index.xml b/software/pc/pro2/index.xml new file mode 100644 index 0000000..2614978 --- /dev/null +++ b/software/pc/pro2/index.xml @@ -0,0 +1 @@ +Densha de GO! Professional 2 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/pro2/Recent content in Densha de GO! Professional 2 on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/ryojouhen/index.html b/software/pc/ryojouhen/index.html new file mode 100644 index 0000000..98a4381 --- /dev/null +++ b/software/pc/ryojouhen/index.html @@ -0,0 +1,8 @@ +Densha de GO! Ryojōhen :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/ryojouhen/index.xml b/software/pc/ryojouhen/index.xml new file mode 100644 index 0000000..4b2122c --- /dev/null +++ b/software/pc/ryojouhen/index.xml @@ -0,0 +1 @@ +Densha de GO! Ryojōhen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/ryojouhen/Recent content in Densha de GO! Ryojōhen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/pc/shinkansen/index.html b/software/pc/shinkansen/index.html new file mode 100644 index 0000000..e76807c --- /dev/null +++ b/software/pc/shinkansen/index.html @@ -0,0 +1,8 @@ +Densha de GO! Shinkansen San'yō Shinkansen-hen :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/pc/shinkansen/index.xml b/software/pc/shinkansen/index.xml new file mode 100644 index 0000000..c102bd3 --- /dev/null +++ b/software/pc/shinkansen/index.xml @@ -0,0 +1 @@ +Densha de GO! Shinkansen San'yō Shinkansen-hen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/pc/shinkansen/Recent content in Densha de GO! Shinkansen San'yō Shinkansen-hen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps1/densha/index.html b/software/ps1/densha/index.html new file mode 100644 index 0000000..6fdcaf1 --- /dev/null +++ b/software/ps1/densha/index.html @@ -0,0 +1,8 @@ +Densha de GO! :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps1/densha/index.xml b/software/ps1/densha/index.xml new file mode 100644 index 0000000..76006fc --- /dev/null +++ b/software/ps1/densha/index.xml @@ -0,0 +1 @@ +Densha de GO! on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/densha/Recent content in Densha de GO! on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps1/densha2/index.html b/software/ps1/densha2/index.html new file mode 100644 index 0000000..83688aa --- /dev/null +++ b/software/ps1/densha2/index.html @@ -0,0 +1,8 @@ +Densha de GO! 2 :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps1/densha2/index.xml b/software/ps1/densha2/index.xml new file mode 100644 index 0000000..0293906 --- /dev/null +++ b/software/ps1/densha2/index.xml @@ -0,0 +1 @@ +Densha de GO! 2 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/densha2/Recent content in Densha de GO! 2 on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps1/index.html b/software/ps1/index.html new file mode 100644 index 0000000..f9c139a --- /dev/null +++ b/software/ps1/index.html @@ -0,0 +1,7 @@ +Sony PlayStation :: Densha de GO! controller documentation +

    Sony PlayStation

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/ps1/index.xml b/software/ps1/index.xml new file mode 100644 index 0000000..8cc66a4 --- /dev/null +++ b/software/ps1/index.xml @@ -0,0 +1 @@ +Sony PlayStation on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/Recent content in Sony PlayStation on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO!https://marcriera.github.io/ddgo-controller-docs/software/ps1/densha/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps1/densha/Overview Name Densha de GO! Japanese name 電車でGO! Release date December 18, 1997 Serial code SCPS-45166 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native One handle controller (Sony PlayStation) Native Two handle controller (Sony PlayStation) NativeDensha de GO! 2https://marcriera.github.io/ddgo-controller-docs/software/ps1/densha2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps1/densha2/Overview Name Densha de GO! 2 Kōsoku-hen Japanese name 電車でGO!2高速編 Release date March 18, 1999 Serial code SLPM-86142 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native One handle controller (Sony PlayStation) Native Two handle controller (Sony PlayStation) NativeDensha de GO! Professionalhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/pro/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps1/pro/Overview Name Densha de GO! Professional Japanese name 電車でGO!プロフェッショナル仕様 Release date December 9, 1999 Serial code SLPM-86378 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native One handle controller (Sony PlayStation) Native Two handle controller (Sony PlayStation) NativeDensha de GO! Nagoya Tetsudōhenhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/nagoya/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps1/nagoya/Overview Name Densha de GO! Nagoya Tetsudō-hen Japanese name 電車でGO!名古屋鉄道編 Release date January 27, 2000 Serial code SLPM-86424 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native One handle controller (Sony PlayStation) Native Two handle controller (Sony PlayStation) NativeKisha de GO!https://marcriera.github.io/ddgo-controller-docs/software/ps1/kisha/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps1/kisha/Overview Name Kisha de GO! Japanese name 汽車でGO! Release date March 23, 2000 Serial code SLPM-86449 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native One handle controller (Sony PlayStation) Native Two handle controller (Sony PlayStation) Native \ No newline at end of file diff --git a/software/ps1/kisha/index.html b/software/ps1/kisha/index.html new file mode 100644 index 0000000..afd49df --- /dev/null +++ b/software/ps1/kisha/index.html @@ -0,0 +1,8 @@ +Kisha de GO! :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps1/kisha/index.xml b/software/ps1/kisha/index.xml new file mode 100644 index 0000000..b54de00 --- /dev/null +++ b/software/ps1/kisha/index.xml @@ -0,0 +1 @@ +Kisha de GO! on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/kisha/Recent content in Kisha de GO! on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps1/nagoya/index.html b/software/ps1/nagoya/index.html new file mode 100644 index 0000000..9847133 --- /dev/null +++ b/software/ps1/nagoya/index.html @@ -0,0 +1,8 @@ +Densha de GO! Nagoya Tetsudōhen :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps1/nagoya/index.xml b/software/ps1/nagoya/index.xml new file mode 100644 index 0000000..3f67e6f --- /dev/null +++ b/software/ps1/nagoya/index.xml @@ -0,0 +1 @@ +Densha de GO! Nagoya Tetsudōhen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/nagoya/Recent content in Densha de GO! Nagoya Tetsudōhen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps1/pro/index.html b/software/ps1/pro/index.html new file mode 100644 index 0000000..b243562 --- /dev/null +++ b/software/ps1/pro/index.html @@ -0,0 +1,8 @@ +Densha de GO! Professional :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps1/pro/index.xml b/software/ps1/pro/index.xml new file mode 100644 index 0000000..e9d860e --- /dev/null +++ b/software/ps1/pro/index.xml @@ -0,0 +1 @@ +Densha de GO! Professional on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps1/pro/Recent content in Densha de GO! Professional on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps2/densha3/index.html b/software/ps2/densha3/index.html new file mode 100644 index 0000000..f3f2846 --- /dev/null +++ b/software/ps2/densha3/index.html @@ -0,0 +1,8 @@ +Densha de GO! 3 Tsūkin-hen :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps2/densha3/index.xml b/software/ps2/densha3/index.xml new file mode 100644 index 0000000..9b4efd1 --- /dev/null +++ b/software/ps2/densha3/index.xml @@ -0,0 +1 @@ +Densha de GO! 3 Tsūkin-hen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/densha3/Recent content in Densha de GO! 3 Tsūkin-hen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps2/final/index.html b/software/ps2/final/index.html new file mode 100644 index 0000000..c287596 --- /dev/null +++ b/software/ps2/final/index.html @@ -0,0 +1,8 @@ +Densha de GO! Final :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software/ps2/final/index.xml b/software/ps2/final/index.xml new file mode 100644 index 0000000..704d4c1 --- /dev/null +++ b/software/ps2/final/index.xml @@ -0,0 +1 @@ +Densha de GO! Final on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/final/Recent content in Densha de GO! Final on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps2/index.html b/software/ps2/index.html new file mode 100644 index 0000000..23e7fad --- /dev/null +++ b/software/ps2/index.html @@ -0,0 +1,7 @@ +Sony PlayStation 2 :: Densha de GO! controller documentation +

    Sony PlayStation 2

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/ps2/index.xml b/software/ps2/index.xml new file mode 100644 index 0000000..94fe73f --- /dev/null +++ b/software/ps2/index.xml @@ -0,0 +1 @@ +Sony PlayStation 2 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/Recent content in Sony PlayStation 2 on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! 3 Tsūkin-henhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/densha3/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps2/densha3/Overview Name Densha de GO! 3 Tsūkin-hen Japanese name 電車でGO!3通勤編 Release date March 15, 2001 Serial code SLPM-62049 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native Multi Train Controller (Sony PlayStation 2) Native P5/B8 cassette. One handle controller (Sony PlayStation) Native Two handle controller (Sony PlayStation) Native Two handle controller "Type 2" (Sony PlayStation 2) NativeDensha de GO! Shinkansen San'yō Shinkansen-henhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/shinkansen/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps2/shinkansen/Overview Name Densha de GO! Shinkansen San'yō Shinkansen-hen Japanese name 電車でGO!新幹線 山陽新幹線編 Release date September 20, 2001 Serial code SLPM-65039 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native Multi Train Controller (Sony PlayStation 2) Native P5/B8 cassette. One handle controller (Sony PlayStation) Native Shinkansen controller (Sony PlayStation 2) Native Two handle controller (Sony PlayStation) Native Two handle controller "Type 2" (Sony PlayStation 2) NativeDensha de GO! Ryojōhenhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/ryojouhen/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps2/ryojouhen/Overview Name Densha de GO! Ryojōhen Japanese name 電車でGO!旅情編 Release date July 25, 2002 Serial code SLPM-65148 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Unofficial Requires use of cheat codes. Multi Train Controller (Sony PlayStation 2) Native P5/B8 cassette. One handle controller (Sony PlayStation) Unofficial Requires use of cheat codes. Ryojōhen controller (Sony PlayStation 2) Native Shinkansen controller (Sony PlayStation 2) Native Two handle controller (Sony PlayStation) Unofficial Requires use of cheat codes.Densha de GO! Professional 2https://marcriera.github.io/ddgo-controller-docs/software/ps2/pro2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps2/pro2/Overview Name Densha de GO! Professional 2 Japanese name 電車でGO!プロフェッショナル2 Release date February 27, 2003 Serial code SLPM-65243 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Unofficial Requires use of cheat codes. Multi Train Controller (Sony PlayStation 2) Native P5/B8 cassette. One handle controller (Sony PlayStation) Unofficial Requires use of cheat codes. Ryojōhen controller (Sony PlayStation 2) Native Shinkansen controller (Sony PlayStation 2) Native Two handle controller (Sony PlayStation) Unofficial Requires use of cheat codes.Densha de GO! Finalhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/final/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps2/final/Overview Name Densha de GO! Final Japanese name 電車でGO! FINAL Release date May 27, 2004 Serial code SLPM-65590 Notes Supported controllers Model Support Notes Mamecon (Sony PlayStation) Unofficial Requires use of cheat codes. Multi Train Controller (Sony PlayStation 2) Native P5/B8 cassette. One handle controller (Sony PlayStation) Unofficial Requires use of cheat codes. Ryojōhen controller (Sony PlayStation 2) Native Shinkansen controller (Sony PlayStation 2) Native Two handle controller (Sony PlayStation) Unofficial Requires use of cheat codes. \ No newline at end of file diff --git a/software/ps2/pro2/index.html b/software/ps2/pro2/index.html new file mode 100644 index 0000000..77e781f --- /dev/null +++ b/software/ps2/pro2/index.html @@ -0,0 +1,8 @@ +Densha de GO! Professional 2 :: Densha de GO! controller documentation +

    Densha de GO! Professional 2

    Overview

    NameDensha de GO! Professional 2
    Japanese name電車でGO!プロフェッショナル2
    Release dateFebruary 27, 2003
    Serial codeSLPM-65243
    Notes

    Supported controllers

    ModelSupportNotes
    Mamecon (Sony PlayStation)UnofficialRequires use of cheat codes.
    Multi Train Controller (Sony PlayStation 2)NativeP5/B8 cassette.
    One handle controller (Sony PlayStation)UnofficialRequires use of cheat codes.
    Ryojōhen controller (Sony PlayStation 2)Native
    Shinkansen controller (Sony PlayStation 2)Native
    Two handle controller (Sony PlayStation)UnofficialRequires use of cheat codes.
    Two handle controller "Type 2" (Sony PlayStation 2)Native
    + + + \ No newline at end of file diff --git a/software/ps2/pro2/index.xml b/software/ps2/pro2/index.xml new file mode 100644 index 0000000..c564898 --- /dev/null +++ b/software/ps2/pro2/index.xml @@ -0,0 +1 @@ +Densha de GO! Professional 2 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/pro2/Recent content in Densha de GO! Professional 2 on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps2/ryojouhen/index.html b/software/ps2/ryojouhen/index.html new file mode 100644 index 0000000..dd82e31 --- /dev/null +++ b/software/ps2/ryojouhen/index.html @@ -0,0 +1,8 @@ +Densha de GO! Ryojōhen :: Densha de GO! controller documentation +

    Densha de GO! Ryojōhen

    Overview

    NameDensha de GO! Ryojōhen
    Japanese name電車でGO!旅情編
    Release dateJuly 25, 2002
    Serial codeSLPM-65148
    Notes

    Supported controllers

    ModelSupportNotes
    Mamecon (Sony PlayStation)UnofficialRequires use of cheat codes.
    Multi Train Controller (Sony PlayStation 2)NativeP5/B8 cassette.
    One handle controller (Sony PlayStation)UnofficialRequires use of cheat codes.
    Ryojōhen controller (Sony PlayStation 2)Native
    Shinkansen controller (Sony PlayStation 2)Native
    Two handle controller (Sony PlayStation)UnofficialRequires use of cheat codes.
    Two handle controller "Type 2" (Sony PlayStation 2)Native
    + + + \ No newline at end of file diff --git a/software/ps2/ryojouhen/index.xml b/software/ps2/ryojouhen/index.xml new file mode 100644 index 0000000..3eb540b --- /dev/null +++ b/software/ps2/ryojouhen/index.xml @@ -0,0 +1 @@ +Densha de GO! Ryojōhen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/ryojouhen/Recent content in Densha de GO! Ryojōhen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps2/shinkansen/index.html b/software/ps2/shinkansen/index.html new file mode 100644 index 0000000..bef2676 --- /dev/null +++ b/software/ps2/shinkansen/index.html @@ -0,0 +1,8 @@ +Densha de GO! Shinkansen San'yō Shinkansen-hen :: Densha de GO! controller documentation +

    Densha de GO! Shinkansen San'yō Shinkansen-hen

    Overview

    NameDensha de GO! Shinkansen San'yō Shinkansen-hen
    Japanese name電車でGO!新幹線 山陽新幹線編
    Release dateSeptember 20, 2001
    Serial codeSLPM-65039
    Notes

    Supported controllers

    ModelSupportNotes
    Mamecon (Sony PlayStation)Native
    Multi Train Controller (Sony PlayStation 2)NativeP5/B8 cassette.
    One handle controller (Sony PlayStation)Native
    Shinkansen controller (Sony PlayStation 2)Native
    Two handle controller (Sony PlayStation)Native
    Two handle controller "Type 2" (Sony PlayStation 2)Native
    + + + \ No newline at end of file diff --git a/software/ps2/shinkansen/index.xml b/software/ps2/shinkansen/index.xml new file mode 100644 index 0000000..ac6feda --- /dev/null +++ b/software/ps2/shinkansen/index.xml @@ -0,0 +1 @@ +Densha de GO! Shinkansen San'yō Shinkansen-hen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps2/shinkansen/Recent content in Densha de GO! Shinkansen San'yō Shinkansen-hen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ps4/index.html b/software/ps4/index.html new file mode 100644 index 0000000..8a1ed54 --- /dev/null +++ b/software/ps4/index.html @@ -0,0 +1,7 @@ +Sony PlayStation 4 :: Densha de GO! controller documentation +

    Sony PlayStation 4

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/ps4/index.xml b/software/ps4/index.xml new file mode 100644 index 0000000..bb715fe --- /dev/null +++ b/software/ps4/index.xml @@ -0,0 +1 @@ +Sony PlayStation 4 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps4/Recent content in Sony PlayStation 4 on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! Hashirō Yamanote‑senhttps://marcriera.github.io/ddgo-controller-docs/software/ps4/yamanote/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ps4/yamanote/Overview Name Densha de GO! Hashirō Yamanote‑sen Japanese name 電車でGO!! はしろう山手線 Release date December 3, 2020 Serial code PLJM-16643 Notes Supported controllers Model Support Notes Two handle controller (PC) Unofficial Requires use of Titan One/Two device. One handle controller (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Mamecon (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Two handle controller (Sony PlayStation) Unofficial Requires USB adapter. \ No newline at end of file diff --git a/software/ps4/yamanote/index.html b/software/ps4/yamanote/index.html new file mode 100644 index 0000000..42e817e --- /dev/null +++ b/software/ps4/yamanote/index.html @@ -0,0 +1,8 @@ +Densha de GO! Hashirō Yamanote‑sen :: Densha de GO! controller documentation +

    Densha de GO! Hashirō Yamanote‑sen

    Overview

    NameDensha de GO! Hashirō Yamanote‑sen
    Japanese name電車でGO!! はしろう山手線
    Release dateDecember 3, 2020
    Serial codePLJM-16643
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (PC)UnofficialRequires use of Titan One/Two device.
    One handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Mamecon (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Two handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    One handle controller (Nintendo Switch)UnofficialRequires use of Titan One/Two device.
    Sangying one handle controller (PC)UnofficialRequires use of Titan One/Two device.
    + + + \ No newline at end of file diff --git a/software/ps4/yamanote/index.xml b/software/ps4/yamanote/index.xml new file mode 100644 index 0000000..3cccaf0 --- /dev/null +++ b/software/ps4/yamanote/index.xml @@ -0,0 +1 @@ +Densha de GO! Hashirō Yamanote‑sen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ps4/yamanote/Recent content in Densha de GO! Hashirō Yamanote‑sen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ss/densha/index.html b/software/ss/densha/index.html new file mode 100644 index 0000000..652bbed --- /dev/null +++ b/software/ss/densha/index.html @@ -0,0 +1,8 @@ +Densha de GO! EX :: Densha de GO! controller documentation +

    Densha de GO! EX

    Overview

    NameDensha de GO! EX
    Japanese name電車でGO!EX
    Release dateOctober 1, 1998
    Serial codeT-10317G
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (Sega Saturn)NativeSelect controller on game startup.
    + + + \ No newline at end of file diff --git a/software/ss/densha/index.xml b/software/ss/densha/index.xml new file mode 100644 index 0000000..16b4efe --- /dev/null +++ b/software/ss/densha/index.xml @@ -0,0 +1 @@ +Densha de GO! EX on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ss/densha/Recent content in Densha de GO! EX on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/ss/index.html b/software/ss/index.html new file mode 100644 index 0000000..81e7ecc --- /dev/null +++ b/software/ss/index.html @@ -0,0 +1,7 @@ +Sega Saturn :: Densha de GO! controller documentation +

    Sega Saturn

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/ss/index.xml b/software/ss/index.xml new file mode 100644 index 0000000..779e21d --- /dev/null +++ b/software/ss/index.xml @@ -0,0 +1 @@ +Sega Saturn on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/ss/Recent content in Sega Saturn on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! EXhttps://marcriera.github.io/ddgo-controller-docs/software/ss/densha/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/ss/densha/Overview Name Densha de GO! EX Japanese name 電車でGO!EX Release date October 1, 1998 Serial code T-10317G Notes Supported controllers Model Support Notes Two handle controller (Sega Saturn) Native Select controller on game startup. \ No newline at end of file diff --git a/software/switch/index.html b/software/switch/index.html new file mode 100644 index 0000000..58ae0b6 --- /dev/null +++ b/software/switch/index.html @@ -0,0 +1,7 @@ +Nintendo Switch :: Densha de GO! controller documentation +

    Nintendo Switch

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/switch/index.xml b/software/switch/index.xml new file mode 100644 index 0000000..ae35b81 --- /dev/null +++ b/software/switch/index.xml @@ -0,0 +1 @@ +Nintendo Switch on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/switch/Recent content in Nintendo Switch on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! Hashirō Yamanote‑senhttps://marcriera.github.io/ddgo-controller-docs/software/switch/yamanote/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/switch/yamanote/Overview Name Densha de GO! Hashirō Yamanote‑sen Japanese name 電車でGO!! はしろう山手線 Release date March 18, 2021 Serial code HAC-P-A2BGA Notes Supported controllers Model Support Notes Two handle controller (PC) Unofficial Requires use of Titan One/Two device. One handle controller (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Mamecon (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Two handle controller (Sony PlayStation) Unofficial Requires USB adapter. \ No newline at end of file diff --git a/software/switch/yamanote/index.html b/software/switch/yamanote/index.html new file mode 100644 index 0000000..5e87e76 --- /dev/null +++ b/software/switch/yamanote/index.html @@ -0,0 +1,8 @@ +Densha de GO! Hashirō Yamanote‑sen :: Densha de GO! controller documentation +

    Densha de GO! Hashirō Yamanote‑sen

    Overview

    NameDensha de GO! Hashirō Yamanote‑sen
    Japanese name電車でGO!! はしろう山手線
    Release dateMarch 18, 2021
    Serial codeHAC-P-A2BGA
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (PC)UnofficialRequires use of Titan One/Two device.
    One handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Mamecon (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Two handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    One handle controller (Nintendo Switch)Native
    Sangying one handle controller (PC)UnofficialRequires use of Titan One/Two device.
    + + + \ No newline at end of file diff --git a/software/switch/yamanote/index.xml b/software/switch/yamanote/index.xml new file mode 100644 index 0000000..4e087a1 --- /dev/null +++ b/software/switch/yamanote/index.xml @@ -0,0 +1 @@ +Densha de GO! Hashirō Yamanote‑sen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/switch/yamanote/Recent content in Densha de GO! Hashirō Yamanote‑sen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software/wii/index.html b/software/wii/index.html new file mode 100644 index 0000000..abc51b3 --- /dev/null +++ b/software/wii/index.html @@ -0,0 +1,7 @@ +Nintendo Wii :: Densha de GO! controller documentation +

    Nintendo Wii

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software/wii/index.xml b/software/wii/index.xml new file mode 100644 index 0000000..9c71989 --- /dev/null +++ b/software/wii/index.xml @@ -0,0 +1 @@ +Nintendo Wii on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/wii/Recent content in Nintendo Wii on Densha de GO! controller documentationHugo -- gohugo.ioen-usDensha de GO! Shinkansen EX San'yō Shinkansen-henhttps://marcriera.github.io/ddgo-controller-docs/software/wii/shinkansen/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software/wii/shinkansen/Overview Name Densha de GO! Shinkansen EX San'yō Shinkansen-hen Japanese name 電車でGO!新幹線EX 山陽新幹線編 Release date March 1, 2007 Serial code RVL-P-RG4J Notes Supported controllers Model Support Notes Shinkansen controller (Nintendo Wii) Native \ No newline at end of file diff --git a/software/wii/shinkansen/index.html b/software/wii/shinkansen/index.html new file mode 100644 index 0000000..3ca2129 --- /dev/null +++ b/software/wii/shinkansen/index.html @@ -0,0 +1,8 @@ +Densha de GO! Shinkansen EX San'yō Shinkansen-hen :: Densha de GO! controller documentation +

    Densha de GO! Shinkansen EX San'yō Shinkansen-hen

    Overview

    NameDensha de GO! Shinkansen EX San'yō Shinkansen-hen
    Japanese name電車でGO!新幹線EX 山陽新幹線編
    Release dateMarch 1, 2007
    Serial codeRVL-P-RG4J
    Notes

    Supported controllers

    ModelSupportNotes
    Shinkansen controller (Nintendo Wii)Native
    + + + \ No newline at end of file diff --git a/software/wii/shinkansen/index.xml b/software/wii/shinkansen/index.xml new file mode 100644 index 0000000..31fc224 --- /dev/null +++ b/software/wii/shinkansen/index.xml @@ -0,0 +1 @@ +Densha de GO! Shinkansen EX San'yō Shinkansen-hen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software/wii/shinkansen/Recent content in Densha de GO! Shinkansen EX San'yō Shinkansen-hen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/index.html b/software_other/index.html new file mode 100644 index 0000000..f541eb4 --- /dev/null +++ b/software_other/index.html @@ -0,0 +1,7 @@ +Other software :: Densha de GO! controller documentation +

    Other software

    This section lists other software compatible with dedicated controllers in some way. Software is grouped by platform and sorted by release date.

    + + + \ No newline at end of file diff --git a/software_other/index.xml b/software_other/index.xml new file mode 100644 index 0000000..53b0400 --- /dev/null +++ b/software_other/index.xml @@ -0,0 +1 @@ +Other software on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/Recent content in Other software on Densha de GO! controller documentationHugo -- gohugo.ioen-usNintendo Switchhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/switch/Select a software from the menu on the left to view its details and controller compatibility.PChttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/pc/Select a software from the menu on the left to view its details and controller compatibility.Sony PlayStation 2https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/Select a software from the menu on the left to view its details and controller compatibility.Sony PlayStation 4https://marcriera.github.io/ddgo-controller-docs/software_other/ps4/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps4/Select a software from the menu on the left to view its details and controller compatibility. \ No newline at end of file diff --git a/software_other/pc/bve/index.html b/software_other/pc/bve/index.html new file mode 100644 index 0000000..2957641 --- /dev/null +++ b/software_other/pc/bve/index.html @@ -0,0 +1,8 @@ +BVE Trainsim :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software_other/pc/bve/index.xml b/software_other/pc/bve/index.xml new file mode 100644 index 0000000..d283cf0 --- /dev/null +++ b/software_other/pc/bve/index.xml @@ -0,0 +1 @@ +BVE Trainsim on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/bve/Recent content in BVE Trainsim on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/pc/index.html b/software_other/pc/index.html new file mode 100644 index 0000000..0a9f3d0 --- /dev/null +++ b/software_other/pc/index.html @@ -0,0 +1,7 @@ +PC :: Densha de GO! controller documentation +

    PC

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software_other/pc/index.xml b/software_other/pc/index.xml new file mode 100644 index 0000000..d714f6b --- /dev/null +++ b/software_other/pc/index.xml @@ -0,0 +1 @@ +PC on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/Recent content in PC on Densha de GO! controller documentationHugo -- gohugo.ioen-usBVE Trainsimhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/bve/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/pc/bve/Overview Name BVE Trainsim Release date September 5, 2011 Website https://bvets.net/en/ Notes Compatibility applies to version 5 or later. Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native Requires USB adapter. Supported via input plugin. Multi Train Controller (Sony PlayStation 2) Native Supported via input plugin. One handle controller (Nintendo Switch) Native Supported via input plugin. One handle controller (PC) Native Supported via input plugin. One handle controller (Sony PlayStation) Native Requires USB adapter.OpenBVEhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/openbve/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/pc/openbve/Overview Name OpenBVE Release date March 23, 2009 Website https://openbve-project.net/ Notes Controllers are supported on version 1.8.2.0 or later via built-in input plugins. Supported controllers Model Support Notes Mamecon (Sony PlayStation) Native Requires USB adapter and calibration. Supported via input plugin. Multi Train Controller (Sony PlayStation 2) Partial Only P5/B8 cassette. Supported via input plugin. One handle controller (Nintendo Switch) Native Supported via input plugin. One handle controller (PC) Native Supported via input plugin.Train Crewhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/traincrew/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/pc/traincrew/Overview Name Train Crew Release date September 30, 2021 Website https://acty-soft.com/traincrew/ Notes Supported controllers Model Support Notes Two handle controller (PC) Unofficial Requires use of Titan One/Two device. One handle controller (Nintendo Switch) Native Sangying one handle controller (PC) Native \ No newline at end of file diff --git a/software_other/pc/openbve/index.html b/software_other/pc/openbve/index.html new file mode 100644 index 0000000..b1ffabc --- /dev/null +++ b/software_other/pc/openbve/index.html @@ -0,0 +1,8 @@ +OpenBVE :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software_other/pc/openbve/index.xml b/software_other/pc/openbve/index.xml new file mode 100644 index 0000000..3429f88 --- /dev/null +++ b/software_other/pc/openbve/index.xml @@ -0,0 +1 @@ +OpenBVE on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/openbve/Recent content in OpenBVE on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/pc/traincrew/index.html b/software_other/pc/traincrew/index.html new file mode 100644 index 0000000..9707029 --- /dev/null +++ b/software_other/pc/traincrew/index.html @@ -0,0 +1,8 @@ +Train Crew :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software_other/pc/traincrew/index.xml b/software_other/pc/traincrew/index.xml new file mode 100644 index 0000000..6d263ac --- /dev/null +++ b/software_other/pc/traincrew/index.xml @@ -0,0 +1 @@ +Train Crew on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/pc/traincrew/Recent content in Train Crew on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps2/index.html b/software_other/ps2/index.html new file mode 100644 index 0000000..087e297 --- /dev/null +++ b/software_other/ps2/index.html @@ -0,0 +1,7 @@ +Sony PlayStation 2 :: Densha de GO! controller documentation +

    Sony PlayStation 2

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software_other/ps2/index.xml b/software_other/ps2/index.xml new file mode 100644 index 0000000..a07c0ee --- /dev/null +++ b/software_other/ps2/index.xml @@ -0,0 +1 @@ +Sony PlayStation 2 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/Recent content in Sony PlayStation 2 on Densha de GO! controller documentationHugo -- gohugo.ioen-usTrain Simulator Real: THE Yamanote Linehttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainyamanote/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainyamanote/Overview Name Train Simulator Real: THE Yamanote Line Japanese name Train Simulator Real THE 山手線 Release date October 4, 2001 Serial code SCPS-15018 Notes Supported controllers Model Support Notes Multi Train Controller (Sony PlayStation 2) Native P5/B8 cassette. Two handle controller "Type 2" (Sony PlayStation 2) NativeTrain Simulator Real: THE Keihin Electric Express Railwayhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeihin/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeihin/Overview Name Train Simulator Real: THE Keihin Electric Express Railway Japanese name Train Simulator Real THE 京浜急行 Release date October 31, 2002 Serial code SCPS-15035 Notes Supported controllers Model Support Notes Multi Train Controller (Sony PlayStation 2) Native P5/B5 cassette. Train Mascon (Sony PlayStation 2) NativeTrain Simulator: Midosuji Linehttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainmidosuji/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainmidosuji/Overview Name Train Simulator: Midosuji Line Japanese name Train Simulator 御堂筋線 Release date October 30, 2003 Serial code SLPM-65386 Notes Supported controllers Model Support Notes Multi Train Controller (Sony PlayStation 2) Native P4/B7 (without B1) cassette.Train Simulator + Densha de GO! Tokyu Linehttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/traindensha/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/traindensha/Overview Name Train Simulator + Densha de GO!: Tokyu Line Japanese name Train Simulator+電車でGO! 東京急行編 Release date December 18, 2003 Serial code SLPM-65472 Notes Supported controllers Model Support Notes Multi Train Controller (Sony PlayStation 2) Native P4/B7 cassette.Train Simulator: Kyūshū Shinkansenhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainshinkansen/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainshinkansen/Overview Name Train Simulator: Kyūshū Shinkansen Japanese name Train Simulator 京成・都営浅草・京急線 Release date August 25, 2005 Serial code SLPM-67006 Notes Supported controllers Model Support Notes Multi Train Controller (Sony PlayStation 2) Native P5/B7, P13-B7 cassettes.Train Simulator: Keisei, Toei Asakusa, Keikyu Lineshttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeitokei/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeitokei/Overview Name Train Simulator: Keisei, Toei Asakusa, Keikyu Lines Japanese name Train Simulator 九州新幹線 Release date October 1, 2005 Serial code SLPM-67007 Notes Supported controllers Model Support Notes Multi Train Controller (Sony PlayStation 2) Native P5/B5, P13-B7 cassettes. Train Mascon (Sony PlayStation 2) Native \ No newline at end of file diff --git a/software_other/ps2/traindensha/index.html b/software_other/ps2/traindensha/index.html new file mode 100644 index 0000000..76d5182 --- /dev/null +++ b/software_other/ps2/traindensha/index.html @@ -0,0 +1,8 @@ +Train Simulator + Densha de GO! Tokyu Line :: Densha de GO! controller documentation +

    Train Simulator + Densha de GO! Tokyu Line

    Overview

    NameTrain Simulator + Densha de GO!: Tokyu Line
    Japanese nameTrain Simulator+電車でGO! 東京急行編
    Release dateDecember 18, 2003
    Serial codeSLPM-65472
    Notes

    Supported controllers

    ModelSupportNotes
    Multi Train Controller (Sony PlayStation 2)NativeP4/B7 cassette.
    + + + \ No newline at end of file diff --git a/software_other/ps2/traindensha/index.xml b/software_other/ps2/traindensha/index.xml new file mode 100644 index 0000000..0baab53 --- /dev/null +++ b/software_other/ps2/traindensha/index.xml @@ -0,0 +1 @@ +Train Simulator + Densha de GO! Tokyu Line on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/traindensha/Recent content in Train Simulator + Densha de GO! Tokyu Line on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps2/trainkeihin/index.html b/software_other/ps2/trainkeihin/index.html new file mode 100644 index 0000000..09f01f4 --- /dev/null +++ b/software_other/ps2/trainkeihin/index.html @@ -0,0 +1,8 @@ +Train Simulator Real: THE Keihin Electric Express Railway :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software_other/ps2/trainkeihin/index.xml b/software_other/ps2/trainkeihin/index.xml new file mode 100644 index 0000000..7d990bd --- /dev/null +++ b/software_other/ps2/trainkeihin/index.xml @@ -0,0 +1 @@ +Train Simulator Real: THE Keihin Electric Express Railway on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeihin/Recent content in Train Simulator Real: THE Keihin Electric Express Railway on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps2/trainkeitokei/index.html b/software_other/ps2/trainkeitokei/index.html new file mode 100644 index 0000000..ee38a9a --- /dev/null +++ b/software_other/ps2/trainkeitokei/index.html @@ -0,0 +1,8 @@ +Train Simulator: Keisei, Toei Asakusa, Keikyu Lines :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software_other/ps2/trainkeitokei/index.xml b/software_other/ps2/trainkeitokei/index.xml new file mode 100644 index 0000000..8d60125 --- /dev/null +++ b/software_other/ps2/trainkeitokei/index.xml @@ -0,0 +1 @@ +Train Simulator: Keisei, Toei Asakusa, Keikyu Lines on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainkeitokei/Recent content in Train Simulator: Keisei, Toei Asakusa, Keikyu Lines on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps2/trainmidosuji/index.html b/software_other/ps2/trainmidosuji/index.html new file mode 100644 index 0000000..fd04916 --- /dev/null +++ b/software_other/ps2/trainmidosuji/index.html @@ -0,0 +1,8 @@ +Train Simulator: Midosuji Line :: Densha de GO! controller documentation +

    Train Simulator: Midosuji Line

    Overview

    NameTrain Simulator: Midosuji Line
    Japanese nameTrain Simulator 御堂筋線
    Release dateOctober 30, 2003
    Serial codeSLPM-65386
    Notes

    Supported controllers

    ModelSupportNotes
    Multi Train Controller (Sony PlayStation 2)NativeP4/B7 (without B1) cassette.
    + + + \ No newline at end of file diff --git a/software_other/ps2/trainmidosuji/index.xml b/software_other/ps2/trainmidosuji/index.xml new file mode 100644 index 0000000..8d2ea8a --- /dev/null +++ b/software_other/ps2/trainmidosuji/index.xml @@ -0,0 +1 @@ +Train Simulator: Midosuji Line on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainmidosuji/Recent content in Train Simulator: Midosuji Line on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps2/trainshinkansen/index.html b/software_other/ps2/trainshinkansen/index.html new file mode 100644 index 0000000..d6e8d5a --- /dev/null +++ b/software_other/ps2/trainshinkansen/index.html @@ -0,0 +1,8 @@ +Train Simulator: Kyūshū Shinkansen :: Densha de GO! controller documentation +

    Train Simulator: Kyūshū Shinkansen

    Overview

    NameTrain Simulator: Kyūshū Shinkansen
    Japanese nameTrain Simulator 京成・都営浅草・京急線
    Release dateAugust 25, 2005
    Serial codeSLPM-67006
    Notes

    Supported controllers

    ModelSupportNotes
    Multi Train Controller (Sony PlayStation 2)NativeP5/B7, P13-B7 cassettes.
    + + + \ No newline at end of file diff --git a/software_other/ps2/trainshinkansen/index.xml b/software_other/ps2/trainshinkansen/index.xml new file mode 100644 index 0000000..7925fd3 --- /dev/null +++ b/software_other/ps2/trainshinkansen/index.xml @@ -0,0 +1 @@ +Train Simulator: Kyūshū Shinkansen on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainshinkansen/Recent content in Train Simulator: Kyūshū Shinkansen on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps2/trainyamanote/index.html b/software_other/ps2/trainyamanote/index.html new file mode 100644 index 0000000..e4509d5 --- /dev/null +++ b/software_other/ps2/trainyamanote/index.html @@ -0,0 +1,8 @@ +Train Simulator Real: THE Yamanote Line :: Densha de GO! controller documentation +
    + + + \ No newline at end of file diff --git a/software_other/ps2/trainyamanote/index.xml b/software_other/ps2/trainyamanote/index.xml new file mode 100644 index 0000000..e93ae6b --- /dev/null +++ b/software_other/ps2/trainyamanote/index.xml @@ -0,0 +1 @@ +Train Simulator Real: THE Yamanote Line on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps2/trainyamanote/Recent content in Train Simulator Real: THE Yamanote Line on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/ps4/index.html b/software_other/ps4/index.html new file mode 100644 index 0000000..c45e9ea --- /dev/null +++ b/software_other/ps4/index.html @@ -0,0 +1,7 @@ +Sony PlayStation 4 :: Densha de GO! controller documentation +

    Sony PlayStation 4

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software_other/ps4/index.xml b/software_other/ps4/index.xml new file mode 100644 index 0000000..1d84d43 --- /dev/null +++ b/software_other/ps4/index.xml @@ -0,0 +1 @@ +Sony PlayStation 4 on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps4/Recent content in Sony PlayStation 4 on Densha de GO! controller documentationHugo -- gohugo.ioen-usJapanese Rail Sim: Journey to Kyotohttps://marcriera.github.io/ddgo-controller-docs/software_other/ps4/japankyoto/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/ps4/japankyoto/Overview Name Japanese Rail Sim: Journey to Kyoto Japanese name 電鉄道にっぽん!路線たび 叡山電車編 Release date December 10, 2020 Serial code PLJM-16754 Notes Supported controllers Model Support Notes Two handle controller (PC) Unofficial Requires use of Titan One/Two device. One handle controller (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Mamecon (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Two handle controller (Sony PlayStation) Unofficial Requires USB adapter. \ No newline at end of file diff --git a/software_other/ps4/japankyoto/index.html b/software_other/ps4/japankyoto/index.html new file mode 100644 index 0000000..a2fd0e7 --- /dev/null +++ b/software_other/ps4/japankyoto/index.html @@ -0,0 +1,8 @@ +Japanese Rail Sim: Journey to Kyoto :: Densha de GO! controller documentation +

    Japanese Rail Sim: Journey to Kyoto

    Overview

    NameJapanese Rail Sim: Journey to Kyoto
    Japanese name電鉄道にっぽん!路線たび 叡山電車編
    Release dateDecember 10, 2020
    Serial codePLJM-16754
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (PC)UnofficialRequires use of Titan One/Two device.
    One handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Mamecon (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Two handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    One handle controller (Nintendo Switch)UnofficialRequires use of Titan One/Two device.
    + + + \ No newline at end of file diff --git a/software_other/ps4/japankyoto/index.xml b/software_other/ps4/japankyoto/index.xml new file mode 100644 index 0000000..f31ed29 --- /dev/null +++ b/software_other/ps4/japankyoto/index.xml @@ -0,0 +1 @@ +Japanese Rail Sim: Journey to Kyoto on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/ps4/japankyoto/Recent content in Japanese Rail Sim: Journey to Kyoto on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/switch/index.html b/software_other/switch/index.html new file mode 100644 index 0000000..3a1401c --- /dev/null +++ b/software_other/switch/index.html @@ -0,0 +1,7 @@ +Nintendo Switch :: Densha de GO! controller documentation +

    Nintendo Switch

    Select a software from the menu on the left to view its details and controller compatibility.

    + + + \ No newline at end of file diff --git a/software_other/switch/index.xml b/software_other/switch/index.xml new file mode 100644 index 0000000..0cce9e0 --- /dev/null +++ b/software_other/switch/index.xml @@ -0,0 +1 @@ +Nintendo Switch on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/Recent content in Nintendo Switch on Densha de GO! controller documentationHugo -- gohugo.ioen-usJapanese Rail Sim: Journey to Kyotohttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/japankyoto/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/switch/japankyoto/Overview Name Japanese Rail Sim: Journey to Kyoto Japanese name 電鉄道にっぽん!路線たび 叡山電車編 Release date November 18, 2019 Serial code HAC-P-AU9WA NotesJapanese Rail Sim: Sangi Railwayhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/japansangi/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/switch/japansangi/Overview Name Japanese Rail Sim: Sangi Railway Japanese name 電鉄道にっぽん!路線たび 三岐鉄道編 Release date December 23, 2021 Serial code HAC-P-A6R9A NotesJapanese Rail Sim: Akechi Railwayhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/japanakechi/Mon, 01 Jan 0001 00:00:00 +0000https://marcriera.github.io/ddgo-controller-docs/software_other/switch/japanakechi/Overview Name Japanese Rail Sim: Akechi Railway Japanese name 電鉄道にっぽん!路線たび 明知鉄道編 Release date August 25, 2022 Serial code HAC-P-A8YZA Notes Supported controllers Model Support Notes Two handle controller (PC) Unofficial Requires use of Titan One/Two device. One handle controller (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Mamecon (Sony PlayStation) Unofficial Requires USB adapter. Requires use of Titan One/Two device. Two handle controller (Sony PlayStation) Unofficial Requires USB adapter. \ No newline at end of file diff --git a/software_other/switch/japanakechi/index.html b/software_other/switch/japanakechi/index.html new file mode 100644 index 0000000..87758de --- /dev/null +++ b/software_other/switch/japanakechi/index.html @@ -0,0 +1,8 @@ +Japanese Rail Sim: Akechi Railway :: Densha de GO! controller documentation +

    Japanese Rail Sim: Akechi Railway

    Overview

    NameJapanese Rail Sim: Akechi Railway
    Japanese name電鉄道にっぽん!路線たび 明知鉄道編
    Release dateAugust 25, 2022
    Serial codeHAC-P-A8YZA
    Notes

    Supported controllers

    ModelSupportNotes
    Two handle controller (PC)UnofficialRequires use of Titan One/Two device.
    One handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Mamecon (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    Two handle controller (Sony PlayStation)UnofficialRequires USB adapter. Requires use of Titan One/Two device.
    One handle controller (Nintendo Switch)Native
    Sangying one handle controller (PC)UnofficialRequires use of Titan One/Two device.
    + + + \ No newline at end of file diff --git a/software_other/switch/japanakechi/index.xml b/software_other/switch/japanakechi/index.xml new file mode 100644 index 0000000..52daaf3 --- /dev/null +++ b/software_other/switch/japanakechi/index.xml @@ -0,0 +1 @@ +Japanese Rail Sim: Akechi Railway on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/japanakechi/Recent content in Japanese Rail Sim: Akechi Railway on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/switch/japankyoto/index.html b/software_other/switch/japankyoto/index.html new file mode 100644 index 0000000..4f46377 --- /dev/null +++ b/software_other/switch/japankyoto/index.html @@ -0,0 +1,8 @@ +Japanese Rail Sim: Journey to Kyoto :: Densha de GO! controller documentation +

    Japanese Rail Sim: Journey to Kyoto

    Overview

    NameJapanese Rail Sim: Journey to Kyoto
    Japanese name電鉄道にっぽん!路線たび 叡山電車編
    Release dateNovember 18, 2019
    Serial codeHAC-P-AU9WA
    Notes
    + + + \ No newline at end of file diff --git a/software_other/switch/japankyoto/index.xml b/software_other/switch/japankyoto/index.xml new file mode 100644 index 0000000..00520ba --- /dev/null +++ b/software_other/switch/japankyoto/index.xml @@ -0,0 +1 @@ +Japanese Rail Sim: Journey to Kyoto on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/japankyoto/Recent content in Japanese Rail Sim: Journey to Kyoto on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/software_other/switch/japansangi/index.html b/software_other/switch/japansangi/index.html new file mode 100644 index 0000000..8a2e8f6 --- /dev/null +++ b/software_other/switch/japansangi/index.html @@ -0,0 +1,8 @@ +Japanese Rail Sim: Sangi Railway :: Densha de GO! controller documentation +

    Japanese Rail Sim: Sangi Railway

    Overview

    NameJapanese Rail Sim: Sangi Railway
    Japanese name電鉄道にっぽん!路線たび 三岐鉄道編
    Release dateDecember 23, 2021
    Serial codeHAC-P-A6R9A
    Notes
    + + + \ No newline at end of file diff --git a/software_other/switch/japansangi/index.xml b/software_other/switch/japansangi/index.xml new file mode 100644 index 0000000..3a7d2e9 --- /dev/null +++ b/software_other/switch/japansangi/index.xml @@ -0,0 +1 @@ +Japanese Rail Sim: Sangi Railway on Densha de GO! controller documentationhttps://marcriera.github.io/ddgo-controller-docs/software_other/switch/japansangi/Recent content in Japanese Rail Sim: Sangi Railway on Densha de GO! controller documentationHugo -- gohugo.ioen-us \ No newline at end of file diff --git a/tags/index.html b/tags/index.html index 57160ff..dd22ed6 100644 --- a/tags/index.html +++ b/tags/index.html @@ -1,7 +1,7 @@ -Tags :: Densha de GO! controller documentation -

    Tags

      + + + \ No newline at end of file