Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

Recent Posts

Pages: [1] 2 3 ... 10

Started by Warborg - Last post by Warborg

Nice...  :). What type of wood did you use in it's construction?

Started by TOMMYGUN - Last post by pbj

Still better than a Weecade

3   Driving & Racing Cabinets / Re: FFB file helpon Yesterday at 08:57:54 pm

Started by bsoder52 - Last post by bsoder52

update - got some FFB working but decided I just want to build my cab without it i think.

Started by bbegin - Last post by vettetek

Hey guys - awesome project and thread on it!
I'm making dedicated cabinets currently using retropie on a RP4. I was hoping to use this as it seems like its more of a "true" version of standard mame which im accustomed to.
With that being said, I was wondering if anyone can help with adding shaders for tube curve, scanlines, and on vector games, the bloom, persistence, etc.
I know being on a RP4 that the standard d3d way of doing it on a PC wont work. Ive read this thread and it seems some of you are using shaders, but im only seeing bits and pieces of the .ini addons to make it work.
If someone could point me in the right direction on creating the folder, and adding the correct lines to the ini to get started id appreciate it.
TY!!

Started by Warborg - Last post by Phreakwars

I made one using the control panel from an Arcade1Up pacman cab as a template. I figured out the top layout first, then built the housing around it. It was a pretty sweet contraption. Basically, the (Ms.) Pacman cab was the home base for the control panel. But if I wanted to take it with me, I'd simply lift it up from the Arcade1Up and unplug the connectors and just plug it in to a regular TV for on the go fun. Unfortunately, it got destroyed this last June when our town got flooded. I do have a video though of the original concept for it that I did. Self contained, even had it's own speakers. Jump to 13:29 in the video and you'll see kind of what the finished product looked like:


The one in this video was the concept design, the completed design was much sweeter. Gonna have to build me another one one of these days, but first I need to one day repair the other cabs in my basement that got destroyed. 10months later, I'm STILL recovering from that disaster so re-building arcade cabs is pretty low priority for now.

Started by jcvd12 - Last post by Tiberius

It is possible to get a Wiimote to vibrate whilst pretending to be a Xbox controller via Touchmote using AHK.

https://www.autohotkey.com/board/topic/35848-xinput-xbox-360-controller-api/

The above is a link explaining how to do it and use it.

Or copy and paste the code below for ahk without having to read up on it

Code: [Select]
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
#SingleInstance Force


XInput_Init()

XInput_Init()
Loop {
Loop, 4 {
if State := XInput_GetState(A_Index-1)
{
        BT := State.wButtons
if BT = 0x1000
{
XInput_SetState(A_Index-1, 0, 65535)
Sleep, 100
}
    }
XInput_SetState(A_Index-1, 0, 0)
}
}
return

XInput_Init(dll="xinput1_3")
{
    global
    if _XInput_hm
        return
   
    ;======== CONSTANTS DEFINED IN XINPUT.H ========
   
    ; NOTE: These are based on my outdated copy of the DirectX SDK.
    ;       Newer versions of XInput may require additional constants.
   
    ; Device types available in XINPUT_CAPABILITIES
    XINPUT_DEVTYPE_GAMEPAD          := 0x01

    ; Device subtypes available in XINPUT_CAPABILITIES
    XINPUT_DEVSUBTYPE_GAMEPAD       := 0x01

    ; Flags for XINPUT_CAPABILITIES
    XINPUT_CAPS_VOICE_SUPPORTED     := 0x0004

    ; Constants for gamepad buttons
    XINPUT_GAMEPAD_DPAD_UP          := 0x0001
    XINPUT_GAMEPAD_DPAD_DOWN        := 0x0002
    XINPUT_GAMEPAD_DPAD_LEFT        := 0x0004
    XINPUT_GAMEPAD_DPAD_RIGHT       := 0x0008
    XINPUT_GAMEPAD_START            := 0x0010
    XINPUT_GAMEPAD_BACK             := 0x0020
    XINPUT_GAMEPAD_LEFT_THUMB       := 0x0040
    XINPUT_GAMEPAD_RIGHT_THUMB      := 0x0080
    XINPUT_GAMEPAD_LEFT_SHOULDER    := 0x0100
    XINPUT_GAMEPAD_RIGHT_SHOULDER   := 0x0200
    XINPUT_GAMEPAD_A                := 0x1000
    XINPUT_GAMEPAD_B                := 0x2000
    XINPUT_GAMEPAD_X                := 0x4000
    XINPUT_GAMEPAD_Y                := 0x8000

    ; Gamepad thresholds
    XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE  := 7849
    XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE := 8689
    XINPUT_GAMEPAD_TRIGGER_THRESHOLD    := 30

    ; Flags to pass to XInputGetCapabilities
    XINPUT_FLAG_GAMEPAD             := 0x00000001
   
    ;=============== END CONSTANTS =================
   
    _XInput_hm := DllCall("LoadLibrary" ,"str",dll)
   
    if !_XInput_hm
    {
        MsgBox, Failed to initialize XInput: %dll%.dll not found.
        return
    }
   
    _XInput_GetState        := DllCall("GetProcAddress" ,"ptr",_XInput_hm ,"astr","XInputGetState")
    _XInput_SetState        := DllCall("GetProcAddress" ,"ptr",_XInput_hm ,"astr","XInputSetState")
    _XInput_GetCapabilities := DllCall("GetProcAddress" ,"ptr",_XInput_hm ,"astr","XInputGetCapabilities")
   
    if !(_XInput_GetState && _XInput_SetState && _XInput_GetCapabilities)
    {
        XInput_Term()
        MsgBox, Failed to initialize XInput: function not found.
        return
    }
}

XInput_GetState(UserIndex)
{
    global _XInput_GetState
   
    VarSetCapacity(xiState,16)

    if ErrorLevel := DllCall(_XInput_GetState ,"uint",UserIndex ,"uint",&xiState)
        return 0
   
    return {
    (Join,
        dwPacketNumber: NumGet(xiState,  0, "UInt")
        wButtons:       NumGet(xiState,  4, "UShort")
        bLeftTrigger:   NumGet(xiState,  6, "UChar")
        bRightTrigger:  NumGet(xiState,  7, "UChar")
        sThumbLX:       NumGet(xiState,  8, "Short")
        sThumbLY:       NumGet(xiState, 10, "Short")
        sThumbRX:       NumGet(xiState, 12, "Short")
        sThumbRY:       NumGet(xiState, 14, "Short")
    )}
}


XInput_SetState(UserIndex, LeftMotorSpeed, RightMotorSpeed)
{
    global _XInput_SetState
    return DllCall(_XInput_SetState ,"uint",UserIndex ,"uint*",LeftMotorSpeed|RightMotorSpeed<<16)
}


XInput_GetCapabilities(UserIndex, Flags)
{
    global _XInput_GetCapabilities
   
    VarSetCapacity(xiCaps,20)
   
    if ErrorLevel := DllCall(_XInput_GetCapabilities ,"uint",UserIndex ,"uint",Flags ,"ptr",&xiCaps)
        return 0
   
    return,
    (Join
        {
            Type:                   NumGet(xiCaps,  0, "UChar"),
            SubType:                NumGet(xiCaps,  1, "UChar"),
            Flags:                  NumGet(xiCaps,  2, "UShort"),
            Gamepad:
            {
                wButtons:           NumGet(xiCaps,  4, "UShort"),
                bLeftTrigger:       NumGet(xiCaps,  6, "UChar"),
                bRightTrigger:      NumGet(xiCaps,  7, "UChar"),
                sThumbLX:           NumGet(xiCaps,  8, "Short"),
                sThumbLY:           NumGet(xiCaps, 10, "Short"),
                sThumbRX:           NumGet(xiCaps, 12, "Short"),
                sThumbRY:           NumGet(xiCaps, 14, "Short")
            },
            Vibration:
            {
                wLeftMotorSpeed:    NumGet(xiCaps, 16, "UShort"),
                wRightMotorSpeed:   NumGet(xiCaps, 18, "UShort")
            }
        }
    )
}

XInput_Term() {
    global
    if _XInput_hm
        DllCall("FreeLibrary","uint",_XInput_hm), _XInput_hm :=_XInput_GetState :=_XInput_SetState :=_XInput_GetCapabilities :=0
}



Started by Calamity - Last post by Hunk_4TH

Hey guys,

I know it isn't possible to have two AMD GPUs when using Emudriver. I had a thought though, would it be possible to have a secondary of Windows just for the supported GPU? Just for Emudriver? I have a secondary PC I was using for emulation via Emudriver, but it's pretty slow compared to my main gaming pc.

Started by jcvd12 - Last post by jcvd12

If you master touchmote on mode 4 youll never have to mess with demulshooter or ahk in your life ever again.

I just need the tweaks to make it rumble or have ffb. Im positive i will get help from a friend. This one guy wont ignore me like ive been ignored so far

Started by TOMMYGUN - Last post by firedance

Er - congrats, I think  ;)

As long as it makes you happy then go for it, maybe the next one will be better  ;D

Started by argonlefou - Last post by DMB77

Yes, I can.  Thank you!  I will have to figure out how to configure them properly, as it's a little more involved than your method.
Pages: [1] 2 3 ... 10