Emulation [RELEASE] Cemu - Wii U emulator

  • Thread starter Exzap
  • Start date
  • Views 6,900,274
  • Replies 21,659
  • Likes 283

Miguel Gomez

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,867
Trophies
0
Age
24
Location
Planet Earth
XP
1,520
Country
I'm curious about this guy. He replace Luigi to Link. Like where to find the character models in Mario Kart 8.rpx and is there a video on how to play DLC tracks on MK8? I keep crashing when I try to replace an existing track to DLC such as Big Blue and Hyrule.

Link DLC:
 
Last edited by Miguel Gomez,

Slashㅤ

Well-Known Member
Member
Joined
Feb 21, 2016
Messages
296
Trophies
0
XP
398
Country
United States
I'm curious about this guy. He replace Luigi to Link. Like where to find the character models in Mario Kart 8.rpx and is there a video on how to play DLC tracks on MK8? I keep crashing when I try to replace an existing track to DLC such as Big Blue and Hyrule.

Link DLC:

For the character models, they're in the driver folder. For example, I duplicated Link.szs, deleted Link.szs, and renamed the duplicated Link.szs to Luigi.szs. For the courses, you don't copy over the bars file, you leave that file alone.

Anyways, Sonic Lost World can actually load up this time around but it stays at 0 fps.

 

Kristiqn5

Well-Known Member
Member
Joined
Oct 14, 2015
Messages
312
Trophies
0
Age
34
XP
202
Country
It's working fine here, not freeze at all, just slow :P
Well i dont know :/ it freezes at certain parts when it has to put some effects or models on the cutscene, once it freezes it freezes every time i reach it :/
I think its because i have OpenGL version 4.2 and you have 4.5, in previous cemu builds on splatoon i got some kind of messed up vertices on the characters skin while on others with better gpu (which is probably 4.5) didnt have it
 

paulttt

Well-Known Member
Member
Joined
Sep 1, 2008
Messages
247
Trophies
1
XP
1,705
Country
Must put in my 2 pence here chaps.

I haven't even tried this emulator yet, but the progress that is being made is excellent! Congrats @Exzap (and team)?

I'll gladly throw some cash your way for further development, but would I be able to donate my key or serial to another user? Or would you sooner me choose the "No reward" option?
 
  • Like
Reactions: Re_deleteR

Miguel Gomez

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,867
Trophies
0
Age
24
Location
Planet Earth
XP
1,520
Country
For the character models, they're in the driver folder. For example, I duplicated Link.szs, deleted Link.szs, and renamed the duplicated Link.szs to Luigi.szs. For the courses, you don't copy over the bars file, you leave that file alone.

Anyways, Sonic Lost World can actually load up this time around but it stays at 0 fps.


I did leave the .bars file alone and it just crash. I replaced GBA Mario Circuit to Big Blue or any DLC tracks.

--------------------- MERGED ---------------------------

2,3 and 4 player input possible soon?
Edit:loving the emulator btw :)
Possible. But not now.
 
Last edited by Miguel Gomez,

The Twig league

Well-Known Member
Newcomer
Joined
Dec 9, 2015
Messages
54
Trophies
0
Age
21
XP
54
Country
United States
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
How do we apply this ?
 
  • Like
Reactions: Deleted User
General chit-chat
Help Users
  • No one is chatting at the moment.
  • JuanMena @ JuanMena:
    Will you give me mouth to mouth oxygen if my throat closes?
  • K3N1 @ K3N1:
    Nah the air can do that
  • K3N1 @ K3N1:
    Ask @x65943 he's trained for that stuff
  • JuanMena @ JuanMena:
    Kissing random dudes choking in celery? Really? Need to study for that?
  • K3N1 @ K3N1:
    Yes it requires a degree
  • K3N1 @ K3N1:
    I could also yank out the rest of my teeth but theirs professionals for that
  • x65943 @ x65943:
    If your throat closes, putting oxygen in your mouth will not solve anything - as you will be introducing oxygen prior to the area of obstruction
  • JuanMena @ JuanMena:
    Just kiss me Kyle.
  • x65943 @ x65943:
    You either need to be intubated to bypass obstruction or create a stoma inferior to the the area of obstruction to survive
  • x65943 @ x65943:
    "Just kiss me Kyle." And I thought all the godreborn gay stuff was a smear campaign
  • JuanMena @ JuanMena:
    If I die, tell my momma I won't be carrying Baby Jesus this christmas :sad::cry:
  • K3N1 @ K3N1:
    Smear campaigns are in The political section now?
  • JuanMena @ JuanMena:
    Chary! Chary! Chary, Chary, Chary!
  • Sonic Angel Knight @ Sonic Angel Knight:
    Pork Provolone :P
  • Psionic Roshambo @ Psionic Roshambo:
    Sounds yummy
  • K3N1 @ K3N1:
    Sweet found my Wii u PSU right after I ordered a new one :tpi:
  • JuanMena @ JuanMena:
    It was waiting for you to order another one.
    Seems like, your PSU was waiting for a partner.
  • JuanMena @ JuanMena:
    Keep them both
    separated or you'll have more PSUs each year.
  • K3N1 @ K3N1:
    Well one you insert one PSU into the other one you get power
  • JuanMena @ JuanMena:
    It literally turns it on.
  • K3N1 @ K3N1:
    Yeah power supplies are filthy perverts
  • K3N1 @ K3N1:
    @Psionic Roshambo has a new friend
    +1
  • JuanMena @ JuanMena:
    It's Kyle, the guy that went to school to be a Certified man Kisser.
  • Psionic Roshambo @ Psionic Roshambo:
    Cartmans hand has taco flavored kisses
  • A @ abraarukuk:
    hi guys
    A @ abraarukuk: hi guys