Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
thescarecrowbb

Adventures of Square Question.

Recommended Posts

I remembered running it on LZDoom 3.8, so I think it would be no problem to run it on the newest GZDoom. But hey, if the newest version of GZDoom doesn't work, then try take a look at this

Share this post


Link to post

I have tried and the mouse options dont work properly so I was wondering if there was a GZDoom that was completely compatible. In square1.pk3 there is a text file named MENUDEF.txt with the lines...

 

OptionMenu "SquareMouseOptions"
{
  Title "$SQMENU_MOUSE"

  StaticText "$SQCATG_PREFERENCES", 1
  Option "$MOUSEMNU_ENABLEMOUSE"   , "use_mouse", "YesNo"
  Option "$MOUSEMNU_INVERTMOUSE"   , "invertmouse", "OnOff"

  StaticText ""
  StaticText "$SQCATG_SENSITIVITY", 1
  Slider "$MOUSEMNU_SENSITIVITY"   , "mouse_sensitivity", 0.5, 2.5, 0.1
  Slider "$MOUSEMNU_TURNSPEED"     , "m_yaw", 0, 2.5, 0.1
  Slider "$MOUSEMNU_MOUSELOOKSPEED", "m_pitch", 0, 2.5, 0.1
  Option "$MOUSEMNU_NOPRESCALE"    , "m_noprescale", "NoYes"
  Option "$MOUSEMNU_SMOOTHMOUSE"   , "smooth_mouse", "YesNo"
}

 

that are out of date and were part of older versions of GZDoom and I cant figure out how to change them to match up with newer versions of GZDoom. Im sure there is an easy way to do it though.

 

Share this post


Link to post

Changing it to

 

OptionMenu "SquareMouseOptions" 
{
    Title "$MOUSEMNU_TITLE"
    Option "$MOUSEMNU_ENABLEMOUSE",        "use_mouse", "YesNo"
    Option "$MOUSEMNU_MOUSEINMENU",        "m_use_mouse", "MenuMouse", "use_mouse"
    Option "$MOUSEMNU_SHOWBACKBUTTON",    "m_show_backbutton", "Corners", "use_mouse"
    IfOption(Windows)
    {
        Option "$MOUSEMNU_SWAPBUTTONS", "m_swapbuttons", "YesNo"
    }
    Option "$MOUSEMNU_CURSOR",            "vid_cursor", "Cursors"
    StaticText     ""
    Slider "$MOUSEMNU_SENSITIVITY_X",    "m_sensitivity_x", 0.5, 8, 0.25
    Slider "$MOUSEMNU_SENSITIVITY_Y",    "m_sensitivity_y", 0.5, 8, 0.25
    Option "$MOUSEMNU_SMOOTHMOUSE",        "m_filter", "YesNo"
    StaticText     ""
    Slider "$MOUSEMNU_TURNSPEED",        "m_yaw", 0, 2.5, 0.1
    Slider "$MOUSEMNU_MOUSELOOKSPEED",    "m_pitch", 0, 2.5, 0.1
    Slider "$MOUSEMNU_FORWBACKSPEED",    "m_forward", 0, 2.5, 0.1
    Slider "$MOUSEMNU_STRAFESPEED",        "m_side", 0, 2.5, 0.1
    StaticText     ""
    Option "$MOUSEMNU_ALWAYSMOUSELOOK",    "freelook", "OnOff"
    Option "$MOUSEMNU_INVERTMOUSEX",    "invertmousex", "OnOff"
    Option "$MOUSEMNU_INVERTMOUSE",        "invertmouse", "OnOff"
    Option "$MOUSEMNU_LOOKSPRING",        "lookspring", "OnOff"
    Option "$MOUSEMNU_LOOKSTRAFE",        "lookstrafe", "OnOff"
}

 

fixed the mouse problem. Im sure there are more things that need to be fixed though.

Edited by thescarecrowbb

Share this post


Link to post

This is an Adventures of Square Question thread. I have a question about Adventures of Square. Seems like I am in a good thread.

 

Episode 3 when?

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×