Zum Inhalt springen
Menü

Theme ändern
Unterstütze uns
PayPal-Logo Patreon-Logo
Abonniere uns per RSS Folge uns auf X (ehem. Twitter) Like uns auf Facebook Trete dem WiiDatabase-Kanal auf Telegram bei und erhalte alle News sofort!

Wir hosten zurzeit 623 Homebrews mit über 3.212.367 Downloads!

Nützliche Links
Kategorien
Archiv
Über uns

Schlagwort: python

PyNX v0.6.0 Alpha

Nintendo Switch, Nintendo Switch: Update

PyNX hat ein Update erhalten.

Mit Imgui und Pyimgui lässt sich nun eine hübsche Oberfläche zaubern und Urllib funktioniert endlich. Außerdem gibt es einen neuen Python-Launcher.

* Imgui and Pyimgui support (Documentation, Example)
* Urllib works properly now
* New python file launcher

Swiss v0.4 r451, NDS-Bootstrap v0.8 und PyNX v0.5.1-alpha

3DS, 3DS: Update, Nintendo Switch, Nintendo Switch: Update, vWii, Wii, Wii: Update , , ,

Hier sind die Homebrew-Updates der letzten Tage, namentlich: Swiss, NDS-Bootstrap und PyNX.


Swiss wurde auf v0.4 r451 aktualisiert.

DOWNLOAD SWISS

Phantasy Star Online 1 & 2 + funktioniert jetzt.

PSO 1 & 2 + support

NDS-Bootstrap wurde auf v0.8 aktualisiert. Die Änderungen können dem Changelog entnommen werden.

DOWNLOAD NDS-BOOTSTRAP

NDS-Bootstrap Changelog

What's new?
* Async prefetching has been implemented!
* (This does not apply to the SDK5 DSi build.)
* The Legend of Zelda: Spirit Tracks, now saves to SD card, so you no longer need a donor cart for saving.
* L+R+START+SELECT now activates a new method of soft-resetting a game.
* For 3DS, TWLNAND side of TWLoader is rebooted. For DSi, "SRLoader: Last-ran ROM" is booted.

Improvements
* 16MB/32MB RAM mode is now always used, so to access the cache, RAM mode switching no longer occurs.
* As a result, performance has been slightly increased.
* MegaMan Zero Collection (USA) now loads at near cart speeds!
* Some games that used DSi WRAM as cache, no longer uses it, and instead uses main RAM as cache, like most other games do.

Bug fixes
* Since RAM mode switching no longer occurs, game compatibility has been improved a bit, such as Metroid Prime Hunters (non-Korean) now working for the first time since a year or less.
* DS Download Play support is now fixed for SDK1-4 games! That means DS Download Station/Haxxstation is working again!
* NOTE: Please turn off donor ROM, for your ROM containing DLP, before using the DLP feature.
* Some games that needed donor ROM force-used, no longer needs it force-used.
* DLP demos using thumb, now work.
* DSiWarehax fixes have been implemented to the 3DS build.
* SRLoader v4.1.0 will use the 3DS build for 3DS users using DSiWarehax.

Regression
* As 16MB/32MB RAM mode is always used, and the cardEngine arm9 code has been moved from DSi WRAM, to the 4MB DS debug RAM area (main RAM) for DLP to work, that area is now used, so now only 24MB or lower (8MB or lower, for DSi) ROMs can be loaded into RAM.


PyNX wurde auf v0.5.1-alpha aktualisiert.

DOWNLOAD PYNX

PyNX hat ein eigenes Menü bekommen, mit dem Python-Skripte ausgewählt werden können. Diese müssen mit irgendeinem Namen im /switch/ Ordner oder in einen Unterordner dieses Ordners liegen und dann "main.py" heißen.

PyNX Changelog

v0.5.1-alpha:
* Fix relative import paths

v0.5.0-alpha:
* When launching PyNX, you will now be greeted with a menu that allows you to select the Python program you want to launch
* Python homebrew applications are now placed in the /switch/ directory on the SD card
* Python homebrew applications can be a single .py file or a directory containing a main.py file
* Python homebrews can of course import each other, as long as the homebrew they're trying to import is installed
* Miscellaneous controller input fixes

PyNX v0.3.0-alpha -> v0.3.1-alpha

Nintendo Switch, Nintendo Switch: Update ,

AileenLumina und DavidBuchanan314 haben ihren Python-Port für die Switch aktualisiert.

DOWNLOAD

UPDATE: v0.3.1-alpha fixt einen Fehler, bei dem PyNX abstürzte, wenn auf den aktuellen User per "nx.users.active_user" zugegriffen wurde.

In dieser Version wurde das CPython-Modul "_nx" integriert, welches einen Wrapper um native libnx-Funktionen darstellt. Mit dabei ist auch eine frühe Version des nx-Moduls, welches eben dieses CPython-Modul leicht zugänglich macht. Momentan kann damit auf Speicherdaten und Controller-Inputs zugegriffen werden.

Beispiel:

import nx
while True:
    if nx.p1.a_button.is_pressed:
        print("a", end="")

Dieser Code gibt "a" aus, wenn der A-Button von Spieler 1 gedrückt wird.

Zweites Beispiel für Speicherdaten:

import nx
BOTW_TITLE_ID = 0x01007ef00011e000 # title IDs are just hexadecimal numbers
botw = nx.titles[BOTW_TITLE_ID]
with botw.savedata.open('0/save_game.sav') as savegame_file:
    # do something with savegame_file, it's just a regular file object​

Dies öffnet die Speicherdatei von Zelda: Breath of the Wild. Damit lassen sich bspw. Savegame-Editoren in Python schreiben!

Achja: "Pynx" schreibt sich jetzt außerdem "PyNX".

Changelog

v0.3.1-alpha:
Hotfix: Accessing the currently active user via nx.users.active_user shouldn't crash PyNX anymore.

v0.3.0-alpha:
This release adds the _nx CPython extension module and the nx package. This allows developers to access Switch-specific functionalities. For now, only savedata access and basic controller input are implemented.

Pynx v0.2.0-alpha – Python für die Switch

Nintendo Switch, Nintendo Switch: Neu , ,

AileenLumina und DavidBuchanan314 haben Python auf die Nintendo Switch portiert!

DOWNLOAD

Pynx ist eine Portierung des Python-Interpreters “CPython” auf die Nintendo Switch. Damit lässt sich also Python-Code auf der Switch ausführen! Das ist besonders nützlich für alle, die gerne Switch-Homebrews schreiben möchten, aber kein C oder C++ können. Die mitgelieferte Version ist Python 3.5.

Ersetzt einfach die “main.py” im Download durch eure  eigene und führt Pynx über das Homebrew Menu aus.

In Zukunft wird es auch ein "NX-Modul" geben, welches einen Wrapper um das Homebrew-SDK "libnx" darstellt, sodass auf Switch-spezifische Funktionen zugegriffen werden kann. Beispiel:

await nx.P1.controller.A_BUTTON.wait_for_press()
if isinstance(nx.P1.controller, nx.SwitchProController):
    print("Nice controller you have there.")​

Qwad v0.6

Wii, Wii: Update , , , , , , , , ,

Qwad stellt eine Alternative zum NUS Downloader dar und kann IOS und Kanäle von Nintendos Server laden. Doch das ist nicht alles: Es lassen sich TMDs anschauen und WADs lassen sich ent- und verpacken. Den Funktionsumfang inkl. Installation seht ihr hier. Der Entwickler nano hat das Programm auf v0.6 aktualisiert.

Download

Qwad unter Linux Mint 14

Weiterlesen "Qwad v0.6"