• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Development Discussion v
« Previous 1 ... 8 9 10 11 12 ... 114 Next »

Wii motion toggle key
View New Posts | View Today's Posts

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
Wii motion toggle key
10-25-2019, 11:35 PM
#1
Tui1a
Unregistered
 
From my experience playing Skyward Sword, I think it would be helpful if you could toggle between what kind of motion it's emulating (tilt, point or swing) with the press of a button. Switching between aiming your slingshot and swinging your sword is hard without it.
Are there any plans of implementing this? Is this setting already a thing, and I've just missed it?
Reply
10-26-2019, 11:09 AM
#2
Billiard26 Offline
Developer
**********
Developers (Some Administrators and Super Moderators)
Posts: 2,659
Threads: 8
Joined: Feb 2010
It's certainly already possible by building fancy input expressions (right-click mapping buttons in the controller configuration) but it's not as intuitive as is could be to create a setup like you describe.

I do have some sort of plan to make it easier in the future.
Find
Reply
10-26-2019, 04:29 PM
#3
Tui1a
Unregistered
 
(10-26-2019, 11:09 AM)Billiard26 Wrote: It's certainly already possible by building fancy input expressions (right-click mapping buttons in the controller configuration) but it's not as intuitive as is could be to create a setup like you describe.

I do have some sort of plan to make it easier in the future.
Fancy input expressions? are they complicated? I understand you may not have the time, but I would love it if you could explain what I have to write. 
I'm not very technical :/
Reply
10-27-2019, 02:04 AM (This post was last modified: 10-27-2019, 02:05 AM by Billiard26.)
#4
Billiard26 Offline
Developer
**********
Developers (Some Administrators and Super Moderators)
Posts: 2,659
Threads: 8
Joined: Feb 2010
(10-26-2019, 04:29 PM)Tui1a Wrote: Fancy input expressions? are they complicated? I understand you may not have the time, but I would love it if you could explain what I have to write. 
I'm not very technical :/

Here's an example of pointing controls that can be toggled on and off by left shift:

Point Up:


Code:
$enable_point = toggle(`LSHIFT`), `Cursor Y-` & $enable_point

Point Down:

Code:
`Cursor Y+` & $enable_point

Point Left:

Code:
`Cursor X-` & $enable_point

Point Right:

Code:
`Cursor X+` & $enable_point
Find
Reply
10-27-2019, 02:39 AM
#5
Tui1a
Unregistered
 
(10-27-2019, 02:04 AM)Billiard26 Wrote: Here's an example of pointing controls that can be toggled on and off by left shift:

Point Up:



Code:
$enable_point = toggle(`LSHIFT`), `Cursor Y-` & $enable_point

Point Down:


Code:
`Cursor Y+` & $enable_point

Point Left:


Code:
`Cursor X-` & $enable_point

Point Right:


Code:
`Cursor X+` & $enable_point
Thank you so much!
Reply
10-27-2019, 04:39 AM
#6
iwubcode Offline
Member
***
Posts: 183
Threads: 1
Joined: Oct 2019
Before fancy expression code, there was another way to do this.  You can use per-game input profiles and swap between them with a hotkey.

I setup all my games like this (at the very least pointing at a single profile).  Small example for Wii Sports Resort:

Code:
[Controls]
WiimoteProfile1="Profiles/WiiSportsResort/xinput/Bowling,Profiles/WiiSportsResort/xinput/TableTennis"

The simplest way to do this is right click on a game and go to "Properties".  Then click on the "Editor" tab under "Game Config".  Then put in your path to your profile (without the '.ini' on the end).  So for skyward sword, you may have a few different sets of input:

Code:
[Controls]
WiimoteProfile1="Sword,Flying,Puzzle,Aiming"

The first choice "Sword" would be the one the game initially starts with.  To toggle, go to "Options" > "Hotkey Settings" and then choose "Controller Profile".  Setup a key for "Next profile for Wii Remote 1".  Whenever you hit that key, you'll switch to the next profile in the list.
Find
Reply
01-05-2020, 07:52 AM
#7
Javito
Unregistered
 
(10-27-2019, 02:04 AM)Billiard26 Wrote: Here's an example of pointing controls that can be toggled on and off by left shift:

Point Up:



Code:
$enable_point = toggle(`LSHIFT`), `Cursor Y-` & $enable_point

Point Down:


Code:
`Cursor Y+` & $enable_point

Point Left:


Code:
`Cursor X-` & $enable_point

Point Right:


Code:
`Cursor X+` & $enable_point

Why is there no documentation for any of the functions anywhere? wiki only shows operators but no functions :-(
Reply
« Next Oldest | Next Newest »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode