Jump to content
xisto Community

gamingnews

Members
  • Content Count

    14
  • Joined

  • Last visited

About gamingnews

  • Rank
    Newbie [Level 1]
  1. Notice from snlildude87: Copied from http://forums.xisto.com/no_longer_exists/. Edited, closed, moved, and banned.
  2. Sony's PSP specs releasedAll I can say is," Wow!" posted 9:19am EST Thu Jul 31 2003 - submitted by MatthewNEWSSony has released very detailed specifications of its new portable gaming handheld device, the PSP. The specs make for eye-opening reading, with highlights being a wireless LAN using the 802.11 standard, an analog stick standard, and an all around incredibly powerful bit of equipment.The expected time of launch has also been confirmed as follows:Prototype: E3 in May 2004Title line-up: Tokyo Game Show 2004Worldwide Launch: Q4 2004The released details as taken from gamesradar.com:CPU Core:# MIPS R4000 32-bit core# 128-bit bus# 333MHz, 1.2V# 8 MB eDRAM main memory# 2.6GB/sec bus bandwidth# I-Cache, D-Cache# 2.6GFlops, FPU, VFPU (Vector Unit)# 3D-CG extended instructionsMedia Engine:# MIPS R4000 32-bit core# 333MHz, 1.2V# 128-bit bus# 2 MB eDRAM sub memory# 90 nm CMOS manufacturing processGraphics Core 1:# 2 MB VRAM# 5.3Gbps bus bandwidth# 3D Curved Surface + 3D Polygon Compressed Texture# Hardware Clipping, Morphing, Bone# Hardware Tessellator# Bezier, B-Spline (NURBS)Graphics Core 2:# Rendering Engine + Surface Engine# 166MHz, 1.2V# 256-bit bus# 2 MB VRAM# 5.3Gbps bus bandwidth# 664M pixels/sec fill rate# Max. 33M polygons/sec# 24-bit full colorSound Core:# VME (Virtual Mobile Engine)# 166MHz, 1.2V# 128-bit bus# 5 billion operations/second# 3D sound, 7.1 channel# Support for ATRAC3 Plus, AAC, MP3# Reconfigurable DSP engineMedia:# UMD--Universal Media Disc, 60 mm diameter# 660 nm laser diode# 1.8 GB dual layer# 11Mbps transfer rate# Shock-proof# Secure ROM by AES# Unique disc IDDisplay:# 4.5" TFT LCD with 16:9 widescreen display# 480x272 pixels, 24-bit full colorCommunication:# Wireless LAN (802.11) [Hotspots, Home Server]# IrDA infrared wireless communication [PSP, Mobile Phone]# USB 2.0 [PSP, PS2, PC]# Memory StickController:# Directional pad, analogue stick# Circle, Cross, Triangle, Square, L1, R1, Start, Select buttonsMisc:# MPEG4 AVC Decoder# Rechargeable lithium-ion battery# AV input/output# Headphone outputProgramming:# Similar to the original PlayStation# PSP libraries# middleware# sample code# simple programmable field# Media Engine and VME/AVE are not user programmable
  3. gamingnews

    Game Maker

    I have tried this program and love it! I have used it for more than a year now and have made many games. This program is also great for making regular programs, like a chat program! If you want some free games made by this program you can got to: Game Maker Games Once again this program is AWSOME! THANX David H.
  4. I have recentally compared both msn and google maps. both are great services, but which is better? Well google maps is certinally more popular but..... Msn maps has a great ZOOM function! it can zoom much further than google maps can. most of the pictures from msn are the same as the ones from google except for one funny thing; on Msn Maps when you try to go to the apple headquarters and see it from above, all you see is a dirt ground! My question is, is this an old picture or is it somebody from Microsoft trying to block out there competiters? I don't know but either way it's pretty funny. If you want to see this try it for yourself!Feel free to put any comments on this post.Thanx David H.
  5. Here we go again, It's a new year and our virus protection is one year old; we need to upgrade. So we go to bestbuy, walmart, officemax, etc... and we're looking at there antivirus programs when we face a delima. Which to buy Mcaffee or norton. We ask one employee which is best, he says norton. We ask another employee which is best, he says mcaffee. Which one is really the best? The answerBOTH..... This is one of those things again where you're buying the name not the software. Some people like Norton and some like Mcaffee. My recommendation is to buy them both and see which one you like better! My personal opinion is Norton but that's only because that's all i've used! I've tryed mcaffe but wasn't used to it so i gave up on it. well now i think it's time for a second chance. Bottom line is they're both good so use your favorite. Feel free to post your favorite virus protection program!Thanx David H.
  6. What we all have to do is think logically here. A lot of people say stuff like "Dell is a bad computer go with HP" Or"I hate alienware go with a dell" or similar comments. but what these people probably dont realize is that they both have the same insides! you can look at two computer brands like HP and DELL you may be getting the same exact specs but you're paying $1500 for one and $500 for the other. Your buying the name! Go with the one you like best not what other people say is the best.Ok ill get off of my soap box now
  7. This post is all about why the psp is awsome:~Awsome graphic- these graphics are amazing if you havent seen the psp graphics go online and do a search you'll be blown away!~Great games- there coming out with a grand theft auto for psp! it will be awsome! and who can dis lumines with its unique design. and what about coded arms? uh hello great games. Period.~Music- you can listen to music on the thing if it already wasn't great enough they added an mp3 player to better suit our needs.~Movies- you dont even have to buy the umds for this thing you can put them on the memory stick! um hello again. if this isnt awsome what is?~Design- the psp's design is great it feels like an extension of your hand! you can play games on it all day and not get craps in your fingers!~Web Browser- I saved the best for last. with the game wipeout pure you can tweak your settings and turn this thing into an awsome handheld web browser!Please feel free to post more great things about the pspThanx David H.
  8. I am looking for some good books on game programming in c++ if any body out there has any suggestions feel free to post them. Oh by the way should i start out with an easier language like BASIC or should I just work on c++. Ineed some help people please reply fast.Tahnx David H
  9. Ive got the code for A number guessing game. It's written in BlitzPlus though. (kinda like BASIC i guess) ;demo02-11.bb - Try to guess the numberPrint "Welcome to the Guessing Game!"AppTitle "Guessing Game!";Seed the random generator...don't worry, it willl be explained later SeedRnd MilliSecs() ;Pick a number between 1 and 100numbertoguess = Rand(1,100) ;The num of guesses the user has usednumofguesses = 0;set the beginning of loop label.loopbegin ;Find out the user's guess guess = Input$("Guess a number ") ;If player guesses outside of range, tell him to guess again If guess > 100 Or guess < 1 Print "Pick a number between 1 and 100, silly!" ;Go back to the beginning Goto loopbegin EndIf ;Add a guess to the guess counter numofguesses = numofguesses + 1 ;If the guess is too low, go back to beginning If guess < numbertoguess Then Print "The number was too low." Goto loopbegin;If guess is too high, go back to the beginning Else If guess > numbertoguess Then Print "The number was too high." Goto loopbegin EndIfPrint "You guessed the number " + numbertoguess + " in " + numofguesses + " tries!" ;Wait five secondsDelay 5000
  10. SYSTM and THEBROKEN are both internet tv shows about technology. they are the best shows out on the net. If you have never Heard of them check em out.
  11. hey i've got one of your problems solved. this is a great site for javascript applets including password protection, enjoy.My Webpage Notice from Becca: merged
  12. Hello everybody, This is my first post here and so far I am enjoying this service very much. I have a question for everybody interested. I am buying a new laptop for school this year and was thinking about buying the new Dell Inspiron 700m. Does anybody have this computer? And if so can you tell me if you like it? I am also open to suggestions for other laptops under $1500 that are portable and lightweight. Thank You, David H
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.