Search found 34 matches

by JamieVanCadsand
Tue Oct 30, 2018 9:20 pm
Forum: 3D Programming
Topic: InitEngine3D() failed on my Win7 x64 w.Intel HD 520 Graphics
Replies: 7
Views: 3952

Re: InitEngine3D() failed on my Win7 x64 w.Intel HD 520 Grap

Its even so, thad i think maby you must put Engine3d.dll into our project map where you
put our .pb source codes, or put this into our Windows dll's...

I am momental not usin the 3d engine, I am still an hobby student, now I am
programming bouncing ball in 2d... Just I must rondup programming level ...
by JamieVanCadsand
Fri Aug 24, 2018 3:42 pm
Forum: Game Programming
Topic: Transer Lib
Replies: 7
Views: 3561

Re: Radial Circle Library

I dont really get what this is supposed to do (i also dont see a library anywhere).
However i suggest this -> dont use StartDrawing() / StopDrawing() in every drawing function (unless u have a good reason).

:?:
https://s8.postimg.cc/h4pkmhned/iihht.jpg

My bug is fixed..., now i get also the ...
by JamieVanCadsand
Fri Aug 24, 2018 10:13 am
Forum: Game Programming
Topic: Transer Lib
Replies: 7
Views: 3561

Transer Lib

Hey 2D Programmers...,

I get here an simple library, called to draw simple 2d radial circles... with given it an count...
Here is the source code, don't edit them.




Source Code ...
by JamieVanCadsand
Thu Aug 16, 2018 10:02 am
Forum: Game Programming
Topic: 2d tiled map making
Replies: 9
Views: 5623

Re: 2d tiled map making

Hey Bart...,

Now i am still in programming level 1 and go forwards to programming level 2 .... just i am at my
work (the Glazen Pui Arduin, Vlissingen), Working to write an klad, called for the game named Bouncing Ball ...

But with the Sin and Cos , i must still try your code , you get written ...
by JamieVanCadsand
Mon Aug 06, 2018 10:54 am
Forum: Game Programming
Topic: 2d tiled map making
Replies: 9
Views: 5623

Re: 2d tiled map making

I was looking for map making program on the internet and not one tile map making program has a script or export to suit Purebasic.
Until i came across a program TileStudio. Its not realy designed for Purebasic. But it had a build in option to create a exporting script to make the export file ready ...
by JamieVanCadsand
Sun Jul 29, 2018 10:45 am
Forum: Game Programming
Topic: [2D Programming] Bouncing Block Script not Work, Help Need!
Replies: 6
Views: 4879

Re: [2D Programming] Bouncing Block Script not Work, Help Ne

There is no need to make it global, simply move it to right before repeat:

Procedure Draw2D()
Direction = 1
Repeat



It works perfectly...., thanks for help.
Jamie.




Edit:

BFernhout get helped my with this follow code, just to exmiriment with gravity and friction yet:
;Bal gravety ...
by JamieVanCadsand
Sat Jul 28, 2018 8:36 pm
Forum: Game Programming
Topic: [2DGame] AddMapElement not works, crached!
Replies: 13
Views: 7162

Re: [2DGame] AddMapElement not works, crached!

Thanks all, but now I understand structures or reather said element an lot better...
Thanks for help, Jamie.


Now I plans to try understand programming an lot better, just starts to make games...
Bfernhout is just my hobby programming Teacher (think not thad hè is from school),
Hè said thad I am ...
by JamieVanCadsand
Fri Jul 27, 2018 12:35 pm
Forum: Game Programming
Topic: [2D Programming] Bouncing Block Script not Work, Help Need!
Replies: 6
Views: 4879

[2D Programming] Bouncing Block Script not Work, Help Need!

Hey Game Programmers...,

I try to create an simple block, they must be bounce from under to above, but it doesn't work perfect...


So This is my script, written in PB5.6.2, on Windows XP:
Procedure Initialize2D()
If InitSprite() = 0
MessageRequester("Fatal Error", "Failed to Initialize Sprites ...
by JamieVanCadsand
Wed Jul 18, 2018 1:01 pm
Forum: Coding Questions
Topic: [Pure Basic 5.6.2] Time Relativation Calc.., Any Problems
Replies: 4
Views: 1117

Re: [Pure Basic 5.6.2] Time Relativation Calc.., Any Problem



If i run this script, the console don't will be opens...



This is because there is a bug here:

While (AskSpeed = "Stop")

Should be:

While (AskSpeed <> "Stop")

Thanks for fix this while loop bug, but i am even an noob with do the just calculations for sciensifical applications...
Now ...
by JamieVanCadsand
Wed Jul 18, 2018 10:58 am
Forum: Coding Questions
Topic: [Pure Basic 5.6.2] Time Relativation Calc.., Any Problems
Replies: 4
Views: 1117

[Pure Basic 5.6.2] Time Relativation Calc.., Any Problems

Hey Programmers...

Just i try to create an time relativation calculator, based on the relativation theorie of 'Albert Einstein'...
So this is my script, written in PB5.6.2, Windows XP:
;TIME RELATIVATION CALCULATOR - RB5.6.2 - WINDOWS XP




;Global Variables [@Numbers]
Global Speed.f = 0.0
Global ...
by JamieVanCadsand
Tue Jul 17, 2018 9:05 am
Forum: The PureBasic Editor
Topic: [My Menaron CDLL] Where is the Build DLL Tool?
Replies: 2
Views: 3565

[My Menaron CDLL] Where is the Build DLL Tool?

Hey Library Programmers...

Now i get write my first simple CDLL, called for per-integer units in there 1D, 2D, 3D and 4D Fields.
So this is my script, called in PB5.6.2, on windows XP ...
by JamieVanCadsand
Thu Jul 12, 2018 9:08 am
Forum: Coding Questions
Topic: [Windows Programming] Add Name to List button not works
Replies: 2
Views: 1093

Re: [Windows Programming] Add Name to List button not works

Procedure Window()

If OpenWindow(0, 0, 0, 128, 128, "List View", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)

If CreateToolBar(0, WindowID(0))

ToolBarStandardButton(0, #PB_ToolBarIcon_New)

ListViewGadget(0, 0, 24, 128, 64) ; had to move it down Y a bit

EndIf

EndIf ...
by JamieVanCadsand
Wed Jul 11, 2018 7:57 pm
Forum: Coding Questions
Topic: [Windows Programming] Add Name to List button not works
Replies: 2
Views: 1093

[Windows Programming] Add Name to List button not works

Hey Windows Programmers...,

I try to create an script, the user can typ an name via an input_requester...
So this is my script, written in PB5.6.2:

Procedure Window()

If OpenWindow(0, 0, 0, 128, 128, "List View", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)

If CreateToolBar(0 ...
by JamieVanCadsand
Wed Jul 11, 2018 1:40 pm
Forum: Coding Questions
Topic: [Windows Programming] File Exception Handling not Works
Replies: 1
Views: 716

[Windows Programming] File Exception Handling not Works

Hey Windows Programmers....

I try to create an file importer, called an test to figure out how i can create an file exception handler,
just if the file is not found, then give an error... but it don't works...

So this is my script, written in PB5.6.2, on windows XP:
;Make File Error
Procedure ...
by JamieVanCadsand
Tue Jul 10, 2018 10:05 am
Forum: Coding Questions
Topic: [3D Programming] Text3D not works, Error Found!
Replies: 1
Views: 753

[3D Programming] Text3D not works, Error Found!

Hey 3D Game Programmers and Software Developers...

This is an first test to learn draw text in 3d, but if i run my script, i get an error...
So this is my script, written in PB 5.6.2, on Windows XP

Text3D, written in PB 5.6.2, Windows XP ...