Questions tagged [ps3]

The PlayStation 3 (PS3) is a home video game console produced by Sony Computer Entertainment.

The PlayStation 3 (PS3) is a home video game console produced by Sony Computer Entertainment.
It is the successor to PlayStation 2, as part of the PlayStation series.

81 questions
2
votes
1 answer

Are there are any Java libraries to talk to a PS3 controller?

I received a Mindstorms NXT set for Christmas. The first thing I did was install lejos on it so I can program the thing in Java. I built my first robot which basically drives until it gets close to something then swings its arm in a stabbing…
PKKid
  • 2,966
  • 3
  • 23
  • 20
1
vote
2 answers

How to cross compile for the PS3 from Mac OS X?

Has anyone done this before, and if so how do you setup the development environment?
bronxbomber92
  • 280
  • 2
  • 5
1
vote
1 answer

Xbox, PS3, Wii Parental lock API/SDK

Sorry if this is a general question but I cannot locate this information (their SDK's are mostly locked) Do the SDKs for Xbox, PS3, Wii have an API/access to parental lock facility? Can I make an app that can control the parental lock on these…
sami
  • 723
  • 2
  • 9
  • 23
1
vote
1 answer

The check50 command returns errors of my print_winner function

The print_winner function must find the candidate who has the highest votes and print its name. In case there are two candidates who have the same number of votes, the function must print 2 names. Here are the errors :( print_winner identifies…
Vahram
  • 11
  • 2
1
vote
1 answer

Javascript not working on PS3 Browser

I have recently put an advertising box that overlays the embedded videos on my website. Users are forced to click the "CLOSE TO PLAY" button in order to close the advertisement overlay and play the video. See it in action here:…
GreatestSwordsman
  • 1,175
  • 5
  • 20
  • 39
1
vote
1 answer

PyGame - RaspberryPi 3b+ with a ps3 controller

I am trying to use pygame with the raspberry pi to use a PlayStation 3 controller as an input for a car. I have tested the controller with a demo code, and everything works fine. Then when I try to use it in my program, it reads 0.0 as the input,…
1
vote
1 answer

libspe vs. libspe2? What's the difference?

I've been doing some experiments with the Cell processor in a PS3 that I have sitting around and I've run across an issue. It appears that there are two versions of the main SPE management library, libspe and libspe2. What is the difference between…
Paul Wicks
  • 62,960
  • 55
  • 119
  • 146
1
vote
1 answer

Xbox and ps3 API

I have been asked to create a site on which users can invite each other to play a game on a specific gaming console (X-Box or PS3 for example). If the players do meet online and play, the site needs to monitor which of them won - then distribute…
Harish
  • 2,311
  • 4
  • 23
  • 28
1
vote
1 answer

GWT and PS3 browser (Netfront)

Is anyone achieved loading GWT compiled app in PlayStation 3 (Netfront) browser? I have tried to compile IE6 only permutation, but PS3 did not pick it up. I think essentially the question is how to add new user.agent to GWT and map it to the…
Excell
  • 11
  • 1
1
vote
0 answers

How to rotate in modern games?

My idea was to play fortnite through my oldschool sixaxis controller, after that I planned to make specified Arduino controller (with sensors) to control the game. I used pygame.joystick to get data from controller, pynput to control mouse/keyboard.…
Levente Simofi
  • 307
  • 3
  • 11
1
vote
1 answer

Getting PS3 controller input in Unity3D

I want my PS3 controller to control my unity game, and so far it isn't going well. I have it plugged into my computer via the USB cable it came with. My computer did not install any drivers when I plugged it in, but it did make a sound and Unity…
Klink45
  • 439
  • 1
  • 6
  • 21
1
vote
1 answer

Variance in size of struct between ppu and spu

I'm doing some cell broadband engine programming, and I've come across a strange thing I can't explain, while investigating a segmentation fault, based on the following code: struct SPU_DATA { unsigned char *i; unsigned char *o; unsigned…
Ian Young
  • 1,712
  • 1
  • 16
  • 33
1
vote
0 answers

ClEyeMulticam.dll sometimes load sometimes not

I have installed Cleye drivers for PS3eye camera (driver 5.3.0.0341 and SDK 1.6.4.0028) and I am trying to run Processing example (java) in Cl-eye Platform SDK. Problem is that processing library, more specifically the ClEyeMulticam.dll does not…
doku
  • 73
  • 9
1
vote
2 answers

Using Bit Fields to save memory

I am currently starting a project on the ps3 at university and we get marks for how optimized the code is. Me and my partner have been looking at bit fields as we are dealing with millions of numbers between 0 and 255. We figured if we can pack 4…
1
vote
1 answer

How to use java to call C# Library that call a native C++ library

I am trying to make an android app for "Real Time Editing" on Playstation, and it depends on 2 libraries to function. One of which is coded in C# while the other is coded in Native C++. The C# lib use the Importdll function to make calls to the…