Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

greeniekin

About

Username
greeniekin
Joined
Visits
146
Last Active
Roles
Member
Posts
92

Comments

  • So I opened are the jar deleted all classes. Pasted back just the OuyaController class. When I tried to import that jar in it worked. So I tried it randomly tried to add some classes back in. So far these ones make it crash OuyaFacadeCancelIgnoring…
  • @Dreamwriter - that forum was discussing the lack of a pause button to be used in game, and that people didn't want to have to send menu stuff to an external activity. I have no idea if they discussed what was going to happen with the system menu. T…
  • There is a background downloader? I always just watch it download because I assume there is no backwards downloader. Only the cancel button. Which I think might be the problem. Maybe I pressed cancel after starting it. Or my Internet disconnected(wo…
  • It is annoying that the OUYA team has not discussed any of this kind of stuff with developers. As this is the stuff developers should need to know. It is not like it is that hard to close an activity from within itself. Even using native-activity.
  • @SpoonThumb  - By system button I mean hitting it twice quickly. A single hit of the system button is now just the menu button. So technically it should be the menu button. This system menu call or whatever it is called(double press) is not up to t…
  • isaacburns said: Update With the Native Activity sample from android-ndk-r8d/samples/native-activity, moving the cursor using the touch pad floods the app with events.  The system eventually reports "NativeActivity isn't responding.  Do you w…
  • I have not used muscle. Though for client to client match up you will need UDP. While UDP is the preferred for most real time games. It is required for client to client play with routers. This is for NAT punch through. To get around routers which …
  • Are you using the native-activity class? I can not see a way with a the native activity class. Though if you have your own java class with a jni class then you can just make another jni call. Apply a mutex lock(assuming your running another thread) …
  • I can only speak for me and my house mates. They do not like the change either. That does not mean it can not be something else apart from the old one. The main one that is annoying is changing menu. Sounds like a toilet being flushed or flubber or …
  • There are android samba programs. Though would run as a service. I have not really heard anything about running services. Because it might be nice to be able to run chat clients in the background. Though there is a notifications window. That require…
  • Youtube allows it. Before you say that is different. Both are copyright issues or similar. Though maybe there should be something similar to google. A $10 dollar fee for a dev account to stop spam.
  • I am using  r8d. You have to dynamically load it. It is shown in the link koying gave. Though that does not look like how I load it with the use of extern. Though I suppose what ever works.
  • Making a jni call apparently has a bit of overhead to do it. So you want to make as little as possible. The native code will run as fast as compiling for that cpu. Native code also has the advantage of loading vendor specific GLes extentions. Where …
  • I had noticed this as well. Was really annoying. So we have a dpad that frequently gets diagonal presses when not intended and a joystick that keeps going right. Though not right all the time. So there might not be a good solution. Just extend the d…
  • Having it available as raw numbers as well would make it easier. Though concept is simple enough to come up with you own solution. Just need a byte editor or hex editor.  Then you can just copy the numbers in order into something like this byte[] ap…
  • So I take it there is still no updates for those of us using the ndk? Have not downloaded the ODK. There is no point for native_activity users at the moment. You could probably create some includes using the class loader api to fix this. With no big…
  • I just tried it seems to work now. I didn't change anything at all. Must have been some random bad luck.
  • There might be a way. I have not tried it yet the class you need is this http://developer.android.com/reference/android/view/InputDevice.html So something like this might be possible using findClass like thisI googled all this. it is all mashed tog…
  • I just tried it to get see the other section. Now soon as I click the store button I get "Store not working" or something similar and I do not even get the menus down the side or categorize.
  • I would say it is an android function. just as AInputEvent_getDeviceId(enent) is. What Puzzl describes looks to be java side. I really need a native way to access it as I am using native_activity. Edit: Searched the files of android-ndk-r8d\platfor…
  • Launch is in 23 days. Or are the kick starters going to get the prototype store?
  • Well the device id does not even start at 1 or 0 and does not tell you how many controllers. Considering it does not even have to be a controller. It also does not say when a device is disconnected or connected. Also the device id is incremental on…
  • I am just completely disregarding pointer messages. Realistically the touchpad will not get used in 99% of programs. I just use AMotionEvent_getAxisValue for everything. worked out what left trigger and right trigger values were. So the entire contr…
  • Just confirming. It is not actually KEYCODE_BUTTON_A; It is AKEYCODE_BUTTON_A right? It would be nice if this was more detailed. I originally thought that the ndk does not have KEYCODE_BUTTON_A because... Well it doesn't. I thought the odk would hav…
  • I did not realise we could use the store yet. Thanks a lot.
  • Nick that sounds good. Though for multiple line text being able to go down would be good. Though probably not that important. I was just envisioning there being other programs with text like maybe even IDE. develop apps on android and while I know…
  • Thanks a lot guys that will help me out with some planning.
  • I was thinking of joystick 2 as the right one. I should have just said the right joystick and left joystick. I should pause and think before writing. Even arrows in the virtual keyboard would be good. Though for really big bodies of text I would p…
  • Same. I couldn't figure out why at first. Was trying to rotate the ouya to get better line of site to the wireless usb dongle and lost power. I was wondering what the hell was happening since the power plug was still in. Apparently just not enough.
  • To the person saying hitting the system button while a game is loading is not a good idea. The game activity will not be the focus and will become paused. Which will mean all loading will stop. Not only that but in the worst case the application wi…