Skip to content

Commit

Permalink
Super Cat Tales: PAWS has been decompiled!
Browse files Browse the repository at this point in the history
  • Loading branch information
heathercat123 committed May 25, 2024
1 parent 2aca011 commit 19b2d64
Show file tree
Hide file tree
Showing 2,190 changed files with 322,942 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .vscode/launch.json
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"
}
]
}
20 changes: 19 additions & 1 deletion README.md
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.
26 changes: 26 additions & 0 deletions asconfig.json
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"
}
},
}
}
Loading

0 comments on commit 19b2d64

Please sign in to comment.