Started programming app states. Incorporated Artemis.
This commit is contained in:
40
src/ve/ucv/ciens/ccg/nxtar/components/VideoFrame.java
Normal file
40
src/ve/ucv/ciens/ccg/nxtar/components/VideoFrame.java
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Miguel Angel Astor Romero
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ve.ucv.ciens.ccg.nxtar.components;
|
||||
|
||||
import com.artemis.Component;
|
||||
import com.badlogic.gdx.graphics.Pixmap;
|
||||
import com.badlogic.gdx.graphics.Texture;
|
||||
|
||||
public class VideoFrame extends Component {
|
||||
private Texture frame;
|
||||
|
||||
public VideoFrame(){ }
|
||||
|
||||
public VideoFrame(byte[] imageData){
|
||||
frame = new Texture(new Pixmap(imageData, 0, imageData.length));
|
||||
}
|
||||
|
||||
public Texture getFrame(){
|
||||
return frame;
|
||||
}
|
||||
|
||||
public void setFrame(byte[] imageData){
|
||||
if(frame != null)
|
||||
frame.dispose();
|
||||
frame = new Texture(new Pixmap(imageData, 0, imageData.length));
|
||||
}
|
||||
}
|
45
src/ve/ucv/ciens/ccg/nxtar/states/DummyState.java
Normal file
45
src/ve/ucv/ciens/ccg/nxtar/states/DummyState.java
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Miguel Angel Astor Romero
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ve.ucv.ciens.ccg.nxtar.states;
|
||||
|
||||
/**
|
||||
* Empty state.
|
||||
*
|
||||
* Completely empty state for debugging purposes.
|
||||
*
|
||||
* @author miky
|
||||
*/
|
||||
public class DummyState implements NxtARState{
|
||||
|
||||
@Override
|
||||
public void input(){ }
|
||||
|
||||
@Override
|
||||
public void update(){ }
|
||||
|
||||
@Override
|
||||
public void render(){ }
|
||||
|
||||
@Override
|
||||
public void pause(){ }
|
||||
|
||||
@Override
|
||||
public void resume(){ }
|
||||
|
||||
@Override
|
||||
public void dispose(){ }
|
||||
|
||||
}
|
56
src/ve/ucv/ciens/ccg/nxtar/states/InGameState.java
Normal file
56
src/ve/ucv/ciens/ccg/nxtar/states/InGameState.java
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Miguel Angel Astor Romero
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ve.ucv.ciens.ccg.nxtar.states;
|
||||
|
||||
public class InGameState implements NxtARState{
|
||||
|
||||
@Override
|
||||
public void input() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void render() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void pause() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void resume() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dispose() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
25
src/ve/ucv/ciens/ccg/nxtar/states/NxtARState.java
Normal file
25
src/ve/ucv/ciens/ccg/nxtar/states/NxtARState.java
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Miguel Angel Astor Romero
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ve.ucv.ciens.ccg.nxtar.states;
|
||||
|
||||
public interface NxtARState{
|
||||
public void input();
|
||||
public void update();
|
||||
public void render();
|
||||
public void pause();
|
||||
public void resume();
|
||||
public void dispose();
|
||||
}
|
36
src/ve/ucv/ciens/ccg/nxtar/systems/RenderSystem.java
Normal file
36
src/ve/ucv/ciens/ccg/nxtar/systems/RenderSystem.java
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Miguel Angel Astor Romero
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ve.ucv.ciens.ccg.nxtar.systems;
|
||||
|
||||
import ve.ucv.ciens.ccg.nxtar.components.VideoFrame;
|
||||
|
||||
import com.artemis.Aspect;
|
||||
import com.artemis.Entity;
|
||||
import com.artemis.systems.EntityProcessingSystem;
|
||||
|
||||
public class RenderSystem extends EntityProcessingSystem {
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public RenderSystem(Aspect aspect) {
|
||||
super(Aspect.getAspectForAll(VideoFrame.class));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void process(Entity arg0) {
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user