-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Super Cat Tales: PAWS has been decompiled!
- Loading branch information
1 parent
2aca011
commit 19b2d64
Showing
2,190 changed files
with
322,942 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "swf", | ||
"request": "launch", | ||
"name": "Launch SWF", | ||
"profile": "mobileDevice", | ||
"screensize": "750x1334:750x1334", | ||
"versionPlatform": "AND" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# PAWS-Decomp | ||
Decompilation of the 2023 mobile game Super Cat Tales: PAWS | ||
|
||
Decompilation of the 2023 mobile game Super Cat Tales: PAWS. This is the Android version 1.0.59 because that's what i have. For now, the app icons are missing and for whatever reason, sprites scale using bilinear filtering, which looks blurry. | ||
|
||
## Building | ||
|
||
#### Prerequisites | ||
|
||
You will need the following software to be installed: | ||
|
||
- [Visual Studio Code](https://code.visualstudio.com/). You can use other IDEs or even compile it from the command line, but these instructions are for VS Code. | ||
- [The ActionScript and MXML extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=bowlerhatllc.vscode-as3mxml). Once again, you can use other extensions or compile it from the command line, but these instructions are for the ActionScript and MXML extension. | ||
- [The Adobe Air SDK](https://airsdk.harman.com/). | ||
|
||
#### Compiling | ||
|
||
1. Set the AIR_HOME environment variable to the path of your AIR sdk. | ||
1. Open the directory of the decomp in Visual Studio. | ||
1. Go to the **Terminal** menu and select **Run Build Task...**. Alternatively, use the Ctrl+Shift+B keyboard shortcut (or Command+Shift+B on macOS). | ||
1. Select one of the options and let it compile! If it complains about a certificate, open up the asconfig.json file in a text editor. You'll find how to fix it in there. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"config": "airmobile", | ||
"compilerOptions": { | ||
"source-path": [ | ||
"src_no_sound_system_1_2_NEW_ADS" | ||
], | ||
"output": "bin/CatGamePaws_android.swf", | ||
"default-frame-rate": 60, | ||
"default-size": { | ||
"width": 1334, | ||
"height": 750 | ||
} | ||
}, | ||
"mainClass": "src_no_sound_system_1_2_NEW_ADS/Main", | ||
"application": "src_no_sound_system_1_2_NEW_ADS/application.xml", | ||
"airOptions": { | ||
"windows": { | ||
"target": "bundle", | ||
"output": "bin/CatGamePaws_android", | ||
"signingOptions": { | ||
"storetype": "pkcs12", | ||
"keystore": "You have to specify your own cerftificate. This can help: https://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7f74.html" | ||
} | ||
}, | ||
} | ||
} |
Oops, something went wrong.