Removed client-side display for old technology system
* Removed data classes and database access that were used to display technology information * Removed "Research" tab from Overview page on the web client
This commit is contained in:
parent
9a7bc03171
commit
154f215e24
10 changed files with 2 additions and 492 deletions
legacyworlds-server-data/src/main/java/com/deepclone/lw/sqld/game
|
@ -1,66 +0,0 @@
|
|||
package com.deepclone.lw.sqld.game;
|
||||
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
public class EmpireTechLine
|
||||
{
|
||||
private int id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String description;
|
||||
|
||||
private List< EmpireTechnology > technologies = new LinkedList< EmpireTechnology >( );
|
||||
|
||||
|
||||
public int getId( )
|
||||
{
|
||||
return id;
|
||||
}
|
||||
|
||||
|
||||
public void setId( int id )
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
||||
public String getName( )
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
|
||||
public void setName( String name )
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
public String getDescription( )
|
||||
{
|
||||
return description;
|
||||
}
|
||||
|
||||
|
||||
public void setDescription( String description )
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
|
||||
public List< EmpireTechnology > getTechnologies( )
|
||||
{
|
||||
return technologies;
|
||||
}
|
||||
|
||||
|
||||
public void addTechnology( EmpireTechnology eTech )
|
||||
{
|
||||
this.technologies.add( eTech );
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
package com.deepclone.lw.sqld.game;
|
||||
|
||||
|
||||
public class EmpireTechnology
|
||||
{
|
||||
private int line;
|
||||
|
||||
private String name;
|
||||
|
||||
private String description;
|
||||
|
||||
private boolean implemented;
|
||||
|
||||
private int progress;
|
||||
|
||||
private int cost;
|
||||
|
||||
|
||||
public int getLine( )
|
||||
{
|
||||
return line;
|
||||
}
|
||||
|
||||
|
||||
public void setLine( int line )
|
||||
{
|
||||
this.line = line;
|
||||
}
|
||||
|
||||
|
||||
public String getName( )
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
|
||||
public void setName( String name )
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
public String getDescription( )
|
||||
{
|
||||
return description;
|
||||
}
|
||||
|
||||
|
||||
public void setDescription( String description )
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
|
||||
public boolean isImplemented( )
|
||||
{
|
||||
return implemented;
|
||||
}
|
||||
|
||||
|
||||
public void setImplemented( boolean implemented )
|
||||
{
|
||||
this.implemented = implemented;
|
||||
}
|
||||
|
||||
|
||||
public int getProgress( )
|
||||
{
|
||||
return progress;
|
||||
}
|
||||
|
||||
|
||||
public void setProgress( int progress )
|
||||
{
|
||||
this.progress = progress;
|
||||
}
|
||||
|
||||
|
||||
public int getCost( )
|
||||
{
|
||||
return cost;
|
||||
}
|
||||
|
||||
|
||||
public void setCost( int cost )
|
||||
{
|
||||
this.cost = cost;
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue