More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{#seo: | {{#seo: | ||
|title=Vita Homebrew Games (Board) - GameBrew! | |title=Vita Homebrew Games (Board) - GameBrew! | ||
Line 16: | Line 15: | ||
|license=Mixed | |license=Mixed | ||
|download=https://dlhb.gamebrew.org/vitahomebrews/reversmevita.7z | |download=https://dlhb.gamebrew.org/vitahomebrews/reversmevita.7z | ||
|website= | |website=https://wololo.net/talk/viewtopic.php?f=114&t=44128 | ||
|source=https://drive.google.com/file/d/0B8d0Wy4mDFrGM0k0YW9Xd01qS2M/view | |source=https://drive.google.com/file/d/0B8d0Wy4mDFrGM0k0YW9Xd01qS2M/view | ||
}} | }} | ||
Othello | If you haven't played Reversi/Othello before, you have definitely missed something in your childhood. | ||
But it's never too late, launch this homebrew immediately! | |||
You will quickly understand the game, and soon you will develop your own tactics to defeat the AI or your friend. | |||
== | ==Controls== | ||
You can control the entire game using the touchscreen, buttons, or both combined. | |||
* Touchscreen | |||
* Menus | |||
Tap on items to operate. | |||
* Pause menu | |||
To open the the pause menu, tap on the white area on the right side, next to the game board | |||
To close the pause menu, tap on the game board. | |||
* In-game | |||
Tap on squares to put a new piece. | |||
* Buttons | |||
* Menus | |||
Use either the digital pad or the left analog stick to navigate through the menus. Press X to operate, press O to go back. | |||
* Pause menu | |||
Press START to open the pause menu. To close, either press START again or O. | |||
* Single player in-game | |||
Use either the digital pad or the left analog stick to use the board cursor. Press X to put a new piece. | |||
* Multiplayer in-game | |||
For purple, the player on the left side of the PS Vita, use either the digital pad or the left analog stick to use the board cursor. Press L to put a new piece. | |||
For green, the player on the right side of the PS Vita, use either /\, O, X, [] or the right analog stick to use the board cursor. Press R to put a new piece. | |||
==Screenshot== | |||
[[image:reversmevita.jpg|600px]] | |||
==Multilanguage== | |||
At the moment, ReversMe supports 3 languages: | |||
* English | |||
* French | |||
* German | |||
If you want your language to be supported, please translate the list below, post it in the official release thread or PM it to me. | |||
<pre> | |||
LanguageContainer english_container = { | |||
"main menu", | |||
"single player", | |||
"multiplayer", | |||
"start game", | |||
"restart game", | |||
"exit game", | |||
"your color", | |||
"ai level", | |||
"show valid moves", | |||
"pause", | |||
"pass", | |||
"invalid", | |||
"purple won", | |||
"green won", | |||
"you won", | |||
"you lost", | |||
"drawn", | |||
"purple", | |||
"green", | |||
"yes", | |||
"no", | |||
"back", | |||
}; | |||
</pre> | |||
==AI Mode== | |||
In 'single player' mode, you can adjust the AI level, the difficulty, to your desire. | |||
The level represents nothing than the search depth of the minimax algorithm using alpha-beta pruning with this evaluation matrix: | |||
<pre> | |||
int matrix[4][4] = { | |||
{ 120, -20, 20, 5 }, | |||
{ -20, -40, -5, -5 }, | |||
{ 20, -5, 15, 3 }, | |||
{ 5, -5, 3, 3 } | |||
}; | |||
</pre> | |||
==Changelog== | |||
'''v1.1''' | |||
* Added spanish, polish and dutch translation. | |||
'''(v.1.0)''' | '''(v.1.0)''' | ||
* First Release. | * First Release. | ||
==Credits== | |||
* Thanks to yifanlu for Rejuvenate | |||
* Thanks to xerpi for vita2dlib | |||
* Thanks to 'Ash Pikachu' on dafont.com for the eurocaps font | |||
== External links == | == External links == | ||
* | * Wololo - https://wololo.net/talk/viewtopic.php?f=114&t=44128 | ||
* VitaDB - https://vitadb.rinnegatamante.it/#/info/181 | * VitaDB - https://vitadb.rinnegatamante.it/#/info/181 | ||
Revision as of 02:03, 8 November 2022
ReversMe | |
---|---|
File:Reversmevita.jpg | |
General | |
Author | TheFloW |
Type | Board |
Version | 1.1 |
License | Mixed |
Last Updated | 2016/07/30 |
Links | |
Download | |
Website | |
Source | |
If you haven't played Reversi/Othello before, you have definitely missed something in your childhood.
But it's never too late, launch this homebrew immediately!
You will quickly understand the game, and soon you will develop your own tactics to defeat the AI or your friend.
Controls
You can control the entire game using the touchscreen, buttons, or both combined.
- Touchscreen
- Menus
Tap on items to operate.
- Pause menu
To open the the pause menu, tap on the white area on the right side, next to the game board
To close the pause menu, tap on the game board.
- In-game
Tap on squares to put a new piece.
- Buttons
- Menus
Use either the digital pad or the left analog stick to navigate through the menus. Press X to operate, press O to go back.
- Pause menu
Press START to open the pause menu. To close, either press START again or O.
- Single player in-game
Use either the digital pad or the left analog stick to use the board cursor. Press X to put a new piece.
- Multiplayer in-game
For purple, the player on the left side of the PS Vita, use either the digital pad or the left analog stick to use the board cursor. Press L to put a new piece.
For green, the player on the right side of the PS Vita, use either /\, O, X, [] or the right analog stick to use the board cursor. Press R to put a new piece.
Screenshot
Multilanguage
At the moment, ReversMe supports 3 languages:
- English
- French
- German
If you want your language to be supported, please translate the list below, post it in the official release thread or PM it to me.
LanguageContainer english_container = { "main menu", "single player", "multiplayer", "start game", "restart game", "exit game", "your color", "ai level", "show valid moves", "pause", "pass", "invalid", "purple won", "green won", "you won", "you lost", "drawn", "purple", "green", "yes", "no", "back", };
AI Mode
In 'single player' mode, you can adjust the AI level, the difficulty, to your desire. The level represents nothing than the search depth of the minimax algorithm using alpha-beta pruning with this evaluation matrix:
int matrix[4][4] = { { 120, -20, 20, 5 }, { -20, -40, -5, -5 }, { 20, -5, 15, 3 }, { 5, -5, 3, 3 } };
Changelog
v1.1
- Added spanish, polish and dutch translation.
(v.1.0)
- First Release.
Credits
- Thanks to yifanlu for Rejuvenate
- Thanks to xerpi for vita2dlib
- Thanks to 'Ash Pikachu' on dafont.com for the eurocaps font