[FEATURE] - [RADAR]
Kirattus opened this issue · comments
Kirattus commented
Hi!
In feature there is something to be done about the location of the map.
Any chance of releasing this feature before the others?
Lucas Monstro commented
Finished today #10 to get floor level. I will implement tomorrow strategies to get full coordinate.
Lucas Monstro commented
@Kirattus added way to get coordinate here in PR #11
The order of algorithms to get coordinate is:
- comparing current radar image hash from previous one, it means, hashes are the same. It will avoid computation when character is stopped. It will respond in
7 microseconds
. - hashing radar image and getting it from a
Dict
with key/pairs of all hash:coordinate. It will respond in10 microseconds
. - locating from small area based on previous coordinate if it is present. I can improve it in near future, reducing the size of small area. But I need to make some tests because I'm not sure if is 100% safe. Also, I can try with hash displacement for each direction after character move. Currently respond in
300 milliseconds
, but after improvements, I think the response time will be close to15~20 microseconds
. - locating in the whole floor level image in first locating or before teleport. It will respond in
300 milliseconds
.
Lucas Monstro commented
@Kirattus already done!