Fix old article
This commit is contained in:
parent
7b1a2eac95
commit
f2d75d33fc
|
@ -107,16 +107,18 @@ As soon as I was back home, I grabbed my PSP, booted up a new virtual machine an
|
||||||
First step: Re-compile and run p-twit. Yip, it works (ok, it starts. Of course the Twitter API is so closed these days, it wouldn't be able to do anything).
|
First step: Re-compile and run p-twit. Yip, it works (ok, it starts. Of course the Twitter API is so closed these days, it wouldn't be able to do anything).
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
[![p-twit runs again](//tmp.fnordig.de/rust-on-psp/th-2014-11-24_11.54.27.jpg)](//tmp.fnordig.de/rust-on-psp/2014-11-24_11.54.27.jpg)
|
[![p-twit runs again](//tmp.fnordig.de/rust-on-psp/th-2014-11-24_11.54.27.jpg)](//tmp.fnordig.de/rust-on-psp/2014-11-24_11.54.27.jpg)
|
||||||
|
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
Second step: Follow the instructions from the [Gist][helloworld-instructions].
|
Second step: Follow the instructions from the [Gist][helloworld-instructions].
|
||||||
|
|
||||||
~~~
|
```
|
||||||
jer@psp-dev:~/rust-for-psp$ rustc hello.rs --target psp -lpspdebug -lpspdisplay -lpspge -lm -lc -lpspuser -lgcc
|
jer@psp-dev:~/rust-for-psp$ rustc hello.rs --target psp -lpspdebug -lpspdisplay -lpspge -lm -lc -lpspuser -lgcc
|
||||||
jer@psp-dev:~/rust-for-psp$ psp-fixup-imports hello
|
jer@psp-dev:~/rust-for-psp$ psp-fixup-imports hello
|
||||||
Error, no sceModuleInfo section found
|
Error, no sceModuleInfo section found
|
||||||
~~~
|
```
|
||||||
|
|
||||||
D'oh! That didn't work.
|
D'oh! That didn't work.
|
||||||
I played around, tried all kinds of things, then gave up a little frustrated.
|
I played around, tried all kinds of things, then gave up a little frustrated.
|
||||||
|
@ -132,19 +134,23 @@ He simply used the pre-compiled [minpspw][] package
|
||||||
Once I grabbed that, the "Hello World" application compiled and ran! Success!
|
Once I grabbed that, the "Hello World" application compiled and ran! Success!
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
[![From Rust with love](//tmp.fnordig.de/rust-on-psp/th-2014-11-27_01.13.59.jpg)](//tmp.fnordig.de/rust-on-psp/2014-11-27_01.13.59.jpg)
|
[![From Rust with love](//tmp.fnordig.de/rust-on-psp/th-2014-11-27_01.13.59.jpg)](//tmp.fnordig.de/rust-on-psp/2014-11-27_01.13.59.jpg)
|
||||||
|
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
The journey doesn't end here.
|
The journey doesn't end here.
|
||||||
Only partly satisfied with what I had, I took some free time on a train ride to write a wrapper for the input handling.
|
Only partly satisfied with what I had, I took some free time on a train ride to write a wrapper for the input handling.
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
[![Press X, press O](//tmp.fnordig.de/rust-on-psp/th-2014-11-28_12.25.50.jpg)](//tmp.fnordig.de/rust-on-psp/2014-11-28_12.25.50.jpg)
|
[![Press X, press O](//tmp.fnordig.de/rust-on-psp/th-2014-11-28_12.25.50.jpg)](//tmp.fnordig.de/rust-on-psp/2014-11-28_12.25.50.jpg)
|
||||||
|
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
Now it's possible to react to user input with this simple piece of code:
|
Now it's possible to react to user input with this simple piece of code:
|
||||||
|
|
||||||
~~~rust
|
```rust
|
||||||
let mut pad_data = ctrl::Input::new();
|
let mut pad_data = ctrl::Input::new();
|
||||||
|
|
||||||
if pad_data.read_changed() {
|
if pad_data.read_changed() {
|
||||||
|
@ -157,7 +163,7 @@ if pad_data.read_changed() {
|
||||||
_ => utils::debug_print("unhandled keypress\n"),
|
_ => utils::debug_print("unhandled keypress\n"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
~~~
|
```
|
||||||
|
|
||||||
The full implementation is up in [my fork of rust-psp-hello][helloworld-fork].
|
The full implementation is up in [my fork of rust-psp-hello][helloworld-fork].
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue