mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 11:20:40 +00:00
PS3: Added a readme
This commit is contained in:
parent
c31ec23d5b
commit
1fdbf418dd
49
dists/ps3/readme-ps3.md
Normal file
49
dists/ps3/readme-ps3.md
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
Prerequisites
|
||||||
|
=============
|
||||||
|
- A homebrew enabled PlayStation 3 console. As of now that mostly means having a custom firmware installed. Obtaining and installing such a software is out of the scope of this document. Sorry, but you're on your own for that one.
|
||||||
|
- At least one ScummVM supported game. The list of compatible games can be seen here: http://www.scummvm.org/compatibility/
|
||||||
|
The page http://wiki.scummvm.org/index.php/Where_to_get_the_games references some places where those games can be bought. Demonstration versions for most of the supported games are downloadable on http://scummvm.org/demos/
|
||||||
|
- An USB drive.
|
||||||
|
|
||||||
|
Installing
|
||||||
|
==========
|
||||||
|
From a computer, download the installable package of the PS3 port from ScummVM's main site. It should be a .pkg file. Copy it to an USB drive.
|
||||||
|
After having plugged the USB drive to you PS3, the installation package should appear in the XMB under the "Games > Install Package" menu. Installing it copies ScummVM and its dependencies to your PS3's hard drive. It also adds the "Games > PlayStation 3 > ScummVM" XMB entry which is to be used to launch ScummVM.
|
||||||
|
|
||||||
|
Configuring and playing games
|
||||||
|
=============================
|
||||||
|
The user manual describes how to add games to ScummVM and launch them : http://wiki.scummvm.org/index.php/User_Manual
|
||||||
|
|
||||||
|
PlayStation 3 Specifics
|
||||||
|
=======================
|
||||||
|
Games can be launched either from an USB drive or from the internal hard drive. The internal hard drive has better performance though.
|
||||||
|
Savegames are wrote in the /hdd0/game/SCUM12000/saves folder.
|
||||||
|
|
||||||
|
Joypad button mapping
|
||||||
|
=====================
|
||||||
|
- Left stick => Mouse
|
||||||
|
- Cross => Left mouse button
|
||||||
|
- Circle => Right mouse button
|
||||||
|
- Triangle => Game menu (F5)
|
||||||
|
- Square => Escape
|
||||||
|
- Start => ScummVM's in global game menu
|
||||||
|
- Select => Toggle virtual keyboard
|
||||||
|
- L1 => AGI predictive input dialog
|
||||||
|
|
||||||
|
Disclaimer
|
||||||
|
==========
|
||||||
|
Unauthorized distribution of an installable package with non freeware games included is a violation of the copyright law and is as such forbidden.
|
||||||
|
|
||||||
|
Building from source
|
||||||
|
====================
|
||||||
|
This port of ScummVM to the PS3 is based on SDL. It uses the open source SDK PSL1GHT.
|
||||||
|
|
||||||
|
The dependencies needed to build it are :
|
||||||
|
|
||||||
|
- The toolchain from https://github.com/ps3dev/ps3toolchain
|
||||||
|
- SDL from https://github.com/zeldin/SDL_PSL1GHT
|
||||||
|
- ScummVM from https://github.com/scummvm/scummvm
|
||||||
|
|
||||||
|
Once all the dependencies are correctly setup, an installable package can be obtained from source by issuing the following command :
|
||||||
|
|
||||||
|
./configure --host=ps3 && make ps3pkg
|
2
ports.mk
2
ports.mk
@ -214,7 +214,6 @@ endif
|
|||||||
#
|
#
|
||||||
# PlayStation 3 specific
|
# PlayStation 3 specific
|
||||||
#
|
#
|
||||||
|
|
||||||
ps3pkg: $(EXECUTABLE)
|
ps3pkg: $(EXECUTABLE)
|
||||||
$(STRIP) $(EXECUTABLE)
|
$(STRIP) $(EXECUTABLE)
|
||||||
sprxlinker $(EXECUTABLE)
|
sprxlinker $(EXECUTABLE)
|
||||||
@ -227,6 +226,7 @@ ifdef DIST_FILES_ENGINEDATA
|
|||||||
cp $(DIST_FILES_ENGINEDATA) ps3pkg/USRDIR/data/
|
cp $(DIST_FILES_ENGINEDATA) ps3pkg/USRDIR/data/
|
||||||
endif
|
endif
|
||||||
cp $(DIST_FILES_DOCS) ps3pkg/USRDIR/doc/
|
cp $(DIST_FILES_DOCS) ps3pkg/USRDIR/doc/
|
||||||
|
cp dists/ps3/readme-ps3.md ps3pkg/USRDIR/doc/
|
||||||
cp $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip ps3pkg/USRDIR/data/
|
cp $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip ps3pkg/USRDIR/data/
|
||||||
cp dists/ps3/ICON0.PNG ps3pkg/
|
cp dists/ps3/ICON0.PNG ps3pkg/
|
||||||
cp dists/ps3/PIC1.PNG ps3pkg/
|
cp dists/ps3/PIC1.PNG ps3pkg/
|
||||||
|
Loading…
Reference in New Issue
Block a user