phil67rpg's Blog

Profile
ontario
warlords
164 comments
18 entries
Advertisement
phil67rpg
November 08, 2019
asteroids wars

well I am making an asteroids and space wars hybrid. I got the ships to move around the screen and shoot bullets, I have also drawn a  random location UFO, here is my code so far, let me know what you think.

#include<freeglut.h>
#include<iostream>
#include<math.h>
#include<…
2,661 views
phil67rpg
October 16, 2019
plane game

I am making a game where two planes shoot at each other to start with. here is my code so far.

#include <stdlib.h>
#include <freeglut.h>
#include <iostream>
#include "SOIL.h"
#include <math.h>

GLuint texture[8];

const float PI = 3.14159;

float rotate = 0.125f, vertic…
3,410 views
phil67rpg
September 15, 2019
rgg platformer

well I have drawn animated sprite which can move back and  forth across the bottom of the screen just above some grass sprites. here is my code.

#include <freeglut.h>
#include <iostream>
#include<SOIL.h>

using namespace std;

GLuint texture[8];

float screen = 0.0f;
float mo…
2,042 views
phil67rpg
August 29, 2019
vetical  side scroller

well I am able to draw and move the plane and shoot bullets and move the enemy plane from the top to the bottom of the screen. here is my code so far.

#include <freeglut.h>
#include <iostream>
#include<SOIL.h>

using namespace std;

GLuint textureBrick[8]; 

float move_plane …
2,106 views
phil67rpg
June 30, 2019
win 32 pong

I am working on a pong game using windows and c++

2,523 views
phil67rpg
June 05, 2019
bug invaders

I am  working on a space invaders clone called bug invaders. here is my code. let me know what you think. let me know what to do next.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
usi…
2,190 views
phil67rpg
March 18, 2019
c#  book

I am studying c# with a book called Microsoft C# 2017 An introduction to object oriented programming. I am on ch7 which deals with methods. wish me all the best in my studies.

2,474 views
phil67rpg
March 05, 2019
c# bug invaders

well I am working on a space invaders like game. I am using c# and gdi+. I have managed to draw a space ship and have it shoot a bullet, I am just starting. here is my starting code. 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.D…
2,131 views
phil67rpg
February 24, 2019
c# blackjack graphics

I am starting a blackjack game  using c# graphics. here is my starting code.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
usi…
2,915 views
phil67rpg
February 11, 2019
c# console snake game

I have decided to work on a console based snake game, I am doing this because I want to learn basic c# skills before move on to c#  graphics programming.

I am able to move the snake from the center to the edge of the screen, it is just a start, but I am learning.

using System;
using System…
23,812 views
phil67rpg
February 02, 2019
c# snake game

well like suggested I am going to make a snake game. here is my code so far. I was told it is easier then blackjack.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threadin…
1,834 views
phil67rpg
January 26, 2019
c# blackjack

I am starting on a blackjack game using c#.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    class Program
    {
        enum suit { C=1, D, H, S};
        enum face { J=11, Q, K, A};
        
     …
3,982 views
phil67rpg
January 05, 2019
c# tic tac toe game

here is my code for my tic tac toe game, I am still working on the computer player.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.For…
5,367 views
phil67rpg
December 25, 2018
c# pong game

I am working on a pong game using c# and gdi+. here is my code so far.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespac…
3,802 views
phil67rpg
November 28, 2018
1942 plane game

Well I have a peculiar problem. When I set my global variable screen=0.0f and I put my drawcollision_one() function in my display function it only draws a static collision sprite. However when I set my screen=0.0001f and I put my drawcollision_one() in my display function it draws an animated col…

1,795 views
phil67rpg
November 14, 2018
1943 Plane Game

I am still working on my 1943 plane game. I have got the one plane to move and shoot bullets in all directions. I am going to do the same for the second plane.

3,743 views
phil67rpg
October 27, 2018
1945 game

I am still working on my 1945 plane game. I am stuck on how to rotate the bullet sprite around the plane sprite. I am using trig. functions and some linear algebra which is what I am taking in college classes. here is the code I am using.

void drawbullet_one()
{
	glEnable(GL_TEXTURE_2D);

	glB…
3,492 views
phil67rpg
September 26, 2018
plane game

well I have drawn two plane sprites and have them move around the screen using keys. one them can also shoot bullets, I have drawn an animated collision sprite

5,228 views
Advertisement

Popular Blogs

shawnhar
Generalist
101 Entries
9 Followers
15 Entries
10 Followers
johnhattan
Programmer
1,277 Entries
47 Followers
ApochPiQ
Generalist
628 Entries
44 Followers
dgreen02
Generalist
338 Entries
56 Followers
Advertisement