QJ.NET | Videos | Forums | iPhone | MMORPG | Nintendo DS | Wii | PlayStation 3 | PSP | Xbox 360 | PC | Downloads | Contact Us
Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact

QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides

Go Back   QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides > Developers Corner > PSP Development, Hacks, and Homebrew > PSP Development Forum
The above video goes away if you are a member and logged in, so log in now!

[RELEASE] PCMonitor Alpha (View PC CPU, RAM and Network Usage on your PSP)

This is a discussion on [RELEASE] PCMonitor Alpha (View PC CPU, RAM and Network Usage on your PSP) within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; This project allows you to view your computers CPU, RAM and Network Usage on your PSP graphically. You are required ...

Reply
 
LinkBack Thread Tools
Old 02-20-2008, 10:21 PM   #1
 
Join Date: Feb 2007
Location: Newcastle, Australia
Posts: 11
Trader Feedback: 0
Default [RELEASE] PCMonitor Alpha (View PC CPU, RAM and Network Usage on your PSP)

This project allows you to view your computers CPU, RAM and Network Usage on your PSP graphically.
You are required to run a small server application on the PC which you wish to monitor, the PSP then connects to this over WiFi and displays the info.
The server is written in VB6, while the PSP code is in C++

Notes
- Although the WiFi connection screen only uses the debug text the resource monitoring screen is graphical.
- PSP is clocked down to 111Mhz when using the application to extend battery life.
- Server only tested on Windows XP SP2 (may not work on anything below SP1 as some network usage monitoring code relies on it)
- Requires 3.XX Kernel (Tested on 3.90 M33-2 only) so make sure it is in the GAME folder (if it is set to 3.XX kernel) or GAME3XX
- Allows WPA WiFi Access

Usage
! The IP Address of the server must be set in "wifi.cfg" (in the format address=xxx.xxx.xxx.xxx) NO SPACES!!!
1. The "PCMonitor" folder must be copied to either the GAME folder (if it is set to 3.XX kernel) or the GAME3XX folder on the PSP
2. To use this application the server (PCMonitor.exe, Located in the "PC Server" directory) MUST be running
3. Open the application on the PSP and connect to the network
4. To make the server startup automatically with Windows, create a shortcut to PCMonitor.exe, copy it to the startup folder in the start menu, right click it and go to properties, go to shortcut tab and change target from "pathtoexe\PCMonitor. exe" to "pathtoexe\PCMonitor. exe" -minimized
Home will allow you to exit the application.

Misc
- If the PSP is no longer in the application and the server reads state Connected (7), then you will need to reset the server to use it again.
- The PSP will ONLY connect in when the server is in state "Listening (2)"

Known Bugs
- If the PSP drops the connection (low signal, server reset, server closed, wifi switched off, etc.), it will not try to reconnect, it will just show a set of static values but the application may be exited by the home button still (This will be corrected before the program enters Beta phase)
- If the IP Address is incorrect in the config ("wifi.cfg"), the application will just sit on a blank screen but the application may be exited by the home button still (This will be corrected before the program enters Beta phase)
- Overflow error persists in server, have narrowed it down and will employ bounds checks (This will be corrected before the program enters Beta phase)

Acknowledgements
PSP Wifi Code from "WiFiController v0.4.4" by David Rudie
PC CPU Usage Code from "Get the System Total CPU Usage using API" by Jason Hensley
PC RAM Usage Code from "Get Performance Info Example" by Jason Hensley
PC NET Usage Code from http://www.himarticles.com/SourceCod...alBasic_04.htm
Alpha Tester "Wildboy99" from QJ Forums

Changelog
Alpha 7
Bugfix - Fixed Overflow error in server (Implemented bounds checking, think I've got it this time )
Misc - Cleaned up PSP code in preparation for auto-reconnect (Code was VERY messy)

Alpha 6
Feature - Windows Media Player can now be controlled in PCMonitor. Only basic controls are supported and are as follows; LTRIGGER = Previous Song, RTRIGGER = Next Song, START = Play/Pause. Only tested on WMP10, Please post results of other versions.
NOTE: Buttons need to be held down briefly as the code to capture the key inputs on the PSP is poor. This will be fixed before the program enters Beta phase.

Alpha 5
Bugfix - Second attempt at fixing the overflow '6' error in server (had to do with how much data had been transfered over the network since boot, as always feedback is appreciated)

Alpha 4
Bugfix - Fixed overflow '6' error in server (needs testing on vista. Feedback Please!)
Feature - Server now takes command line option "-minimized" used to start server minimized. (See usage 4.)

Alpha 3
Bugfix - Now auto detects the drive Windows is installed to (used for network library install)
Bugfix - The X and O symbols are messed up on the first screen
Feature - Added minimize to tray option for server
Feature - Cleaned up server interface

Alpha 2
Bugfix - Added check for networking libraries and prompts for install if required

Alpha 1
Inital Release

This is my first C++ project so please be nice! It has quite a few bugs to iron out so please only report bugs related to the server application. Any other questions/comments are encouraged

DOWNLOAD Version 7

Last edited by darksaboteur; 03-04-2008 at 03:32 AM..
darksaboteur is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-20-2008, 10:52 PM   #2
 
Join Date: Oct 2007
Posts: 4
Trader Feedback: 0
Default Screenshots

PCMonitor Alpha V3 screenshots of the Connection, Main screen and connected server.
Attached Thumbnails
[RELEASE] PCMonitor Alpha (View PC CPU, RAM and Network Usage on your PSP)-pcmonitor_alpha_v3_screen.jpg   [RELEASE] PCMonitor Alpha (View PC CPU, RAM and Network Usage on your PSP)-pcmonitor_alpha_v3_screen2.jpg   [RELEASE] PCMonitor Alpha (View PC CPU, RAM and Network Usage on your PSP)-server-_screen.jpg  

Last edited by wildboy99; 02-24-2008 at 12:12 AM..
wildboy99 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-20-2008, 10:53 PM   #3
mov
 
mov's Avatar
 
Join Date: Nov 2005
Location: Vancouver, BC
Posts: 91
Trader Feedback: 0
Default

Cool, I'd try it if I ran Windows.

You should post a screenshot. Edit: N/M, see above.
mov is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-20-2008, 10:56 PM   #4
 
Join Date: Feb 2007
Location: Newcastle, Australia
Posts: 11
Trader Feedback: 0
Default

Quote:
Originally Posted by mov
Cool, I'd try it if I ran Windows.
In the future I plan to make a Linux version and release the source code which should fix that

-UPDATE-
Bumped To Version 2
New server version which removes missing MSWINSCK.OCX error message

Last edited by darksaboteur; 02-20-2008 at 11:26 PM.. Reason: Automerged Doublepost
darksaboteur is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-20-2008, 11:26 PM   #5
Art

Bush Programmer
 
Art's Avatar
 
Join Date: Nov 2005
Posts: 3,557
Trader Feedback: 0
Default

Pity the autoboot program is broken in the later firmwares.
I think there's some nutters out there who might dedicate a PSP for this
and build it into the case.
Art is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 04:50 AM   #6
PSP Developer On Break
 

 
My Mood: Bashful
Join Date: Jan 2008
Real First Name: [The]Cobra
Location: New York
Just Played: GameLive Shell
Posts: 587
Trader Feedback: 0
Default

cool i was thing of something like this hope to come true
__________________
Project:GameLive-Shell(Perc:19% | Ver: V0.1)
thecobra is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 05:16 AM   #7
 
CHRONOMASTER's Avatar
 
Join Date: Jan 2008
Posts: 7
Trader Feedback: 0
Default

You should add an option to minimize to system tray for the PCMonitor Server once you get to the part of refining the pc interface.
CHRONOMASTER is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 06:38 AM   #8
Enter Custom Title
 
SchmilK's Avatar
 
Join Date: Nov 2006
Posts: 1,664
Trader Feedback: 0
Default

Quote:
Originally Posted by Art
Pity the autoboot program is broken in the later firmwares.
I think there's some nutters out there who might dedicate a PSP for this
and build it into the case.
HAhaah...dang..just put my psp up to the front of the case nad its just a little wider than the 5 1/4 slots...dang that would be sweet...

darksaboteur your hard work and creative thinking is very impressive!

I might try this at work on my xp laptop
__________________
Quote:
Originally Posted by limneosgreen
Take my advice, don't try to install custom themes ... it's possible to brick ur psp.. why just don't change wallpaper
SchmilK is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 07:17 AM   #9
Enter Custom Title
 
Sullivan's Avatar
 
Join Date: Feb 2007
Location: Houston, Texas
Posts: 3,349
Trader Feedback: 0
Default

This looks nice, thanks man for the application!
__________________

PSN: TrueDef
AIM: TrueDef91
Prestige 7 On COD4
Sullivan is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 08:16 AM   #10
 
MK2k's Avatar
 
Join Date: Apr 2007
Posts: 181
Trader Feedback: 0
Default

CHRONOMASTER: you should try http://www.teamcti.com/trayit/trayit.htm
MK2k is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 08:45 AM   #11
 
CHRONOMASTER's Avatar
 
Join Date: Jan 2008
Posts: 7
Trader Feedback: 0
Default

MK2k, I have no problem in getting it to system tray using whatever method I see fit. I just meant it as a general feature so you don't need to download and/or run another program just to hide it.

Last edited by CHRONOMASTER; 02-21-2008 at 10:39 AM.. Reason: typo :p
CHRONOMASTER is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 08:50 AM   #12
Founder of AllTechRelated
 
psp2468's Avatar
 
Join Date: Aug 2007
Real First Name: Matti
Location: :)
Just Played: Medal of Honour
Posts: 684
Trader Feedback: 0
Default

Wow! This is an awsome app! Nice one
__________________
Founder of AllTechRelated.com
psp2468 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 12:46 PM   #13
 
Join Date: Feb 2007
Location: Newcastle, Australia
Posts: 11
Trader Feedback: 0
Default

Quote:
Originally Posted by CHRONOMASTER
You should add an option to minimize to system tray for the PCMonitor Server once you get to the part of refining the pc interface.
I already had plans to do that
darksaboteur is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 12:49 PM   #14

Avada Kedavra
 
Join Date: May 2007
Location: Spain
Posts: 703
Trader Feedback: 0
Default

Good job.
Coolj is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 04:25 PM   #15
 
yolarry's Avatar
 
Join Date: Sep 2006
Posts: 890
Trader Feedback: 0
Default

Works great, just wish you make it task tray.
__________________
No longer comes to this site...
yolarry is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-21-2008, 05:00 PM   #16
 
McLoViN_iT's Avatar
 
Join Date: Dec 2007
Posts: 270
Trader Feedback: 0
Default

NICE
McLoViN_iT is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-22-2008, 12:09 AM   #17
 
Join Date: Feb 2007
Location: Newcastle, Australia
Posts: 11
Trader Feedback: 0
Default

-UPDATE-
Bumped To Version 3
Bugfix - Now auto detects the drive Windows is installed to (used for network library install)
Bugfix - The X and O symbols are messed up on the first screen
Feature - Added minimize to tray option for server
Feature - Cleaned up server interface

Please report any bugs related to the server application

Download link in first post
darksaboteur is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-22-2008, 07:26 AM   #18
 
Rok_999's Avatar
 
Join Date: Nov 2006
Location: Slovenia
Posts: 25
Trader Feedback: 0
Default

When I try to run this version in Vista I get an error:

Run-time error '6':

Overflow

But from what I've seen in the first version it looks quite nice.
Rok_999 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-22-2008, 08:13 AM   #19
 
yolarry's Avatar
 
Join Date: Sep 2006
Posts: 890
Trader Feedback: 0
Default

Same here, Run-Time error '6' Overflow.
__________________
No longer comes to this site...
yolarry is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-23-2008, 02:44 AM   #20
 
Join Date: Feb 2008
Posts: 2
Trader Feedback: 0
Default

Same here, I get the '6 overflow error in vista
kyhwana is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-23-2008, 10:50 AM   #21
 
TheNeck's Avatar
 
Join Date: Jan 2008
Posts: 45
Trader Feedback: 0
Default

Working fine for me and I'm using Vista 64bit.
TheNeck is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 12:02 AM   #22
 
Join Date: Feb 2007
Location: Newcastle, Australia
Posts: 11
Trader Feedback: 0
Default

-UPDATE-
Bumped To Version 4
Bugfix - Fixed overflow '6' error in server (needs testing on vista. Feedback Please!)
Feature - Server now takes command line option "-minimized" used to start server minimized. (See usage 4. in readme)

Download link in first post
darksaboteur is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 06:12 AM   #23
 
Rok_999's Avatar
 
Join Date: Nov 2006
Location: Slovenia
Posts: 25
Trader Feedback: 0
Default

Heh, it didnt fix the error for me. (Run-time error '6': Overflow)

Oh and im on Windows Vista Ultimate 32bit.
Rok_999 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 09:30 AM   #24
 
yolarry's Avatar
 
Join Date: Sep 2006
Posts: 890
Trader Feedback: 0
Default

still error.

Vista Ultimate 32 bit.

I just stick with the first one and use mini tray or whatever.
__________________
No longer comes to this site...
yolarry is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 12:05 PM   #25
 
Join Date: Feb 2008
Posts: 1
Trader Feedback: 0
Default

can someone help me with the wifi.cfg part of the program? i tried entering my computer's IP and it didnt work.
crona is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 01:34 PM   #26
 
Rok_999's Avatar
 
Join Date: Nov 2006
Location: Slovenia
Posts: 25
Trader Feedback: 0
Default

Open Command Prompt and type "ipconfig" without the ""
and you should find your ip.. In my case it's 192.168.1.4

Hope that helps.
Rok_999 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 01:57 PM   #27
 
yolarry's Avatar
 
Join Date: Sep 2006
Posts: 890
Trader Feedback: 0
Default

lol I was trying to open v3 program, so I re overwrite and it fixed.
__________________
No longer comes to this site...
yolarry is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 02:35 PM   #28
 
Rok_999's Avatar
 
Join Date: Nov 2006
Location: Slovenia
Posts: 25
Trader Feedback: 0
Default

I'm almost 100% that I downloaded the right version and am I the onley one who's still getting the error... :S
Rok_999 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-24-2008, 10:50 PM   #29
 
TheNeck's Avatar
 
Join Date: Jan 2008
Posts: 45
Trader Feedback: 0
Default

Quote:
Originally Posted by TheNeck
Working fine for me and I'm using Vista 64bit.
Weird its working for me, Vista Ultimate also just 64bit.
TheNeck is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-26-2008, 03:30 AM   #30
 
Join Date: Feb 2007
Location: Newcastle, Australia
Posts: 11
Trader Feedback: 0
Default

-UPDATE-
Bumped To Version 5
Bugfix - Second attempt at fixing the overflow '6' error in server (had to do with how much data had been transfered over the network since boot, as always feedback is appreciated)

Download link in first post
darksaboteur is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
alpha , cpu , network , pcmonitor , psp , ram , release , usage , view

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -8. The time now is 07:44 PM.



Use of this Web site constitutes acceptance of the TERMS & CONDITIONS and PRIVACY POLICY
Copyright © 2009, QJ.NET. All Rights Reserved.
Contact Us