jMonkeyEngine.org

  • Home
    • News
    • News Archives
    • Activity
    • Members
    • Links
  • Introduction
    • About
    • Website Manual
    • Core Team
    • Contributing
      • Anyone
      • Modeler
      • WebDev
      • Writer
      • Programmer
    • Product Showcase
  • Forums
    • Latest Topics
    • Forums Index
    • Troubleshooting >
      • General
      • Import Assets
      • Graphics
      • Effects
      • GUI
      • Physics
      • Sound
      • Networking
      • SpiderMonkey
      • TerraMonkey
      • jMonkeyPlatform
    • Project Relations >
      • Beta 1 Game Contest
      • Free Announcements
      • User Code & Projects
      • Site & Project Feedback
      • Feature Discussion
      • Small Talk
    • Development >
      • Developers
      • Contributions
      • Docs
      • jMonkeyPlatform
      • Android
      • MonkeyZone
    • Legacy jME2 >
      • Discussion
      • Contributions
      • Docs Discussion
  • Documentation
    • Installation & Setup
    • Tutorials & Docs
    • SDK Documentation
    • FAQ
    • JavaDoc
    • Docs Discussion
  • Projects
    • All Projects
    • Games
    • Tools
    • Open Source
  • Downloads
    • Download jME3 SDK
    • SVN Checkout
    • GoogleCode
    • Nightly Builds
  • Contact

Group Admins

  • Profile picture of Levia

Group Mods

  • Profile picture of ractoc
Group logo of SpiderMonkey

SpiderMonkey

Public Group active 50 minutes ago

SpiderMonkey is a high performance Java networking engine. It is efficient, yet simple to use. Setting up a client/server mechanism requires no more than basic Java knowledge. The same goes for sending and receiving objects – in other words: Every monkey can use it!

  • Home
  • Snippets1
  • Forum
  • Members 2,451
  • RSS
  • Profile picture of enum

    enum replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 4 days, 6 hours ago

    volatile piggybacking

    I’m definitely not a master in concurrency and I had to look the term up. But I was happy when I saw that I know this :) (In fact I read the first ~ 100 pages of “Java – Concurrency in […]

  • Profile picture of Empire Phoenix

    Empire Phoenix replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 7 hours ago

    Well my server runs with a fixed tick (50ms) ans sends updates at that times, including position,rotation,velocity,angvelocity , the client then has a interpolator object that is responsible for moving the […]

  • Profile picture of pspeed

    pspeed replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 7 hours ago

    @enum said:
    Yeah, I read about this buffer component again today in the thread “understanding of entites”. Maybe it will help to build my thoughts around this one. So creating a fitting system around this and […]

  • Profile picture of enum

    enum replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 7 hours ago

    Yeah, I read about this buffer component again today in the thread “understanding of entites”. Maybe it will help to build my thoughts around this one. So creating a fitting system around this and not the other way round…

  • Profile picture of pspeed

    pspeed replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 7 hours ago

    It’s tough to answer that but I will give some hints that occurred to me while reading it:

    -the physics system is moving the objects based on velocity and acceleration. The user input should really only be […]

  • Profile picture of enum

    enum replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 7 hours ago

    Thank you, I do now know how to implement this. :)

    Now I want to ask another question that I’m thinking about since yesterday evening:
    I have my entity system that executes one loop each server cycle (let’s […]

  • Profile picture of pspeed

    pspeed replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 8 hours ago

    Every status update that the server sends to the client (20 times a second or whatever) includes the game time.

    The client uses this to adjust its local time counter so that it has “game time” as close as it […]

  • Profile picture of enum

    enum replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 8 hours ago

    The client sends its current “game time” with its player control updates. It has to because it’s important for the server to know when the state changed. The server can use this to calculate latency.

    I know the […]

  • Profile picture of madjack

    madjack replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 8 hours ago

    The above was from some years ago so I don’t have a readily available link, but I do know that Punk Buster enforces correct time locally.

  • Profile picture of pspeed

    pspeed replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 8 hours ago

    @enum said:
    Thanks for your answer.
    So I will do one round message from the client and one from the server. Then adjust client time and calculate the client’s latency on the server side. Seems not to be too […]

  • Profile picture of enum

    enum replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 9 hours ago

    Thanks for your answer.
    So I will do one round message from the client and one from the server. Then adjust client time and calculate the client’s latency on the server side. Seems not to be too much […]

  • Profile picture of madjack

    madjack replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 9 hours ago

    Many applications will warn you and I’ve seen game servers refusing connection if your computer time’s off by too much as this can be used to cheat.

    Geo-location based on an IP can be done to fetch the […]

  • Profile picture of madjack

    madjack joined the group Group logo of SpiderMonkeySpiderMonkey 5 days, 9 hours ago

  • Profile picture of pspeed

    pspeed replied to the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 10 hours ago

    It requires a round trip to calculate latency.

    Usually you try to keep some common time, like the server will send its time in messages and the client tries to adjust it’s view of time to be the same. There […]

  • Profile picture of enum

    enum started the forum topic How to find out the latency of a client in the group Group logo of SpiderMonkeySpiderMonkey 5 days, 11 hours ago

    Hello,

    while constructing my EntitySystem I reread the valve article about lag compensating for building everything in a way that lag compensation can easily be implemented later on.
    That created a […]

  • Profile picture of enum

    enum joined the group Group logo of SpiderMonkeySpiderMonkey 5 days, 11 hours ago

  • Profile picture of pspeed

    pspeed replied to the forum topic Running a Server without updateloop in the group Group logo of SpiderMonkeySpiderMonkey 1 month, 1 week ago

    You can also go with an approach where you have a simple console command line. After you initialize the server do something like:

  • Profile picture of scrubalub

    scrubalub replied to the forum topic Running a Server without updateloop in the group Group logo of SpiderMonkeySpiderMonkey 1 month, 1 week ago

    The spidermonkey server Does NOT require simple application. What you are suggesting is fine

    I believe you are looking for something like this

  • Profile picture of zzuegg

    zzuegg started the forum topic Running a Server without updateloop in the group Group logo of SpiderMonkeySpiderMonkey 1 month, 1 week ago

    Hello,

    I would require a passive Server without updateloop. Mainly for managing loginData and giving out a serverlist to the clients.

    Is it even possible to start a Server without extending […]

  • Profile picture of zzuegg

    zzuegg joined the group Group logo of SpiderMonkeySpiderMonkey 1 month, 1 week ago

  • Load More
Click below to login with..

Please create an account to get started.

Loading

Latest News

  • Happy earth day.. to our new contributors!
  • Google Summer of Code 2012

Recently Active Members

Profile picture of pspeed
Profile picture of Sploreg
Profile picture of draygera
Profile picture of ditchbuster
Profile picture of kbender88
Profile picture of H
Profile picture of maxyme
Profile picture of JinXu
Profile picture of mcbeth
Profile picture of Momoko_Fan
Profile picture of ninetailfox97
Profile picture of samuelkillin

Drag&Drop Help

  • 3D Scene Graph for Dummies
  • jME3 Math for Dummies
  • 3D Graphics Terminology
  • Hello Assets
  • Export from Blender
  • Custom Meshes
  • Physics
  • FAQ
  • Nifty’s bible

Group Tags

game jme3 online jme2 jme1 tool mmo boxes rpg crafting physics fps action gui baseball realistic gbui editor texture gis space turn-based platform tower-defense side-scroller betaville racing ogre marbles blue mmorpg albion scripting byte 1995 indie

Proudly powered by WordPress and BuddyPress.

jMonkeyEngine.org
  • Log In
  • Sign Up
  • Visit
    • Random Member
    • Random Group
close