From 5bd79f0d5821e2697f5781b012eff72be6d5a5be Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 5 Feb 2014 15:10:02 -0430 Subject: [PATCH] Deleted useless Artemis classes. --- .../ccg/nxtar/components/VideoFrame.java | 40 ------------------- .../ciens/ccg/nxtar/systems/RenderSystem.java | 36 ----------------- 2 files changed, 76 deletions(-) delete mode 100644 src/ve/ucv/ciens/ccg/nxtar/components/VideoFrame.java delete mode 100644 src/ve/ucv/ciens/ccg/nxtar/systems/RenderSystem.java diff --git a/src/ve/ucv/ciens/ccg/nxtar/components/VideoFrame.java b/src/ve/ucv/ciens/ccg/nxtar/components/VideoFrame.java deleted file mode 100644 index 6a85af6..0000000 --- a/src/ve/ucv/ciens/ccg/nxtar/components/VideoFrame.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * 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)); - } -} diff --git a/src/ve/ucv/ciens/ccg/nxtar/systems/RenderSystem.java b/src/ve/ucv/ciens/ccg/nxtar/systems/RenderSystem.java deleted file mode 100644 index 614a69b..0000000 --- a/src/ve/ucv/ciens/ccg/nxtar/systems/RenderSystem.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * 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) { - - } - -}