Emulation [RELEASE] Cemu - Wii U emulator

  • Thread starter Exzap
  • Start date
  • Views 7,220,853
  • Replies 21,664
  • Likes 284

Miguel Gomez

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,867
Trophies
0
Age
25
Location
Planet Earth
XP
1,530
Country
Guys. I got Minecraft Wii U Edition. But I wonder what's the Title Key?
Most people from Dark Umbra got the TitleID instead of Title Key.

===================================================================

Testing Splatoon.
Not good at all.
 
Last edited by Miguel Gomez,

Kristiqn5

Well-Known Member
Member
Joined
Oct 14, 2015
Messages
312
Trophies
0
Age
35
XP
212
Country
Guys. I got Minecraft Wii U Edition. But I wonder what's the Title Key?
Most people from Dark Umbra got the TitleID instead of Title Key.

===================================================================

Testing Splatoon.
Not good at all.

lol why middle finger at the game when you should have waited a little bit for the gamepad screen to disappear and progress further?
or just hold the right mouse button and go up and down ( but cant go left or right )
ooooooooor just download the save file from RHY3756547
but I recommend waiting for the gamepad screen to disappear , like 3-5 mins ( idk )
btw heres a site that has all the keys for both regions
https://docs.google.com/spreadsheets/d/1SjkHy_2EadZqkPxYXpH-jsWpIlSnzREvSFxFjf0K5OY/edit?usp=sharing
 
  • Like
Reactions: Miguel Gomez

Miguel Gomez

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,867
Trophies
0
Age
25
Location
Planet Earth
XP
1,530
Country
lol why middle finger at the game when you should have waited a little bit for the gamepad screen to disappear and progress further?
or just hold the right mouse button and go up and down ( but cant go left or right )
ooooooooor just download the save file from RHY3756547
but I recommend waiting for the gamepad screen to disappear , like 3-5 mins ( idk )
btw heres a site that has all the keys for both regions
https://docs.google.com/spreadsheets/d/1SjkHy_2EadZqkPxYXpH-jsWpIlSnzREvSFxFjf0K5OY/edit?usp=sharing
Thanks m8! :)
Also thanks for the title keys! Imma test Meincrap Ryu ediscion.
Edit: Great. No Title Key for MC Wii U
 
Last edited by Miguel Gomez,

Gundark

Well-Known Member
Newcomer
Joined
Feb 12, 2011
Messages
95
Trophies
0
Age
48
XP
248
Country
In every readme in every emulator it is stated that emulators are not meant for enabling piracy. It is for conservation of games and developing and testing homebrews. If not, Nintendo and Sony would make devs life miserable and all work will stop. Come on, use your brain a little. In theory, we are using our own dumps from our own discs, right?
 

Miguel Gomez

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,867
Trophies
0
Age
25
Location
Planet Earth
XP
1,530
Country
Maybe yes. Maybe no.
Some people won't let their parents to buy a Wii U because it's "worthless".
Well for me, I played Wii U games on my cousin which means I don't personally own a Wii U.
But I use Cemu just for testing crap.

But if it against the rules, then how come Visual Boy, No$GBA, DesMuMe, Dolphin, and other stuff didn't get a warning?
Emuparadise still standing except for Coolroms(RIP).
 

srdjan andric

Well-Known Member
Newcomer
Joined
Oct 14, 2015
Messages
55
Trophies
0
Age
35
XP
116
Country
Hey folks. :) I've just uploaded a video of Shovel Knight running at Cemu 1.3.0. Please, subsribe, like, comment and share video. More videos coming soon. :)



P.S. Sorry for no audio in first minute, but I've forgot that i've disabled sound in Cemu, so I re-enabled it while recording a video.
 

Gundark

Well-Known Member
Newcomer
Joined
Feb 12, 2011
Messages
95
Trophies
0
Age
48
XP
248
Country
exzap, any reason why OpenGL 3.3 is used?
I think because Intel HD GPUs ( Sandy and Ivy bridge ) are supporting only Ogl 3.3, and majority of laptops and good chunk of PCs runing on those. Also, as of Ogl 4.x nVidia translate glsl into their own shader language that makes things complicated like in Xenia emulator.
 

SectionX

Well-Known Member
Member
Joined
May 26, 2004
Messages
384
Trophies
1
XP
415
Country
I think because Intel HD GPUs ( Sandy and Ivy bridge ) are supporting only Ogl 3.3, and majority of laptops and good chunk of PCs runing on those. Also, as of Ogl 4.x nVidia translate glsl into their own shader language that makes things complicated like in Xenia emulator.

I guess that makes sense. But what about a DX12 backend?
 

Aiscrim

Well-Known Member
Newcomer
Joined
May 26, 2013
Messages
78
Trophies
0
Age
37
Location
Fortaleza, Brazil
XP
223
Country
Brazil
An update on the autohotkey magnifier for Intel GPU users, I've set it to use antialiasing and 4x zoom automatically so it fits even more its purpose.

Code:
OnExit handle_exit

  Gui,  +AlwaysOnTop  +Owner +Resize +ToolWindow ; window for the dock
  Gui, Show, NoActivate w400 h400 x300 y50 , PrintScreen
  zoom = 4
  antialize = 1
  Gui, Add, Slider, vdelay x220 y0  Range15-200
  Gui, Add, Text, x340 y12 w80  vdelay2

  WinGet PrintScreenID, id  ,PrintScreen  ;
  WinSet, Transparent , 254, PrintScreen

  ;retrieve the unique ID number (HWND/handle) of that window
  WinGet, PrintSourceID, id

  hotkey , #x           , toggle_follow
  hotkey , +$LButton    , click_through

  toolbar_def:=35
  toolbar := toolbar_def
  follow :=0

  hdd_frame := DllCall( "GetDC", UInt, PrintSourceID )
  hdc_frame := DllCall( "GetDC", UInt, PrintScreenID )

  hdc_buffer := DllCall("gdi32.dll\CreateCompatibleDC", UInt,  hdc_frame)  ; buffer
  hbm_buffer := DllCall("gdi32.dll\CreateCompatibleBitmap", UInt,hdc_frame, Int,A_ScreenWidth, Int,A_ScreenHeight)
 
  Gosub, Repaint
return

toggle_follow:
    follow := 1 - follow
 
    if follow = 1
    {
        WinSet Region,, PrintScreen
        toolbar := -32 ; height of window title
        GuiControl, Hide, zoom
    }
    else
    {
        WinSet Region,, PrintScreen
        toolbar :=toolbar_def
        GuiControl, Show, zoom
    }
Return

click_through:
    if follow = 1
    {
      Gui, Hide
      Send, {Click}
      SetTimer, Repaint , Off
      Gui, Show
      SetTimer, Repaint, %delay%
    }
Return

Repaint:

   CoordMode, Mouse, Screen               
   MouseGetPos, mouse_x, mouse_y             ;  position of mouse
   start_x = 1100
   start_y = 140
   Gui, Submit, NoHide                       ; needed to read the dropdown and slidervalue
   GuiControl,, delay2 , delay %delay% ms
   WinGetPos, wx, wy, ww, wh , PrintScreen

   wh2 := wh - toolbar

    DllCall( "gdi32.dll\SetStretchBltMode", "uint", hdc_frame, "int", 4 * antialize )  ; Halftone better quality with stretch
  
    DllCall("gdi32.dll\StretchBlt", UInt,hdc_frame, Int,0, Int,toolbar, Int,ww, Int,wh - toolbar
          , UInt,hdd_frame, Int
          , start_x-(ww / 2 / zoom)
          , Int,start_y -( wh2 / 2/zoom), Int,ww / zoom, Int,wh2 / zoom ,UInt,0xCC0020) ; SRCCOPY
  
  SetTimer, Repaint , %delay%
Return

GuiClose:
handle_exit:
   DllCall("gdi32.dll\DeleteObject", UInt,hbm_buffer)
   DllCall("gdi32.dll\DeleteDC", UInt,hdc_frame )
   DllCall("gdi32.dll\DeleteDC", UInt,hdd_frame )
   DllCall("gdi32.dll\DeleteDC", UInt,hdc_buffer)
ExitApp
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • K3Nv2 @ K3Nv2:
    I fixed a 2010 netbook for someone and they were happy
  • ZeroT21 @ ZeroT21:
    i did something similar to for a friend, was a old acer netbook, he was over the moon, guess guys are just that simple
  • K3Nv2 @ K3Nv2:
    Still had xp all the works at least got 7 on it
  • ZeroT21 @ ZeroT21:
    even if MS says newer windows works fine on 1 Gb of ram, I'd still go for the default or similar OS
  • K3Nv2 @ K3Nv2:
    It loaded youtube with like a 5 minute lag lol
  • ZeroT21 @ ZeroT21:
    it's a old potato, can't expect much
  • K3Nv2 @ K3Nv2:
    I told her it's not a good porn book
  • ZeroT21 @ ZeroT21:
    it's fine if it work and can watch their fav porn
  • K3Nv2 @ K3Nv2:
    For images maybe
  • ZeroT21 @ ZeroT21:
    it's not a vibrator la, ...that lags
  • K3Nv2 @ K3Nv2:
    No haptic feedback in laptops
  • ZeroT21 @ ZeroT21:
    you ain't paying for that kinda realism with this hardware
  • K3Nv2 @ K3Nv2:
    Need to give apple $600
  • ZeroT21 @ ZeroT21:
    the more you give apple the more features they will take away
  • K3Nv2 @ K3Nv2:
    Apple finally invented folders
  • ZeroT21 @ ZeroT21:
    i still want headphone jacks for my shit
  • ZeroT21 @ ZeroT21:
    i dont want do deal with low on battery earbuds and shit
  • K3Nv2 @ K3Nv2:
    I hate cords but my life is a cord will probably make a noose from cords
  • ZeroT21 @ ZeroT21:
    we'll all croak one day, no need to fuss so much
  • Psionic Roshambo @ Psionic Roshambo:
    @K3Nv2, Use a Pi it can hack PS4 now too lol
  • K3Nv2 @ K3Nv2:
    Until that day there is a need
    +1
  • Xdqwerty @ Xdqwerty:
    gonna do my homework in half an hour
  • K3Nv2 @ K3Nv2:
    Stop using chatgpt
  • Sonic Angel Knight @ Sonic Angel Knight:
    Chatgpt will turn your words into ai robot that will take over the world later. :ninja:
  • Xdqwerty @ Xdqwerty:
    @K3Nv2, i dont use it
    Xdqwerty @ Xdqwerty: @K3Nv2, i dont use it