MantisBT - Zandronum |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0002558 | Zandronum | [All Projects] Bug | public | 2015-12-29 22:38 | 2018-09-30 22:13 |
|
Reporter | Tribeam3rd | |
Assigned To | Dusk | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | Microsoft | OS | Windows | OS Version | XP/Vista/7 |
Product Version | 3.0-beta | |
Target Version | 3.0 | Fixed in Version | 3.0 | |
|
Summary | 0002558: (Online) A_RailAttack's custom particle class doesnt show from other players' perspectives. |
Description | 'https://dl.dropboxusercontent.com/u/49758621/railbug.gif [^]'
both are shooting the same test weapon(a special weapon that constantly auto fires)
As you can see, the player can see his own special rail, but sees the normal rail from other players.
|
Steps To Reproduce |
Download wad, host, run online, shoot pistol once, go online on another client, shoot once, see difference.
|
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | railbug.wad (898) 2015-12-29 22:38 /tracker/file_download.php?file_id=1703&type=bug |
|
Issue History |
Date Modified | Username | Field | Change |
2015-12-29 22:38 | Tribeam3rd | New Issue | |
2015-12-29 22:38 | Tribeam3rd | File Added: railbug.wad | |
2015-12-30 20:11 | Tribeam3rd | Note Added: 0014029 | |
2016-01-01 16:48 | Edward-san | Note Added: 0014033 | |
2016-01-01 16:49 | Edward-san | Note Edited: 0014033 | bug_revision_view_page.php?bugnote_id=14033#r8381 |
2016-01-01 16:49 | Edward-san | Status | new => confirmed |
2016-01-02 12:09 | Dusk | Assigned To | => Dusk |
2016-01-02 12:09 | Dusk | Status | confirmed => assigned |
2016-01-02 13:43 | Dusk | Note Added: 0014035 | |
2016-01-02 13:43 | Dusk | Status | assigned => needs review |
2016-01-10 20:31 | cobalt | Status | needs review => needs testing |
2016-01-10 20:31 | cobalt | Target Version | => 3.0 |
2016-01-10 20:31 | cobalt | Description Updated | bug_revision_view_page.php?rev_id=8416#r8416 |
2016-01-10 20:31 | cobalt | Steps to Reproduce Updated | bug_revision_view_page.php?rev_id=8418#r8418 |
2016-01-10 20:31 | cobalt | Note Added: 0014068 | |
2016-01-14 00:43 | Ru5tK1ng | Note Added: 0014088 | |
2016-01-14 19:38 | Dusk | Status | needs testing => resolved |
2016-01-14 19:38 | Dusk | Fixed in Version | => 3.0 |
2016-01-14 19:38 | Dusk | Resolution | open => fixed |
2018-09-30 22:13 | Blzut3 | Status | resolved => closed |
Notes |
|
|
This also seems to effect A_CustomRailgun. |
|
|
(0014033)
|
Edward-san
|
2016-01-01 16:48
(edited on: 2016-01-01 16:49) |
|
The online railgun code is not updated to handle the new 3.0 rail parameters. Also, since each rail spawn with the parameters is commanded by the server to the clients, handling your example wad perfectly requires 35 bytes more per each railgun command: 1 parameter to change in size (the 'silent' bool -> 'railflags' int, hence 3 bytes more) + 8 more parameters int-sized), so there's going to be a problem with bandwidth...
|
|
|
(0014035)
|
Dusk
|
2016-01-02 13:43
|
|
|
|
(0014068)
|
cobalt
|
2016-01-10 20:31
|
|
Issue addressed by commit b52cc91f7b25: Made new parameters of A_RailAttack work online (fixes 2558)
Committed by Teemu Piippo [Dusk] on Saturday 02 January 2016 15:55:30
Changes in files:
src/cl_main.cpp | 82 +++++++++++++++++++++++++++++++++++++++++++++-------------------------------------
src/p_map.cpp | 5 +++--
src/sv_commands.cpp | 46 +++++++++++++++++++++++++++++++++-------------
src/sv_commands.h | 2 +-
4 files changed, 82 insertions(+), 53 deletions(-)
|
|
|
|
Using the latest build, the test wad seems to work and I can see the custom pink rail from both points of view. |
|