maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Games (https://talk.maemo.org/forumdisplay.php?f=12)
-   -   Flappy Bird for N9 (https://talk.maemo.org/showthread.php?t=92794)

Ta76eem 2014-03-17 17:01

Re: Flappy Bird for N9
 
Quote:

Originally Posted by 蝉曦m (Post 1417122)
try to use filebox open dir,and click to install the app

I get damaged " installation package " message ..
can you add it to openrepos ??

coderus 2014-03-17 17:31

Re: Flappy Bird for N9
 
https://dl.dropboxusercontent.com/u/....0.4_armel.deb

setter 2014-03-17 20:08

Re: Flappy Bird for N9
 
That's not Flappy Bird, wrong thread.

coderus 2014-03-17 20:24

Re: Flappy Bird for N9
 
@setter sure, but start reading from: http://talk.maemo.org/showpost.php?p...0&postcount=32

setter 2014-03-17 20:44

Re: Flappy Bird for N9
 
I don't like hijacks :D

蝉曦m 2014-03-18 03:07

Re: Flappy Bird for N9
 
Quote:

Originally Posted by Ta76eem (Post 1417152)
I get damaged " installation package " message ..
can you add it to openrepos ??

because of the meego app store closed, I have no idea about where it could be uploaded.
it is the frist time I heared this app store, but please trust me,the package is nothing unsafe.

I will try the openrepos.

Shadwblade2652 2014-03-18 06:08

Re: Flappy Bird for N9
 
Quote:

Originally Posted by setter (Post 1417224)
That's not Flappy Bird, wrong thread.

Haha this isn't really just a flappy bird thread. It's more just for the developer. Let's be glad that the dev is working hard to make games for a pretty much dead device :)

mece 2014-03-18 06:43

Re: Flappy Bird for N9
 
Quote:

Originally Posted by 蝉曦m (Post 1417308)
because of the meego app store closed, I have no idea about where it could be uploaded.
it is the frist time I heared this app store, but please trust me,the package is nothing unsafe.

I will try the openrepos.

It's not a app store as such, just a collection of personal repositories. It does work somewhat like an app store though with the browsing app.

Here are some related threads:
http://talk.maemo.org/showthread.php?t=90672
http://talk.maemo.org/showthread.php?t=91574

蝉曦m 2014-03-18 08:27

Re: Flappy Bird for N9
 
Quote:

Originally Posted by mece (Post 1417333)
It's not a app store as such, just a collection of personal repositories. It does work somewhat like an app store though with the browsing app.

Here are some related threads:
http://talk.maemo.org/showthread.php?t=90672
http://talk.maemo.org/showthread.php?t=91574

so, you can know the network in China, it may not be a unobstructed way

elros34 2014-03-18 09:58

Re: Flappy Bird for N9
 
Quote:

Originally Posted by nokiabot (Post 1416765)
create a new thread for n900 please ,at least that would create a sound :)

Sound works but it's just disabled by developer in script.js file.

Quote:

Originally Posted by DJJonosound (Post 1417050)
All it needs is a slightly improved framerate.

I don't know n9 but on n900 enabling opengl make it usable. Check -graphicssystem opengl as a argument.

蝉曦m, thanks DoodleJump works nice on n900. I just need to change rs.reading.y to -rs.reading.x.

laith.m.y 2014-03-18 22:38

Re: Flappy Bird for N9
 
Quote:

Originally Posted by elros34 (Post 1417393)
Sound works but it's just disabled by developer in script.js file.


I don't know n9 but on n900 enabling opengl make it usable. Check -graphicssystem opengl as a argument.

蝉曦m, thanks DoodleJump works nice on n900. I just need to change rs.reading.y to -rs.reading.x.

can you explain more how to enable the sound from script.js ?

and how to enable opengl? (because the game run very slow on my n900)

thanx in advance

freemangordon 2014-03-19 07:31

Re: Flappy Bird for N9
 
Quote:

Originally Posted by laith.m.y (Post 1417555)
can you explain more how to enable the sound from script.js ?

and how to enable opengl? (because the game run very slow on my n900)

thanx in advance

I think one should open a separate thread for n900 (not me, I am really not that interested in gaming).

however, the "trick" to enable HW acceleration on n900 is:
Code:

QmlApplicationViewer::QmlApplicationViewer(QWidget *parent)
    : QDeclarativeView(parent)
    , d(new QmlApplicationViewerPrivate())
{
#ifdef Q_WS_MAEMO_5
    setAttribute(Qt::WA_Maemo5LandscapeOrientation);

    engine()->addImportPath(QString("/opt/qtm11/imports"));
    engine()->addPluginPath(QString("/opt/qtm11/plugins"));

    setViewport(new QGLWidget);
#endif

    setViewportUpdateMode(QGraphicsView::FullViewportUpdate);

    setAttribute(Qt::WA_OpaquePaintEvent);
    setAttribute(Qt::WA_NoSystemBackground);

    viewport()->setAttribute(Qt::WA_OpaquePaintEvent);
    viewport()->setAttribute(Qt::WA_NoSystemBackground);

.
.
.

here http://46.249.74.23/flappybird.tar.gz you can download working .deb/source for n900, based on the last before the final (or final, I am not sure) version of flappybird for n9

elros34 2014-03-19 08:23

Re: Flappy Bird for N9
 
Quote:

Originally Posted by laith.m.y (Post 1417555)
can you explain more how to enable the sound from script.js ?

and how to enable opengl? (because the game run very slow on my n900)

thanx in advance

for sound you must uncomment (remove //)
Code:

//    if(mp3=="start"){playMusic1.play() ..
at the end of script.js file

for better performance you can do what freemangordon said or run game with parameter:
meecolay pathToGame/DoodleJump -graphicssystem opengl

laith.m.y 2014-03-19 15:08

Re: Flappy Bird for N9
 
Quote:

Originally Posted by freemangordon (Post 1417600)
here http://46.249.74.23/flappybird.tar.gz you can download working .deb/source for n900, based on the last before the final (or final, I am not sure) version of flappybird for n9

this .deb works very very good and the game is smoother than enable opengl


Quote:

Originally Posted by elros34 (Post 1417609)
for sound you must uncomment (remove //)
Code:

//    if(mp3=="start"){playMusic1.play() ..
at the end of script.js file

for better performance you can do what freemangordon said or run game with parameter:
meecolay pathToGame/DoodleJump -graphicssystem opengl

now the sound work fine , although the code in script.js miss the hit sound


thank you both for help :)

pmeuh 2014-03-23 15:20

Re: Flappy Bird for N9
 
Just a quick bug report, I don't know why I should die in this situation:
http://uppix.net/dIsoQr.png
Thansk for this app anyway, it's really good even though I'm really bad :D

If someone speaks Chinese and can report the programmer ;)
Cheers

DJJonosound 2014-03-24 03:00

Re: Flappy Bird for N9
 
Its because the hitbox is just the square of the png, even if its transparent, The dev is well aware of this.

蝉曦m 2014-03-26 05:02

Re: Flappy Bird for N9
 
Quote:

Originally Posted by DJJonosound (Post 1418264)
Its because the hitbox is just the square of the png, even if its transparent, The dev is well aware of this.

I'll make a update in two days

蝉曦m 2014-03-26 05:06

Re: Flappy Bird for N9
 
Quote:

Originally Posted by freemangordon (Post 1417600)
I think one should open a separate thread for n900 (not me, I am really not that interested in gaming).

however, the "trick" to enable HW acceleration on n900 is:
Code:

QmlApplicationViewer::QmlApplicationViewer(QWidget *parent)
    : QDeclarativeView(parent)
    , d(new QmlApplicationViewerPrivate())
{
#ifdef Q_WS_MAEMO_5
    setAttribute(Qt::WA_Maemo5LandscapeOrientation);

    engine()->addImportPath(QString("/opt/qtm11/imports"));
    engine()->addPluginPath(QString("/opt/qtm11/plugins"));

    setViewport(new QGLWidget);
#endif

    setViewportUpdateMode(QGraphicsView::FullViewportUpdate);

    setAttribute(Qt::WA_OpaquePaintEvent);
    setAttribute(Qt::WA_NoSystemBackground);

    viewport()->setAttribute(Qt::WA_OpaquePaintEvent);
    viewport()->setAttribute(Qt::WA_NoSystemBackground);

.
.
.

here http://46.249.74.23/flappybird.tar.gz you can download working .deb/source for n900, based on the last before the final (or final, I am not sure) version of flappybird for n9

what a good job,canyou explain the N9 how to enable opengl?
I don't know anything about the Meego api of Qt

freemangordon 2014-03-26 10:25

Re: Flappy Bird for N9
 
Quote:

Originally Posted by 蝉曦m (Post 1418522)
what a good job,canyou explain the N9 how to enable opengl?
I don't know anything about the Meego api of Qt

On Harmattan (the OS that runs on N9/50) gles acceleration is enabled by default for QT applications (AFAIK), no special measures should be taken.

DJJonosound 2014-03-26 11:47

Re: Flappy Bird for N9
 
Quote:

Originally Posted by 蝉曦m (Post 1418521)
I'll make a update in two days

Awesome, thanks.

pmeuh 2014-03-30 21:29

Re: Flappy Bird for N9
 
There is a new version guys: http://pan.baidu.com/s/1jG6xOlK#dir/...FQt-FlappyBird
It's now almost too easy, I already reach 34 on my first attempt (my max was 18 before) :D
Thanx dev ;)

蝉曦m 2014-03-31 14:31

Re: Flappy Bird for N9
 
Quote:

Originally Posted by DJJonosound (Post 1418551)
Awesome, thanks.

额,the up floor put the newest version

蝉曦m 2014-03-31 14:32

Re: Flappy Bird for N9
 
Quote:

Originally Posted by pmeuh (Post 1419200)
There is a new version guys: http://pan.baidu.com/s/1jG6xOlK#dir/...FQt-FlappyBird
It's now almost too easy, I already reach 34 on my first attempt (my max was 18 before) :D
Thanx dev ;)

:D
right!

Konrad 2014-04-09 13:01

Re: Flappy Bird for N9
 
1)Thanks you for your apps
2)Can you use OpenRepos for your current and new apps?


All times are GMT. The time now is 17:24.

vBulletin® Version 3.8.8