GAMELOFT VS JAVA GAMES
|
04-30-2021, 10:17 PM
(This post was last modified: 04-30-2021 10:23 PM by JoseskVolpe.)
Post: #41
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
(04-30-2021 07:23 PM)star cash Wrote: You mean i can use my java phone to create java game?????? You can with this app. But i don't recommend it by experience. It takes so long and is hard to compile, have a big issue setuping libraries, is full of errors, and you would take hours or days doing stuff you could do in minutes from a PC. I don't advise its use for long projects, only for very small projects. That's a good idea for a developers event tho: Create a simple J2ME game using only J2ME tools like PaintCAD, Opera Mini and J2ME SDK Mobile J2ME, as a old technology, has a advantage of being possible to develop for in old and cheap PCs. Basically with a Windows XP, with a old Pentium Duo, on a CRT screen, on a old Eclipse version, and Java 1.3, you can create games and apps for it much easier and faster than on a Java phone. [size=xx-small]Signature[/size] [URL=https://www.exophase.com/user/JoseskVolpe/][IMG]https://card.exophase.com/2/0/45687.png?1612237163[/IMG][/URL] [align=justify][size=x-small][b]OwO ¿¿¿What is this??? *wags tail* Take my beret plz 7w7 ~[/b][/size][/align] |
|||
04-30-2021, 11:47 PM
(This post was last modified: 04-30-2021 11:58 PM by JoseskVolpe.)
Post: #42
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
(04-30-2021 11:44 PM)star cash Wrote: Drop link for the app use for creating java game with java phone http://ultraplicativos.blogspot.com/2013...le_30.html Better mirror: J2ME_SDK_Mobile.jar (Size: 618.6 KB / Downloads: 278) [size=xx-small]Signature[/size] [URL=https://www.exophase.com/user/JoseskVolpe/][IMG]https://card.exophase.com/2/0/45687.png?1612237163[/IMG][/URL] [align=justify][size=x-small][b]OwO ¿¿¿What is this??? *wags tail* Take my beret plz 7w7 ~[/b][/size][/align] |
|||
05-01-2021, 12:57 AM
Post: #43
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
(04-30-2021 11:53 PM)star cash Wrote:(04-30-2021 11:47 PM)JoseskVolpe Wrote:(04-30-2021 11:44 PM)star cash Wrote: Drop link for the app use for creating java game with java phone First, don't forgot to set file write/read permissions to "Allowed" or "Ask one time" Go to "New Project...", specify your Project's name and its Folder Location, and click create. This will create a new project. > Click "Create" Soft Button and Create. Now you should create your first package. Go to Source Packages > Left/Right Soft Key (it depends on your phone) > New > Java Package > Create > Specify your package name with dots and everything lower case (for example: "game.starcash") > right/left soft and "Finish" Open your new package > left/right shoft > New > Java MIDlet > Name it anything > then create A code will apear: Code: package game.starcash; Now you need to create a displayable and invoke it, you can create a new Java file for it, but you can make it inside the same file in the same class Add the following line: Code: import javax.microedition.lcdui.game.GameCanvas; Your code will look like this: Code: package game.starcash; Now you invoke wit into your startApp() class and begin it Don't forget startApp() is also used when you're resuming it, so you need to store in a variable your app was already started Code: boolean gameStarted=false; //False for the first startApp() And invoke your GameEngine Code: GameEngine engine; Your code will look like this: Code: package game.starcash; You are almost there, now you need to create a new thread, or in a easier way for this example, create a loop for the Update() method into the GameEngine, running separated from the paint() Thread: Code: while(true) { You can also use Thread.sleep() for limiting the FPS, but Java phones are very slow in performance so you won't need it at all, only for emulators, wich has FPS Limit in their settings Now this is your first Game Engine code:W Code: package game.starcash; Follow the comment instructions, and good work :3 You will see there'll be nothing dispaying on your game, or it'll be stuck in the loading time. It's because there's nothing for it to paint on the screen. Play with the g variable (Graphics class) on the paint() method and have fun [size=xx-small]Signature[/size] [URL=https://www.exophase.com/user/JoseskVolpe/][IMG]https://card.exophase.com/2/0/45687.png?1612237163[/IMG][/URL] [align=justify][size=x-small][b]OwO ¿¿¿What is this??? *wags tail* Take my beret plz 7w7 ~[/b][/size][/align] |
|||
05-01-2021, 01:01 AM
(This post was last modified: 05-01-2021 01:03 AM by Abidemhie.)
Post: #44
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
Someone upload somewhere else
The sdk how i want to net my enemies here in this forum.....***** the haters |
|||
05-01-2021, 01:07 AM
Post: #45
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
The app that he gave link for...
Someone should upload directly or give another link how i want to net my enemies here in this forum.....***** the haters |
|||
05-01-2021, 01:13 AM
Post: #46
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
I cant download...
Language barriers and stuffs how i want to net my enemies here in this forum.....***** the haters |
|||
05-01-2021, 01:14 AM
Post: #47
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
(05-01-2021 01:01 AM)Abidemhie Wrote: Someone upload somewhere else http://dedomil.net/forum/showthread.php?tid=5579 [size=xx-small]Signature[/size] [URL=https://www.exophase.com/user/JoseskVolpe/][IMG]https://card.exophase.com/2/0/45687.png?1612237163[/IMG][/URL] [align=justify][size=x-small][b]OwO ¿¿¿What is this??? *wags tail* Take my beret plz 7w7 ~[/b][/size][/align] |
|||
05-01-2021, 01:49 AM
Post: #48
|
|||
|
|||
RE: GAMELOFT VS JAVA GAMES
Thanks bro.
how i want to net my enemies here in this forum.....***** the haters |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)