Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added cEntity's gravity to the Lua API. | madmaxoft | 2013-09-03 | 1 | -0/+4 |
| | |||||
* | Implemented exact block hit position. | madmaxoft | 2013-09-03 | 2 | -26/+31 |
| | | | | Arrows now stick out of blocks at the exact position where they hit. | ||||
* | Added cArrowEntity's criticalness to the API. | madmaxoft | 2013-09-03 | 1 | -0/+6 |
| | |||||
* | Arrows deal damage based on their speed. | madmaxoft | 2013-09-03 | 2 | -4/+13 |
| | |||||
* | Projectiles slow down in water and lava. | madmaxoft | 2013-09-02 | 1 | -3/+14 |
| | |||||
* | Projectiles don't collide with their creators. | madmaxoft | 2013-09-02 | 1 | -2/+6 |
| | |||||
* | Arrows deal damage. | madmaxoft | 2013-09-01 | 2 | -4/+127 |
| | | | | Still needs some tweaks, they hit the shooter most of the time. | ||||
* | Thrown ender pearls now teleport and hurt. | madmaxoft | 2013-08-30 | 1 | -1/+7 |
| | |||||
* | Basic support for thrown items - eggs, snowballs and ender pearls. | madmaxoft | 2013-08-30 | 2 | -5/+179 |
| | | | | They can be thrown, but they don't do anything on impact. Also they don't save to nor load from MCA. | ||||
* | Moved throw pos and speed calculation from cProjectileEntity into cPlayer. | madmaxoft | 2013-08-30 | 4 | -38/+38 |
| | |||||
* | Merged in the Projectiles branch. | madmaxoft | 2013-08-30 | 14 | -90/+482 |
|\ | | | | | | | Although the projectiles are not yet finished, the branch has several bugfixes that are needed in master as well. | ||||
| * | Shooting a bow kinda works. | madmaxoft | 2013-08-30 | 4 | -0/+109 |
| | | | | | | | | The arrow is released, but sometimes hits wrong blocks or disappears completely. | ||||
| * | Implemented basic physics for projectiles. | madmaxoft | 2013-08-27 | 2 | -21/+135 |
| | | |||||
| * | Entities fall 3x slower in water | madmaxoft | 2013-08-27 | 2 | -2/+2 |
| | | |||||
| * | Debug logging for arrows improved | madmaxoft | 2013-08-26 | 1 | -1/+8 |
| | | |||||
| * | Debug: arrow log their position in each tick | madmaxoft | 2013-08-26 | 3 | -19/+39 |
| | | |||||
| * | Added a few API accessors to cArrowEntity. | madmaxoft | 2013-08-25 | 2 | -0/+25 |
| | | |||||
| * | Moved entity spawning into cEntity::Initialize(). | madmaxoft | 2013-08-25 | 9 | -61/+4 |
| | | | | | | | | It has been called in every descendant anyway, so it's better this way - reduced duplicate code. | ||||
| * | Merged branch 'master' into Projectiles. | madmaxoft | 2013-08-25 | 1 | -3/+4 |
| |\ | |/ |/| | |||||
| * | Added a few basic fields to cProjectileEntity and cArrowEntity. | madmaxoft | 2013-08-22 | 2 | -4/+73 |
| | | |||||
| * | Arrows can spawn on the client. | madmaxoft | 2013-08-22 | 1 | -1/+2 |
| | | |||||
| * | Added skeleton code for projectile spawning. | madmaxoft | 2013-08-22 | 3 | -6/+105 |
| | | |||||
* | | Fixed pickup behavior outside the world. | madmaxoft | 2013-08-24 | 1 | -3/+4 |
| | | | | | | | | One part of #131. | ||||
* | | Removed unwanted VirtualHooks remnants. | madmaxoft | 2013-08-22 | 1 | -2/+1 |
|/ | | | | cEntity no longer needs its SpawnOn() default-implemented, it can now be a true pure virtual function. | ||||
* | Hotfix for #83. | madmaxoft | 2013-08-20 | 1 | -0/+6 |
| | | | | Do not tick the player while their chunk is invalid. | ||||
* | Started work on the cProjectileEntity class. | madmaxoft | 2013-08-20 | 1 | -0/+69 |
| | |||||
* | Debuggers: Added continuous hunger reporting. | madmaxoft | 2013-08-19 | 2 | -4/+7 |
| | | | | Showcases the OnWorldTick() hook to fire events at regular intervals. Will be used for debugging the issues related to hyper-hunger. | ||||
* | Added cPickup:IsCollected() to the Lua API. | madmaxoft | 2013-08-19 | 1 | -0/+3 |
| | |||||
* | Added cPickup:GetAge() the the Lua API. | madmaxoft | 2013-08-19 | 1 | -3/+2 |
| | |||||
* | Moved entities into the Entities subfolder. | madmaxoft | 2013-08-19 | 14 | -0/+4480 |