Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The Great Restubbening - part 1 #9369

Merged
merged 25 commits into from
Feb 1, 2023
Merged

Conversation

Dinnerbone
Copy link
Contributor

We currently have a bunch of ways to stub things:

  • Have a comment saying stub, return Undefined
  • Have a (warning or error or info) saying (stub or not implemented), return Undefined
  • Return an error saying stub

This changes all rust stubs within AVM1 & AVM2 classes to a new stub system, which we should use going forwards. It prints a warning when the first time an individual stub is encountered, and keeps track of the stubs encountered for a movie. It also changes things that previously errored, to return Undefined.

Later PRs will aim to achieve:

  • A way to list all stubs encountered during a movie, maybe in crash reports or its own menu?
  • A way to list all stubs that Ruffle has, in a format of our choosing (maybe make github issues for remaining stubs?)
  • Converting AS stubs to use the same system

Individual PRs so as not to do a "change the world" PR, and we can benefit from the system right away.

@Aaron1011
Copy link
Member

It looks like linkme doesn't support WASM: dtolnay/linkme#6

@Dinnerbone
Copy link
Contributor Author

The feature isn't enabled on web (or anywhere by default) - it'll be used by a tool that just extracts the list and dumps it out

@Lord-McSweeney
Copy link
Collaborator

Can you also implement a native function in ActionScript (probably in the __ruffle__ namespace) to warn about a stub? There are a couple stubs written in ActionScript, including Loader.unload.

@Lord-McSweeney
Copy link
Collaborator

Also, shouldn't set_tab_children return Value::Undefined instead of true?

@Dinnerbone
Copy link
Contributor Author

Can you also implement a native function in ActionScript (probably in the __ruffle__ namespace) to warn about a stub? There are a couple stubs written in ActionScript, including Loader.unload.

That's what I meant by:

Later PRs will aim to achieve:

  • Converting AS stubs to use the same system

@Lord-McSweeney
Copy link
Collaborator

Lord-McSweeney commented Jan 31, 2023

Ok, thanks! I also noticed that the PR returns undefined in places that previously errored, but functions using these will probably expect a different type. Here are all the incorrect types I could find:

DisplayObjectContainer.areInaccessibleObjectsUnderPoint should return a boolean (should probably return False in this case)
DisplayObjectContainer.getObjectsUnderPoint should return an array
SoundMixer.areSoundsInaccessible should return a boolean (should probably return False in this case)
Font.enumerateFonts should return an array
StaticText.text should return a string (empty string in this case)
Proxy.isAttribute should return a boolean (I have no idea whether to return true or false here)

@Bale001
Copy link
Member

Bale001 commented Jan 31, 2023

For stubbing AS3 methods, I think using metadata tags would look nice, like this:

[Ruffle(Stub)]
public function registerClassAlias(a:String, b:Object):void {}

@Dinnerbone
Copy link
Contributor Author

For stubbing AS3 methods, I think using metadata tags would look nice, like this:

[Ruffle(Stub)]
public function registerClassAlias(a:String, b:Object):void {}

I have no idea how to get that working, but I'll give it a shot! My plan was just to call __ruffle__.stubMethod etc

@Dinnerbone
Copy link
Contributor Author

Ok, thanks! I also noticed that the PR returns undefined in places that previously errored, but functions using these will probably expect a different type. Here are all the incorrect types I could find:

DisplayObjectContainer.areInaccessibleObjectsUnderPoint should return a boolean (should probably return False in this case) DisplayObjectContainer.getObjectsUnderPoint should return an array SoundMixer.areSoundsInaccessible should return a boolean (should probably return False in this case) Font.enumerateFonts should return an array StaticText.text should return a string (empty string in this case) Proxy.isAttribute should return a boolean (I have no idea whether to return true or false here)

Fixed!

@Lord-McSweeney
Copy link
Collaborator

Lord-McSweeney commented Feb 1, 2023

It appears that we are stubbing undocumented methods (such as getMaxSize and getDiskUsage) in AVM1's SharedObject (at least, according to https://open-flash.github.io/mirrors/as2-language-reference/index.html). Could we add comments indicating that they are undocumented methods?

@Dinnerbone
Copy link
Contributor Author

It appears that we are stubbing undocumented methods (such as getMaxSize and getDiskUsage) in AVM1's SharedObject (at least, according to https://open-flash.github.io/mirrors/as2-language-reference/index.html). Could we add comments indicating that they are undocumented methods?

There's a lot of conflicting documentation for AS1 & AS2, and we implement a whole bunch of stuff that's not well documented.
This PR doesn't change what's stubbed, only how they're stubbed, so can we leave this for a future PR or open an issue? There's a lot of stuff that it could affect but it's not the scope of this PR to address them.

@Dinnerbone Dinnerbone merged commit 198e40f into ruffle-rs:master Feb 1, 2023
danielhjacobs added a commit to danielhjacobs/Flash-Matrix that referenced this pull request Feb 1, 2023
The log_warn part of the regex is temporary, and will likely need a change with a future Ruffle PR.
huwdp added a commit to huwdp/Flash-Matrix that referenced this pull request Feb 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants