All Questions
Tagged with java serialization
6 questions
2
votes
1
answer
567
views
Json Libgdx serialize / de-serialize a Object Map of Object Maps
Any one have any ideas on how I can serialize / de-serialize an
ObjectMap<Enum, ObjectMap<String, Object>>();
(Object is usually a String Integer ...
1
vote
0
answers
561
views
How would I go about serializing my LibGDX game?
I am currently using Kryo for serialization. I have a Player class, but it extends Sprite. Sprite isn't serializable. This means I can't serialize Player as a whole. Is there another way to do this? ...
0
votes
1
answer
771
views
Fast Serialization for Multiplayer Gaming
I wish to make a Java based multiplayer game. I am learning all about sockets and so forth. I have built a very basic UDP system that serializes an object with all the information about the game state ...
2
votes
1
answer
570
views
Deserializing component array using JSON
I have a collection of serialized components in JSON format:
...
3
votes
1
answer
1k
views
Unable to remove class information in serialized json file using libgdx
I am encountering a problem in serializing an array of objects to json file. Please let me know where I'm making the mistake.
Object to be serialized :
...
12
votes
8
answers
10k
views
Converting a 2D curve into points for data storage
I’ve created an algorithm which converts any curve i.e. path into minimum number of points so that I can save it into a file or database.
The method is simple: it moves three points in equal steps ...