speedly.plgh1z1是哪个国家的游戏游戏

GAMECONSTS.H_VC 分布式坦克大战游戏_游戏编程_新兴源码下载
当前位置: >
> GAMECONSTS.H
VC 分布式坦克大战游戏.rarSRCSOUNDSRESLIBINLINCGRAPHICSANIMATION
loading...
//Download by
/*****************************************************************************
GameConsts.h
Electrical Engineering Faculty - Software Lab
Spring semester 1998
Tanks game
Module description: The collection of the game constant parameters in use.
Authors: Eran Yariv -
Date: 23/09/98
******************************************************************************/
#pragma warning (disable : 4239)
// warning C4239: nonstandard extension used : conversion from 'class XXX' to 'class XXX &'
#pragma warning (disable : 4201)
// warning C4201: nonstandard extension used : nameless struct/union
#ifndef GAME_CONSTS_H
#define GAME_CONSTS_H
#define MAX_TANKS
// Max number of tanks in one game
#define MAX_POSSIBLE_OBJECTS
// Max number of objects that appear concurrently
// Renderer:
#define MIN_RENDER_FREQ
// Minimal rendering rate (frames per second)
#define MAX_RENDER_FREQ
// Maximal rendering rate (frames per second)
#define DEFAULT_RENDER_FREQ
// Default rendering rate (frames per second)
#define MAP_WIDTH
// Width (in pixels) of game map
#define MAP_HEIGHT
// Height (in pixels) of game map
#define MAP_WIDTH_BITS
// Number of bits to hold map width
#define MAP_HEIGHT_BITS
// Number of bits to hold map height
#define SECTOR_DIVISION
// Each axis is divided SECTOR_DIVISION times
// Maximal sector number (e.g: 0..15 = 4 x 4 division)
#define MAX_SECTOR
((SECTOR_DIVISION) * (SECTOR_DIVISION) - 1)
#define MAP_WIDTH_BITS
// Number of bits to hold map width
#define MAP_HEIGHT_BITS
// Number of bits to hold map height
#define MAX_MINES_PER_SECTOR
(MAP_WIDTH
/ SECTOR_DIVISION / MINE_WIDTH )
(MAP_HEIGHT / SECTOR_DIVISION / MINE_HEIGHT)
// Orientation
#define MAX_DIRECTIONS
// Possible rotations (15 degrees)
#define INVALID_DIRECTION
(MAX_DIRECTIONS + 1)
// Indicates invalid direction index
// Tank selection animation:
#define TANK_ANIM_WIDTH
// Width (in pixels) of tank animation AVI
#define TANK_ANIM_HEIGHT
// Height (in pixels) of tank animation AVI
// Status bars:
#define SHIELD_STATUS_WIDTH
// Width of shield status bar
#define AMMO_STATUS_WIDTH
// Width of ammunition status bar
#define AMMO_STATUS_HEIGHT
// Height of ammunition status bar
#define DIGIT_WIDTH
// Width of single digit (ammo. status bar)
#define DIGIT_HEIGHT
// Height of single digit (ammo. status bar)
#define MAX_STATUS_VALUE
// Max value of status counters
// Transparency:
#define TRANSP_COLOR
// Mine object:
#define MINE_WIDTH
// Width of mine object
#define MINE_HEIGHT
// Height of mine object
#define MINE_INTENSITY
// Constant explosion intensity of a mine
#define MINE_EXPIRATION
DWORD(120000)
// Mine time-out (2 minutes)
// Bullet object:
#define BULLET_WIDTH
// Width of bullet object
#define BULLET_HEIGHT
// Height of bullet object
#define BULLET_SPEED
// Pixels / second
#define BULLET_INTENSITY
// Constant explosion intensity of a bullet
#define BULLET_DISTANCE_SQR
// Max distance of a bullet (squared)
// Shell object:
#define SHELL_WIDTH
// Width of shell object
#define SHELL_HEIGHT
// Height of shell object
#define SHELL_SPEED
// Pixels / second
#define SHELL_INTENSITY
// Maximal explosion intensity of a shell
#define MIN_SHELL_RADIUS
// Minimal explosion radius
// (below this distance you get a full blast power)
#define MAX_SHELL_RADIUS
// Maximal explosion radius
// (above this distance you don't feel a thing)
// Bomber object
#define BOMBER_WIDTH
// Width of bomber image
#define BOMBER_HEIGHT
// Height of bomber image
#define BOMBER_SPEED
// Speed of bomber (pixels / sec)
#define BOMBS_TIME_GAP
// Time gap between bombs (msecs)
#define BOMBER_ROTATION_DELAY
// Millisecs between rotation / movement in setup mode
#define EDGE_TICKS
// Number of setup positions on a single map edge
// Bomb object:
#define BOMB_WIDTH
// Width of bomb object
#define BOMB_HEIGHT
// Height of bomb object
#define BOMB_INTENSITY
// Maximal explosion intensity of a bomb
#define BOMB_SPEED
// Bomb speed equals the bomber's speed
#define MIN_BOMB_RADIUS
// Minimal explosion radius
#define MAX_BOMB_RADIUS
// Maximal explosion radius
// Tank object:
#define TANK_BLOCK_WIDTH
// Width of tank in map blocks
#define TANK_BLOCK_HEIGHT
// Height of tank in map blocks
#define TANK_WIDTH
// Width of tank in pixels
#define TANK_HEIGHT
// Height of tank in pixels
#define TANK_INIT_SHELLS
// Number of shells a tank begins with
#define TANK_INIT_BULLETS
// Number of bullets a tank begins with
#define TANK_INIT_MINES
// Number of mines a tank begins with
#define TANK_INIT_SHIELD_LEVEL
// Quantity of initial shield level
#define TANK_BONUS_SHELLS
// Number of shells granted by a bonus object
#define TANK_BONUS_BULLETS
// Number of bullets granted by a bonus object
#define TANK_BONUS_MINES
// Number of mines granted by a bonus object
#define TANK_BONUS_SHIELD
// Quantity of shield granted by a bonus object
#define BULLET_FIRE_RATE
// Number of bullets per sec.
#define SHELL_FIRE_RATE
// Number of shells per sec.
#define MINE_FIRE_DELAY
// We allow less than 2 mines per sec.
#define TANK_ROTATION_DELAY
// Millisecs between 15 degrees rotations
#define FIRE_RATE_BONUS
// Factor of fire rate when bonus is effective
#define FIRE_RATE_BONUS_DURATION 25000
// Duration of fire rate bonus in msec
#define TANK_MAX_VELOCITY
double( 40.0 )
// Tank's velocity in pixel per sec.
#define TANK_75_VELOCITY
double(TANK_MAX_VELOCITY * 0.75)
#define TANK_50_VELOCITY
double(TANK_MAX_VELOCITY * 0.50)
#define TANK_25_VELOCITY
double(TANK_MAX_VELOCITY * 0.25)
#define MAX_POS_TABLE
// Table of last 30 tanks positions
#define MAX_BAD_RTT_COUNT
// After X continous bad RTTs,
// a tank becomes zombie, and vice versa
#define MAX_VALID_RTT
// Maximal Round Trip Time considered valid
// Bonus object:
#define BONUS_WIDTH
// Width of bonus object
#define BONUS_HEIGHT
// Height of bonus object
#define BONUS_MIN_LIFESPAN
// Minimal life span of a bonus
#define BONUS_LIFESPAN_RANGE
// Life span range for rand func.
// Game-over animation
#define GAMEOVER_ANIM_WIDTH
#define GAMEOVER_ANIM_HEIGHT
// Communication object:
#define COMM_TIME_OUT
// Time out for wait event
#define CHKSUM_TIME_GAP_BITS
// Time gap (msecs) between checksum is 2 to the power ot this.
#define MAX_COMM_MUTE_PERIOD
// Max period of time the host didn't hear from a tank
// before it becomes zombie
#define MAX_PLAYER_NAME
// Max length of a player name
#define MAX_CHAT_MSG_LEN
// Max length of a chat msg
/************
Monitoring definitions and macros ****************/
Define NET_MON_GAME to allow network monitoring of game messages:
All incoming and outgiong game messages will
be TRACEd (excluding chksums).
//#define NET_MON_GAME
Define NET_MON_SYNC to allow network monitoring of game synchronization messages:
All incoming and outgiong game synchronization messages will
be TRACEd (chksums and checksum checking results).
//#define NET_MON_SYNC
Define NET_MON_SYS to allow network monitoring of DPlay system messages:
All incoming and outgiong DPlay system messages will
be TRACEd.
#define NET_MON_SYS
/* Trace game message */
#ifdef NET_MON_GAME
#define NET_GAME_TRACE(x) {TRACE ("\tGame message:"); TRACE TRACE ("\n");}
#define NET_GAME_TRACE(x)
/* Trace game synch message */
#ifdef NET_MON_SYNC
#define NET_SYNC_TRACE(x) {TRACE ("\tGame synch message:"); TRACE TRACE ("\n");}
#define NET_SYNC_TRACE(x)
/* Trace DirectPlay system message */
#ifdef NET_MON_SYS
#define NET_SYS_TRACE(x) {TRACE ("\tDPlay system message:"); TRACE TRACE ("\n");}
#define NET_SYS_TRACE(x)
/************
Statistics definitions ****************/
Define GATHER_RENDERING_STATS to allow the system to collect
statistics about the rendering performance (frame per second,
free time in each frame, etc.).
#define GATHER_RENDERING_STATS
Define GATHER_NETWORK_STATS to allow the system to collect
statistics about the network performance (bytes send / received per second,
round trip times and propogation delay).
#define GATHER_NETWORK_STATS
Define GATHER_SYNC_STATS to allow the system to collect
statistics about the synchronization system performance
(checksum mismatch rate etc.)
#define GATHER_SYNC_STATS
/************
General definitions ****************/
Define REAL_RANDOM to make the random elements of the game completely random.
If you disable real randomness, each activation of the program will yield the same
random numbers (good for debugging)
#define REAL_RANDOM
Use the following two definitions to manage the priorities of the
game manager threrad (renderer) and the communication manager thread.
The main application thread (the GUI thread) remains in THREAD_PRIORITY_NORMAL
#define GAME_MANAGER_THREAD_PRIORITY
THREAD_PRIORITY_HIGHEST
#define COMM_MANAGER_THREAD_PRIORITY
THREAD_PRIORITY_HIGHEST
// Default keyboard assignments
const int DEFAULT_KEYS_SETTINGS[] = {
// Turn Right
// Turn Left
// Forward
// BackWard
VK_CONTROL,
// Fire Shell
VK_RETURN,
// Fire Bullet
// Drop Mine
// Aerial Support
#define MAX_DWORD
0xFFFFFFFF
#if !defined ( UNREFERENCED_PARAMETER )
#ifdef _DEBUG
#define UNREFERENCED_PARAMETER(P)
#define UNREFERENCED_PARAMETER(P)
#endif // !defined ( UNREFERENCED_PARAMETER )
// GAME_CONSTS_H
| Copyright &
. All Rights Reserved .HelloTrade Will Help
You To Find A Business
XWelcome GuestHow it WorksTell us what you need by filling in the form Receive Verified supplier details Compare Quotations and seal the deal 1Basic Info2Requirement Details3Additional DetailsContinueSkip
Request for Quote
Member Since4 Yrs
No. 149-1, Jhusen Village, Tongluo Township, Miaoli Country, Taiwan Miaoli, T'Ai-Wan-366 ‎, Taiwan
Contact Supplier
Email Enquiry
CNC Lathe Series 42SL Multi-Tasking CNC Lathe
Get QuotesYes! I am interestedFOB Price : Get Price Machine features:
The rotation speed is same for both spindle.
equip with 12 stations servo turret.
the both spindle can turning 42 mm bar.
the both spindle can with 6" hydraulic chuck.
Machine specifications:
Item main spindle sub spindle Double spindle max. Turning dia. & 130 mm Max. Turning length & 260 mm Swing & 460 mm & 250 mm X axis 110 mm Z axis 200 mm 260 mm Rapid traverse 18 m/min Bar capacity & 42 mm Spindle hole & 45 mm Spindle nose a2-5 Chuck 6" Collet type 173e / 42 mm Spindle motor 5. 5kw X, z, a axis motor 1 kw Spindle speed (rpm) 100~4800 O. D tool □ 20 mm I. D tool & 25 mm Coolant pump 1/2 hp Hydraulic pump 1 hp Dimension 2110 x 1320 x 1860 mm Weight 2120 kg poly gim machine co. ,ltd. And it's assocication reserves the right to alter any mechanical specification without prior motice in the interest of product development.
More Products:
Get Quotes from Po Ly Gim Machinery Co., Ltd.
RELATED PRODUCTS
Related Suppliers &
More Products From This Supplier
Invalid Input
Enter product/service name
Please enter Mobile Number
Mobile Number
Invalid Email ID
Invalid Email ID
Your Contact Information
Provide any specific details
about : 'Product/Service required', 'Quality','Standard','Size' etc...
Convenient
Competitive Quotes
Choice of Suppliers
Payment Protection
sending enquiry ....
Thanks for Asking Quotation.Your enquiry has been sent successfullyThanks for Asking Quotation.Your enquiry has been sent successfully
unable to instantiate your call right now. please try after some time.
--Select Currency-- INR - India Rupees USD - U.S. Dollars GBP - U.K. Pounds EUR - Euro AUD - Australia Dollars CAD - Canada Dollars CHF - Switzerland Francs JPY - Japan Yen HKD - Hong Kong Dollars NZD - New Zealand Dollars SGD - Singapore Dollars NTD - Taiwan Dollars RMB - Renminbi Other
Preferred suppliers location:
How soon do you want to purchase:
After 1 month
Why do you need this:
For Reselling
For Your End Use
Is this your:
One Time Requirement
Regular Requirement
--Select--Daily Weekly Monthly Quaterly Half Yearly YearlyYour question
&&&Battery problem on ASUS notebook&
How old is the laptop or battery ?
Its about 6 months old, so luckily I still have warranty for both the laptop and the battery. I'd prefer solving it myself though as to avoid the hassle of sending it away and living without a computer for x weeks.
- Tech Support
- Tech Support
Can't find your answer ? Ask !
It sounds like the battery isn't working as it should/was and has lost calibration with the machine so it thinks theres 35% left when theres only 1-3%.
To check try telling it not to shut down or suspend or anything when the battery is low.
If the battery then lasts a long time its a calibration issue (some machines have a battery calibration you can run.
I the battery dies completely just after 50 minitues then you know the batery is on its way out.
Well, where do I change the settings to tell it not to shut down until theres absolutely no power?
The "auto shutdown" or wtv its called is already set to 5%, and the low battery warning to 10%. The problem is that it'll shut down way before any of these comes into play, so it wouldnt matter if i disabled this.
Another interesting thing happened just now, I unplugged the charger in order to reproduce the problem again. This time I changed the power mode to performance (had a far fetched idea of it overheating due to decreased fan speed etc. when using the power saving features).
Its been running on battery for ~15min now and the battery is still reading 100% and there is no estimates on how long it will last.
Any ideas on whats going on?
Just to follow up on what happened.
The computer ran for about 15min with the battery level at 100% and then it started decreasing just as it would normally. I had it on the perfomance mode so i expected it to shut down quite quickly (having the 50min in battery saving mode in mind) however it ran for about another 25-30mins until it shutdown (without any warnings, just like before). When it shut off the battery meter was around 60-65% and telling me i had another 40mins to go.
This leads me to believe its not really the battery that is faulty but rather something to do with the hardware/software controlling the charging and measuring of the battery. It ran for about 40mins on high performance mode as opposed to 50min with everything kept to a minimum, which doesnt really makes sense.
I'm not an IT expert at all, but when the battery reads 100%, does this really have to mean its actually fully charged? And is there any way to check? Thanks
It's important to stop charging these batteries before they reach 100% (it's possible the laptop already takes account of that). Don't run the laptop on the power adapter with a fully charged battery in it. The heat alone will shorten the life of the battery.
Treat it rather as you might a cellphone -- you don't let it run right down and you charge it when it looks as if it might run low while you're out and about.
This is worth a read though the person has the opposite problem
unfortunately there was no solution but a few things to try
Thanks for your replies! Any help is appreciated.
I know its not good for the battery to keep it in while on AC, but I usually buy a new laptop before the battery wear significantly affects the performance anyways. So I choose the convenience of not having to take the battery out every now and then over loosing a little bit of battery performance.
I doubt that my problem have to do with regular wear and tear since I use my laptop just as anyone would.
Thanks for the link! He is mentioning problems with the ACPI as well, so the problems might have to do with eachother even though the "symptoms" differ. Unfortunatly his "solution" was to turn off the critical battery warning and auto shutdown at 5%, which obviously wont help much in my case.
Do you think there would be any idea to try to do a "battery calibration"? And how do I do this?
I think the the link I posted mentioned there is a battery calibration in the Bios.
If you can't find it check your manual.
I am having the same problem. Did you find a solution??? If so please let me know!
aaron88 said:Thanks for your replies! Any help is appreciated.
I know its not good for the battery to keep it in while on AC, but I usually buy a new laptop before the battery wear significantly affects the performance anyways. So I choose the convenience of not having to take the battery out every now and then over loosing a little bit of battery performance.
I doubt that my problem have to do with regular wear and tear since I use my laptop just as anyone would.
Thanks for the link! He is mentioning problems with the ACPI as well, so the problems might have to do with eachother even though the "symptoms" differ. Unfortunatly his "solution" was to turn off the critical battery warning and auto shutdown at 5%, which obviously wont help much in my case.
Do you think there would be any idea to try to do a "battery calibration"? And how do I do this?
I am having this same problem. Do you remember how you fixed it. If so PLEASE let me know. It sucks that my computer keeps turning off with 35% battery left.
The guys over at ASUS support told me to take out the battery and leave it for three hours, then plug it back into the computer and fully charge it in order to "reset" it. This didn't work what so ever, I tried discharging it and leaving it for several days etc but nothing worked. So I wrote back to ASUS and they gave me the standard answer "reinstall Windows, if the problem persists please contact us blalbalbla", and since the battery isn't that important to me that I would go thru the trouble of reinstalling windows so I just didnt. So I actually never solved my problem.
I agree at this point I'm not reinstalling windows. Thank you for your response.
Ditto here.
Gateway/Asus gives me the same standard answer to do a destructive restore and when I call them back, telling then for the sake of it, that the problem is persisting they set up a repair order for me which involves sending it to thier repair center in Texas for 7-10 business days.
This I cannot do because I deeply depend and rely on my laptop and only computer for work and cannot wait the down time for it knowing that one of the first things they are going to do is a destructive restore of it anyway wiping out all of my files and endless personal settings that will inevitably end up takeing me weeks to restore on my own.
I brought it to Best Buy, where I purchased it, over the weekend and the GS agent was kind enough to offer some free suggestions.
Of which, they tested the power adapter for fault with thier electro gizmo and found none.
They also suggested that it's the battery which may be defective but did not have the ability to test it.
They also suggested that since the laptop is still under warranty that I contact the manufacturer and try to obtain warranty replacement for the battery.
It was at that point that I contacted Gateway and they set up the repair order for it before they were willing to just send me another battery.
Since a new battery from Gw/Asus isn't all that expensive ($50 including postage) I'm going to purchase a new one as a self troubleshooting effort.
If nothing else I'll have a back up battery should I need on in the future. I'll keep this forum updated as to my findings.
Please also do the same.
Desperate for juice in New England &
Hello,I have EXACTLY the same problem. Except that the computer doesn't shut down at 35%, but randomly below cca 25%. One I got it to 12%, but the battery warning didn't come on (it shoud at 15l right? I haven't messed with the settings)
I am having the exact same problem with my asus laptop.
Around 35 percent it is also shutting down.
I am also planning on exchanging battery because it's still under warranty.
I'll keep everyone posted...
aaron88 said:Hello,
I've got a ASUS PRO66IC running Windows 7 64bit with all updates installed and I recently came across a strange problem with it. I rarely use it in battery mode since I'm usually close to a power source, but the other day i had to use it on the go and this is when my problem occured.
When the battery percentage (as indicated by the battery meter in windows) reached 35% it shutdown without warning. I tried to turn it back on several times but it would shutdown during start up (just as it would if there was no power left in the battery). When I got back home i connected the charger and the computer powered up just as usual, and the battery (still reading 35%) started charging just as normal.
I've been able to reproduce the problem several times since this initially happened, and its the same thing every time, it shuts down without any type of warning as soon as it hits 35%. At first I thought it was some form of battery reading failure, and that my battery actually was out of juice, but after further investigation this cant be the case. The laptop is fairly new, and from a full battery to shutdown (at 35%) I only end up getting about 50minutes of battery life (with all battery saving features turned on, lowest screen brightness and CPU speed etc, and usage kept to a minimum).
I've gone thru the event logs in hope of finding some sort of clue to what is causing the problem and noticed 5 "failures" of the ACPI, which i beleive deals with the battery, the event-id of this failure is 13. None of these failures have occured when I've experienced the problem, but I figured they might be related anyways.
The computer works just fine when plugged in to a charger and I havn't been experiencing any other problems, the "critical battery level" (and automated shutdown) is set to 5% and shouldn't have anything to do with the problem.
I havn't installed any strange software (infact, I havnt installed anything at all other than windows updates) or changed any settings since the time it was working fine.
Also, if anyone have a similair laptop, is your battery life as bad as mine? I get around 1min/1% of battery with maximum possible power saving (no wifi, lowest screen brightness, lowest CPU speed etc.)
I would greatly appreciate any help that could lead me to the cause of this problem, thanks!
aaron88 said:Hello,
I've got a ASUS PRO66IC running Windows 7 64bit with all updates installed and I recently came across a strange problem with it. I rarely use it in battery mode since I'm usually close to a power source, but the other day i had to use it on the go and this is when my problem occured.
When the battery percentage (as indicated by the battery meter in windows) reached 35% it shutdown without warning. I tried to turn it back on several times but it would shutdown during start up (just as it would if there was no power left in the battery). When I got back home i connected the charger and the computer powered up just as usual, and the battery (still reading 35%) started charging just as normal.
I've been able to reproduce the problem several times since this initially happened, and its the same thing every time, it shuts down without any type of warning as soon as it hits 35%. At first I thought it was some form of battery reading failure, and that my battery actually was out of juice, but after further investigation this cant be the case. The laptop is fairly new, and from a full battery to shutdown (at 35%) I only end up getting about 50minutes of battery life (with all battery saving features turned on, lowest screen brightness and CPU speed etc, and usage kept to a minimum).
I've gone thru the event logs in hope of finding some sort of clue to what is causing the problem and noticed 5 "failures" of the ACPI, which i beleive deals with the battery, the event-id of this failure is 13. None of these failures have occured when I've experienced the problem, but I figured they might be related anyways.
The computer works just fine when plugged in to a charger and I havn't been experiencing any other problems, the "critical battery level" (and automated shutdown) is set to 5% and shouldn't have anything to do with the problem.
I havn't installed any strange software (infact, I havnt installed anything at all other than windows updates) or changed any settings since the time it was working fine.
Also, if anyone have a similair laptop, is your battery life as bad as mine? I get around 1min/1% of battery with maximum possible power saving (no wifi, lowest screen brightness, lowest CPU speed etc.)
I would greatly appreciate any help that could lead me to the cause of this problem, thanks!
Let me start by saying that i think you took this problem way too far &
If you ask me it's a simple matter of battery that is about to be dead. Why do you think the original batteries come with only 3 months of warranty in mostcases?
I believe that if you try your laptop with another (good) battery - this won't happen.
I had an Acer laptop and i had the same exact problem! After 2 years of connecting it only to an ac-adapter, i had enough and bought a replacement, it was a smart thing to do let me tell you that. You must also learn how to use your battery properly in order for it to last longer.
Here's a good place with some very useful tips:
This site also offers a power configurations guide and some other useful information
Having the exact same problem on an ASUS UL50VT computer. BIOS is the newest version (217).
I tried reinstalling windows from asus recovery (F9), which didn't work.
I also tried creating a ms-dos usb, and running the tool "Battlfm" from asus, but it didn't really work on my laptop. It kept saying something like "Please plug in your power cable"...
Described here:
I tried Reflashing the BIOS, and it didn't work.
The symptoms are the same. Battery staying at 100%, and suddenly poweroff's between 35% and 60%
I am having the same problem with my iPhone 4. After charging the phone, it will remain at 100% for a long time (which was unusual compared to the first month I had the phone). At bout 39%, the phone dies. I still get the same length of battery life. It seems that the battery calibration is off by about 40%. Is this problem have to do with the battery, or does it have to do with the phone not reading the amount of battery present?
I have an Asus notebook, U43 series, and am having the exact same dilemma. It began shutting down around 35% and now consistently does between 50-60%. My battery is around 8 months old, I changed the auto hibernate/shut down at critical battery level and messed around with different plans but to no avail.
As a student this is very frustrating in classes where there are no outlets. I will post any potential solutions I find and continue checking back, it is kind of nice to know there are others with the same problem.
Hello all,
I've been having the same issue.
My ASUS laptop, at first, would "ding" to remind me at about 5% that I need to plug in.
After about 1 1/2 years of having the laptop, it started to just shut off at 30%(ish).
It got progressively worse as I tried to find a solution.
I updated BIOS, all kinds of other files and applications from the ASUS website.
I tried all of the solutions suggested in this thread, and by the time I gave up, it was shutting off at 50% battery.
I *ALMOST* just upgraded my laptop.
But, there's nothing else wrong with the laptop, so I decided to buy a new battery.
It worked great.
Even as I type this, I'm running on battery power, and I'm down to 18% with no problems.
Everything is back to working as normal.
I'm notorious for using my laptop with it plugged in and at full battery.
I've been told this hurts the battery life significantly because the heat from the power zaps at the battery.
I'm not sure if it's true (it sounds true), but I'm going to only plug in when I'm under 10% from now on.
Hopefully I can avoid this problem again until I'm really ready to upgrade my laptop!
I hope this helps someone else.
If you're doubting whether replacing the battery will help, update all your stuff.
If you're still having issues, I highly recommend just replacing the battery.
Best of luck!
I've been having the EXACT same issue with my ASUS laptop - so its great to see so many replies here.
I'm glad to hear that replacing the battery worked!! Did anyone else have success with just buying a replacement battery??
I'm most likely going to just do that, but it would be nice to hear that it worked for multiple people &
Incidentally, when I first bought this laptop the battery worked GREAT and was my favorite feature of the computer (it would last at least 7 hours, sometimes more), so its extra painful to be dealing with this issue (although of course I know that batteries only last for so long!)
I have a similar problem. though not exactly the same, my laptop shuts off immediately after i unplug it from the charger. doesn't matter which end, what power options, whether its opened up or closed, same results. I bought the laptop in March, and have only recently been getting these problems. If replacing the battery works, then i want to try it as i think i'm still under warranty (not exactly sure &). However, i dont want to go about the hassle of getting a new battery and what not until i am sure it works. I have read of a few examples in which this works, and some where this does not. can anyone tell me under what circumstances thi would or would not work?
Thanks in advance &
I have a similar problem. The original ASUS battery wore out, so I bought a replacement generic. After a couple days, the power LED starts flashing green and yellow and the battery level displayed and time remaining stops decreasing. I checked the battery and turns out I bought a 10v battery, but the old was a 14.4v, so I exchanged the battery for the correct one and it did exactly the same thing.
I have an ASUS UX21E and I am traveling, so I am inconsistent in how I use the plugged in power.
Suddenly it shuts down without warning.
Battery power may be as high as 80% or low at ~30% or anywhere in between.
The laptop first had problems 3 months after I bought it, I had it repaired in Istanbul where they replaced the motherboard.
It was good for 6 months, but has happened again.
It is currently in for repair in Lisbon.
Let's see what they do to it.
I have the same problem too. At 35% ish sudden shutdown. I have it for 2.5 years - ASUS X52F
I have a similiar problem with my laptop I'll be in a 4 hour lecture and halfway through my laptop dies, even when
35% is remaining.
I have to bring my charger with me everywhere. I'm thinking of buying another battery just to carry around so I don't end up ruining my adapter with all the travelling I put it through to and from school on my bike.
It could be that the battery still has that % of capacity remaining, but the internal resistance of the battery pack is high enough that the voltage drops too much from the load of the laptop. A good test would be if you run prime95 with it on battery power, if it quits at a higher % or even immediately, it may be internal resistance. Or, circuitry in the battery is confused and is cutting power when it 'thinks' there is too much load on the battery.
Just a possibility.
I have my Asus Zenbook UX-21E and I also have this similar problems.
I am using Debian as a replacement of the original OS (Windows 7) and the computer is just shutdown while the battery level is just about 70%.
In Debian itself, the charge level is about 70% with time around 1hr 18 minutes remaining.
After it turned off, I just tried to keep turning on and go into BIOS screen. I leave it there until several minutes without charging the battery and the notebook is keep going on.
It will dead again after about half an hour and I reboot it back to Debian and stay at the login screen. Surprisingly, it can stay about almost an hour at that screen before it turns off again.
And I plug in the charger, reboot to Debian and stay in the home screen and immediately I unplug the charger. The battery runs for almost another 1 hour and now the indicator shows a correct figure (I guess) and it down from 10% all the way down to 1% and do automatic turn off.
Now the battery is completely flat and I put back the charger. It may takes about 3 hour to do full charge and since then my notebook starts to behave normally.
Maybe this can help.
,44149 said:Hello,
I've got a ASUS PRO66IC running Windows 7 64bit with all updates installed and I recently came across a strange problem with it. I rarely use it in battery mode since I'm usually close to a power source, but the other day i had to use it on the go and this is when my problem occured.
When the battery percentage (as indicated by the battery meter in windows) reached 35% it shutdown without warning. I tried to turn it back on several times but it would shutdown during start up (just as it would if there was no power left in the battery). When I got back home i connected the charger and the computer powered up just as usual, and the battery (still reading 35%) started charging just as normal.
I've been able to reproduce the problem several times since this initially happened, and its the same thing every time, it shuts down without any type of warning as soon as it hits 35%. At first I thought it was some form of battery reading failure, and that my battery actually was out of juice, but after further investigation this cant be the case. The laptop is fairly new, and from a full battery to shutdown (at 35%) I only end up getting about 50minutes of battery life (with all battery saving features turned on, lowest screen brightness and CPU speed etc, and usage kept to a minimum).
I've gone thru the event logs in hope of finding some sort of clue to what is causing the problem and noticed 5 "failures" of the ACPI, which i beleive deals with the battery, the event-id of this failure is 13. None of these failures have occured when I've experienced the problem, but I figured they might be related anyways.
I've experienced the exact same problem with an Asus u56e bbl5.
I let it go thinking I just needed another battery.
Now it has progressed to not charging the battery at all.
So, if removing the battery, it should power using adapter...NOTHING.
So now I know it's not the battery
aaron88 said:Its about 6 months old, so luckily I still have warranty for both the laptop and the battery. I'd prefer solving it myself though as to avoid the hassle of sending it away and living without a computer for x weeks.
I had a similar issue with my ASUS N550LV where the amber charge light would not quit blinking and I could not charge it to 100%.
1. Open your Laptop and remove the battery.
2. Using a clean tooth brush carefully brush off the battery contacts (on the battery and on the laptop)
3. replace the battery.
4. Plug the AC adapter and connect it to your laptop.
5. Leve it until battery is fully charged.
6. Once the battery is 100% charged click Start button, and go to Control Panel.
7. Select Power Options, create a new power plan by clicking Create a power plan.
8. Name the plan something like Battery maintenenace , then click Next.
9. Select Never under battery value for "Turn off the display" and "Put the computer to sleep" then click Create.
(This will prevent your notebook from turning off the display and entering Sleep mode to help drain battery faster).
10. Next unplug AC power adapter.
11. Select a movie to play or a DVD or a MP3 file and loop it continusly.
12. Set yory WMP or VLC player to repeat mode and start the playback.
13. Allow the player to play until the laptop turns off.
14. Plug in the AC power and restart your laptop, and let it charge it to 100%.
15. change the power plan back to your default plan.
Hopefully your issue will be resolved as mine was.
use as normal
I recommend doing this once a month to help ccle the battery fully and calibrate the battery,
AS i faced this problem and solved it though googling.SO here is the solution :just go to power option in control panel..then go to ur power plan what u r using right now..then just restore the defaults settings...
have a nice day broo...
aaron88 said:Hello,
I've got a ASUS PRO66IC running Windows 7 64bit with all updates installed and I recently came across a strange problem with it. I rarely use it in battery mode since I'm usually close to a power source, but the other day i had to use it on the go and this is when my problem occured.
When the battery percentage (as indicated by the battery meter in windows) reached 35% it shutdown without warning. I tried to turn it back on several times but it would shutdown during start up (just as it would if there was no power left in the battery). When I got back home i connected the charger and the computer powered up just as usual, and the battery (still reading 35%) started charging just as normal.
I've been able to reproduce the problem several times since this initially happened, and its the same thing every time, it shuts down without any type of warning as soon as it hits 35%. At first I thought it was some form of battery reading failure, and that my battery actually was out of juice, but after further investigation this cant be the case. The laptop is fairly new, and from a full battery to shutdown (at 35%) I only end up getting about 50minutes of battery life (with all battery saving features turned on, lowest screen brightness and CPU speed etc, and usage kept to a minimum).
I've gone thru the event logs in hope of finding some sort of clue to what is causing the problem and noticed 5 "failures" of the ACPI, which i beleive deals with the battery, the event-id of this failure is 13. None of these failures have occured when I've experienced the problem, but I figured they might be related anyways.
The computer works just fine when plugged in to a charger and I havn't been experiencing any other problems, the "critical battery level" (and automated shutdown) is set to 5% and shouldn't have anything to do with the problem.
I havn't installed any strange software (infact, I havnt installed anything at all other than windows updates) or changed any settings since the time it was working fine.
Also, if anyone have a similair laptop, is your battery life as bad as mine? I get around 1min/1% of battery with maximum possible power saving (no wifi, lowest screen brightness, lowest CPU speed etc.)
I would greatly appreciate any help that could lead me to the cause of this problem, thanks!
I found the solution to this problem. The problem is not with the battery but an Asus bloatware called Power4gear Hybrid. This app messes with the battery notification settings. Just uninstall this POS and you won't face this problem.
I can't believe why Asus support never had an answer to this easy problem.
Update : The problem still persists. What I did for my windows OS was go to command prompt and get the battery report. The report clearly shows that my batteries full charge capacity has reduced . While the design capacity was 57,200 MwH , the battery capacity now has reduced to 24,816 mWh. So the problem is definitely in the battery.
KUNAL MALAKAR said:AS i faced this problem and solved it though googling.SO here is the solution :just go to power option in control panel..then go to ur power plan what u r using right now..then just restore the defaults settings...
have a nice day broo...
It still does not work.
Stanjohn123 said:KUNAL MALAKAR said:AS i faced this problem and solved it though googling.SO here is the solution :just go to power option in control panel..then go to ur power plan what u r using right now..then just restore the defaults settings...
have a nice day broo...
It still does not work.
Open Laptop, disconnect battery, reconnect. Will fix it for a while. then u have to do the same thing again and so on...
Can't find your answer ? Ask !
Related resources
More resources
Read discussions in other Laptop Tech Support categories
Ask the community
Top Experts Laptop
27503 messages since 4/19/06
hang-the-9
46564 messages since 3/24/10
kookie3010
1273 messages since 9/3/13
All badges
Forum help
Latest Reports
Follow Tom’s guide
Subscribe to our newsletter
add to twitter
add to facebook
ajouter un flux RSS}

我要回帖

更多关于 h1z1是哪个国家的游戏 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信