Class FactoryTemplates
- java.lang.Object
-
- net.eternalclient.api.internal.mouse.naturalmouse.util.FactoryTemplates
-
public class FactoryTemplates extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description FactoryTemplates()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MouseMotionFactorycreateAverageComputerUserMotionFactory()Standard computer user with average speed and movement mistakesstatic MouseMotionFactorycreateAverageComputerUserMotionFactory(MouseMotionNature nature)Standard computer user with average speed and movement mistakesstatic MouseMotionFactorycreateDemoRobotMotionFactory(long motionTimeMsPer100Pixels)Robotic fluent movement.static MouseMotionFactorycreateDemoRobotMotionFactory(MouseMotionNature nature, long motionTimeMsPer100Pixels)Robotic fluent movement.static MouseMotionFactorycreateFastGamerMotionFactory()Gamer with fast reflexes and quick mouse movements.static MouseMotionFactorycreateFastGamerMotionFactory(MouseMotionNature nature)Gamer with fast reflexes and quick mouse movements.static MouseMotionFactorycreateGrannyMotionFactory()Stereotypical granny using a computer with non-optical mouse from the 90s.static MouseMotionFactorycreateGrannyMotionFactory(MouseMotionNature nature)Stereotypical granny using a computer with non-optical mouse from the 90s.static MouseMotionFactorycreateUltraGamerMotionFactory()Gamer with fast reflexes and quick mouse movements.static MouseMotionFactorycreateUltraGamerMotionFactory(MouseMotionNature nature)Gamer with fast reflexes and quick mouse movements.
-
-
-
Method Detail
-
createGrannyMotionFactory
public static MouseMotionFactory createGrannyMotionFactory()
Stereotypical granny using a computer with non-optical mouse from the 90s.
Low speed, variating flow, lots of noise in movement.- Returns:
- the factory
-
createGrannyMotionFactory
public static MouseMotionFactory createGrannyMotionFactory(MouseMotionNature nature)
Stereotypical granny using a computer with non-optical mouse from the 90s.
Low speed, variating flow, lots of noise in movement.- Parameters:
nature- the nature for the template to be configured on- Returns:
- the factory
-
createDemoRobotMotionFactory
public static MouseMotionFactory createDemoRobotMotionFactory(long motionTimeMsPer100Pixels)
Robotic fluent movement.
Custom speed, constant movement, no mistakes, no overshoots.- Parameters:
motionTimeMsPer100Pixels- approximate time a movement takes per 100 pixels of travelling- Returns:
- the factory
-
createDemoRobotMotionFactory
public static MouseMotionFactory createDemoRobotMotionFactory(MouseMotionNature nature, long motionTimeMsPer100Pixels)
Robotic fluent movement.
Custom speed, constant movement, no mistakes, no overshoots.- Parameters:
nature- the nature for the template to be configured onmotionTimeMsPer100Pixels- approximate time a movement takes per 100 pixels of travelling- Returns:
- the factory
-
createFastGamerMotionFactory
public static MouseMotionFactory createFastGamerMotionFactory()
Gamer with fast reflexes and quick mouse movements.
Quick movement, low noise, some deviation, lots of overshoots.- Returns:
- the factory
-
createFastGamerMotionFactory
public static MouseMotionFactory createFastGamerMotionFactory(MouseMotionNature nature)
Gamer with fast reflexes and quick mouse movements.
Quick movement, low noise, some deviation, lots of overshoots.- Parameters:
nature- the nature for the template to be configured on- Returns:
- the factory
-
createUltraGamerMotionFactory
public static MouseMotionFactory createUltraGamerMotionFactory()
Gamer with fast reflexes and quick mouse movements.
Quick movement, low noise, some deviation, lots of overshoots.- Returns:
- the factory
-
createUltraGamerMotionFactory
public static MouseMotionFactory createUltraGamerMotionFactory(MouseMotionNature nature)
Gamer with fast reflexes and quick mouse movements.
Quick movement, low noise, some deviation, lots of overshoots.- Parameters:
nature- the nature for the template to be configured on- Returns:
- the factory
-
createAverageComputerUserMotionFactory
public static MouseMotionFactory createAverageComputerUserMotionFactory()
Standard computer user with average speed and movement mistakes
medium noise, medium speed, medium noise and deviation.- Returns:
- the factory
-
createAverageComputerUserMotionFactory
public static MouseMotionFactory createAverageComputerUserMotionFactory(MouseMotionNature nature)
Standard computer user with average speed and movement mistakes
medium noise, medium speed, medium noise and deviation.- Parameters:
nature- the nature for the template to be configured on- Returns:
- the factory
-
-