• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

Social Smash Wii U/3DS Social 7.0

AndreaAC

Ridley's Propaganda Artist
Joined
Feb 9, 2014
Messages
24,550
Oh yeah, I will need practice...
Tough sadly, my vacation finish in like 3 days.
Yeah, it kinda suck.:137:
But...I so want to draw him...And his brother, Zelox. (Which I haven't drawned yet even tough he is the "main" hero of the story lol)
:) Well, when you get the chance again to do it, don't doubt into starting! You can do it!
 

Metal Shop X

CHAINSAW POWEEEEEEEER
Joined
May 4, 2015
Messages
26,850
Location
USA
NNID
Mao644
3DS FC
4339-3012-0905
Switch FC
SW-2905-0652-6700
:) Well, when you get the chance again to do it, don't doubt into starting! You can do it!
I hope, especially Zelox.
Poor dude, even tough he is the main character, I write so little about him. (By writing, I mean, l already know what his personality is, his developpement, his line, etc...It's just I haven't write alot on him)
And I have still (except 1 or 2 drawn but they weren't good or serious to begin with) not drawed his design.
There is probably a trope for that kind of "the-main-character-but-not-really" type, I be surprise if there is not one. ( do you think you know FalKoopa FalKoopa ?)
 

aldelaro5

Paper Mario P
Joined
May 20, 2013
Messages
9,724
Location
Canada, Quebec (or Rogeuport if you want)
NNID
aldelaro5
3DS FC
3050-7721-6617
I think I got a bare idea of the fix you're talking about. Good luck.
I also learnt what a "Hungarian notation" is. :laugh:
I actually don';t like the ntoation, but I was trying to repeat standards they put, but what I actually learned is their standard changed so it;s only fdor NEW code.

As for the fix I can explain it I guess....

WARNING: BASIC OBEJCT ORIENTED PROGRAMMING AND MVC DESIGN PATTERN REQURIED TO UDNERSTAND THE FOLLOWING!

Basically, it's not hard to figure out even though I never used wxwidget, I had basic knowledge of c++, mvc design pattern (where you have your gui that has binding to object properties or command to triggers stuff) and it was jsut likely a little thign that was forgotten, these features aren;t targetted at end user so....I guess these thigns happens and they dont; matter this mcuh unless you are debugging stuff whcih is super advanced.

You can add a memory check by clicking next to an address in the memory view, it does add or delete the breakpoint, but the problem is if you ahd the breakpoint list opened soemwhere, it doesn;t do anything which tbh, it;s very confusing and I didn't like that. So I got into the code and after some hours of debugging session (I am not used to debug such large stuff let alone dolphin codebase), I found that basically, when the mouse down evvent happens, it toggles a breakpoint, update the memory view, creates an event command that is used to update the breakpoint list (the same used for the code view) and finally, this event gets added to the event manager.

It sounded right, but I noticed that the method used to update the breakpoint list (notifyupdate) never gets called on the memory check adding, but it does on the code view BP adding. Thankfully, debuggers has a call stack so I could go backward to see who called notifyupdate in the code view instance and it turned out to be the code window which grabs these event in a switch case. When it reaches that switch and finds it';s to update the breakpoin list, it calls notify update on the breakpoint window (for soem reasons, codeWindow is sort of a master for everythign debug UI related so it has access to the breakpoitn list).

So time to check what the memory view does, the event gets run, but the method that receives it has a switch with NO case for the breakpoint update comand, that was the problem.

Fixign this is as expected fairly trivial, you jsut add to the constructor fo the breakpoint window the code window (it;s done in code window functions whcih has these calling utilities) so now breakpoint widnow hjas access to notify update and......just manage that case when the breakpoint widnow exist in the switch.

To be fair, it's really small, 95% of people jsut won;t care about this, but I do and the other cool thing about this is I was finally able to contribute to an open source project with actuall code. I always wanted to do soemthing in an open source project so if this gets merged, it would be my first contribution and it jsut makes me happy :)
 

FalKoopa

Rainbow Waifu
BRoomer
Joined
Dec 16, 2012
Messages
32,231
Location
India/भारत
3DS FC
1650-3685-3998
Switch FC
SW-5545-7990-4793
I hope, especially Zelox.
Poor dude, even tough he is the main character, I write so little about him. (By writing, I mean, l already know what his personality is, his developpement, his line, etc...It's just I haven't write alot on him)
And I have still (except 1 or 2 drawn but they weren't good or serious to begin with) not drawed his design.
There is probably a trope for that kind of "the-main-character-but-not-really" type, I be surprise if there is not one. ( do you think you know FalKoopa FalKoopa ?)
That sounds like a Butt Monkey somewhat. :p

I actually don';t like the ntoation, but I was trying to repeat standards they put, but what I actually learned is their standard changed so it;s only fdor NEW code.

As for the fix I can explain it I guess....

WARNING: BASIC OBEJCT ORIENTED PROGRAMMING AND MVC DESIGN PATTERN REQURIED TO UDNERSTAND THE FOLLOWING!

Basically, it's not hard to figure out even though I never used wxwidget, I had basic knowledge of c++, mvc design pattern (where you have your gui that has binding to object properties or command to triggers stuff) and it was jsut likely a little thign that was forgotten, these features aren;t targetted at end user so....I guess these thigns happens and they dont; matter this mcuh unless you are debugging stuff whcih is super advanced.

You can add a memory check by clicking next to an address in the memory view, it does add or delete the breakpoint, but the problem is if you ahd the breakpoint list opened soemwhere, it doesn;t do anything which tbh, it;s very confusing and I didn't like that. So I got into the code and after some hours of debugging session (I am not used to debug such large stuff let alone dolphin codebase), I found that basically, when the mouse down evvent happens, it toggles a breakpoint, update the memory view, creates an event command that is used to update the breakpoint list (the same used for the code view) and finally, this event gets added to the event manager.

It sounded right, but I noticed that the method used to update the breakpoint list (notifyupdate) never gets called on the memory check adding, but it does on the code view BP adding. Thankfully, debuggers has a call stack so I could go backward to see who called notifyupdate in the code view instance and it turned out to be the code window which grabs these event in a switch case. When it reaches that switch and finds it';s to update the breakpoin list, it calls notify update on the breakpoint window (for soem reasons, codeWindow is sort of a master for everythign debug UI related so it has access to the breakpoitn list).

So time to check what the memory view does, the event gets run, but the method that receives it has a switch with NO case for the breakpoint update comand, that was the problem.

Fixign this is as expected fairly trivial, you jsut add to the constructor fo the breakpoint window the code window (it;s done in code window functions whcih has these calling utilities) so now breakpoint widnow hjas access to notify update and......just manage that case when the breakpoint widnow exist in the switch.

To be fair, it's really small, 95% of people jsut won;t care about this, but I do and the other cool thing about this is I was finally able to contribute to an open source project with actuall code. I always wanted to do soemthing in an open source project so if this gets merged, it would be my first contribution and it jsut makes me happy :)
Thankfully I know about Object Oriented Programming (I enjoyed those C++ classes in high school) and was able to follow along. Don't know much about MVC Design though.

Still, hope that your change gets merged with the main code. :)
 

aldelaro5

Paper Mario P
Joined
May 20, 2013
Messages
9,724
Location
Canada, Quebec (or Rogeuport if you want)
NNID
aldelaro5
3DS FC
3050-7721-6617
That sounds like a Butt Monkey somewhat. :p


Thankfully I know about Object Oriented Programming (I enjoyed those C++ classes in high school) and was able to follow along. Don't know much about MVC Design though.

Still, hope that your change gets merged with the main code. :)
mvc means model view controller, it;s a design pattern where the view is ideally very separated from the model, the itnerface that allows independant communication is the controller.

model = data
view = ui
controller.....view it as an event manage I guess?

Anyway, the view has binding to the model and the controller manages these things.

Though, i don;t think they apply fully mvc, wxwidget do manmages events an it has data bindings.

So i guess it helps me to udnerstands stuff.
 

Sebagomez

Smash Journeyman
Joined
Apr 9, 2014
Messages
471
Ah.... the good ol' Simpsons, they have a scene for everything.
(I made this image.)

 

Aurane

ㅤㅤㅤㅤ
Joined
Sep 17, 2011
Messages
34,140
Location
A Faraway Place
Alright, so this one is more cleaned up, but its not the finalized outline, cause I have to add a few features, like the fingers of the paws and I need to fix the back outlining.

I fixed the ears. They were backwards, and the ear on the right side was turned to expose the full back. The belly is bigger, but I made it look like his body shapes into a dress, so I need to fix the back.

But yeah. I'm feeling pretty confident about this so far. Its gonna be the shading part that'll kill me, because I don't know how to shade all that well. I've decided to name this, like I do most of my drawings, and its called "What's Up, Cousin?" And if it turns out good, I'll make it my avatar.
 
D

Deleted member

Guest
DOUBLEJUMP.png

Yo. Just wanted to show you all this. CLICK THE PICTURE FOR GREATNESS.

Double Jump is a Discord made by gamers, for gamers. Together discuss general subjects with other people, chill and in general have a good time.

Our events include:
  • Movie Nights every Friday at 6:00 PM EST!
  • Weekly Smash 4 tournaments hosted by The Stoopid Unikorn The Stoopid Unikorn for both singles and doubles!
  • Discussion channels for Smash, traditional fighting games, Pokemon, Overwatch, movies/TV and anime!
  • A channel where you can mess around with various bot commands!
  • Much, much more!
What are you waiting for? Hop on in and invite others in on the fun!
 
Last edited by a moderator:

Aurane

ㅤㅤㅤㅤ
Joined
Sep 17, 2011
Messages
34,140
Location
A Faraway Place
View attachment 114699

Yo. Just wanted to show you all this. CLICK THE PICTURE FOR GREATNESS.

Double Jump is a Discord made by gamers, for gamers. Together discuss general subjects with other people, chill and in general have a good time.

Our events include:
  • Movie Nights every Friday at 6:00 PM EST!
  • Weekly Smash 4 tournaments hosted by The Stoopid Unikorn The Stoopid Unikorn for both singles and doubles!
  • Discussion channels for Smash, traditional fighting games, Pokemon, Overwatch, movies/TV and anime!
  • A channel where you can mess around with various bot commands!
  • Much, much more!
What are you waiting for? Hop on in and invite others in on the fun!
I'm premium and I'm getting advertisements. Tfw
 

Mythra

Photon Edge
Joined
Aug 22, 2014
Messages
27,626
Location
Hel
Switch FC
SW-3407-0751-9511
View attachment 114699

Yo. Just wanted to show you all this. CLICK THE PICTURE FOR GREATNESS.

Double Jump is a Discord made by gamers, for gamers. Together discuss general subjects with other people, chill and in general have a good time.

Our events include:
  • Movie Nights every Friday at 6:00 PM EST!
  • Weekly Smash 4 tournaments hosted by The Stoopid Unikorn The Stoopid Unikorn for both singles and doubles!
  • Discussion channels for Smash, traditional fighting games, Pokemon, Overwatch, movies/TV and anime!
  • A channel where you can mess around with various bot commands!
  • Much, much more!
What are you waiting for? Hop on in and invite others in on the fun!
Trying to kill the activity here too? Y'all truly evil
 

Ryu_Ken

Ace Adventurer and Truth Seeker
Joined
Jan 14, 2013
Messages
3,281
Location
Texas
NNID
Sorastar9
3DS FC
4725-8061-1333
Screen Shot 2016-08-12 at 11.51.30 PM.png


I'm going into this game 100% blind. And as it turns out, the main focus of the game revolves around touchscreen controls.

And I'm playing on a Mac.

Fun times.

I'll be the best trackpad user on this forum by the time I finish the game.
 

Metal Shop X

CHAINSAW POWEEEEEEEER
Joined
May 4, 2015
Messages
26,850
Location
USA
NNID
Mao644
3DS FC
4339-3012-0905
Switch FC
SW-2905-0652-6700
That sounds like a Butt Monkey somewhat. :p


Thankfully I know about Object Oriented Programming (I enjoyed those C++ classes in high school) and was able to follow along. Don't know much about MVC Design though.

Still, hope that your change gets merged with the main code. :)
Really?
Man, if this is really that,then poor Zelox lol. (Tough, I need to see the trope page to be sure)
 

FalKoopa

Rainbow Waifu
BRoomer
Joined
Dec 16, 2012
Messages
32,231
Location
India/भारत
3DS FC
1650-3685-3998
Switch FC
SW-5545-7990-4793
Last edited:

Metal Shop X

CHAINSAW POWEEEEEEEER
Joined
May 4, 2015
Messages
26,850
Location
USA
NNID
Mao644
3DS FC
4339-3012-0905
Switch FC
SW-2905-0652-6700
FalKoopa FalKoopa
So I looked the Butt Monkey page on TVTrope and...
I won't say that Zelox is a Butt Monkey, sure, right now, I don't do alot with him. (And his story, after a major plot twist revealed later in the story, is really sad) But I won't say he is the Butt Monkey of the story. That will be Sulesse.
Sulesse-and-Hector-Normal-Day.png
I think Zelox is more a "fake protagonist" than anything else.
 

RamOne

Mr. Blue Sky
Joined
Nov 29, 2006
Messages
8,704
Location
The Netherlands
NNID
Mr.Baron
3DS FC
3926-5004-2681
RamOne RamOne Have to watched the Depair dub yet? I really like it but unsurprisingly, people are calling it " Utter trash" and crying " Why didn't they get the VAs from th game" Ignoring the fact they got most of them back
No, I haven't yet. I've only seen the Future dub, but man, that Monokuma is terrible.
It´s not even his signature laugh.

And yeah, the fanbase is pretty much anti-dub. I guess that's what you get when you're into weaboo territory. :p
Myself, I think the dub is still good on it's own.

View attachment 114706

I'm going into this game 100% blind. And as it turns out, the main focus of the game revolves around touchscreen controls.

And I'm playing on a Mac.

Fun times.

I'll be the best trackpad user on this forum by the time I finish the game.
Excellent choice. You're in for an amazing ride. It used to be my favorite game, it might be still but I still haven't replayed it yet. I blame the one save file for it.
 

Metal Shop X

CHAINSAW POWEEEEEEEER
Joined
May 4, 2015
Messages
26,850
Location
USA
NNID
Mao644
3DS FC
4339-3012-0905
Switch FC
SW-2905-0652-6700
I have both Birtright and Conquest on my 3DS now.
So, how do you call someone that is both with Hoshido and Nohr?
 

Jason the Yoshi

Watching Me, Wanting Me
Joined
Feb 26, 2014
Messages
18,791
Location
Waiting for Jesus
I tell you guys, I think my Google Chome app on my iPad is due for an update.

Every time I close the app, all my tabs disappear, and it won't upload images. This isn't the only site the image problem persists either.
View attachment 114699

Yo. Just wanted to show you all this. CLICK THE PICTURE FOR GREATNESS.

Double Jump is a Discord made by gamers, for gamers. Together discuss general subjects with other people, chill and in general have a good time.

Our events include:
  • Movie Nights every Friday at 6:00 PM EST!
  • Weekly Smash 4 tournaments hosted by The Stoopid Unikorn The Stoopid Unikorn for both singles and doubles!
  • Discussion channels for Smash, traditional fighting games, Pokemon, Overwatch, movies/TV and anime!
  • A channel where you can mess around with various bot commands!
  • Much, much more!
What are you waiting for? Hop on in and invite others in on the fun!
(Turns off the TV)
 

Kirbyfan391

Smash Champion
Joined
Feb 7, 2015
Messages
2,919
Location
h
I'm W.D.Gaster now.
Or rather Dr.Paradox from Ben 10.
I know who the former is, but not the latter. W.D. Gaster isn't really a paradox in any sense though, he's just something in the code of the game that doesn't actually appear in the actual game.
 

Metal Shop X

CHAINSAW POWEEEEEEEER
Joined
May 4, 2015
Messages
26,850
Location
USA
NNID
Mao644
3DS FC
4339-3012-0905
Switch FC
SW-2905-0652-6700
I know who the former is, but not the latter. W.D. Gaster isn't really a paradox in any sense though, he's just something in the code of the game that doesn't actually appear in the actual game.
Yeah, my bad on my part.:p
The latter is like a time-traveller. And his like the Dr.Who of Ben 10.
 

FalKoopa

Rainbow Waifu
BRoomer
Joined
Dec 16, 2012
Messages
32,231
Location
India/भारत
3DS FC
1650-3685-3998
Switch FC
SW-5545-7990-4793
I tell you guys, I think my Google Chome app on my iPad is due for an update.

Every time I close the app, all my tabs disappear, and it won't upload images. This isn't the only site the image problem persists either.
Try uninstalling and reinstalling. That usually fixes it.

I have both Birtright and Conquest on my 3DS now.
So, how do you call someone that is both with Hoshido and Nohr?
A Traitor. :troll:
Seriously though, have fun.
 

Metal Shop X

CHAINSAW POWEEEEEEEER
Joined
May 4, 2015
Messages
26,850
Location
USA
NNID
Mao644
3DS FC
4339-3012-0905
Switch FC
SW-2905-0652-6700
Try uninstalling and reinstalling. That usually fixes it.


A Traitor. :troll:
Seriously though, have fun.
I'm not a traitor.
I am a loyal traitor.
Just look at me.
b4d.jpg

I'm 100.00% Loyal to both my sibling and the family who raise me.
'cuz I fight for my friend.:4myfriends:
 

Aurane

ㅤㅤㅤㅤ
Joined
Sep 17, 2011
Messages
34,140
Location
A Faraway Place
I know who the former is, but not the latter. W.D. Gaster isn't really a paradox in any sense though, he's just something in the code of the game that doesn't actually appear in the actual game.
To be more precise, Gaster doesn't physically appear. He's referenced multiple times though.
 

Kirbyfan391

Smash Champion
Joined
Feb 7, 2015
Messages
2,919
Location
h
To be more precise, Gaster doesn't physically appear. He's referenced multiple times though.
He might tho, the popular fanon depiction of Gaster is based on a physically appearing character actually in the games code which again, might be Gaster.
 

CrusherMania1592

Deaf Smasher
Premium
Joined
Oct 24, 2009
Messages
6,333
3DS FC
5472-7454-3545
Alolan Pikachu leaked
a long *** time ago.

:troll:
This is the greatest from in the history of Pokemon. LONG LIVE PIKACHU!!!


So I was downtown playing Pokemon Go yesterday and a fist fight randomly broke out out of nowhere. Thankfully no one was hurt and no weapons were involved. My friend and I (both Deaf) went into a wtf mode for a moment and we were just planning to walk backwards

Meanwhile, I caught Charmander and Aerodactyl yesterday. Worth the exploring!
 

FalKoopa

Rainbow Waifu
BRoomer
Joined
Dec 16, 2012
Messages
32,231
Location
India/भारत
3DS FC
1650-3685-3998
Switch FC
SW-5545-7990-4793
Bandana Dee is in SSF2 now.

I'm very happy with his moveset. It's mostly faithful to his KRtDL moves, with extras thrown in. GG, McLeod.
 
Top Bottom