Questions tagged [playstation]

PlayStation is a series of console devices created and developed by Sony.

PlayStation is a series of console devices created and developed by Sony.

To date, these devices allowed users to play games which exist on compact discs and are typically connected to one's television (though there are also portable versions).

63 questions
13
votes
4 answers

Develop for PlayStation 3 Linux

I'm interested in developing software for Sony PlayStation 3 consoles which contains a multi-core Cell processor, targeting any PS3-compatible Linux distribution. "A single PS3 performs better than the highest-end desktops available and compares to…
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
11
votes
2 answers

PlayStation 2 game development on any console?

I'm interested in creating software/games for Sony PlayStation 2 consoles since they contain powerful processors for graphics (GPUs), floating-point calculations and general CPU. I have acquired a PS2 console and its PS2 SDK v3.07 which, supposedly…
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
7
votes
1 answer

Playstation Network API to get information?

Is it possible to get a Playstation network API working on a site? I'm wanting to create a site where PSN users can join online competitions using their PSN name
Duggy G
  • 465
  • 3
  • 12
  • 27
7
votes
2 answers

Difference between winsock and linux sockets

I'm developing an FTP-like program to download a large number of small files onto an Xbox 360 devkit (which uses Winsock), and porting it to Playstation3 (also a devkit, and uses linux AFAIK). The program uses BSD-style sockets (TCP). Both of the…
arolson101
  • 1,473
  • 15
  • 29
6
votes
8 answers

How to create a Linux cluster for running physics simulations in java?

I am developing a scientific application used to perform physical simulations. The algorithms used are O(n3), so for a large set of data it takes a very long time to process. The application runs a simulation in around 17 minutes, and I have to…
Mario Ortegón
  • 18,670
  • 17
  • 71
  • 81
5
votes
1 answer

Vuejs and Bootstrap 4 on PlayStation 4 Internet browser

Is there any solution for Vuejs and Bootstrap 4 compatibility with Internet browser on PlayStation 4? When I open my website it just shows our background color and that's it. So I would like to hear your suggestions. Is there any solution for this?…
latovic
  • 899
  • 6
  • 11
5
votes
2 answers

Access the Sony Playstation SixAxis Controller using C++ on Linux

I'm coding in C++ on Linux (Ubuntu 12.04 specifically) and would like to use the PlayStation SixAxis controller (the type that comes with the PS3) as an input device, ideally over bluetooth. My application will be running headless. There's no window…
Drew Noakes
  • 300,895
  • 165
  • 679
  • 742
4
votes
3 answers

Creating universal applications for Consoles (PS4/XBoxOne)

I have been looking all over the place for an answer but I haven't found anything on this yet. I want to create an application (not a game) for PS4 or XBoxOne but so far none of the related websites provides either a good documentation or any…
Ahmed
  • 2,966
  • 7
  • 42
  • 69
4
votes
2 answers

Development resources for Mono on PS3

I have been considering taking the plunge and installing Linux on my Playstation 3. As C# is my current language of choice, the next logical step would be to install Mono. I have done a little research and found that…
Jason Z
  • 13,122
  • 15
  • 50
  • 62
3
votes
2 answers

are there DOM events for controller presses on the PS3?

I want to develop a site which is easy to use from a Playstation 3 PS3 game console web browser. I thought it would be good to make screen actions on button presses on the console. I can find no information on how to do this after quite a bit of…
3
votes
2 answers

Using DualShock 4 from OS X

On a whim I bought a Sony DualShock 4 Wireless game controller. Pairing the controller with my mac was easy. The controller works as expected in OpenEmu. Now I want to use the controller in my own game. In an XCode playground, I tried this: import…
soegaard
  • 30,661
  • 4
  • 57
  • 106
3
votes
3 answers

Is it possible to convert a binary executable into its original code and other files?

Pretty much as the title asks. For example, if I took a Playstation disc, could a program be written that converts all the binary on the disk back into its original code files, art assets, etc? Isn't it just kidn of like decryption? If not, is it…
3
votes
4 answers

Optimal datafile format loading on a game console

I need to load large models and other structured binary data on an older CD-based game console as efficiently as possible. What's the best way to do it? The data will be exported from a Python application. This is a pretty elaborate hobby…
3yE
  • 508
  • 3
  • 12
3
votes
0 answers

011010 opcode for PS1 emulator

I am attempting to make a ps1 emulator. I have looked through many websites for the opcodes for the r3000a processor which the play station uses. However, when I am running the opcodes from my ps1 bios, I get multiple opcodes prefixed with '011010'…
Vince
  • 613
  • 1
  • 7
  • 8
3
votes
1 answer

System.Threading Sleep function help? (C#)

I'm new in C# and I'm using System.Threading. I have this code: UISystem.SetScene(Scene_Menu); Thread.Sleep (9000); p.Text="HELLO"; Thread.Sleep(9000); p.Text="WORLD"; It delays 18 seconds, but the p.Text="HELLO" doesn't show between the sleep…
1
2 3 4 5